diff --git a/clients/go/admin/client.go b/clients/go/admin/client.go index 4ffbae937..965ba4180 100644 --- a/clients/go/admin/client.go +++ b/clients/go/admin/client.go @@ -10,12 +10,12 @@ import ( "sync" "github.com/coreos/go-oidc" + "github.com/flyteorg/flyteidl/clients/go/admin/mocks" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flytestdlib/logger" grpc_middleware "github.com/grpc-ecosystem/go-grpc-middleware" grpc_retry "github.com/grpc-ecosystem/go-grpc-middleware/retry" grpc_prometheus "github.com/grpc-ecosystem/go-grpc-prometheus" - "github.com/lyft/flyteidl/clients/go/admin/mocks" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/service" - "github.com/lyft/flytestdlib/logger" "golang.org/x/oauth2/clientcredentials" "google.golang.org/grpc" "google.golang.org/grpc/credentials" diff --git a/clients/go/admin/client_test.go b/clients/go/admin/client_test.go index a6b7cc82b..4efad36bc 100644 --- a/clients/go/admin/client_test.go +++ b/clients/go/admin/client_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "github.com/lyft/flytestdlib/config" + "github.com/flyteorg/flytestdlib/config" "github.com/stretchr/testify/assert" ) diff --git a/clients/go/admin/config.go b/clients/go/admin/config.go index 75ca3b850..d7ee6d48d 100644 --- a/clients/go/admin/config.go +++ b/clients/go/admin/config.go @@ -4,8 +4,8 @@ import ( "context" "time" - "github.com/lyft/flytestdlib/config" - "github.com/lyft/flytestdlib/logger" + "github.com/flyteorg/flytestdlib/config" + "github.com/flyteorg/flytestdlib/logger" ) //go:generate pflags Config diff --git a/clients/go/admin/integration_test.go b/clients/go/admin/integration_test.go index 387dee2f3..64beb265e 100644 --- a/clients/go/admin/integration_test.go +++ b/clients/go/admin/integration_test.go @@ -5,13 +5,14 @@ package admin import ( "context" "fmt" - "golang.org/x/oauth2/clientcredentials" "net/url" "testing" "time" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/lyft/flytestdlib/config" + "golang.org/x/oauth2/clientcredentials" + + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flytestdlib/config" "github.com/stretchr/testify/assert" ) diff --git a/clients/go/admin/mocks/AdminServiceClient.go b/clients/go/admin/mocks/AdminServiceClient.go index bc7465ec8..30e8cb75a 100644 --- a/clients/go/admin/mocks/AdminServiceClient.go +++ b/clients/go/admin/mocks/AdminServiceClient.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" grpc "google.golang.org/grpc" diff --git a/clients/go/coreutils/extract_literal.go b/clients/go/coreutils/extract_literal.go index 855e2694b..0d7d0454b 100644 --- a/clients/go/coreutils/extract_literal.go +++ b/clients/go/coreutils/extract_literal.go @@ -24,7 +24,7 @@ package coreutils import ( "fmt" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) func ExtractFromLiteral(literal *core.Literal) (interface{}, error) { diff --git a/clients/go/coreutils/literals.go b/clients/go/coreutils/literals.go index 4f5b855c9..d6bdcfc34 100644 --- a/clients/go/coreutils/literals.go +++ b/clients/go/coreutils/literals.go @@ -8,8 +8,8 @@ import ( "strings" "time" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" - "github.com/lyft/flytestdlib/storage" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flytestdlib/storage" "github.com/golang/protobuf/jsonpb" "github.com/golang/protobuf/ptypes" diff --git a/clients/go/coreutils/literals_test.go b/clients/go/coreutils/literals_test.go index e77686241..20e96d850 100644 --- a/clients/go/coreutils/literals_test.go +++ b/clients/go/coreutils/literals_test.go @@ -8,8 +8,10 @@ import ( "testing" "time" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" - "github.com/lyft/flytestdlib/storage" + "github.com/go-test/deep" + + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flytestdlib/storage" "github.com/golang/protobuf/ptypes" structpb "github.com/golang/protobuf/ptypes/struct" @@ -335,7 +337,7 @@ func TestMakeLiteralForSimpleType(t *testing.T) { t.Errorf("MakeLiteralForSimpleType() error = %v, wantErr %v", err, tt.wantErr) return } - if !reflect.DeepEqual(got, tt.want) { + if diff := deep.Equal(tt.want, got); diff != nil { t.Errorf("MakeLiteralForSimpleType() got = %v, want %v", got, tt.want) } }) diff --git a/clients/go/coreutils/logs/cloudwatch.go b/clients/go/coreutils/logs/cloudwatch.go index cab017091..75bca9c8e 100644 --- a/clients/go/coreutils/logs/cloudwatch.go +++ b/clients/go/coreutils/logs/cloudwatch.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) type cloudwatchLogPlugin struct { diff --git a/clients/go/coreutils/logs/cloudwatch_test.go b/clients/go/coreutils/logs/cloudwatch_test.go index ac4e28fed..9896ca217 100644 --- a/clients/go/coreutils/logs/cloudwatch_test.go +++ b/clients/go/coreutils/logs/cloudwatch_test.go @@ -3,7 +3,7 @@ package logs import ( "testing" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" ) diff --git a/clients/go/coreutils/logs/kubernetes.go b/clients/go/coreutils/logs/kubernetes.go index ee791ac41..5f0e1058a 100644 --- a/clients/go/coreutils/logs/kubernetes.go +++ b/clients/go/coreutils/logs/kubernetes.go @@ -3,7 +3,7 @@ package logs import ( "fmt" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) type kubernetesLogPlugin struct { diff --git a/clients/go/coreutils/logs/kubernetes_test.go b/clients/go/coreutils/logs/kubernetes_test.go index 4e1cfc3f8..277c3c004 100644 --- a/clients/go/coreutils/logs/kubernetes_test.go +++ b/clients/go/coreutils/logs/kubernetes_test.go @@ -3,7 +3,7 @@ package logs import ( "testing" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" ) diff --git a/clients/go/coreutils/logs/logs.go b/clients/go/coreutils/logs/logs.go index baf36631f..8355aa216 100644 --- a/clients/go/coreutils/logs/logs.go +++ b/clients/go/coreutils/logs/logs.go @@ -3,7 +3,7 @@ package logs import ( - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) // Deprecated: Please use Plugin interface from github.com/lyft/flyteplugins/go/tasks/pluginmachinery/tasklog instead. diff --git a/clients/go/coreutils/logs/stackdriver.go b/clients/go/coreutils/logs/stackdriver.go index 91d4136b5..4c45416ba 100644 --- a/clients/go/coreutils/logs/stackdriver.go +++ b/clients/go/coreutils/logs/stackdriver.go @@ -3,7 +3,7 @@ package logs import ( "fmt" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) // TL;DR Log links in Stackdriver for configured GCP project and log Resource diff --git a/clients/go/coreutils/logs/stackdriver_test.go b/clients/go/coreutils/logs/stackdriver_test.go index 3ef0a1c05..84b91f000 100644 --- a/clients/go/coreutils/logs/stackdriver_test.go +++ b/clients/go/coreutils/logs/stackdriver_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) func Test_stackdriverLogPlugin_GetTaskLog(t *testing.T) { diff --git a/clients/go/datacatalog/mocks/ArtifactsClient.go b/clients/go/datacatalog/mocks/ArtifactsClient.go index f8abea21d..845232635 100644 --- a/clients/go/datacatalog/mocks/ArtifactsClient.go +++ b/clients/go/datacatalog/mocks/ArtifactsClient.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - datacatalog "github.com/lyft/flyteidl/gen/pb-go/flyteidl/datacatalog" + datacatalog "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" grpc "google.golang.org/grpc" mock "github.com/stretchr/testify/mock" diff --git a/clients/go/events/admin_eventsink.go b/clients/go/events/admin_eventsink.go index 8604c4791..ecb432f64 100644 --- a/clients/go/events/admin_eventsink.go +++ b/clients/go/events/admin_eventsink.go @@ -4,14 +4,14 @@ import ( "context" "fmt" - admin2 "github.com/lyft/flyteidl/clients/go/admin" + admin2 "github.com/flyteorg/flyteidl/clients/go/admin" + "github.com/flyteorg/flyteidl/clients/go/events/errors" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flytestdlib/logger" "github.com/golang/protobuf/proto" - "github.com/lyft/flyteidl/clients/go/events/errors" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/event" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/service" - "github.com/lyft/flytestdlib/logger" "golang.org/x/time/rate" ) diff --git a/clients/go/events/admin_eventsink_integration_test.go b/clients/go/events/admin_eventsink_integration_test.go index 85d78b920..bc9af6dda 100644 --- a/clients/go/events/admin_eventsink_integration_test.go +++ b/clients/go/events/admin_eventsink_integration_test.go @@ -6,16 +6,16 @@ package events import ( "context" "fmt" + "github.com/stretchr/testify/assert" netUrl "net/url" "testing" "time" + "github.com/flyteorg/flyteidl/clients/go/admin" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/ptypes" - "github.com/influxdata/influxdb/pkg/testing/assert" - "github.com/lyft/flyteidl/clients/go/admin" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/event" - "github.com/lyft/flytestdlib/config" + "github.com/flyteorg/flytestdlib/config" ) var ( diff --git a/clients/go/events/admin_eventsink_test.go b/clients/go/events/admin_eventsink_test.go index e744f3583..d8d384d8b 100644 --- a/clients/go/events/admin_eventsink_test.go +++ b/clients/go/events/admin_eventsink_test.go @@ -4,12 +4,12 @@ import ( "context" "testing" + "github.com/flyteorg/flyteidl/clients/go/admin/mocks" + "github.com/flyteorg/flyteidl/clients/go/events/errors" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/ptypes" - "github.com/lyft/flyteidl/clients/go/admin/mocks" - "github.com/lyft/flyteidl/clients/go/events/errors" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/event" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "google.golang.org/grpc/codes" diff --git a/clients/go/events/config.go b/clients/go/events/config.go index e823694ef..5b0213c4a 100644 --- a/clients/go/events/config.go +++ b/clients/go/events/config.go @@ -3,8 +3,8 @@ package events import ( "context" - "github.com/lyft/flytestdlib/config" - "github.com/lyft/flytestdlib/logger" + "github.com/flyteorg/flytestdlib/config" + "github.com/flyteorg/flytestdlib/logger" ) //go:generate pflags Config diff --git a/clients/go/events/errors/errors.go b/clients/go/events/errors/errors.go index 267b76502..cc970c45d 100644 --- a/clients/go/events/errors/errors.go +++ b/clients/go/events/errors/errors.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/lyft/flytestdlib/logger" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flytestdlib/logger" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/clients/go/events/errors/errors_test.go b/clients/go/events/errors/errors_test.go index c82f9474b..e2df81c18 100644 --- a/clients/go/events/errors/errors_test.go +++ b/clients/go/events/errors/errors_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/clients/go/events/eventsink_test.go b/clients/go/events/eventsink_test.go index 67fa040a2..7c4a13e70 100644 --- a/clients/go/events/eventsink_test.go +++ b/clients/go/events/eventsink_test.go @@ -9,9 +9,9 @@ import ( "strings" "testing" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/ptypes" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/event" "github.com/stretchr/testify/assert" ) diff --git a/clients/go/events/iface.go b/clients/go/events/iface.go index a1fa9e8b5..ffd66811a 100644 --- a/clients/go/events/iface.go +++ b/clients/go/events/iface.go @@ -3,7 +3,7 @@ package events import ( "context" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" ) // Recorder for Workflow events diff --git a/clients/go/events/local_eventsink.go b/clients/go/events/local_eventsink.go index d16131f7f..fb3fcdc67 100644 --- a/clients/go/events/local_eventsink.go +++ b/clients/go/events/local_eventsink.go @@ -7,9 +7,9 @@ import ( "os" "sync" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/proto" "github.com/golang/protobuf/ptypes" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/event" ) type localSink struct { diff --git a/clients/go/events/local_writer.go b/clients/go/events/local_writer.go index 96471221e..4b556bcc8 100644 --- a/clients/go/events/local_writer.go +++ b/clients/go/events/local_writer.go @@ -5,7 +5,7 @@ import ( "context" "fmt" - "github.com/lyft/flytestdlib/logger" + "github.com/flyteorg/flytestdlib/logger" ) // Log Writer writes to the log output diff --git a/clients/go/events/mock_recorder.go b/clients/go/events/mock_recorder.go index eb0edca0e..2ecdb6425 100644 --- a/clients/go/events/mock_recorder.go +++ b/clients/go/events/mock_recorder.go @@ -3,7 +3,7 @@ package events import ( "context" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" ) type MockRecorder struct { diff --git a/clients/go/events/recorder.go b/clients/go/events/recorder.go index 3e4d46997..f86162391 100644 --- a/clients/go/events/recorder.go +++ b/clients/go/events/recorder.go @@ -4,11 +4,11 @@ import ( "context" "time" + "github.com/flyteorg/flyteidl/clients/go/events/errors" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flytestdlib/promutils" + "github.com/flyteorg/flytestdlib/promutils/labeled" "github.com/golang/protobuf/proto" - "github.com/lyft/flyteidl/clients/go/events/errors" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/event" - "github.com/lyft/flytestdlib/promutils" - "github.com/lyft/flytestdlib/promutils/labeled" ) type recordingMetrics struct { diff --git a/conf.py b/conf.py index b30cf12eb..9f781c8f6 100644 --- a/conf.py +++ b/conf.py @@ -99,7 +99,7 @@ "google_analytics_account": "G-YQL24L5CKY", # Specify a base_url used to generate sitemap.xml. If not # specified, then no sitemap will be built. - "base_url": "https://github.com/lyft/flyteidl", + "base_url": "https://github.com/flyteorg/flyteidl", # Set the color and the accent color "color_primary": "deep-purple", "color_accent": "blue", diff --git a/gen/pb-cpp/flyteidl/admin/common.pb.cc b/gen/pb-cpp/flyteidl/admin/common.pb.cc index b9eb1d034..e6ce2c18a 100644 --- a/gen/pb-cpp/flyteidl/admin/common.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/common.pb.cc @@ -883,13 +883,13 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fcommon_2eproto[] = "g\022\036\n\026output_location_prefix\030\001 \001(\t*\\\n\020Nam" "edEntityState\022\027\n\023NAMED_ENTITY_ACTIVE\020\000\022\031" "\n\025NAMED_ENTITY_ARCHIVED\020\001\022\024\n\020SYSTEM_GENE" - "RATED\020\002B3Z1github.com/lyft/flyteidl/gen/" - "pb-go/flyteidl/adminb\006proto3" + "RATED\020\002B7Z5github.com/flyteorg/flyteidl/" + "gen/pb-go/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fcommon_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fcommon_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fcommon_2eproto, - "flyteidl/admin/common.proto", &assign_descriptors_table_flyteidl_2fadmin_2fcommon_2eproto, 2748, + "flyteidl/admin/common.proto", &assign_descriptors_table_flyteidl_2fadmin_2fcommon_2eproto, 2752, }; void AddDescriptors_flyteidl_2fadmin_2fcommon_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/event.pb.cc b/gen/pb-cpp/flyteidl/admin/event.pb.cc index 54609d107..ff76c21c4 100644 --- a/gen/pb-cpp/flyteidl/admin/event.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/event.pb.cc @@ -284,13 +284,13 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fevent_2eproto[] = "se\"b\n\031TaskExecutionEventRequest\022\022\n\nreque" "st_id\030\001 \001(\t\0221\n\005event\030\002 \001(\0132\".flyteidl.ev" "ent.TaskExecutionEvent\"\034\n\032TaskExecutionE" - "ventResponseB3Z1github.com/lyft/flyteidl" - "/gen/pb-go/flyteidl/adminb\006proto3" + "ventResponseB7Z5github.com/flyteorg/flyt" + "eidl/gen/pb-go/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fevent_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fevent_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fevent_2eproto, - "flyteidl/admin/event.proto", &assign_descriptors_table_flyteidl_2fadmin_2fevent_2eproto, 713, + "flyteidl/admin/event.proto", &assign_descriptors_table_flyteidl_2fadmin_2fevent_2eproto, 717, }; void AddDescriptors_flyteidl_2fadmin_2fevent_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/execution.pb.cc b/gen/pb-cpp/flyteidl/admin/execution.pb.cc index cfe817a45..e8213b163 100644 --- a/gen/pb-cpp/flyteidl/admin/execution.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/execution.pb.cc @@ -689,14 +689,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fexecution_2eproto[] = ".UrlBlob\022\'\n\006inputs\030\002 \001(\0132\027.flyteidl.admi" "n.UrlBlob\022.\n\013full_inputs\030\003 \001(\0132\031.flyteid" "l.core.LiteralMap\022/\n\014full_outputs\030\004 \001(\0132" - "\031.flyteidl.core.LiteralMapB3Z1github.com" - "/lyft/flyteidl/gen/pb-go/flyteidl/adminb" - "\006proto3" + "\031.flyteidl.core.LiteralMapB7Z5github.com" + "/flyteorg/flyteidl/gen/pb-go/flyteidl/ad" + "minb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fexecution_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fexecution_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fexecution_2eproto, - "flyteidl/admin/execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2fexecution_2eproto, 3287, + "flyteidl/admin/execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2fexecution_2eproto, 3291, }; void AddDescriptors_flyteidl_2fadmin_2fexecution_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/launch_plan.pb.cc b/gen/pb-cpp/flyteidl/admin/launch_plan.pb.cc index 3a686af6f..8e50ee275 100644 --- a/gen/pb-cpp/flyteidl/admin/launch_plan.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/launch_plan.pb.cc @@ -491,13 +491,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2flaunch_5fplan_2eproto[] "\030\001 \001(\t\022\016\n\006domain\030\002 \001(\t\022\r\n\005limit\030\003 \001(\r\022\r\n" "\005token\030\004 \001(\t\022%\n\007sort_by\030\005 \001(\0132\024.flyteidl" ".admin.Sort*+\n\017LaunchPlanState\022\014\n\010INACTI" - "VE\020\000\022\n\n\006ACTIVE\020\001B3Z1github.com/lyft/flyt" - "eidl/gen/pb-go/flyteidl/adminb\006proto3" + "VE\020\000\022\n\n\006ACTIVE\020\001B7Z5github.com/flyteorg/" + "flyteidl/gen/pb-go/flyteidl/adminb\006proto" + "3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2flaunch_5fplan_2eproto = { false, InitDefaults_flyteidl_2fadmin_2flaunch_5fplan_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2flaunch_5fplan_2eproto, - "flyteidl/admin/launch_plan.proto", &assign_descriptors_table_flyteidl_2fadmin_2flaunch_5fplan_2eproto, 2197, + "flyteidl/admin/launch_plan.proto", &assign_descriptors_table_flyteidl_2fadmin_2flaunch_5fplan_2eproto, 2201, }; void AddDescriptors_flyteidl_2fadmin_2flaunch_5fplan_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc b/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc index 0fcdaafa8..d552adc6b 100644 --- a/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc @@ -458,13 +458,13 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fmatchable_5fresource_2ep "RESOURCE\020\001\022\023\n\017EXECUTION_QUEUE\020\002\022\033\n\027EXECU" "TION_CLUSTER_LABEL\020\003\022$\n QUALITY_OF_SERVI" "CE_SPECIFICATION\020\004\022\023\n\017PLUGIN_OVERRIDE\020\005B" - "3Z1github.com/lyft/flyteidl/gen/pb-go/fl" - "yteidl/adminb\006proto3" + "7Z5github.com/flyteorg/flyteidl/gen/pb-g" + "o/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, - "flyteidl/admin/matchable_resource.proto", &assign_descriptors_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, 1900, + "flyteidl/admin/matchable_resource.proto", &assign_descriptors_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, 1904, }; void AddDescriptors_flyteidl_2fadmin_2fmatchable_5fresource_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/node_execution.pb.cc b/gen/pb-cpp/flyteidl/admin/node_execution.pb.cc index 13e00b591..a0c84cc2f 100644 --- a/gen/pb-cpp/flyteidl/admin/node_execution.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/node_execution.pb.cc @@ -460,13 +460,13 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fnode_5fexecution_2eproto "\027.flyteidl.admin.UrlBlob\022.\n\013full_inputs\030" "\003 \001(\0132\031.flyteidl.core.LiteralMap\022/\n\014full" "_outputs\030\004 \001(\0132\031.flyteidl.core.LiteralMa" - "pB3Z1github.com/lyft/flyteidl/gen/pb-go/" - "flyteidl/adminb\006proto3" + "pB7Z5github.com/flyteorg/flyteidl/gen/pb" + "-go/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fnode_5fexecution_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fnode_5fexecution_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fnode_5fexecution_2eproto, - "flyteidl/admin/node_execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2fnode_5fexecution_2eproto, 2222, + "flyteidl/admin/node_execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2fnode_5fexecution_2eproto, 2226, }; void AddDescriptors_flyteidl_2fadmin_2fnode_5fexecution_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/notification.pb.cc b/gen/pb-cpp/flyteidl/admin/notification.pb.cc index 07690cbfa..1dca62cf0 100644 --- a/gen/pb-cpp/flyteidl/admin/notification.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/notification.pb.cc @@ -75,14 +75,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fnotification_2eproto[] = "\n!flyteidl/admin/notification.proto\022\016fly" "teidl.admin\"b\n\014EmailMessage\022\030\n\020recipient" "s_email\030\001 \003(\t\022\024\n\014sender_email\030\002 \001(\t\022\024\n\014s" - "ubject_line\030\003 \001(\t\022\014\n\004body\030\004 \001(\tB3Z1githu" - "b.com/lyft/flyteidl/gen/pb-go/flyteidl/a" - "dminb\006proto3" + "ubject_line\030\003 \001(\t\022\014\n\004body\030\004 \001(\tB7Z5githu" + "b.com/flyteorg/flyteidl/gen/pb-go/flytei" + "dl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fnotification_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fnotification_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fnotification_2eproto, - "flyteidl/admin/notification.proto", &assign_descriptors_table_flyteidl_2fadmin_2fnotification_2eproto, 212, + "flyteidl/admin/notification.proto", &assign_descriptors_table_flyteidl_2fadmin_2fnotification_2eproto, 216, }; void AddDescriptors_flyteidl_2fadmin_2fnotification_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/project.pb.cc b/gen/pb-cpp/flyteidl/admin/project.pb.cc index 7e95f40a8..16932307c 100644 --- a/gen/pb-cpp/flyteidl/admin/project.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/project.pb.cc @@ -264,14 +264,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fproject_2eproto[] = " \001(\0132\024.flyteidl.admin.Sort\"B\n\026ProjectReg" "isterRequest\022(\n\007project\030\001 \001(\0132\027.flyteidl" ".admin.Project\"\031\n\027ProjectRegisterRespons" - "e\"\027\n\025ProjectUpdateResponseB3Z1github.com" - "/lyft/flyteidl/gen/pb-go/flyteidl/adminb" - "\006proto3" + "e\"\027\n\025ProjectUpdateResponseB7Z5github.com" + "/flyteorg/flyteidl/gen/pb-go/flyteidl/ad" + "minb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fproject_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fproject_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fproject_2eproto, - "flyteidl/admin/project.proto", &assign_descriptors_table_flyteidl_2fadmin_2fproject_2eproto, 727, + "flyteidl/admin/project.proto", &assign_descriptors_table_flyteidl_2fadmin_2fproject_2eproto, 731, }; void AddDescriptors_flyteidl_2fadmin_2fproject_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/project_domain_attributes.pb.cc b/gen/pb-cpp/flyteidl/admin/project_domain_attributes.pb.cc index 2249301d5..4c5b9479f 100644 --- a/gen/pb-cpp/flyteidl/admin/project_domain_attributes.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/project_domain_attributes.pb.cc @@ -259,13 +259,13 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fproject_5fdomain_5fattri "\022\017\n\007project\030\001 \001(\t\022\016\n\006domain\030\002 \001(\t\0228\n\rres" "ource_type\030\003 \001(\0162!.flyteidl.admin.Matcha" "bleResource\"\'\n%ProjectDomainAttributesDe" - "leteResponseB3Z1github.com/lyft/flyteidl" - "/gen/pb-go/flyteidl/adminb\006proto3" + "leteResponseB7Z5github.com/flyteorg/flyt" + "eidl/gen/pb-go/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fproject_5fdomain_5fattributes_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fproject_5fdomain_5fattributes_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fproject_5fdomain_5fattributes_2eproto, - "flyteidl/admin/project_domain_attributes.proto", &assign_descriptors_table_flyteidl_2fadmin_2fproject_5fdomain_5fattributes_2eproto, 833, + "flyteidl/admin/project_domain_attributes.proto", &assign_descriptors_table_flyteidl_2fadmin_2fproject_5fdomain_5fattributes_2eproto, 837, }; void AddDescriptors_flyteidl_2fadmin_2fproject_5fdomain_5fattributes_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/schedule.pb.cc b/gen/pb-cpp/flyteidl/admin/schedule.pb.cc index d2f0e01b5..42e7ff2b5 100644 --- a/gen/pb-cpp/flyteidl/admin/schedule.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/schedule.pb.cc @@ -146,13 +146,13 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fschedule_2eproto[] = "2\034.flyteidl.admin.CronScheduleH\000\022\036\n\026kick" "off_time_input_arg\030\003 \001(\tB\024\n\022ScheduleExpr" "ession*.\n\rFixedRateUnit\022\n\n\006MINUTE\020\000\022\010\n\004H" - "OUR\020\001\022\007\n\003DAY\020\002B3Z1github.com/lyft/flytei" - "dl/gen/pb-go/flyteidl/adminb\006proto3" + "OUR\020\001\022\007\n\003DAY\020\002B7Z5github.com/flyteorg/fl" + "yteidl/gen/pb-go/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fschedule_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fschedule_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fschedule_2eproto, - "flyteidl/admin/schedule.proto", &assign_descriptors_table_flyteidl_2fadmin_2fschedule_2eproto, 475, + "flyteidl/admin/schedule.proto", &assign_descriptors_table_flyteidl_2fadmin_2fschedule_2eproto, 479, }; void AddDescriptors_flyteidl_2fadmin_2fschedule_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/task.pb.cc b/gen/pb-cpp/flyteidl/admin/task.pb.cc index 7a24c4162..1f1c54669 100644 --- a/gen/pb-cpp/flyteidl/admin/task.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/task.pb.cc @@ -237,13 +237,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2ftask_2eproto[] = "teidl.core.TaskTemplate\"q\n\013TaskClosure\0222" "\n\rcompiled_task\030\001 \001(\0132\033.flyteidl.core.Co" "mpiledTask\022.\n\ncreated_at\030\002 \001(\0132\032.google." - "protobuf.TimestampB3Z1github.com/lyft/fl" - "yteidl/gen/pb-go/flyteidl/adminb\006proto3" + "protobuf.TimestampB7Z5github.com/flyteor" + "g/flyteidl/gen/pb-go/flyteidl/adminb\006pro" + "to3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2ftask_2eproto = { false, InitDefaults_flyteidl_2fadmin_2ftask_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2ftask_2eproto, - "flyteidl/admin/task.proto", &assign_descriptors_table_flyteidl_2fadmin_2ftask_2eproto, 679, + "flyteidl/admin/task.proto", &assign_descriptors_table_flyteidl_2fadmin_2ftask_2eproto, 683, }; void AddDescriptors_flyteidl_2fadmin_2ftask_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/task_execution.pb.cc b/gen/pb-cpp/flyteidl/admin/task_execution.pb.cc index d7d181cf7..aae07219b 100644 --- a/gen/pb-cpp/flyteidl/admin/task_execution.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/task_execution.pb.cc @@ -316,14 +316,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2ftask_5fexecution_2eproto "teidl.admin.UrlBlob\022(\n\007outputs\030\002 \001(\0132\027.f" "lyteidl.admin.UrlBlob\022.\n\013full_inputs\030\003 \001" "(\0132\031.flyteidl.core.LiteralMap\022/\n\014full_ou" - "tputs\030\004 \001(\0132\031.flyteidl.core.LiteralMapB3" - "Z1github.com/lyft/flyteidl/gen/pb-go/fly" - "teidl/adminb\006proto3" + "tputs\030\004 \001(\0132\031.flyteidl.core.LiteralMapB7" + "Z5github.com/flyteorg/flyteidl/gen/pb-go" + "/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2ftask_5fexecution_2eproto = { false, InitDefaults_flyteidl_2fadmin_2ftask_5fexecution_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2ftask_5fexecution_2eproto, - "flyteidl/admin/task_execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2ftask_5fexecution_2eproto, 1579, + "flyteidl/admin/task_execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2ftask_5fexecution_2eproto, 1583, }; void AddDescriptors_flyteidl_2fadmin_2ftask_5fexecution_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/workflow.pb.cc b/gen/pb-cpp/flyteidl/admin/workflow.pb.cc index 69fbf3a79..77df39317 100644 --- a/gen/pb-cpp/flyteidl/admin/workflow.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/workflow.pb.cc @@ -242,13 +242,13 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fworkflow_2eproto[] = "WorkflowClosure\022A\n\021compiled_workflow\030\001 \001" "(\0132&.flyteidl.core.CompiledWorkflowClosu" "re\022.\n\ncreated_at\030\002 \001(\0132\032.google.protobuf" - ".TimestampB3Z1github.com/lyft/flyteidl/g" - "en/pb-go/flyteidl/adminb\006proto3" + ".TimestampB7Z5github.com/flyteorg/flytei" + "dl/gen/pb-go/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fworkflow_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fworkflow_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fworkflow_2eproto, - "flyteidl/admin/workflow.proto", &assign_descriptors_table_flyteidl_2fadmin_2fworkflow_2eproto, 831, + "flyteidl/admin/workflow.proto", &assign_descriptors_table_flyteidl_2fadmin_2fworkflow_2eproto, 835, }; void AddDescriptors_flyteidl_2fadmin_2fworkflow_2eproto() { diff --git a/gen/pb-cpp/flyteidl/admin/workflow_attributes.pb.cc b/gen/pb-cpp/flyteidl/admin/workflow_attributes.pb.cc index b590dd8e0..cf65d7fa9 100644 --- a/gen/pb-cpp/flyteidl/admin/workflow_attributes.pb.cc +++ b/gen/pb-cpp/flyteidl/admin/workflow_attributes.pb.cc @@ -262,13 +262,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fworkflow_5fattributes_2e "ect\030\001 \001(\t\022\016\n\006domain\030\002 \001(\t\022\020\n\010workflow\030\003 " "\001(\t\0228\n\rresource_type\030\004 \001(\0162!.flyteidl.ad" "min.MatchableResource\"\"\n WorkflowAttribu" - "tesDeleteResponseB3Z1github.com/lyft/fly" - "teidl/gen/pb-go/flyteidl/adminb\006proto3" + "tesDeleteResponseB7Z5github.com/flyteorg" + "/flyteidl/gen/pb-go/flyteidl/adminb\006prot" + "o3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fworkflow_5fattributes_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fworkflow_5fattributes_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fworkflow_5fattributes_2eproto, - "flyteidl/admin/workflow_attributes.proto", &assign_descriptors_table_flyteidl_2fadmin_2fworkflow_5fattributes_2eproto, 838, + "flyteidl/admin/workflow_attributes.proto", &assign_descriptors_table_flyteidl_2fadmin_2fworkflow_5fattributes_2eproto, 842, }; void AddDescriptors_flyteidl_2fadmin_2fworkflow_5fattributes_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/catalog.pb.cc b/gen/pb-cpp/flyteidl/core/catalog.pb.cc index d9463362b..501138565 100644 --- a/gen/pb-cpp/flyteidl/core/catalog.pb.cc +++ b/gen/pb-cpp/flyteidl/core/catalog.pb.cc @@ -119,13 +119,13 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fcatalog_2eproto[] = "ogCacheStatus\022\022\n\016CACHE_DISABLED\020\000\022\016\n\nCAC" "HE_MISS\020\001\022\r\n\tCACHE_HIT\020\002\022\023\n\017CACHE_POPULA" "TED\020\003\022\030\n\024CACHE_LOOKUP_FAILURE\020\004\022\025\n\021CACHE" - "_PUT_FAILURE\020\005B2Z0github.com/lyft/flytei" - "dl/gen/pb-go/flyteidl/coreb\006proto3" + "_PUT_FAILURE\020\005B6Z4github.com/flyteorg/fl" + "yteidl/gen/pb-go/flyteidl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2fcatalog_2eproto = { false, InitDefaults_flyteidl_2fcore_2fcatalog_2eproto, descriptor_table_protodef_flyteidl_2fcore_2fcatalog_2eproto, - "flyteidl/core/catalog.proto", &assign_descriptors_table_flyteidl_2fcore_2fcatalog_2eproto, 554, + "flyteidl/core/catalog.proto", &assign_descriptors_table_flyteidl_2fcore_2fcatalog_2eproto, 558, }; void AddDescriptors_flyteidl_2fcore_2fcatalog_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/compiler.pb.cc b/gen/pb-cpp/flyteidl/core/compiler.pb.cc index d08e8e367..42559f6a3 100644 --- a/gen/pb-cpp/flyteidl/core/compiler.pb.cc +++ b/gen/pb-cpp/flyteidl/core/compiler.pb.cc @@ -276,13 +276,13 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fcompiler_2eproto[] = "yteidl.core.CompiledWorkflow\0226\n\rsub_work" "flows\030\002 \003(\0132\037.flyteidl.core.CompiledWork" "flow\022*\n\005tasks\030\003 \003(\0132\033.flyteidl.core.Comp" - "iledTaskB2Z0github.com/lyft/flyteidl/gen" - "/pb-go/flyteidl/coreb\006proto3" + "iledTaskB6Z4github.com/flyteorg/flyteidl" + "/gen/pb-go/flyteidl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2fcompiler_2eproto = { false, InitDefaults_flyteidl_2fcore_2fcompiler_2eproto, descriptor_table_protodef_flyteidl_2fcore_2fcompiler_2eproto, - "flyteidl/core/compiler.proto", &assign_descriptors_table_flyteidl_2fcore_2fcompiler_2eproto, 868, + "flyteidl/core/compiler.proto", &assign_descriptors_table_flyteidl_2fcore_2fcompiler_2eproto, 872, }; void AddDescriptors_flyteidl_2fcore_2fcompiler_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/condition.pb.cc b/gen/pb-cpp/flyteidl/core/condition.pb.cc index 0cd37f6a6..c78159b00 100644 --- a/gen/pb-cpp/flyteidl/core/condition.pb.cc +++ b/gen/pb-cpp/flyteidl/core/condition.pb.cc @@ -180,13 +180,13 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fcondition_2eproto[] = "l.core.BooleanExpression\022:\n\020right_expres" "sion\030\003 \001(\0132 .flyteidl.core.BooleanExpres" "sion\"\"\n\017LogicalOperator\022\007\n\003AND\020\000\022\006\n\002OR\020\001" - "B2Z0github.com/lyft/flyteidl/gen/pb-go/f" - "lyteidl/coreb\006proto3" + "B6Z4github.com/flyteorg/flyteidl/gen/pb-" + "go/flyteidl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2fcondition_2eproto = { false, InitDefaults_flyteidl_2fcore_2fcondition_2eproto, descriptor_table_protodef_flyteidl_2fcore_2fcondition_2eproto, - "flyteidl/core/condition.proto", &assign_descriptors_table_flyteidl_2fcore_2fcondition_2eproto, 860, + "flyteidl/core/condition.proto", &assign_descriptors_table_flyteidl_2fcore_2fcondition_2eproto, 864, }; void AddDescriptors_flyteidl_2fcore_2fcondition_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/dynamic_job.pb.cc b/gen/pb-cpp/flyteidl/core/dynamic_job.pb.cc index 436ac1405..62594f315 100644 --- a/gen/pb-cpp/flyteidl/core/dynamic_job.pb.cc +++ b/gen/pb-cpp/flyteidl/core/dynamic_job.pb.cc @@ -89,14 +89,14 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fdynamic_5fjob_2eproto[] = "ccesses\030\002 \001(\003\022\'\n\007outputs\030\003 \003(\0132\026.flyteid" "l.core.Binding\022*\n\005tasks\030\004 \003(\0132\033.flyteidl" ".core.TaskTemplate\0225\n\014subworkflows\030\005 \003(\013" - "2\037.flyteidl.core.WorkflowTemplateB2Z0git" - "hub.com/lyft/flyteidl/gen/pb-go/flyteidl" - "/coreb\006proto3" + "2\037.flyteidl.core.WorkflowTemplateB6Z4git" + "hub.com/flyteorg/flyteidl/gen/pb-go/flyt" + "eidl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2fdynamic_5fjob_2eproto = { false, InitDefaults_flyteidl_2fcore_2fdynamic_5fjob_2eproto, descriptor_table_protodef_flyteidl_2fcore_2fdynamic_5fjob_2eproto, - "flyteidl/core/dynamic_job.proto", &assign_descriptors_table_flyteidl_2fcore_2fdynamic_5fjob_2eproto, 413, + "flyteidl/core/dynamic_job.proto", &assign_descriptors_table_flyteidl_2fcore_2fdynamic_5fjob_2eproto, 417, }; void AddDescriptors_flyteidl_2fcore_2fdynamic_5fjob_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/errors.pb.cc b/gen/pb-cpp/flyteidl/core/errors.pb.cc index 51b8f2e5b..cc160ff10 100644 --- a/gen/pb-cpp/flyteidl/core/errors.pb.cc +++ b/gen/pb-cpp/flyteidl/core/errors.pb.cc @@ -109,13 +109,14 @@ const char descriptor_table_protodef_flyteidl_2fcore_2ferrors_2eproto[] = "l.core.ExecutionError.ErrorKind\",\n\004Kind\022" "\023\n\017NON_RECOVERABLE\020\000\022\017\n\013RECOVERABLE\020\001\"=\n" "\rErrorDocument\022,\n\005error\030\001 \001(\0132\035.flyteidl" - ".core.ContainerErrorB2Z0github.com/lyft/" - "flyteidl/gen/pb-go/flyteidl/coreb\006proto3" + ".core.ContainerErrorB6Z4github.com/flyte" + "org/flyteidl/gen/pb-go/flyteidl/coreb\006pr" + "oto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2ferrors_2eproto = { false, InitDefaults_flyteidl_2fcore_2ferrors_2eproto, descriptor_table_protodef_flyteidl_2fcore_2ferrors_2eproto, - "flyteidl/core/errors.proto", &assign_descriptors_table_flyteidl_2fcore_2ferrors_2eproto, 400, + "flyteidl/core/errors.proto", &assign_descriptors_table_flyteidl_2fcore_2ferrors_2eproto, 404, }; void AddDescriptors_flyteidl_2fcore_2ferrors_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/execution.pb.cc b/gen/pb-cpp/flyteidl/core/execution.pb.cc index 0c94cf9e0..05604f11b 100644 --- a/gen/pb-cpp/flyteidl/core/execution.pb.cc +++ b/gen/pb-cpp/flyteidl/core/execution.pb.cc @@ -272,13 +272,13 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fexecution_2eproto[] = "ce.TierH\000\0223\n\004spec\030\002 \001(\0132#.flyteidl.core." "QualityOfServiceSpecH\000\"4\n\004Tier\022\r\n\tUNDEFI" "NED\020\000\022\010\n\004HIGH\020\001\022\n\n\006MEDIUM\020\002\022\007\n\003LOW\020\003B\r\n\013" - "designationB2Z0github.com/lyft/flyteidl/" - "gen/pb-go/flyteidl/coreb\006proto3" + "designationB6Z4github.com/flyteorg/flyte" + "idl/gen/pb-go/flyteidl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2fexecution_2eproto = { false, InitDefaults_flyteidl_2fcore_2fexecution_2eproto, descriptor_table_protodef_flyteidl_2fcore_2fexecution_2eproto, - "flyteidl/core/execution.proto", &assign_descriptors_table_flyteidl_2fcore_2fexecution_2eproto, 1231, + "flyteidl/core/execution.proto", &assign_descriptors_table_flyteidl_2fcore_2fexecution_2eproto, 1235, }; void AddDescriptors_flyteidl_2fcore_2fexecution_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/identifier.pb.cc b/gen/pb-cpp/flyteidl/core/identifier.pb.cc index 0903a399c..650372fdb 100644 --- a/gen/pb-cpp/flyteidl/core/identifier.pb.cc +++ b/gen/pb-cpp/flyteidl/core/identifier.pb.cc @@ -180,13 +180,13 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fidentifier_2eproto[] = "e.NodeExecutionIdentifier\022\025\n\rretry_attem" "pt\030\003 \001(\r*U\n\014ResourceType\022\017\n\013UNSPECIFIED\020" "\000\022\010\n\004TASK\020\001\022\014\n\010WORKFLOW\020\002\022\017\n\013LAUNCH_PLAN" - "\020\003\022\013\n\007DATASET\020\004B2Z0github.com/lyft/flyte" - "idl/gen/pb-go/flyteidl/coreb\006proto3" + "\020\003\022\013\n\007DATASET\020\004B6Z4github.com/flyteorg/f" + "lyteidl/gen/pb-go/flyteidl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2fidentifier_2eproto = { false, InitDefaults_flyteidl_2fcore_2fidentifier_2eproto, descriptor_table_protodef_flyteidl_2fcore_2fidentifier_2eproto, - "flyteidl/core/identifier.proto", &assign_descriptors_table_flyteidl_2fcore_2fidentifier_2eproto, 675, + "flyteidl/core/identifier.proto", &assign_descriptors_table_flyteidl_2fcore_2fidentifier_2eproto, 679, }; void AddDescriptors_flyteidl_2fcore_2fidentifier_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/interface.pb.cc b/gen/pb-cpp/flyteidl/core/interface.pb.cc index ab2f0704e..0cdd945e4 100644 --- a/gen/pb-cpp/flyteidl/core/interface.pb.cc +++ b/gen/pb-cpp/flyteidl/core/interface.pb.cc @@ -275,13 +275,13 @@ const char descriptor_table_protodef_flyteidl_2fcore_2finterface_2eproto[] = "\0132+.flyteidl.core.ParameterMap.Parameter" "sEntry\032K\n\017ParametersEntry\022\013\n\003key\030\001 \001(\t\022\'" "\n\005value\030\002 \001(\0132\030.flyteidl.core.Parameter:" - "\0028\001B2Z0github.com/lyft/flyteidl/gen/pb-g" - "o/flyteidl/coreb\006proto3" + "\0028\001B6Z4github.com/flyteorg/flyteidl/gen/" + "pb-go/flyteidl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2finterface_2eproto = { false, InitDefaults_flyteidl_2fcore_2finterface_2eproto, descriptor_table_protodef_flyteidl_2fcore_2finterface_2eproto, - "flyteidl/core/interface.proto", &assign_descriptors_table_flyteidl_2fcore_2finterface_2eproto, 783, + "flyteidl/core/interface.proto", &assign_descriptors_table_flyteidl_2fcore_2finterface_2eproto, 787, }; void AddDescriptors_flyteidl_2fcore_2finterface_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/literals.pb.cc b/gen/pb-cpp/flyteidl/core/literals.pb.cc index 4cea80a57..fc7326909 100644 --- a/gen/pb-cpp/flyteidl/core/literals.pb.cc +++ b/gen/pb-cpp/flyteidl/core/literals.pb.cc @@ -601,13 +601,13 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fliterals_2eproto[] = "\t\022+\n\007binding\030\002 \001(\0132\032.flyteidl.core.Bindi" "ngData\"*\n\014KeyValuePair\022\013\n\003key\030\001 \001(\t\022\r\n\005v" "alue\030\002 \001(\t\" \n\rRetryStrategy\022\017\n\007retries\030\005" - " \001(\rB2Z0github.com/lyft/flyteidl/gen/pb-" - "go/flyteidl/coreb\006proto3" + " \001(\rB6Z4github.com/flyteorg/flyteidl/gen" + "/pb-go/flyteidl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2fliterals_2eproto = { false, InitDefaults_flyteidl_2fcore_2fliterals_2eproto, descriptor_table_protodef_flyteidl_2fcore_2fliterals_2eproto, - "flyteidl/core/literals.proto", &assign_descriptors_table_flyteidl_2fcore_2fliterals_2eproto, 1944, + "flyteidl/core/literals.proto", &assign_descriptors_table_flyteidl_2fcore_2fliterals_2eproto, 1948, }; void AddDescriptors_flyteidl_2fcore_2fliterals_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/tasks.pb.cc b/gen/pb-cpp/flyteidl/core/tasks.pb.cc index 8f4f27452..ec2473490 100644 --- a/gen/pb-cpp/flyteidl/core/tasks.pb.cc +++ b/gen/pb-cpp/flyteidl/core/tasks.pb.cc @@ -397,13 +397,13 @@ const char descriptor_table_protodef_flyteidl_2fcore_2ftasks_2eproto[] = "fig.LiteralMapFormat\022.\n\013io_strategy\030\005 \001(" "\0132\031.flyteidl.core.IOStrategy\"1\n\020LiteralM" "apFormat\022\010\n\004JSON\020\000\022\010\n\004YAML\020\001\022\t\n\005PROTO\020\002B" - "2Z0github.com/lyft/flyteidl/gen/pb-go/fl" - "yteidl/coreb\006proto3" + "6Z4github.com/flyteorg/flyteidl/gen/pb-g" + "o/flyteidl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2ftasks_2eproto = { false, InitDefaults_flyteidl_2fcore_2ftasks_2eproto, descriptor_table_protodef_flyteidl_2fcore_2ftasks_2eproto, - "flyteidl/core/tasks.proto", &assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto, 2139, + "flyteidl/core/tasks.proto", &assign_descriptors_table_flyteidl_2fcore_2ftasks_2eproto, 2143, }; void AddDescriptors_flyteidl_2fcore_2ftasks_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/types.pb.cc b/gen/pb-cpp/flyteidl/core/types.pb.cc index 41d9c0693..3ae704fd4 100644 --- a/gen/pb-cpp/flyteidl/core/types.pb.cc +++ b/gen/pb-cpp/flyteidl/core/types.pb.cc @@ -253,14 +253,14 @@ const char descriptor_table_protodef_flyteidl_2fcore_2ftypes_2eproto[] = "\n\007message\030\002 \001(\t*\206\001\n\nSimpleType\022\010\n\004NONE\020\000" "\022\013\n\007INTEGER\020\001\022\t\n\005FLOAT\020\002\022\n\n\006STRING\020\003\022\013\n\007" "BOOLEAN\020\004\022\014\n\010DATETIME\020\005\022\014\n\010DURATION\020\006\022\n\n" - "\006BINARY\020\007\022\t\n\005ERROR\020\010\022\n\n\006STRUCT\020\tB2Z0gith" - "ub.com/lyft/flyteidl/gen/pb-go/flyteidl/" - "coreb\006proto3" + "\006BINARY\020\007\022\t\n\005ERROR\020\010\022\n\n\006STRUCT\020\tB6Z4gith" + "ub.com/flyteorg/flyteidl/gen/pb-go/flyte" + "idl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2ftypes_2eproto = { false, InitDefaults_flyteidl_2fcore_2ftypes_2eproto, descriptor_table_protodef_flyteidl_2fcore_2ftypes_2eproto, - "flyteidl/core/types.proto", &assign_descriptors_table_flyteidl_2fcore_2ftypes_2eproto, 1092, + "flyteidl/core/types.proto", &assign_descriptors_table_flyteidl_2fcore_2ftypes_2eproto, 1096, }; void AddDescriptors_flyteidl_2fcore_2ftypes_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/workflow.pb.cc b/gen/pb-cpp/flyteidl/core/workflow.pb.cc index 66dd29313..fdab09978 100644 --- a/gen/pb-cpp/flyteidl/core/workflow.pb.cc +++ b/gen/pb-cpp/flyteidl/core/workflow.pb.cc @@ -432,13 +432,13 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fworkflow_2eproto[] = "core.Binding\022)\n\014failure_node\030\006 \001(\0132\023.fly" "teidl.core.Node\022B\n\021metadata_defaults\030\007 \001" "(\0132\'.flyteidl.core.WorkflowMetadataDefau" - "ltsB2Z0github.com/lyft/flyteidl/gen/pb-g" - "o/flyteidl/coreb\006proto3" + "ltsB6Z4github.com/flyteorg/flyteidl/gen/" + "pb-go/flyteidl/coreb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2fworkflow_2eproto = { false, InitDefaults_flyteidl_2fcore_2fworkflow_2eproto, descriptor_table_protodef_flyteidl_2fcore_2fworkflow_2eproto, - "flyteidl/core/workflow.proto", &assign_descriptors_table_flyteidl_2fcore_2fworkflow_2eproto, 2063, + "flyteidl/core/workflow.proto", &assign_descriptors_table_flyteidl_2fcore_2fworkflow_2eproto, 2067, }; void AddDescriptors_flyteidl_2fcore_2fworkflow_2eproto() { diff --git a/gen/pb-cpp/flyteidl/core/workflow_closure.pb.cc b/gen/pb-cpp/flyteidl/core/workflow_closure.pb.cc index a1c855aae..28e1e95ae 100644 --- a/gen/pb-cpp/flyteidl/core/workflow_closure.pb.cc +++ b/gen/pb-cpp/flyteidl/core/workflow_closure.pb.cc @@ -79,14 +79,14 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fworkflow_5fclosure_2eprot "oto\032\031flyteidl/core/tasks.proto\"p\n\017Workfl" "owClosure\0221\n\010workflow\030\001 \001(\0132\037.flyteidl.c" "ore.WorkflowTemplate\022*\n\005tasks\030\002 \003(\0132\033.fl" - "yteidl.core.TaskTemplateB2Z0github.com/l" - "yft/flyteidl/gen/pb-go/flyteidl/coreb\006pr" - "oto3" + "yteidl.core.TaskTemplateB6Z4github.com/f" + "lyteorg/flyteidl/gen/pb-go/flyteidl/core" + "b\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fcore_2fworkflow_5fclosure_2eproto = { false, InitDefaults_flyteidl_2fcore_2fworkflow_5fclosure_2eproto, descriptor_table_protodef_flyteidl_2fcore_2fworkflow_5fclosure_2eproto, - "flyteidl/core/workflow_closure.proto", &assign_descriptors_table_flyteidl_2fcore_2fworkflow_5fclosure_2eproto, 284, + "flyteidl/core/workflow_closure.proto", &assign_descriptors_table_flyteidl_2fcore_2fworkflow_5fclosure_2eproto, 288, }; void AddDescriptors_flyteidl_2fcore_2fworkflow_5fclosure_2eproto() { diff --git a/gen/pb-cpp/flyteidl/event/event.pb.cc b/gen/pb-cpp/flyteidl/event/event.pb.cc index 1a54fb951..ab957e713 100644 --- a/gen/pb-cpp/flyteidl/event/event.pb.cc +++ b/gen/pb-cpp/flyteidl/event/event.pb.cc @@ -390,14 +390,14 @@ const char descriptor_table_protodef_flyteidl_2fevent_2fevent_2eproto[] = "\"\225\001\n\025TaskExecutionMetadata\022K\n\016instance_c" "lass\030\020 \001(\01623.flyteidl.event.TaskExecutio" "nMetadata.InstanceClass\"/\n\rInstanceClass" - "\022\013\n\007DEFAULT\020\000\022\021\n\rINTERRUPTIBLE\020\001B3Z1gith" - "ub.com/lyft/flyteidl/gen/pb-go/flyteidl/" - "eventb\006proto3" + "\022\013\n\007DEFAULT\020\000\022\021\n\rINTERRUPTIBLE\020\001B7Z5gith" + "ub.com/flyteorg/flyteidl/gen/pb-go/flyte" + "idl/eventb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fevent_2fevent_2eproto = { false, InitDefaults_flyteidl_2fevent_2fevent_2eproto, descriptor_table_protodef_flyteidl_2fevent_2fevent_2eproto, - "flyteidl/event/event.proto", &assign_descriptors_table_flyteidl_2fevent_2fevent_2eproto, 2293, + "flyteidl/event/event.proto", &assign_descriptors_table_flyteidl_2fevent_2fevent_2eproto, 2297, }; void AddDescriptors_flyteidl_2fevent_2fevent_2eproto() { diff --git a/gen/pb-cpp/flyteidl/plugins/array_job.pb.cc b/gen/pb-cpp/flyteidl/plugins/array_job.pb.cc index ccb0619ad..47ce74ac7 100644 --- a/gen/pb-cpp/flyteidl/plugins/array_job.pb.cc +++ b/gen/pb-cpp/flyteidl/plugins/array_job.pb.cc @@ -79,13 +79,13 @@ const char descriptor_table_protodef_flyteidl_2fplugins_2farray_5fjob_2eproto[] "eidl.plugins\"w\n\010ArrayJob\022\023\n\013parallelism\030" "\001 \001(\003\022\014\n\004size\030\002 \001(\003\022\027\n\rmin_successes\030\003 \001" "(\003H\000\022\033\n\021min_success_ratio\030\004 \001(\002H\000B\022\n\020suc" - "cess_criteriaB5Z3github.com/lyft/flyteid" - "l/gen/pb-go/flyteidl/pluginsb\006proto3" + "cess_criteriaB9Z7github.com/flyteorg/fly" + "teidl/gen/pb-go/flyteidl/pluginsb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fplugins_2farray_5fjob_2eproto = { false, InitDefaults_flyteidl_2fplugins_2farray_5fjob_2eproto, descriptor_table_protodef_flyteidl_2fplugins_2farray_5fjob_2eproto, - "flyteidl/plugins/array_job.proto", &assign_descriptors_table_flyteidl_2fplugins_2farray_5fjob_2eproto, 236, + "flyteidl/plugins/array_job.proto", &assign_descriptors_table_flyteidl_2fplugins_2farray_5fjob_2eproto, 240, }; void AddDescriptors_flyteidl_2fplugins_2farray_5fjob_2eproto() { diff --git a/gen/pb-cpp/flyteidl/plugins/presto.pb.cc b/gen/pb-cpp/flyteidl/plugins/presto.pb.cc index 529929701..c264b0fb6 100644 --- a/gen/pb-cpp/flyteidl/plugins/presto.pb.cc +++ b/gen/pb-cpp/flyteidl/plugins/presto.pb.cc @@ -76,13 +76,13 @@ const char descriptor_table_protodef_flyteidl_2fplugins_2fpresto_2eproto[] = "l.plugins\032\031flyteidl/core/tasks.proto\"X\n\013" "PrestoQuery\022\025\n\rrouting_group\030\001 \001(\t\022\017\n\007ca" "talog\030\002 \001(\t\022\016\n\006schema\030\003 \001(\t\022\021\n\tstatement" - "\030\004 \001(\tB5Z3github.com/lyft/flyteidl/gen/p" - "b-go/flyteidl/pluginsb\006proto3" + "\030\004 \001(\tB9Z7github.com/flyteorg/flyteidl/g" + "en/pb-go/flyteidl/pluginsb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fplugins_2fpresto_2eproto = { false, InitDefaults_flyteidl_2fplugins_2fpresto_2eproto, descriptor_table_protodef_flyteidl_2fplugins_2fpresto_2eproto, - "flyteidl/plugins/presto.proto", &assign_descriptors_table_flyteidl_2fplugins_2fpresto_2eproto, 229, + "flyteidl/plugins/presto.proto", &assign_descriptors_table_flyteidl_2fplugins_2fpresto_2eproto, 233, }; void AddDescriptors_flyteidl_2fplugins_2fpresto_2eproto() { diff --git a/gen/pb-cpp/flyteidl/plugins/pytorch.pb.cc b/gen/pb-cpp/flyteidl/plugins/pytorch.pb.cc index 972151726..9b1951b38 100644 --- a/gen/pb-cpp/flyteidl/plugins/pytorch.pb.cc +++ b/gen/pb-cpp/flyteidl/plugins/pytorch.pb.cc @@ -71,14 +71,14 @@ ::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_fl const char descriptor_table_protodef_flyteidl_2fplugins_2fpytorch_2eproto[] = "\n\036flyteidl/plugins/pytorch.proto\022\020flytei" "dl.plugins\"1\n\036DistributedPyTorchTraining" - "Task\022\017\n\007workers\030\001 \001(\005B5Z3github.com/lyft" - "/flyteidl/gen/pb-go/flyteidl/pluginsb\006pr" - "oto3" + "Task\022\017\n\007workers\030\001 \001(\005B9Z7github.com/flyt" + "eorg/flyteidl/gen/pb-go/flyteidl/plugins" + "b\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fplugins_2fpytorch_2eproto = { false, InitDefaults_flyteidl_2fplugins_2fpytorch_2eproto, descriptor_table_protodef_flyteidl_2fplugins_2fpytorch_2eproto, - "flyteidl/plugins/pytorch.proto", &assign_descriptors_table_flyteidl_2fplugins_2fpytorch_2eproto, 164, + "flyteidl/plugins/pytorch.proto", &assign_descriptors_table_flyteidl_2fplugins_2fpytorch_2eproto, 168, }; void AddDescriptors_flyteidl_2fplugins_2fpytorch_2eproto() { diff --git a/gen/pb-cpp/flyteidl/plugins/qubole.pb.cc b/gen/pb-cpp/flyteidl/plugins/qubole.pb.cc index 292c35de2..9c9fd5710 100644 --- a/gen/pb-cpp/flyteidl/plugins/qubole.pb.cc +++ b/gen/pb-cpp/flyteidl/plugins/qubole.pb.cc @@ -142,14 +142,14 @@ const char descriptor_table_protodef_flyteidl_2fplugins_2fqubole_2eproto[] = "ter_label\030\001 \001(\t\022C\n\020query_collection\030\002 \001(" "\0132%.flyteidl.plugins.HiveQueryCollection" "B\002\030\001\022\014\n\004tags\030\003 \003(\t\022*\n\005query\030\004 \001(\0132\033.flyt" - "eidl.plugins.HiveQueryB5Z3github.com/lyf" - "t/flyteidl/gen/pb-go/flyteidl/pluginsb\006p" - "roto3" + "eidl.plugins.HiveQueryB9Z7github.com/fly" + "teorg/flyteidl/gen/pb-go/flyteidl/plugin" + "sb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fplugins_2fqubole_2eproto = { false, InitDefaults_flyteidl_2fplugins_2fqubole_2eproto, descriptor_table_protodef_flyteidl_2fplugins_2fqubole_2eproto, - "flyteidl/plugins/qubole.proto", &assign_descriptors_table_flyteidl_2fplugins_2fqubole_2eproto, 445, + "flyteidl/plugins/qubole.proto", &assign_descriptors_table_flyteidl_2fplugins_2fqubole_2eproto, 449, }; void AddDescriptors_flyteidl_2fplugins_2fqubole_2eproto() { diff --git a/gen/pb-cpp/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.pb.cc b/gen/pb-cpp/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.pb.cc index a1a5f3252..3f883c119 100644 --- a/gen/pb-cpp/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.pb.cc +++ b/gen/pb-cpp/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.pb.cc @@ -242,13 +242,13 @@ const char descriptor_table_protodef_flyteidl_2fplugins_2fsagemaker_2fhyperparam "arameterTuningObjective\022h\n training_job_" "early_stopping_type\030\004 \001(\0162>.flyteidl.plu" "gins.sagemaker.TrainingJobEarlyStoppingT" - "ype.ValueB5Z3github.com/lyft/flyteidl/ge" - "n/pb-go/flyteidl/pluginsb\006proto3" + "ype.ValueB9Z7github.com/flyteorg/flyteid" + "l/gen/pb-go/flyteidl/pluginsb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fplugins_2fsagemaker_2fhyperparameter_5ftuning_5fjob_2eproto = { false, InitDefaults_flyteidl_2fplugins_2fsagemaker_2fhyperparameter_5ftuning_5fjob_2eproto, descriptor_table_protodef_flyteidl_2fplugins_2fsagemaker_2fhyperparameter_5ftuning_5fjob_2eproto, - "flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto", &assign_descriptors_table_flyteidl_2fplugins_2fsagemaker_2fhyperparameter_5ftuning_5fjob_2eproto, 1152, + "flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto", &assign_descriptors_table_flyteidl_2fplugins_2fsagemaker_2fhyperparameter_5ftuning_5fjob_2eproto, 1156, }; void AddDescriptors_flyteidl_2fplugins_2fsagemaker_2fhyperparameter_5ftuning_5fjob_2eproto() { diff --git a/gen/pb-cpp/flyteidl/plugins/sagemaker/parameter_ranges.pb.cc b/gen/pb-cpp/flyteidl/plugins/sagemaker/parameter_ranges.pb.cc index ee2ff5646..aa8111473 100644 --- a/gen/pb-cpp/flyteidl/plugins/sagemaker/parameter_ranges.pb.cc +++ b/gen/pb-cpp/flyteidl/plugins/sagemaker/parameter_ranges.pb.cc @@ -280,14 +280,14 @@ const char descriptor_table_protodef_flyteidl_2fplugins_2fsagemaker_2fparameter_ ".ParameterRanges.ParameterRangeMapEntry\032" "i\n\026ParameterRangeMapEntry\022\013\n\003key\030\001 \001(\t\022>" "\n\005value\030\002 \001(\0132/.flyteidl.plugins.sagemak" - "er.ParameterRangeOneOf:\0028\001B5Z3github.com" - "/lyft/flyteidl/gen/pb-go/flyteidl/plugin" - "sb\006proto3" + "er.ParameterRangeOneOf:\0028\001B9Z7github.com" + "/flyteorg/flyteidl/gen/pb-go/flyteidl/pl" + "uginsb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fplugins_2fsagemaker_2fparameter_5franges_2eproto = { false, InitDefaults_flyteidl_2fplugins_2fsagemaker_2fparameter_5franges_2eproto, descriptor_table_protodef_flyteidl_2fplugins_2fsagemaker_2fparameter_5franges_2eproto, - "flyteidl/plugins/sagemaker/parameter_ranges.proto", &assign_descriptors_table_flyteidl_2fplugins_2fsagemaker_2fparameter_5franges_2eproto, 1129, + "flyteidl/plugins/sagemaker/parameter_ranges.proto", &assign_descriptors_table_flyteidl_2fplugins_2fsagemaker_2fparameter_5franges_2eproto, 1133, }; void AddDescriptors_flyteidl_2fplugins_2fsagemaker_2fparameter_5franges_2eproto() { diff --git a/gen/pb-cpp/flyteidl/plugins/sagemaker/training_job.pb.cc b/gen/pb-cpp/flyteidl/plugins/sagemaker/training_job.pb.cc index 449f9dac0..2c23f51ed 100644 --- a/gen/pb-cpp/flyteidl/plugins/sagemaker/training_job.pb.cc +++ b/gen/pb-cpp/flyteidl/plugins/sagemaker/training_job.pb.cc @@ -298,13 +298,13 @@ const char descriptor_table_protodef_flyteidl_2fplugins_2fsagemaker_2ftraining_5 "ker.AlgorithmSpecification\022[\n\034training_j" "ob_resource_config\030\002 \001(\01325.flyteidl.plug" "ins.sagemaker.TrainingJobResourceConfigB" - "5Z3github.com/lyft/flyteidl/gen/pb-go/fl" - "yteidl/pluginsb\006proto3" + "9Z7github.com/flyteorg/flyteidl/gen/pb-g" + "o/flyteidl/pluginsb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fplugins_2fsagemaker_2ftraining_5fjob_2eproto = { false, InitDefaults_flyteidl_2fplugins_2fsagemaker_2ftraining_5fjob_2eproto, descriptor_table_protodef_flyteidl_2fplugins_2fsagemaker_2ftraining_5fjob_2eproto, - "flyteidl/plugins/sagemaker/training_job.proto", &assign_descriptors_table_flyteidl_2fplugins_2fsagemaker_2ftraining_5fjob_2eproto, 1142, + "flyteidl/plugins/sagemaker/training_job.proto", &assign_descriptors_table_flyteidl_2fplugins_2fsagemaker_2ftraining_5fjob_2eproto, 1146, }; void AddDescriptors_flyteidl_2fplugins_2fsagemaker_2ftraining_5fjob_2eproto() { diff --git a/gen/pb-cpp/flyteidl/plugins/sidecar.pb.cc b/gen/pb-cpp/flyteidl/plugins/sidecar.pb.cc index 1ed35df38..55119fb6f 100644 --- a/gen/pb-cpp/flyteidl/plugins/sidecar.pb.cc +++ b/gen/pb-cpp/flyteidl/plugins/sidecar.pb.cc @@ -76,14 +76,14 @@ const char descriptor_table_protodef_flyteidl_2fplugins_2fsidecar_2eproto[] = "dl.plugins\032\"k8s.io/api/core/v1/generated" ".proto\"[\n\nSidecarJob\022-\n\010pod_spec\030\001 \001(\0132\033" ".k8s.io.api.core.v1.PodSpec\022\036\n\026primary_c" - "ontainer_name\030\002 \001(\tB5Z3github.com/lyft/f" - "lyteidl/gen/pb-go/flyteidl/pluginsb\006prot" - "o3" + "ontainer_name\030\002 \001(\tB9Z7github.com/flyteo" + "rg/flyteidl/gen/pb-go/flyteidl/pluginsb\006" + "proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fplugins_2fsidecar_2eproto = { false, InitDefaults_flyteidl_2fplugins_2fsidecar_2eproto, descriptor_table_protodef_flyteidl_2fplugins_2fsidecar_2eproto, - "flyteidl/plugins/sidecar.proto", &assign_descriptors_table_flyteidl_2fplugins_2fsidecar_2eproto, 242, + "flyteidl/plugins/sidecar.proto", &assign_descriptors_table_flyteidl_2fplugins_2fsidecar_2eproto, 246, }; void AddDescriptors_flyteidl_2fplugins_2fsidecar_2eproto() { diff --git a/gen/pb-cpp/flyteidl/plugins/spark.pb.cc b/gen/pb-cpp/flyteidl/plugins/spark.pb.cc index 23610d3c3..c96c7a264 100644 --- a/gen/pb-cpp/flyteidl/plugins/spark.pb.cc +++ b/gen/pb-cpp/flyteidl/plugins/spark.pb.cc @@ -174,13 +174,13 @@ const char descriptor_table_protodef_flyteidl_2fplugins_2fspark_2eproto[] = "ConfEntry\022\024\n\014executorPath\030\006 \001(\t\0320\n\016Spark" "ConfEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028" "\001\0321\n\017HadoopConfEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" - "ue\030\002 \001(\t:\0028\001B5Z3github.com/lyft/flyteidl" - "/gen/pb-go/flyteidl/pluginsb\006proto3" + "ue\030\002 \001(\t:\0028\001B9Z7github.com/flyteorg/flyt" + "eidl/gen/pb-go/flyteidl/pluginsb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fplugins_2fspark_2eproto = { false, InitDefaults_flyteidl_2fplugins_2fspark_2eproto, descriptor_table_protodef_flyteidl_2fplugins_2fspark_2eproto, - "flyteidl/plugins/spark.proto", &assign_descriptors_table_flyteidl_2fplugins_2fspark_2eproto, 555, + "flyteidl/plugins/spark.proto", &assign_descriptors_table_flyteidl_2fplugins_2fspark_2eproto, 559, }; void AddDescriptors_flyteidl_2fplugins_2fspark_2eproto() { diff --git a/gen/pb-cpp/flyteidl/plugins/tensorflow.pb.cc b/gen/pb-cpp/flyteidl/plugins/tensorflow.pb.cc index 702225b61..9dae11c1a 100644 --- a/gen/pb-cpp/flyteidl/plugins/tensorflow.pb.cc +++ b/gen/pb-cpp/flyteidl/plugins/tensorflow.pb.cc @@ -74,14 +74,14 @@ const char descriptor_table_protodef_flyteidl_2fplugins_2ftensorflow_2eproto[] = "\n!flyteidl/plugins/tensorflow.proto\022\020fly" "teidl.plugins\"a\n!DistributedTensorflowTr" "ainingTask\022\017\n\007workers\030\001 \001(\005\022\023\n\013ps_replic" - "as\030\002 \001(\005\022\026\n\016chief_replicas\030\003 \001(\005B5Z3gith" - "ub.com/lyft/flyteidl/gen/pb-go/flyteidl/" - "pluginsb\006proto3" + "as\030\002 \001(\005\022\026\n\016chief_replicas\030\003 \001(\005B9Z7gith" + "ub.com/flyteorg/flyteidl/gen/pb-go/flyte" + "idl/pluginsb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fplugins_2ftensorflow_2eproto = { false, InitDefaults_flyteidl_2fplugins_2ftensorflow_2eproto, descriptor_table_protodef_flyteidl_2fplugins_2ftensorflow_2eproto, - "flyteidl/plugins/tensorflow.proto", &assign_descriptors_table_flyteidl_2fplugins_2ftensorflow_2eproto, 215, + "flyteidl/plugins/tensorflow.proto", &assign_descriptors_table_flyteidl_2fplugins_2ftensorflow_2eproto, 219, }; void AddDescriptors_flyteidl_2fplugins_2ftensorflow_2eproto() { diff --git a/gen/pb-cpp/flyteidl/plugins/waitable.pb.cc b/gen/pb-cpp/flyteidl/plugins/waitable.pb.cc index 0493fd859..e6d61ed99 100644 --- a/gen/pb-cpp/flyteidl/plugins/waitable.pb.cc +++ b/gen/pb-cpp/flyteidl/plugins/waitable.pb.cc @@ -79,14 +79,14 @@ const char descriptor_table_protodef_flyteidl_2fplugins_2fwaitable_2eproto[] = "aitable\022>\n\nwf_exec_id\030\001 \001(\0132*.flyteidl.c" "ore.WorkflowExecutionIdentifier\0225\n\005phase" "\030\002 \001(\0162&.flyteidl.core.WorkflowExecution" - ".Phase\022\023\n\013workflow_id\030\003 \001(\tB5Z3github.co" - "m/lyft/flyteidl/gen/pb-go/flyteidl/plugi" - "nsb\006proto3" + ".Phase\022\023\n\013workflow_id\030\003 \001(\tB9Z7github.co" + "m/flyteorg/flyteidl/gen/pb-go/flyteidl/p" + "luginsb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fplugins_2fwaitable_2eproto = { false, InitDefaults_flyteidl_2fplugins_2fwaitable_2eproto, descriptor_table_protodef_flyteidl_2fplugins_2fwaitable_2eproto, - "flyteidl/plugins/waitable.proto", &assign_descriptors_table_flyteidl_2fplugins_2fwaitable_2eproto, 330, + "flyteidl/plugins/waitable.proto", &assign_descriptors_table_flyteidl_2fplugins_2fwaitable_2eproto, 334, }; void AddDescriptors_flyteidl_2fplugins_2fwaitable_2eproto() { diff --git a/gen/pb-cpp/flyteidl/service/admin.pb.cc b/gen/pb-cpp/flyteidl/service/admin.pb.cc index 76ef60f69..10c878aac 100644 --- a/gen/pb-cpp/flyteidl/service/admin.pb.cc +++ b/gen/pb-cpp/flyteidl/service/admin.pb.cc @@ -357,13 +357,13 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fadmin_2eproto[] = "1/named_entities/{resource_type}/{id.pro" "ject}/{id.domain}/{id.name}:\001*\222A1\032/Updat" "e the fields associated with a NamedEnti" - "tyB5Z3github.com/lyft/flyteidl/gen/pb-go" - "/flyteidl/serviceb\006proto3" + "tyB9Z7github.com/flyteorg/flyteidl/gen/p" + "b-go/flyteidl/serviceb\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, 12865, + "flyteidl/service/admin.proto", &assign_descriptors_table_flyteidl_2fservice_2fadmin_2eproto, 12869, }; void AddDescriptors_flyteidl_2fservice_2fadmin_2eproto() { diff --git a/gen/pb-go/flyteidl/admin/common.pb.go b/gen/pb-go/flyteidl/admin/common.pb.go index 360e53f12..80ee61f77 100644 --- a/gen/pb-go/flyteidl/admin/common.pb.go +++ b/gen/pb-go/flyteidl/admin/common.pb.go @@ -5,8 +5,8 @@ package admin import ( fmt "fmt" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" math "math" ) @@ -1420,75 +1420,75 @@ func init() { proto.RegisterFile("flyteidl/admin/common.proto", fileDescriptor_7 var fileDescriptor_7c2cf612a185829c = []byte{ // 1135 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0x5d, 0x73, 0xdb, 0x44, - 0x17, 0xb6, 0xfc, 0x95, 0xf8, 0xb8, 0x4d, 0xdd, 0x4d, 0xda, 0xd7, 0x49, 0xe6, 0xed, 0x04, 0x31, - 0x7c, 0xb4, 0x4c, 0xed, 0x69, 0x4a, 0x81, 0x76, 0x20, 0xc5, 0x1f, 0x22, 0xf1, 0x90, 0xb8, 0x19, - 0xd9, 0x0d, 0x53, 0x06, 0x46, 0xac, 0xa5, 0x75, 0xb2, 0x44, 0xd2, 0x8a, 0xd5, 0xaa, 0x8d, 0xae, - 0x18, 0x18, 0x6e, 0xb8, 0x83, 0x19, 0xfe, 0x10, 0x57, 0x0c, 0xf7, 0xfc, 0x20, 0x46, 0x2b, 0xd9, - 0x96, 0x1d, 0x27, 0x90, 0x34, 0x33, 0xdc, 0xf9, 0xec, 0x79, 0xce, 0xee, 0x73, 0x9e, 0x3d, 0xe7, - 0x78, 0x05, 0xeb, 0x43, 0x3b, 0x14, 0x84, 0x5a, 0x76, 0x1d, 0x5b, 0x0e, 0x75, 0xeb, 0x26, 0x73, - 0x1c, 0xe6, 0xd6, 0x3c, 0xce, 0x04, 0x43, 0x4b, 0x23, 0x67, 0x4d, 0x3a, 0xd7, 0xfe, 0x3f, 0x06, - 0x9b, 0x8c, 0x93, 0x3a, 0x39, 0x21, 0x66, 0x20, 0xe8, 0x08, 0xbe, 0x76, 0x67, 0xda, 0x4d, 0x2d, - 0xe2, 0x0a, 0x3a, 0xa4, 0x84, 0xc7, 0x7e, 0xf5, 0x6b, 0xb8, 0xd5, 0xc5, 0x0e, 0xb1, 0x34, 0x57, - 0x50, 0x11, 0x76, 0xc6, 0x6e, 0x54, 0x85, 0x05, 0x8f, 0xb3, 0x6f, 0x89, 0x29, 0xaa, 0xca, 0x86, - 0xf2, 0x6e, 0x49, 0x1f, 0x99, 0xe8, 0x36, 0x14, 0x2d, 0xe6, 0x60, 0xea, 0x56, 0xb3, 0xd2, 0x91, - 0x58, 0x08, 0x41, 0xde, 0xc5, 0x0e, 0xa9, 0xe6, 0xe4, 0xaa, 0xfc, 0xad, 0x32, 0x58, 0x4e, 0x6d, - 0xbf, 0x47, 0x04, 0xb6, 0xb0, 0xc0, 0x68, 0x03, 0xca, 0x16, 0xf1, 0x4d, 0x4e, 0xbd, 0x88, 0x6a, - 0x72, 0x40, 0x7a, 0x09, 0x7d, 0x00, 0x05, 0x5f, 0x60, 0x41, 0xe4, 0x19, 0x4b, 0x9b, 0x1b, 0xb5, - 0xe9, 0xb4, 0x6b, 0xa9, 0x5d, 0x7b, 0x11, 0x4e, 0x8f, 0xe1, 0xea, 0x1f, 0x0a, 0x94, 0x53, 0x3e, - 0xf4, 0x29, 0x5c, 0xe7, 0xc4, 0x67, 0x01, 0x37, 0x89, 0x21, 0x42, 0x8f, 0xc8, 0xb3, 0x96, 0x36, - 0xd7, 0x27, 0xfb, 0x45, 0xba, 0xd4, 0xf4, 0x04, 0xd3, 0x0f, 0x3d, 0xa2, 0x5f, 0xe3, 0x29, 0x0b, - 0x3d, 0x82, 0x2c, 0xb5, 0x24, 0x8d, 0xf2, 0xe6, 0x5b, 0xe7, 0xd0, 0x98, 0x68, 0xa7, 0x67, 0xa9, - 0x85, 0x9e, 0xc2, 0xa2, 0x93, 0xa4, 0x2b, 0x15, 0x29, 0x6f, 0xbe, 0x79, 0x4e, 0xf0, 0x48, 0x19, - 0x7d, 0x1c, 0xa4, 0xfe, 0xa8, 0x40, 0xbe, 0xc7, 0xb8, 0x40, 0x15, 0xc8, 0x1d, 0x93, 0x30, 0x11, - 0x29, 0xfa, 0x89, 0x3e, 0x86, 0x92, 0x45, 0x39, 0x31, 0xa5, 0x78, 0xb1, 0x40, 0x77, 0x66, 0x37, - 0x8f, 0x42, 0x6b, 0xed, 0x11, 0x4a, 0x9f, 0x04, 0xa8, 0xf7, 0xa0, 0x34, 0x5e, 0x47, 0x4b, 0x00, - 0x6d, 0xad, 0xd7, 0xd2, 0xba, 0xed, 0x4e, 0x77, 0xbb, 0x92, 0x41, 0xd7, 0xa1, 0xd4, 0x18, 0x9b, - 0x8a, 0xfa, 0xa7, 0x02, 0x1b, 0x73, 0x73, 0xdc, 0xa5, 0xbe, 0xd0, 0xc9, 0x77, 0x01, 0xf1, 0xc5, - 0x25, 0x4a, 0x65, 0x05, 0x0a, 0x36, 0x75, 0xa8, 0x90, 0xca, 0x5c, 0xd7, 0x63, 0x23, 0x5a, 0x15, - 0xec, 0x98, 0xb8, 0xd5, 0xbc, 0x04, 0xc7, 0x06, 0xba, 0x0f, 0x0b, 0x3e, 0xe3, 0xc2, 0x18, 0x84, - 0xd5, 0x82, 0xd4, 0x71, 0x65, 0x5e, 0xaa, 0x7a, 0x31, 0x02, 0x35, 0xc3, 0x88, 0xcc, 0x90, 0xda, - 0x82, 0x70, 0xbf, 0x5a, 0x8c, 0xc9, 0x24, 0xa6, 0xfa, 0x43, 0x16, 0x6e, 0xa7, 0x72, 0x49, 0x67, - 0xf0, 0xfa, 0x55, 0x92, 0xd2, 0x20, 0x7b, 0x96, 0x06, 0xb9, 0xf9, 0x1a, 0xe4, 0xe7, 0x6a, 0x50, - 0x38, 0x43, 0x83, 0xe2, 0xc5, 0x34, 0x58, 0x98, 0xd6, 0x40, 0xc0, 0xea, 0x99, 0xd7, 0x89, 0x1a, - 0xb0, 0x18, 0xd9, 0x82, 0x12, 0xbf, 0xaa, 0x6c, 0xe4, 0xfe, 0x7d, 0xbd, 0x8f, 0xc3, 0x26, 0xf4, - 0xb3, 0x29, 0xfa, 0xea, 0x37, 0x70, 0x63, 0x46, 0x78, 0xf4, 0xe1, 0xa9, 0xb3, 0xd6, 0xcf, 0x39, - 0xeb, 0x1f, 0x4f, 0xf8, 0x45, 0x99, 0x9a, 0x63, 0xdb, 0xe4, 0x0a, 0xaf, 0xf6, 0x72, 0x03, 0x40, - 0xfd, 0x4b, 0x81, 0x6a, 0xca, 0xfb, 0xdc, 0xb3, 0xa2, 0x31, 0xf5, 0x1f, 0xb3, 0x7a, 0xfd, 0xb1, - 0xb4, 0x3e, 0x55, 0x41, 0xa3, 0xac, 0x7c, 0x8f, 0xb9, 0x3e, 0x51, 0x3f, 0x81, 0xca, 0xb3, 0x41, - 0x54, 0xf5, 0xa9, 0x0b, 0xb8, 0x2b, 0x89, 0x2a, 0xf2, 0xac, 0xd5, 0x99, 0xfc, 0x66, 0x24, 0xfb, - 0x5d, 0x81, 0xe5, 0x51, 0xca, 0xe9, 0xf6, 0x7c, 0x94, 0xda, 0xe2, 0x02, 0xb9, 0x8e, 0x3b, 0x2c, - 0x3b, 0xb7, 0xc3, 0x72, 0xe9, 0x0e, 0x4b, 0xb5, 0x4c, 0x7e, 0xaa, 0x65, 0x2e, 0x38, 0x7f, 0xd4, - 0x2d, 0xb8, 0xa9, 0x39, 0x98, 0xda, 0x5d, 0x16, 0x31, 0x31, 0xb1, 0x9c, 0xb2, 0x77, 0xa1, 0xc2, - 0x89, 0x49, 0x3d, 0x4a, 0x5c, 0xe1, 0x1b, 0x24, 0xf2, 0xcb, 0xaa, 0x2f, 0xe9, 0x37, 0x26, 0xeb, - 0x32, 0x4c, 0x6d, 0xc2, 0xad, 0x7d, 0x7c, 0x48, 0x78, 0x3b, 0x10, 0xe1, 0x65, 0xf7, 0xd8, 0x82, - 0x9b, 0x3d, 0x1b, 0x9b, 0xc7, 0x97, 0x8d, 0xff, 0x2d, 0x0b, 0xd7, 0xa6, 0x62, 0xb7, 0xa0, 0xe8, - 0x1d, 0x61, 0x3f, 0xe9, 0xd5, 0xa5, 0xcd, 0xb7, 0x67, 0xee, 0xf1, 0x0b, 0xc6, 0x8f, 0x87, 0x36, - 0x7b, 0xa5, 0x8d, 0x5f, 0x1f, 0xfb, 0x11, 0x5c, 0x4f, 0xa2, 0xd0, 0x63, 0x28, 0xc4, 0x07, 0xc6, - 0xf5, 0xfa, 0xc6, 0xac, 0x82, 0xa7, 0x14, 0xdb, 0xc9, 0xe8, 0x71, 0x04, 0xfa, 0x0c, 0xc0, 0x8b, - 0xf4, 0x30, 0xac, 0x40, 0x84, 0x49, 0xc9, 0x9e, 0xaa, 0x81, 0xb9, 0x8a, 0xed, 0x64, 0xf4, 0x92, - 0x37, 0x72, 0x44, 0x14, 0xfc, 0x48, 0x13, 0x79, 0xbd, 0x73, 0x28, 0x9c, 0x12, 0x2c, 0xa2, 0x20, - 0x23, 0x9a, 0x45, 0xc8, 0x47, 0x3d, 0xaa, 0x3e, 0x80, 0x85, 0xe7, 0xdc, 0x6e, 0xda, 0x6c, 0x10, - 0xfd, 0x27, 0x07, 0xdc, 0x1e, 0xfd, 0x27, 0x07, 0xdc, 0x8e, 0xca, 0x6a, 0x10, 0x0a, 0xe2, 0xcb, - 0x14, 0x73, 0x7a, 0x6c, 0xa8, 0xdf, 0x43, 0x71, 0x17, 0x0f, 0x88, 0xed, 0xa3, 0x27, 0x50, 0x7c, - 0x89, 0xed, 0x60, 0x3c, 0xee, 0xd4, 0x59, 0x02, 0x31, 0xae, 0x76, 0x20, 0x41, 0x9a, 0x2b, 0x78, - 0xa8, 0x27, 0x11, 0x6b, 0x8f, 0xa1, 0x9c, 0x5a, 0x9e, 0xf3, 0x20, 0x58, 0x81, 0x82, 0x84, 0x8e, - 0x86, 0xa2, 0x34, 0x9e, 0x64, 0x3f, 0x52, 0xd4, 0x9f, 0x15, 0x28, 0x37, 0x5c, 0x97, 0x09, 0x99, - 0x93, 0x8f, 0x9e, 0xce, 0xd0, 0x78, 0x67, 0x96, 0x46, 0x0a, 0x7c, 0xd5, 0x5c, 0x7e, 0x55, 0xe0, - 0x46, 0x8f, 0x98, 0x01, 0xa7, 0x22, 0x6c, 0x31, 0x57, 0x90, 0x13, 0x81, 0x5a, 0x33, 0x7c, 0xde, - 0x3b, 0x75, 0x2f, 0xd3, 0x01, 0x57, 0xcd, 0xe9, 0x27, 0x05, 0x16, 0x1b, 0x81, 0x38, 0xd2, 0x99, - 0x4d, 0x50, 0x0d, 0x10, 0xf6, 0xfd, 0xc0, 0xc1, 0x03, 0x9b, 0x18, 0x14, 0x3b, 0x06, 0x67, 0x76, - 0x3c, 0x9a, 0x4b, 0x3b, 0x19, 0xbd, 0x32, 0xf6, 0x75, 0xb0, 0x23, 0xf1, 0x5b, 0xb0, 0x76, 0x1c, - 0x0c, 0x08, 0x77, 0x89, 0x20, 0xbe, 0xe1, 0x13, 0xfe, 0x92, 0x9a, 0xc4, 0xc0, 0xa6, 0xc9, 0x02, - 0x37, 0x79, 0x07, 0xec, 0x64, 0xf4, 0xea, 0x04, 0xd3, 0x8b, 0x21, 0x8d, 0x18, 0xd1, 0x5c, 0x84, - 0xa2, 0x43, 0xc4, 0x11, 0xb3, 0xd4, 0xcf, 0x61, 0x59, 0xc7, 0xaf, 0x9e, 0x05, 0xc2, 0x0b, 0x44, - 0x1b, 0x0b, 0xdc, 0x62, 0xee, 0x90, 0x1e, 0xa2, 0xf7, 0xe1, 0x36, 0x93, 0x6b, 0x86, 0xcd, 0xe2, - 0xaa, 0x34, 0x3c, 0x4e, 0x86, 0xf4, 0x24, 0x49, 0x6e, 0x25, 0xf6, 0xee, 0x26, 0xce, 0x7d, 0xe9, - 0xbb, 0xf7, 0x15, 0x54, 0x66, 0x9f, 0xc7, 0xe8, 0x7f, 0xb0, 0xdc, 0x6d, 0xec, 0x69, 0x6d, 0x43, - 0xeb, 0xf6, 0x3b, 0xfd, 0x17, 0x46, 0xa3, 0xd5, 0xef, 0x1c, 0x68, 0x95, 0x0c, 0x5a, 0x85, 0x5b, - 0xd3, 0x0e, 0xbd, 0xb5, 0xd3, 0x39, 0xd0, 0xda, 0x15, 0x05, 0xad, 0x40, 0xa5, 0xf7, 0xa2, 0xd7, - 0xd7, 0xf6, 0x8c, 0x6d, 0xad, 0xab, 0xe9, 0x8d, 0xbe, 0xd6, 0xae, 0x64, 0x9b, 0x0f, 0xbf, 0x7c, - 0x70, 0x48, 0xc5, 0x51, 0x30, 0xa8, 0x99, 0xcc, 0xa9, 0xdb, 0xe1, 0x50, 0xd4, 0xc7, 0xdf, 0x18, - 0x87, 0xc4, 0xad, 0x7b, 0x83, 0xfb, 0x87, 0xac, 0x3e, 0xfd, 0x09, 0x33, 0x28, 0xca, 0xaf, 0x8d, - 0x87, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0xdf, 0x36, 0x65, 0xb6, 0xdb, 0x0c, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xdd, 0x73, 0xdb, 0x44, + 0x10, 0xb7, 0xfc, 0x95, 0x78, 0xdd, 0xa6, 0xee, 0x25, 0x2d, 0x6e, 0x32, 0x74, 0x82, 0x18, 0x3e, + 0x5a, 0xa6, 0xf6, 0x10, 0x28, 0xa5, 0x1d, 0x48, 0xf1, 0x87, 0x68, 0x3c, 0x24, 0x6e, 0x46, 0x76, + 0xc3, 0x94, 0x81, 0x11, 0x67, 0xe9, 0xec, 0x1c, 0x91, 0x74, 0xe2, 0x74, 0x6a, 0xa3, 0x27, 0x06, + 0x86, 0x17, 0xde, 0x60, 0x86, 0x7f, 0x88, 0x27, 0x86, 0x77, 0xfe, 0x20, 0x46, 0x27, 0xd9, 0x96, + 0x1d, 0x27, 0x90, 0x34, 0x33, 0xbc, 0x79, 0x6f, 0x7f, 0x7b, 0xf7, 0xdb, 0xdf, 0xed, 0xae, 0x4f, + 0xb0, 0x31, 0xb4, 0x43, 0x41, 0xa8, 0x65, 0xd7, 0xb1, 0xe5, 0x50, 0xb7, 0x6e, 0x32, 0xc7, 0x61, + 0x6e, 0xcd, 0xe3, 0x4c, 0x30, 0xb4, 0x32, 0x76, 0xd6, 0xa4, 0x73, 0xfd, 0xf5, 0x09, 0xd8, 0x64, + 0x9c, 0xd4, 0xc9, 0x31, 0x31, 0x03, 0x41, 0xc7, 0xf0, 0xf5, 0xdb, 0xb3, 0x6e, 0x6a, 0x11, 0x57, + 0xd0, 0x21, 0x25, 0x3c, 0xf6, 0xab, 0xdf, 0xc0, 0x8d, 0x2e, 0x76, 0x88, 0xa5, 0xb9, 0x82, 0x8a, + 0xb0, 0x33, 0x71, 0xa3, 0x2a, 0x2c, 0x79, 0x9c, 0x7d, 0x47, 0x4c, 0x51, 0x55, 0x36, 0x95, 0x77, + 0x4b, 0xfa, 0xd8, 0x44, 0x37, 0xa1, 0x68, 0x31, 0x07, 0x53, 0xb7, 0x9a, 0x95, 0x8e, 0xc4, 0x42, + 0x08, 0xf2, 0x2e, 0x76, 0x48, 0x35, 0x27, 0x57, 0xe5, 0x6f, 0x95, 0xc1, 0x6a, 0x6a, 0xfb, 0x3d, + 0x22, 0xb0, 0x85, 0x05, 0x46, 0x9b, 0x50, 0xb6, 0x88, 0x6f, 0x72, 0xea, 0x45, 0x54, 0x93, 0x03, + 0xd2, 0x4b, 0xe8, 0x23, 0x28, 0xf8, 0x02, 0x0b, 0x22, 0xcf, 0x58, 0xd9, 0xda, 0xac, 0xcd, 0xa6, + 0x5d, 0x4b, 0xed, 0xda, 0x8b, 0x70, 0x7a, 0x0c, 0x57, 0xff, 0x54, 0xa0, 0x9c, 0xf2, 0xa1, 0xcf, + 0xe0, 0x2a, 0x27, 0x3e, 0x0b, 0xb8, 0x49, 0x0c, 0x11, 0x7a, 0x44, 0x9e, 0xb5, 0xb2, 0xb5, 0x31, + 0xdd, 0x2f, 0xd2, 0xa5, 0xa6, 0x27, 0x98, 0x7e, 0xe8, 0x11, 0xfd, 0x0a, 0x4f, 0x59, 0xe8, 0x3e, + 0x64, 0xa9, 0x25, 0x69, 0x94, 0xb7, 0xde, 0x3a, 0x83, 0xc6, 0x54, 0x3b, 0x3d, 0x4b, 0x2d, 0xf4, + 0x18, 0x96, 0x9d, 0x24, 0x5d, 0xa9, 0x48, 0x79, 0xeb, 0xcd, 0x33, 0x82, 0xc7, 0xca, 0xe8, 0x93, + 0x20, 0xf5, 0x27, 0x05, 0xf2, 0x3d, 0xc6, 0x05, 0xaa, 0x40, 0xee, 0x88, 0x84, 0x89, 0x48, 0xd1, + 0x4f, 0xf4, 0x09, 0x94, 0x2c, 0xca, 0x89, 0x29, 0xc5, 0x8b, 0x05, 0xba, 0x3d, 0xbf, 0x79, 0x14, + 0x5a, 0x6b, 0x8f, 0x51, 0xfa, 0x34, 0x40, 0xbd, 0x0b, 0xa5, 0xc9, 0x3a, 0x5a, 0x01, 0x68, 0x6b, + 0xbd, 0x96, 0xd6, 0x6d, 0x77, 0xba, 0x4f, 0x2a, 0x19, 0x74, 0x15, 0x4a, 0x8d, 0x89, 0xa9, 0xa8, + 0x7f, 0x29, 0xb0, 0xb9, 0x30, 0xc7, 0x5d, 0xea, 0x0b, 0x9d, 0x7c, 0x1f, 0x10, 0x5f, 0x5c, 0xa0, + 0x54, 0xd6, 0xa0, 0x60, 0x53, 0x87, 0x0a, 0xa9, 0xcc, 0x55, 0x3d, 0x36, 0xa2, 0x55, 0xc1, 0x8e, + 0x88, 0x5b, 0xcd, 0x4b, 0x70, 0x6c, 0xa0, 0x7b, 0xb0, 0xe4, 0x33, 0x2e, 0x8c, 0x41, 0x58, 0x2d, + 0x48, 0x1d, 0xd7, 0x16, 0xa5, 0xaa, 0x17, 0x23, 0x50, 0x33, 0x8c, 0xc8, 0x0c, 0xa9, 0x2d, 0x08, + 0xf7, 0xab, 0xc5, 0x98, 0x4c, 0x62, 0xaa, 0x3f, 0x66, 0xe1, 0x66, 0x2a, 0x97, 0x74, 0x06, 0xaf, + 0x5e, 0x25, 0x29, 0x0d, 0xb2, 0xa7, 0x69, 0x90, 0x5b, 0xac, 0x41, 0x7e, 0xa1, 0x06, 0x85, 0x53, + 0x34, 0x28, 0x9e, 0x4f, 0x83, 0xa5, 0x59, 0x0d, 0x04, 0xdc, 0x3a, 0xf5, 0x3a, 0x51, 0x03, 0x96, + 0x23, 0x5b, 0x50, 0xe2, 0x57, 0x95, 0xcd, 0xdc, 0x7f, 0xaf, 0xf7, 0x49, 0xd8, 0x94, 0x7e, 0x36, + 0x45, 0x5f, 0xfd, 0x16, 0xae, 0xcd, 0x09, 0x8f, 0x1e, 0x9c, 0x38, 0x6b, 0xe3, 0x8c, 0xb3, 0xfe, + 0xf5, 0x84, 0x5f, 0x95, 0x99, 0x39, 0xf6, 0x84, 0x5c, 0xe2, 0xd5, 0x5e, 0x6c, 0x00, 0xa8, 0x7f, + 0x2b, 0x50, 0x4d, 0x79, 0x9f, 0x79, 0x56, 0x34, 0xa6, 0xfe, 0x67, 0x56, 0xaf, 0x3e, 0x96, 0x36, + 0x66, 0x2a, 0x68, 0x9c, 0x95, 0xef, 0x31, 0xd7, 0x27, 0xea, 0xa7, 0x50, 0x79, 0x3a, 0x88, 0xaa, + 0x3e, 0x75, 0x01, 0x77, 0x24, 0x51, 0x45, 0x9e, 0x75, 0x6b, 0x2e, 0xbf, 0x39, 0xc9, 0xfe, 0x50, + 0x60, 0x75, 0x9c, 0x72, 0xba, 0x3d, 0xef, 0xa7, 0xb6, 0x38, 0x47, 0xae, 0x93, 0x0e, 0xcb, 0x2e, + 0xec, 0xb0, 0x5c, 0xba, 0xc3, 0x52, 0x2d, 0x93, 0x9f, 0x69, 0x99, 0x73, 0xce, 0x1f, 0x75, 0x1b, + 0xae, 0x6b, 0x0e, 0xa6, 0x76, 0x97, 0x45, 0x4c, 0x4c, 0x2c, 0xa7, 0xec, 0x1d, 0xa8, 0x70, 0x62, + 0x52, 0x8f, 0x12, 0x57, 0xf8, 0x06, 0x89, 0xfc, 0xb2, 0xea, 0x4b, 0xfa, 0xb5, 0xe9, 0xba, 0x0c, + 0x53, 0x9b, 0x70, 0x63, 0x1f, 0x8f, 0x08, 0x6f, 0x07, 0x22, 0xbc, 0xe8, 0x1e, 0xdb, 0x70, 0xbd, + 0x67, 0x63, 0xf3, 0xe8, 0xa2, 0xf1, 0xbf, 0x67, 0xe1, 0xca, 0x4c, 0xec, 0x36, 0x14, 0xbd, 0x43, + 0xec, 0x27, 0xbd, 0xba, 0xb2, 0xf5, 0xf6, 0xdc, 0x3d, 0x7e, 0xc9, 0xf8, 0xd1, 0xd0, 0x66, 0x2f, + 0xb5, 0xc9, 0xeb, 0x63, 0x3f, 0x82, 0xeb, 0x49, 0x14, 0x7a, 0x08, 0x85, 0xf8, 0xc0, 0xb8, 0x5e, + 0xdf, 0x98, 0x57, 0xf0, 0x84, 0x62, 0x3b, 0x19, 0x3d, 0x8e, 0x40, 0x9f, 0x03, 0x78, 0x91, 0x1e, + 0x86, 0x15, 0x88, 0x30, 0x29, 0xd9, 0x13, 0x35, 0xb0, 0x50, 0xb1, 0x9d, 0x8c, 0x5e, 0xf2, 0xc6, + 0x8e, 0x88, 0x82, 0x1f, 0x69, 0x22, 0xaf, 0x77, 0x01, 0x85, 0x13, 0x82, 0x45, 0x14, 0x64, 0x44, + 0xb3, 0x08, 0xf9, 0xa8, 0x47, 0xd5, 0xf7, 0x61, 0xe9, 0x19, 0xb7, 0x9b, 0x36, 0x1b, 0x44, 0xff, + 0xc9, 0x01, 0xb7, 0xc7, 0xff, 0xc9, 0x01, 0xb7, 0xa3, 0xb2, 0x1a, 0x84, 0x82, 0xf8, 0x32, 0xc5, + 0x9c, 0x1e, 0x1b, 0xea, 0x0f, 0x50, 0xdc, 0xc5, 0x03, 0x62, 0xfb, 0xe8, 0x11, 0x14, 0x5f, 0x60, + 0x3b, 0x98, 0x8c, 0x3b, 0x75, 0x9e, 0x40, 0x8c, 0xab, 0x1d, 0x48, 0x90, 0xe6, 0x0a, 0x1e, 0xea, + 0x49, 0xc4, 0xfa, 0x43, 0x28, 0xa7, 0x96, 0x17, 0x3c, 0x08, 0xd6, 0xa0, 0x20, 0xa1, 0xe3, 0xa1, + 0x28, 0x8d, 0x47, 0xd9, 0x8f, 0x15, 0xf5, 0x17, 0x05, 0xca, 0x0d, 0xd7, 0x65, 0x42, 0xe6, 0xe4, + 0xa3, 0xc7, 0x73, 0x34, 0xde, 0x99, 0xa7, 0x91, 0x02, 0x5f, 0x36, 0x97, 0xdf, 0x14, 0xb8, 0xd6, + 0x23, 0x66, 0xc0, 0xa9, 0x08, 0x5b, 0xcc, 0x15, 0xe4, 0x58, 0xa0, 0xd6, 0x1c, 0x9f, 0xf7, 0x4e, + 0xdc, 0xcb, 0x6c, 0xc0, 0x65, 0x73, 0xfa, 0x59, 0x81, 0xe5, 0x46, 0x20, 0x0e, 0x75, 0x66, 0x13, + 0x54, 0x03, 0x84, 0x7d, 0x3f, 0x70, 0xf0, 0xc0, 0x26, 0x06, 0xc5, 0x8e, 0xc1, 0x99, 0x1d, 0x8f, + 0xe6, 0xd2, 0x4e, 0x46, 0xaf, 0x4c, 0x7c, 0x1d, 0xec, 0x48, 0xfc, 0x36, 0xac, 0x1f, 0x05, 0x03, + 0xc2, 0x5d, 0x22, 0x88, 0x6f, 0xf8, 0x84, 0xbf, 0xa0, 0x26, 0x31, 0xb0, 0x69, 0xb2, 0xc0, 0x4d, + 0xde, 0x01, 0x3b, 0x19, 0xbd, 0x3a, 0xc5, 0xf4, 0x62, 0x48, 0x23, 0x46, 0x34, 0x97, 0xa1, 0xe8, + 0x10, 0x71, 0xc8, 0x2c, 0xf5, 0x0b, 0x58, 0xd5, 0xf1, 0xcb, 0xa7, 0x81, 0xf0, 0x02, 0xd1, 0xc6, + 0x02, 0xb7, 0x98, 0x3b, 0xa4, 0x23, 0xf4, 0x21, 0xdc, 0x64, 0x72, 0xcd, 0xb0, 0x59, 0x5c, 0x95, + 0x86, 0xc7, 0xc9, 0x90, 0x1e, 0x27, 0xc9, 0xad, 0xc5, 0xde, 0xdd, 0xc4, 0xb9, 0x2f, 0x7d, 0x77, + 0xbf, 0x86, 0xca, 0xfc, 0xf3, 0x18, 0xbd, 0x06, 0xab, 0xdd, 0xc6, 0x9e, 0xd6, 0x36, 0xb4, 0x6e, + 0xbf, 0xd3, 0x7f, 0x6e, 0x34, 0x5a, 0xfd, 0xce, 0x81, 0x56, 0xc9, 0xa0, 0x5b, 0x70, 0x63, 0xd6, + 0xa1, 0xb7, 0x76, 0x3a, 0x07, 0x5a, 0xbb, 0xa2, 0xa0, 0x35, 0xa8, 0xf4, 0x9e, 0xf7, 0xfa, 0xda, + 0x9e, 0xf1, 0x44, 0xeb, 0x6a, 0x7a, 0xa3, 0xaf, 0xb5, 0x2b, 0xd9, 0xe6, 0x83, 0xaf, 0xee, 0x8f, + 0xa8, 0x38, 0x0c, 0x06, 0x35, 0x93, 0x39, 0x75, 0x79, 0x5b, 0x8c, 0x8f, 0xea, 0x93, 0xef, 0x8c, + 0x11, 0x71, 0xeb, 0xde, 0xe0, 0xde, 0x88, 0xd5, 0x67, 0x3f, 0x63, 0x06, 0x45, 0xf9, 0xc5, 0xf1, + 0xc1, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x8e, 0x03, 0xba, 0x21, 0xdf, 0x0c, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/common.pb.validate.go b/gen/pb-go/flyteidl/admin/common.pb.validate.go index 524f89ec2..ee9afbac4 100644 --- a/gen/pb-go/flyteidl/admin/common.pb.validate.go +++ b/gen/pb-go/flyteidl/admin/common.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/gen/pb-go/flyteidl/admin/event.pb.go b/gen/pb-go/flyteidl/admin/event.pb.go index 323ea48a4..c0cb0444e 100644 --- a/gen/pb-go/flyteidl/admin/event.pb.go +++ b/gen/pb-go/flyteidl/admin/event.pb.go @@ -5,8 +5,8 @@ package admin import ( fmt "fmt" + event "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" proto "github.com/golang/protobuf/proto" - event "github.com/lyft/flyteidl/gen/pb-go/flyteidl/event" math "math" ) @@ -382,27 +382,27 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/event.proto", fileDescriptor_4581752dea61f248) } var fileDescriptor_4581752dea61f248 = []byte{ - // 348 bytes of a gzipped FileDescriptorProto + // 349 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0x4f, 0x4b, 0xf3, 0x40, 0x10, 0x87, 0xdf, 0xbe, 0x60, 0xb1, 0xe3, 0x9f, 0x43, 0x0e, 0xd2, 0x16, 0x2b, 0x25, 0x82, 0x78, - 0x31, 0x51, 0x7b, 0xf1, 0xe0, 0xc5, 0x42, 0xd5, 0x5e, 0x44, 0x62, 0x41, 0xf0, 0x12, 0xb6, 0xcd, - 0xb4, 0x5d, 0xba, 0xd9, 0x8d, 0xbb, 0x13, 0xb5, 0xe0, 0x57, 0xf0, 0x3b, 0x4b, 0x37, 0xd1, 0x58, - 0x49, 0x11, 0x04, 0x6f, 0xc9, 0xcc, 0xe4, 0xf9, 0x3d, 0x59, 0x66, 0xa1, 0x39, 0x16, 0x73, 0x42, - 0x1e, 0x09, 0x9f, 0x45, 0x31, 0x97, 0x3e, 0x3e, 0xa1, 0x24, 0x2f, 0xd1, 0x8a, 0x94, 0xb3, 0xfd, - 0xd1, 0xf3, 0x6c, 0xaf, 0x59, 0xcc, 0xda, 0xa9, 0xaf, 0xb3, 0xee, 0x15, 0xb4, 0x7b, 0x8b, 0xd7, - 0x9e, 0xd6, 0x4a, 0x5f, 0x08, 0x8d, 0x2c, 0x9a, 0xf7, 0xe5, 0x00, 0x75, 0xcc, 0x25, 0x13, 0x77, - 0xc4, 0x08, 0x9d, 0x7d, 0xd8, 0x1a, 0xa5, 0x5a, 0xa3, 0xa4, 0x30, 0x99, 0x32, 0x83, 0xf5, 0x4a, - 0xbb, 0x72, 0x58, 0x0b, 0x36, 0xf3, 0xe2, 0xed, 0xa2, 0xe6, 0xbe, 0x55, 0xc0, 0xb1, 0xa4, 0x4b, - 0xc6, 0x45, 0xaa, 0x31, 0x40, 0x66, 0x94, 0x74, 0x62, 0x68, 0xb0, 0x8c, 0x1a, 0x72, 0x19, 0x52, - 0xce, 0x0d, 0xcd, 0x02, 0x6c, 0x39, 0x1b, 0xa7, 0xc7, 0xde, 0xb2, 0xaf, 0xf7, 0x93, 0xd0, 0xf5, - 0xbf, 0x60, 0x87, 0x95, 0x76, 0xba, 0xeb, 0x50, 0xd5, 0x36, 0xd8, 0x7d, 0x85, 0xd6, 0xbd, 0xd2, - 0xb3, 0xb1, 0x50, 0xcf, 0xbd, 0x17, 0x1c, 0xa5, 0xc4, 0x95, 0xb4, 0xe0, 0x00, 0x1f, 0x53, 0x34, - 0xe4, 0xb4, 0x00, 0x74, 0xf6, 0x18, 0xf2, 0x28, 0xff, 0xa5, 0x5a, 0x5e, 0xe9, 0x47, 0xce, 0x39, - 0xac, 0xd9, 0x73, 0xaa, 0xff, 0xb7, 0x92, 0x07, 0x85, 0x64, 0x76, 0x7c, 0x2b, 0xe0, 0xd9, 0x47, - 0x6e, 0x1b, 0xf6, 0x56, 0xa5, 0x9b, 0x44, 0x49, 0x83, 0x2e, 0x41, 0xe3, 0x46, 0x45, 0xf8, 0x2b, - 0xb7, 0xb3, 0x65, 0x37, 0xf7, 0xbb, 0x5b, 0x09, 0x38, 0xf7, 0xda, 0x85, 0x66, 0x59, 0x6a, 0xe1, - 0x34, 0x60, 0x66, 0xf6, 0x27, 0x4e, 0x25, 0xe0, 0xc2, 0xa9, 0x2c, 0x35, 0x73, 0xea, 0x76, 0x1e, - 0x4e, 0x26, 0x9c, 0xa6, 0xe9, 0xd0, 0x1b, 0xa9, 0xd8, 0x17, 0xf3, 0x31, 0xf9, 0x9f, 0xeb, 0x3c, - 0x41, 0xe9, 0x27, 0xc3, 0xa3, 0x89, 0xf2, 0x97, 0x6f, 0xc3, 0xb0, 0x6a, 0x97, 0xbb, 0xf3, 0x1e, - 0x00, 0x00, 0xff, 0xff, 0x4d, 0x05, 0x6c, 0x2c, 0x26, 0x03, 0x00, 0x00, + 0x31, 0x11, 0x45, 0xf4, 0xe0, 0xc5, 0x42, 0xd5, 0x5e, 0x44, 0x62, 0x41, 0xf0, 0x12, 0xb6, 0xcd, + 0x34, 0x5d, 0x9a, 0xec, 0xc6, 0xd9, 0x8d, 0x5a, 0xf0, 0x2b, 0xf8, 0x9d, 0xa5, 0x9b, 0x68, 0x8c, + 0xa4, 0x08, 0x82, 0xb7, 0x64, 0x66, 0xf2, 0xfc, 0x9e, 0x2c, 0xb3, 0xd0, 0x9e, 0x44, 0x73, 0x8d, + 0x3c, 0x88, 0x5c, 0x16, 0xc4, 0x5c, 0xb8, 0xf8, 0x84, 0x42, 0x3b, 0x09, 0x49, 0x2d, 0xad, 0xcd, + 0x8f, 0x9e, 0x63, 0x7a, 0xed, 0x62, 0xd6, 0x4c, 0x7d, 0x9d, 0xb5, 0xaf, 0xa0, 0xdb, 0x5f, 0xbc, + 0xf6, 0x89, 0x24, 0x5d, 0x44, 0x84, 0x2c, 0x98, 0x0f, 0xc4, 0x10, 0x29, 0xe6, 0x82, 0x45, 0x77, + 0x9a, 0x69, 0xb4, 0x76, 0x61, 0x63, 0x9c, 0x12, 0xa1, 0xd0, 0x7e, 0x32, 0x65, 0x0a, 0x9b, 0xb5, + 0x6e, 0x6d, 0xbf, 0xe1, 0xad, 0xe7, 0xc5, 0xdb, 0x45, 0xcd, 0x7e, 0xab, 0x81, 0x65, 0x48, 0x97, + 0x8c, 0x47, 0x29, 0xa1, 0x87, 0x4c, 0x49, 0x61, 0xc5, 0xd0, 0x62, 0x19, 0xd5, 0xe7, 0xc2, 0xd7, + 0x39, 0xd7, 0x57, 0x0b, 0xb0, 0xe1, 0xac, 0x1d, 0x1d, 0x3a, 0x65, 0x5f, 0xe7, 0x27, 0xa1, 0xeb, + 0x7f, 0xde, 0x16, 0xab, 0xec, 0xf4, 0x56, 0xa1, 0x4e, 0x26, 0xd8, 0x7e, 0x85, 0xce, 0xbd, 0xa4, + 0xd9, 0x24, 0x92, 0xcf, 0xfd, 0x17, 0x1c, 0xa7, 0x9a, 0x4b, 0x61, 0xc0, 0x1e, 0x3e, 0xa6, 0xa8, + 0xb4, 0xd5, 0x01, 0xa0, 0xec, 0xd1, 0xe7, 0x41, 0xfe, 0x4b, 0x8d, 0xbc, 0x32, 0x08, 0xac, 0x73, + 0x58, 0x31, 0xe7, 0xd4, 0xfc, 0x6f, 0x24, 0xf7, 0x0a, 0xc9, 0xec, 0xf8, 0x96, 0xc0, 0xb3, 0x8f, + 0xec, 0x2e, 0xec, 0x2c, 0x4b, 0x57, 0x89, 0x14, 0x0a, 0x6d, 0x0d, 0xad, 0x1b, 0x19, 0xe0, 0xaf, + 0xdc, 0xce, 0xca, 0x6e, 0xf6, 0x77, 0xb7, 0x0a, 0x70, 0xee, 0xb5, 0x0d, 0xed, 0xaa, 0xd4, 0xc2, + 0x69, 0xc8, 0xd4, 0xec, 0x4f, 0x9c, 0x2a, 0xc0, 0x85, 0x53, 0x55, 0x6a, 0xe6, 0xd4, 0x3b, 0x7d, + 0x38, 0x09, 0xb9, 0x9e, 0xa6, 0x23, 0x67, 0x2c, 0x63, 0xd7, 0x40, 0x25, 0x85, 0xee, 0xe7, 0x4a, + 0x87, 0x28, 0xdc, 0x64, 0x74, 0x10, 0x4a, 0xb7, 0x7c, 0x23, 0x46, 0x75, 0xb3, 0xe0, 0xc7, 0xef, + 0x01, 0x00, 0x00, 0xff, 0xff, 0x7b, 0xb0, 0xc6, 0xd1, 0x2a, 0x03, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/execution.pb.go b/gen/pb-go/flyteidl/admin/execution.pb.go index d21ad8f51..309434ab9 100644 --- a/gen/pb-go/flyteidl/admin/execution.pb.go +++ b/gen/pb-go/flyteidl/admin/execution.pb.go @@ -5,10 +5,10 @@ package admin import ( fmt "fmt" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" duration "github.com/golang/protobuf/ptypes/duration" timestamp "github.com/golang/protobuf/ptypes/timestamp" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" math "math" ) @@ -1268,90 +1268,90 @@ func init() { proto.RegisterFile("flyteidl/admin/execution.proto", fileDescripto var fileDescriptor_4e2785d91b3809ec = []byte{ // 1363 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xdd, 0x72, 0xd3, 0xc6, - 0x17, 0x8f, 0x1d, 0xdb, 0xc4, 0xc7, 0x89, 0x63, 0x96, 0xff, 0x3f, 0x88, 0x10, 0x48, 0xd0, 0x4c, - 0x3b, 0x4c, 0x3b, 0xb5, 0x27, 0x61, 0xb8, 0x20, 0xd3, 0x5c, 0x38, 0x4e, 0xc0, 0xa1, 0xf9, 0xa0, - 0x1b, 0x52, 0x0a, 0x9d, 0x8e, 0xbb, 0x96, 0xd6, 0x89, 0x60, 0xa5, 0x15, 0xab, 0x15, 0x90, 0xbb, - 0xbe, 0x43, 0x1f, 0xa3, 0xf7, 0x7d, 0x82, 0xbe, 0x51, 0x5f, 0xa0, 0xa3, 0x5d, 0x49, 0x96, 0x64, - 0xa7, 0x86, 0x81, 0x3b, 0xaf, 0xce, 0xef, 0x77, 0x76, 0xcf, 0xf7, 0x31, 0xdc, 0x1d, 0xb1, 0x4b, - 0x49, 0x1d, 0x9b, 0x75, 0x88, 0xed, 0x3a, 0x5e, 0x87, 0x7e, 0xa0, 0x56, 0x28, 0x1d, 0xee, 0xb5, - 0x7d, 0xc1, 0x25, 0x47, 0xcd, 0x44, 0xde, 0x56, 0xf2, 0xd5, 0xdb, 0x05, 0xbc, 0xc5, 0x5d, 0x37, - 0x01, 0xaf, 0xae, 0xa5, 0x42, 0x8b, 0x0b, 0xda, 0x61, 0x8e, 0xa4, 0x82, 0xb0, 0x20, 0x96, 0xde, - 0xc9, 0x4b, 0x0b, 0x37, 0xad, 0xde, 0xcd, 0x8b, 0x1d, 0x9b, 0x7a, 0xd2, 0x19, 0x39, 0x54, 0x24, - 0xf2, 0x73, 0xce, 0xcf, 0x19, 0xed, 0xa8, 0xd3, 0x30, 0x1c, 0x75, 0xec, 0x50, 0x90, 0x0c, 0x7f, - 0xbd, 0x28, 0x97, 0x8e, 0x4b, 0x03, 0x49, 0x5c, 0x5f, 0x03, 0xcc, 0xbf, 0x4b, 0xb0, 0xb2, 0x9f, - 0x5c, 0xda, 0x13, 0x94, 0x48, 0x8a, 0xe9, 0xdb, 0x90, 0x06, 0x12, 0x19, 0x70, 0xcd, 0x17, 0xfc, - 0x35, 0xb5, 0xa4, 0x51, 0xda, 0x28, 0xdd, 0xaf, 0xe3, 0xe4, 0x88, 0x56, 0xa0, 0x66, 0x73, 0x97, - 0x38, 0x9e, 0x51, 0x56, 0x82, 0xf8, 0x84, 0x10, 0x54, 0x3c, 0xe2, 0x52, 0x63, 0x5e, 0x7d, 0x55, - 0xbf, 0xd1, 0x26, 0x54, 0x02, 0x9f, 0x5a, 0x46, 0x65, 0xa3, 0x74, 0xbf, 0xb1, 0x75, 0xa7, 0x9d, - 0x77, 0x5d, 0x3b, 0xbd, 0xfb, 0xd4, 0xa7, 0x16, 0x56, 0x50, 0xb4, 0x09, 0x35, 0xc7, 0xf3, 0x43, - 0x19, 0x18, 0x55, 0x45, 0xba, 0x35, 0x26, 0x45, 0x5e, 0x68, 0x1f, 0x6a, 0x17, 0x1e, 0x11, 0x1f, - 0xc7, 0x40, 0xf3, 0x35, 0x18, 0xa9, 0x26, 0x4c, 0x19, 0x09, 0x3d, 0xeb, 0x22, 0xb1, 0x63, 0x1b, - 0xca, 0x8e, 0xad, 0x4c, 0x68, 0x6c, 0x7d, 0x53, 0x50, 0xf5, 0x82, 0x8b, 0x37, 0x23, 0xc6, 0xdf, - 0xa7, 0xe4, 0x83, 0xd4, 0xc3, 0xb8, 0xec, 0xd8, 0xd3, 0x2c, 0x32, 0xcf, 0xe0, 0xe6, 0x84, 0xc7, - 0x02, 0x9f, 0x7b, 0x01, 0xfd, 0x9c, 0xab, 0xcc, 0x97, 0x70, 0x7b, 0x02, 0xf2, 0x84, 0xca, 0x2f, - 0x60, 0x85, 0xf9, 0x57, 0x09, 0xea, 0xa9, 0xec, 0xb3, 0xfc, 0x91, 0x44, 0xb3, 0xfc, 0xf1, 0xd1, - 0xdc, 0x86, 0x6b, 0x16, 0xe3, 0x41, 0x28, 0xb4, 0x17, 0x1b, 0x5b, 0x1b, 0x57, 0xb2, 0x7a, 0x1a, - 0x87, 0x13, 0x82, 0xf9, 0x1b, 0x2c, 0xa5, 0xc2, 0x43, 0x27, 0x90, 0xe8, 0x11, 0x40, 0x5a, 0x22, - 0x81, 0x51, 0xda, 0x98, 0xcf, 0xa7, 0x47, 0x41, 0x1f, 0xce, 0x80, 0xd1, 0xff, 0xa0, 0x2a, 0xf9, - 0x1b, 0x9a, 0xe4, 0xac, 0x3e, 0x98, 0x04, 0x9a, 0xe3, 0x74, 0xda, 0x65, 0x7c, 0x88, 0x1e, 0x40, - 0xed, 0x1d, 0x61, 0x21, 0x0d, 0x62, 0x17, 0x5d, 0x9d, 0x7d, 0xfd, 0x39, 0x1c, 0x43, 0x11, 0x82, - 0xf9, 0x50, 0x38, 0x5a, 0x75, 0x7f, 0x0e, 0x47, 0x87, 0xdd, 0x1a, 0x54, 0x6c, 0x22, 0x89, 0xd9, - 0x83, 0xa5, 0xee, 0x90, 0x0b, 0x79, 0x44, 0x25, 0x89, 0x3e, 0x44, 0x2f, 0xb1, 0x48, 0x18, 0xd0, - 0xb8, 0xac, 0xf4, 0x01, 0xad, 0x41, 0xdd, 0x17, 0x8e, 0x67, 0x39, 0x3e, 0x61, 0xf1, 0x1b, 0xc7, - 0x1f, 0xcc, 0x7f, 0xaa, 0xd0, 0x2a, 0xfa, 0x29, 0x72, 0x2d, 0x0f, 0xa5, 0xaa, 0x14, 0xfd, 0xd6, - 0xbb, 0x45, 0x57, 0xe4, 0x6d, 0xeb, 0xcf, 0xe1, 0x84, 0x80, 0x1e, 0x42, 0x95, 0x0a, 0xc1, 0xc5, - 0x64, 0x28, 0x95, 0x95, 0xe9, 0x5d, 0xfb, 0x11, 0xa8, 0x3f, 0x87, 0x35, 0x1a, 0x7d, 0x05, 0x0d, - 0x12, 0x19, 0x33, 0xd0, 0x16, 0x40, 0xf4, 0xce, 0xdd, 0xb2, 0x51, 0xea, 0xcf, 0x61, 0x50, 0x82, - 0x9e, 0x32, 0xe6, 0x31, 0x34, 0x35, 0xcc, 0x8d, 0x8d, 0x36, 0x16, 0xa7, 0x67, 0x4c, 0xce, 0x33, - 0xfd, 0x39, 0xbc, 0x44, 0x72, 0xae, 0x7a, 0x0c, 0xcb, 0x16, 0x77, 0xfd, 0x50, 0x52, 0x7b, 0x10, - 0xf7, 0x84, 0xf9, 0x19, 0x51, 0x89, 0x5e, 0x83, 0x9b, 0x09, 0xeb, 0x40, 0x91, 0xd0, 0xf7, 0x50, - 0xf5, 0x2f, 0x48, 0x40, 0x55, 0x1b, 0x6a, 0x6e, 0x7d, 0x3d, 0x2b, 0xed, 0xdb, 0xcf, 0x22, 0x34, - 0xd6, 0xa4, 0x28, 0xeb, 0x02, 0x49, 0x44, 0xf4, 0x08, 0x22, 0xe3, 0xa6, 0xb4, 0xda, 0xd6, 0xad, - 0xb5, 0x9d, 0xb4, 0xd6, 0xf6, 0xf3, 0xa4, 0xb5, 0xe2, 0x7a, 0x8c, 0xee, 0x4a, 0xf4, 0x10, 0x16, - 0x92, 0x96, 0x6c, 0xd4, 0xe2, 0x97, 0x17, 0x89, 0x7b, 0x31, 0x00, 0xa7, 0xd0, 0xe8, 0x46, 0x4b, - 0xb5, 0x16, 0x75, 0xe3, 0xb5, 0xd9, 0x37, 0xc6, 0xe8, 0xae, 0x2a, 0x91, 0xd0, 0xb7, 0x13, 0xea, - 0xc2, 0x6c, 0x6a, 0x8c, 0xee, 0x4a, 0xb4, 0x0b, 0x4b, 0x1e, 0x8f, 0xaa, 0xdd, 0x22, 0xba, 0xc0, - 0xea, 0xaa, 0xc0, 0xd6, 0x8a, 0x41, 0x3b, 0xce, 0x80, 0x70, 0x9e, 0x82, 0xb6, 0xa1, 0xf1, 0x3e, - 0xf6, 0xe6, 0xc0, 0xb1, 0x8d, 0xc6, 0xd4, 0x68, 0x65, 0xba, 0x0a, 0x24, 0xe8, 0x03, 0x7b, 0x77, - 0x19, 0x96, 0x74, 0x7a, 0x0e, 0x04, 0x0d, 0x42, 0x26, 0xcd, 0x1d, 0x68, 0x9e, 0x5e, 0x06, 0x92, - 0xba, 0x69, 0x42, 0x7c, 0x0b, 0xd7, 0xd3, 0x9a, 0x1e, 0x58, 0x2c, 0x0c, 0x24, 0x15, 0x71, 0x1d, - 0xb5, 0xe8, 0xb8, 0x3e, 0xd4, 0x77, 0xf3, 0xcf, 0x0a, 0x5c, 0x4f, 0x43, 0x9a, 0xaa, 0xe8, 0x41, - 0xc5, 0xe5, 0xb6, 0xae, 0xbe, 0xe6, 0x56, 0xe7, 0xca, 0xee, 0x91, 0x10, 0x32, 0x5f, 0xb8, 0x4d, - 0xb1, 0x22, 0xff, 0x77, 0xb5, 0x46, 0xa3, 0xd3, 0xa3, 0x81, 0x74, 0xbc, 0x73, 0x95, 0xae, 0x4b, - 0x38, 0x39, 0xa2, 0x1d, 0x58, 0x0c, 0xac, 0x0b, 0x6a, 0x87, 0x4c, 0xc7, 0xa7, 0x32, 0x33, 0x3e, - 0x8d, 0x14, 0xdf, 0x95, 0xe8, 0x15, 0xfc, 0xdf, 0x27, 0x82, 0x7a, 0x72, 0xe0, 0x71, 0x9b, 0x0e, - 0x52, 0x8b, 0xe3, 0xa4, 0x2c, 0xe6, 0xf5, 0x31, 0xb7, 0xe9, 0xb4, 0x56, 0x7e, 0x43, 0x2b, 0xc9, - 0x89, 0xd1, 0x2f, 0x70, 0x43, 0xd0, 0x11, 0x15, 0xd4, 0xb3, 0xb2, 0x9a, 0x5b, 0x9f, 0x3c, 0x28, - 0x50, 0xaa, 0x66, 0xac, 0xfc, 0x09, 0x2c, 0x07, 0x2a, 0x92, 0xe3, 0x8e, 0x70, 0x7d, 0x7a, 0xcb, - 0xca, 0x07, 0x1c, 0x37, 0x83, 0xdc, 0xd9, 0xfc, 0x39, 0x33, 0x12, 0xa2, 0x78, 0x20, 0x80, 0xda, - 0x51, 0xf7, 0xf8, 0xac, 0x7b, 0xd8, 0x9a, 0x43, 0x4b, 0x50, 0x3f, 0xed, 0xf5, 0xf7, 0xf7, 0xce, - 0x0e, 0xf7, 0xf7, 0x5a, 0xa5, 0x48, 0x74, 0xfa, 0xf2, 0xf4, 0xf9, 0xfe, 0x51, 0xab, 0x8c, 0x16, - 0x61, 0x01, 0xef, 0x1f, 0x76, 0xcf, 0x8e, 0x7b, 0xfd, 0xd6, 0x3c, 0x42, 0xd0, 0xec, 0xf5, 0x0f, - 0x0e, 0xf7, 0x06, 0x2f, 0x4e, 0xf0, 0x0f, 0x8f, 0x0f, 0x4f, 0x5e, 0xb4, 0x2a, 0xe6, 0x4f, 0xd0, - 0xca, 0x26, 0xb6, 0x9a, 0x37, 0x13, 0x15, 0x51, 0xfa, 0xe4, 0x8a, 0x30, 0xff, 0xa8, 0x66, 0x9e, - 0x7c, 0xaa, 0x47, 0x62, 0x43, 0xaf, 0x28, 0x03, 0x9f, 0x11, 0xef, 0x8a, 0x39, 0x93, 0xad, 0x11, - 0x8d, 0x7e, 0xc6, 0x88, 0x87, 0x1e, 0xa6, 0xcb, 0x51, 0xf9, 0x63, 0x1a, 0x61, 0x0c, 0x46, 0x3b, - 0xb0, 0x90, 0x3a, 0x5e, 0x77, 0xd0, 0x7b, 0x33, 0x13, 0x1f, 0xa7, 0x14, 0xd4, 0x2f, 0xfa, 0xa1, - 0x3a, 0x7d, 0x94, 0x17, 0x1d, 0x18, 0x75, 0xf4, 0x7c, 0x7f, 0xb8, 0x07, 0x0d, 0xdb, 0x09, 0xc8, - 0x90, 0xd1, 0x01, 0x61, 0x4c, 0xf5, 0xc4, 0x85, 0x68, 0x78, 0xc4, 0x1f, 0xbb, 0x8c, 0xa1, 0x36, - 0xd4, 0x18, 0x19, 0x52, 0x16, 0xc4, 0x8d, 0x6f, 0x65, 0x62, 0xaa, 0x29, 0x29, 0x8e, 0x51, 0x68, - 0x07, 0x1a, 0xc4, 0xf3, 0xb8, 0x8c, 0x9f, 0xa6, 0x5b, 0xde, 0xed, 0x89, 0x49, 0x33, 0x86, 0xe0, - 0x2c, 0x1e, 0x3d, 0x82, 0x3a, 0x09, 0xe5, 0xc5, 0x40, 0x70, 0x46, 0x8d, 0xba, 0x22, 0x1b, 0x13, - 0xe4, 0x50, 0x5e, 0x60, 0xce, 0xa8, 0xf2, 0xe9, 0x02, 0x89, 0x4f, 0xe8, 0x29, 0xb4, 0x02, 0x6a, - 0x85, 0xc2, 0x91, 0x97, 0x03, 0x8b, 0x7b, 0x92, 0x7e, 0x90, 0x6a, 0x24, 0x36, 0xb6, 0xd6, 0x27, - 0xd2, 0x3a, 0xc6, 0xf5, 0x34, 0x0c, 0x2f, 0x07, 0xf9, 0x0f, 0xe8, 0x08, 0xd0, 0xdb, 0x90, 0xb0, - 0x48, 0x15, 0x1f, 0x0d, 0x02, 0x2a, 0xde, 0x39, 0x16, 0x8d, 0x8b, 0x64, 0xbd, 0x10, 0xe4, 0x1f, - 0x35, 0xf0, 0x64, 0x74, 0xaa, 0x61, 0xb8, 0xf5, 0xb6, 0xf0, 0x65, 0xd7, 0x80, 0x95, 0xac, 0xe3, - 0x07, 0xfc, 0x1d, 0x15, 0xc2, 0xb1, 0x69, 0xf0, 0xb4, 0xb2, 0x50, 0x69, 0x55, 0x4d, 0x17, 0x6e, - 0xa5, 0x01, 0x7f, 0x4e, 0x85, 0xeb, 0x78, 0x99, 0xd5, 0xff, 0x73, 0x56, 0xc4, 0x74, 0xbb, 0x29, - 0x67, 0xb6, 0x1b, 0x73, 0x0d, 0x56, 0xa7, 0x5d, 0xa7, 0xf7, 0x66, 0xf3, 0x57, 0x58, 0x9f, 0xb6, - 0xfb, 0xee, 0x45, 0x49, 0xf8, 0x05, 0xf6, 0xdf, 0xdf, 0xcb, 0xb0, 0x71, 0xb5, 0xfe, 0x78, 0x77, - 0xdf, 0x2c, 0x2e, 0x53, 0x37, 0x8b, 0x21, 0x3c, 0x13, 0x2c, 0xda, 0xa2, 0xc6, 0x3b, 0x54, 0xa7, - 0x50, 0x8b, 0x57, 0x32, 0x92, 0x2a, 0xdc, 0x86, 0xc6, 0x28, 0x64, 0xec, 0x63, 0x57, 0x19, 0x0c, - 0x11, 0x3a, 0x5d, 0x61, 0x16, 0x15, 0x37, 0x79, 0x64, 0x65, 0x16, 0x59, 0x5d, 0x75, 0xa2, 0xd1, - 0xbb, 0x0f, 0x5e, 0x6d, 0x9e, 0x3b, 0xf2, 0x22, 0x1c, 0xb6, 0x2d, 0xee, 0x76, 0xd8, 0xe5, 0x48, - 0x76, 0xd2, 0xbf, 0x96, 0xe7, 0xd4, 0xeb, 0xf8, 0xc3, 0xef, 0xce, 0x79, 0x27, 0xff, 0x3f, 0x76, - 0x58, 0x53, 0xe3, 0xe8, 0xc1, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x6b, 0x43, 0xac, 0x12, 0x10, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xdd, 0x72, 0xd3, 0x46, + 0x14, 0x8e, 0x1d, 0xdb, 0xc4, 0xc7, 0x89, 0x63, 0x96, 0x36, 0x88, 0x10, 0x48, 0xd0, 0x4c, 0x3b, + 0x4c, 0x3b, 0xb5, 0x87, 0x30, 0x99, 0x0e, 0x99, 0xe6, 0xc2, 0x71, 0x02, 0x0e, 0xcd, 0x0f, 0xdd, + 0x90, 0x52, 0xe8, 0x74, 0xdc, 0xb5, 0xb4, 0x4e, 0x04, 0x2b, 0xad, 0x58, 0xad, 0xf8, 0xb9, 0xeb, + 0x3b, 0xf4, 0x31, 0x7a, 0xdf, 0x27, 0xe8, 0x1b, 0xf5, 0x05, 0x3a, 0xda, 0x95, 0x64, 0x49, 0x76, + 0x6a, 0x18, 0xb8, 0xf3, 0xea, 0x7c, 0xdf, 0xd9, 0x3d, 0xff, 0xc7, 0x70, 0x7b, 0xc4, 0xde, 0x4b, + 0xea, 0xd8, 0xac, 0x43, 0x6c, 0xd7, 0xf1, 0x3a, 0xf4, 0x1d, 0xb5, 0x42, 0xe9, 0x70, 0xaf, 0xed, + 0x0b, 0x2e, 0x39, 0x6a, 0x26, 0xf2, 0xb6, 0x92, 0xaf, 0xde, 0x2c, 0xe0, 0x2d, 0xee, 0xba, 0x09, + 0x78, 0x75, 0x2d, 0x15, 0x5a, 0x5c, 0xd0, 0x0e, 0x73, 0x24, 0x15, 0x84, 0x05, 0xb1, 0xf4, 0x56, + 0x5e, 0x5a, 0xb8, 0x69, 0xf5, 0x76, 0x5e, 0xec, 0xd8, 0xd4, 0x93, 0xce, 0xc8, 0xa1, 0x22, 0x91, + 0x9f, 0x73, 0x7e, 0xce, 0x68, 0x47, 0x9d, 0x86, 0xe1, 0xa8, 0x63, 0x87, 0x82, 0x64, 0xf8, 0xeb, + 0x45, 0xb9, 0x74, 0x5c, 0x1a, 0x48, 0xe2, 0xfa, 0x1a, 0x60, 0xfe, 0x53, 0x82, 0x95, 0xfd, 0xe4, + 0xd2, 0x9e, 0xa0, 0x44, 0x52, 0x4c, 0x5f, 0x87, 0x34, 0x90, 0xc8, 0x80, 0x2b, 0xbe, 0xe0, 0x2f, + 0xa9, 0x25, 0x8d, 0xd2, 0x46, 0xe9, 0x6e, 0x1d, 0x27, 0x47, 0xb4, 0x02, 0x35, 0x9b, 0xbb, 0xc4, + 0xf1, 0x8c, 0xb2, 0x12, 0xc4, 0x27, 0x84, 0xa0, 0xe2, 0x11, 0x97, 0x1a, 0xf3, 0xea, 0xab, 0xfa, + 0x8d, 0xee, 0x41, 0x25, 0xf0, 0xa9, 0x65, 0x54, 0x36, 0x4a, 0x77, 0x1b, 0x9b, 0xb7, 0xda, 0x79, + 0xd7, 0xb5, 0xd3, 0xbb, 0x4f, 0x7d, 0x6a, 0x61, 0x05, 0x45, 0xf7, 0xa0, 0xe6, 0x78, 0x7e, 0x28, + 0x03, 0xa3, 0xaa, 0x48, 0x37, 0xc6, 0xa4, 0xc8, 0x0b, 0xed, 0x43, 0xed, 0xc2, 0x23, 0xe2, 0xe3, + 0x18, 0x68, 0xbe, 0x04, 0x23, 0xd5, 0x84, 0x29, 0x23, 0xa1, 0x67, 0x5d, 0x24, 0x76, 0x6c, 0x43, + 0xd9, 0xb1, 0x95, 0x09, 0x8d, 0xcd, 0x6f, 0x0a, 0xaa, 0x9e, 0x71, 0xf1, 0x6a, 0xc4, 0xf8, 0xdb, + 0x94, 0x7c, 0x90, 0x7a, 0x18, 0x97, 0x1d, 0x7b, 0x9a, 0x45, 0xe6, 0x19, 0x5c, 0x9f, 0xf0, 0x58, + 0xe0, 0x73, 0x2f, 0xa0, 0x9f, 0x72, 0x95, 0xf9, 0x1c, 0x6e, 0x4e, 0x40, 0x1e, 0x51, 0xf9, 0x19, + 0xac, 0x30, 0xff, 0x2e, 0x41, 0x3d, 0x95, 0x7d, 0x92, 0x3f, 0x92, 0x68, 0x96, 0x3f, 0x3c, 0x9a, + 0xdb, 0x70, 0xc5, 0x62, 0x3c, 0x08, 0x85, 0xf6, 0x62, 0x63, 0x73, 0xe3, 0x52, 0x56, 0x4f, 0xe3, + 0x70, 0x42, 0x30, 0x7f, 0x87, 0xa5, 0x54, 0x78, 0xe8, 0x04, 0x12, 0x3d, 0x00, 0x48, 0x4b, 0x24, + 0x30, 0x4a, 0x1b, 0xf3, 0xf9, 0xf4, 0x28, 0xe8, 0xc3, 0x19, 0x30, 0xfa, 0x02, 0xaa, 0x92, 0xbf, + 0xa2, 0x49, 0xce, 0xea, 0x83, 0x49, 0xa0, 0x39, 0x4e, 0xa7, 0x5d, 0xc6, 0x87, 0xe8, 0x3e, 0xd4, + 0xde, 0x10, 0x16, 0xd2, 0x20, 0x76, 0xd1, 0xe5, 0xd9, 0xd7, 0x9f, 0xc3, 0x31, 0x14, 0x21, 0x98, + 0x0f, 0x85, 0xa3, 0x55, 0xf7, 0xe7, 0x70, 0x74, 0xd8, 0xad, 0x41, 0xc5, 0x26, 0x92, 0x98, 0x3d, + 0x58, 0xea, 0x0e, 0xb9, 0x90, 0x47, 0x54, 0x92, 0xe8, 0x43, 0xf4, 0x12, 0x8b, 0x84, 0x01, 0x8d, + 0xcb, 0x4a, 0x1f, 0xd0, 0x1a, 0xd4, 0x7d, 0xe1, 0x78, 0x96, 0xe3, 0x13, 0x16, 0xbf, 0x71, 0xfc, + 0xc1, 0xfc, 0xb7, 0x0a, 0xad, 0xa2, 0x9f, 0x22, 0xd7, 0xf2, 0x50, 0xaa, 0x4a, 0xd1, 0x6f, 0xbd, + 0x5d, 0x74, 0x45, 0xde, 0xb6, 0xfe, 0x1c, 0x4e, 0x08, 0x68, 0x0b, 0xaa, 0x54, 0x08, 0x2e, 0x26, + 0x43, 0xa9, 0xac, 0x4c, 0xef, 0xda, 0x8f, 0x40, 0xfd, 0x39, 0xac, 0xd1, 0xe8, 0x2b, 0x68, 0x90, + 0xc8, 0x98, 0x81, 0xb6, 0x00, 0xa2, 0x77, 0xee, 0x96, 0x8d, 0x52, 0x7f, 0x0e, 0x83, 0x12, 0xf4, + 0x94, 0x31, 0x0f, 0xa1, 0xa9, 0x61, 0x6e, 0x6c, 0xb4, 0xb1, 0x38, 0x3d, 0x63, 0x72, 0x9e, 0xe9, + 0xcf, 0xe1, 0x25, 0x92, 0x73, 0xd5, 0x43, 0x58, 0xb6, 0xb8, 0xeb, 0x87, 0x92, 0xda, 0x83, 0xb8, + 0x27, 0xcc, 0xcf, 0x88, 0x4a, 0xf4, 0x1a, 0xdc, 0x4c, 0x58, 0x07, 0x8a, 0x84, 0x7e, 0x80, 0xaa, + 0x7f, 0x41, 0x02, 0xaa, 0xda, 0x50, 0x73, 0xf3, 0xeb, 0x59, 0x69, 0xdf, 0x7e, 0x12, 0xa1, 0xb1, + 0x26, 0x45, 0x59, 0x17, 0x48, 0x22, 0xa2, 0x47, 0x10, 0x19, 0x37, 0xa5, 0xd5, 0xb6, 0x6e, 0xad, + 0xed, 0xa4, 0xb5, 0xb6, 0x9f, 0x26, 0xad, 0x15, 0xd7, 0x63, 0x74, 0x57, 0xa2, 0x2d, 0x58, 0x48, + 0x5a, 0xb2, 0x51, 0x8b, 0x5f, 0x5e, 0x24, 0xee, 0xc5, 0x00, 0x9c, 0x42, 0xa3, 0x1b, 0x2d, 0xd5, + 0x5a, 0xd4, 0x8d, 0x57, 0x66, 0xdf, 0x18, 0xa3, 0xbb, 0xaa, 0x44, 0x42, 0xdf, 0x4e, 0xa8, 0x0b, + 0xb3, 0xa9, 0x31, 0xba, 0x2b, 0xd1, 0x2e, 0x2c, 0x79, 0x3c, 0xaa, 0x76, 0x8b, 0xe8, 0x02, 0xab, + 0xab, 0x02, 0x5b, 0x2b, 0x06, 0xed, 0x38, 0x03, 0xc2, 0x79, 0x0a, 0xda, 0x86, 0xc6, 0xdb, 0xd8, + 0x9b, 0x03, 0xc7, 0x36, 0x1a, 0x53, 0xa3, 0x95, 0xe9, 0x2a, 0x90, 0xa0, 0x0f, 0xec, 0xdd, 0x65, + 0x58, 0xd2, 0xe9, 0x39, 0x10, 0x34, 0x08, 0x99, 0x34, 0x77, 0xa0, 0x79, 0xfa, 0x3e, 0x90, 0xd4, + 0x4d, 0x13, 0xe2, 0x5b, 0xb8, 0x9a, 0xd6, 0xf4, 0xc0, 0x62, 0x61, 0x20, 0xa9, 0x88, 0xeb, 0xa8, + 0x45, 0xc7, 0xf5, 0xa1, 0xbe, 0x9b, 0x7f, 0x55, 0xe0, 0x6a, 0x1a, 0xd2, 0x54, 0x45, 0x0f, 0x2a, + 0x2e, 0xb7, 0x75, 0xf5, 0x35, 0x37, 0x3b, 0x97, 0x76, 0x8f, 0x84, 0x90, 0xf9, 0xc2, 0x6d, 0x8a, + 0x15, 0xf9, 0xff, 0xab, 0x35, 0x1a, 0x9d, 0x1e, 0x0d, 0xa4, 0xe3, 0x9d, 0xab, 0x74, 0x5d, 0xc2, + 0xc9, 0x11, 0xed, 0xc0, 0x62, 0x60, 0x5d, 0x50, 0x3b, 0x64, 0x3a, 0x3e, 0x95, 0x99, 0xf1, 0x69, + 0xa4, 0xf8, 0xae, 0x44, 0x2f, 0xe0, 0x4b, 0x9f, 0x08, 0xea, 0xc9, 0x81, 0xc7, 0x6d, 0x3a, 0x48, + 0x2d, 0x8e, 0x93, 0xb2, 0x98, 0xd7, 0xc7, 0xdc, 0xa6, 0xd3, 0x5a, 0xf9, 0x35, 0xad, 0x24, 0x27, + 0x46, 0xbf, 0xc2, 0x35, 0x41, 0x47, 0x54, 0x50, 0xcf, 0xca, 0x6a, 0x6e, 0x7d, 0xf4, 0xa0, 0x40, + 0xa9, 0x9a, 0xb1, 0xf2, 0x47, 0xb0, 0x1c, 0xa8, 0x48, 0x8e, 0x3b, 0xc2, 0xd5, 0xe9, 0x2d, 0x2b, + 0x1f, 0x70, 0xdc, 0x0c, 0x72, 0x67, 0xf3, 0x97, 0xcc, 0x48, 0x88, 0xe2, 0x81, 0x00, 0x6a, 0x47, + 0xdd, 0xe3, 0xb3, 0xee, 0x61, 0x6b, 0x0e, 0x2d, 0x41, 0xfd, 0xb4, 0xd7, 0xdf, 0xdf, 0x3b, 0x3b, + 0xdc, 0xdf, 0x6b, 0x95, 0x22, 0xd1, 0xe9, 0xf3, 0xd3, 0xa7, 0xfb, 0x47, 0xad, 0x32, 0x5a, 0x84, + 0x05, 0xbc, 0x7f, 0xd8, 0x3d, 0x3b, 0xee, 0xf5, 0x5b, 0xf3, 0x08, 0x41, 0xb3, 0xd7, 0x3f, 0x38, + 0xdc, 0x1b, 0x3c, 0x3b, 0xc1, 0x3f, 0x3e, 0x3c, 0x3c, 0x79, 0xd6, 0xaa, 0x98, 0x3f, 0x43, 0x2b, + 0x9b, 0xd8, 0x6a, 0xde, 0x4c, 0x54, 0x44, 0xe9, 0xa3, 0x2b, 0xc2, 0xfc, 0xb3, 0x9a, 0x79, 0xf2, + 0xa9, 0x1e, 0x89, 0x0d, 0xbd, 0xa2, 0x0c, 0x7c, 0x46, 0xbc, 0x4b, 0xe6, 0x4c, 0xb6, 0x46, 0x34, + 0xfa, 0x09, 0x23, 0x1e, 0xda, 0x4a, 0x97, 0xa3, 0xf2, 0x87, 0x34, 0xc2, 0x18, 0x8c, 0x76, 0x60, + 0x21, 0x75, 0xbc, 0xee, 0xa0, 0x77, 0x66, 0x26, 0x3e, 0x4e, 0x29, 0xa8, 0x5f, 0xf4, 0x43, 0x75, + 0xfa, 0x28, 0x2f, 0x3a, 0x30, 0xea, 0xe8, 0xf9, 0xfe, 0x70, 0x07, 0x1a, 0xb6, 0x13, 0x90, 0x21, + 0xa3, 0x03, 0xc2, 0x98, 0xea, 0x89, 0x0b, 0xd1, 0xf0, 0x88, 0x3f, 0x76, 0x19, 0x43, 0x6d, 0xa8, + 0x31, 0x32, 0xa4, 0x2c, 0x88, 0x1b, 0xdf, 0xca, 0xc4, 0x54, 0x53, 0x52, 0x1c, 0xa3, 0xd0, 0x0e, + 0x34, 0x88, 0xe7, 0x71, 0x19, 0x3f, 0x4d, 0xb7, 0xbc, 0x9b, 0x13, 0x93, 0x66, 0x0c, 0xc1, 0x59, + 0x3c, 0x7a, 0x00, 0x75, 0x12, 0xca, 0x8b, 0x81, 0xe0, 0x8c, 0x1a, 0x75, 0x45, 0x36, 0x26, 0xc8, + 0xa1, 0xbc, 0xc0, 0x9c, 0x51, 0xe5, 0xd3, 0x05, 0x12, 0x9f, 0xd0, 0x63, 0x68, 0x05, 0xd4, 0x0a, + 0x85, 0x23, 0xdf, 0x0f, 0x2c, 0xee, 0x49, 0xfa, 0x4e, 0xaa, 0x91, 0xd8, 0xd8, 0x5c, 0x9f, 0x48, + 0xeb, 0x18, 0xd7, 0xd3, 0x30, 0xbc, 0x1c, 0xe4, 0x3f, 0xa0, 0x23, 0x40, 0xaf, 0x43, 0xc2, 0x22, + 0x55, 0x7c, 0x34, 0x08, 0xa8, 0x78, 0xe3, 0x58, 0x34, 0x2e, 0x92, 0xf5, 0x42, 0x90, 0x7f, 0xd2, + 0xc0, 0x93, 0xd1, 0xa9, 0x86, 0xe1, 0xd6, 0xeb, 0xc2, 0x97, 0x5d, 0x03, 0x56, 0xb2, 0x8e, 0x1f, + 0xf0, 0x37, 0x54, 0x08, 0xc7, 0xa6, 0xc1, 0xe3, 0xca, 0x42, 0xa5, 0x55, 0x35, 0x5d, 0xb8, 0x91, + 0x06, 0xfc, 0x29, 0x15, 0xae, 0xe3, 0x65, 0x56, 0xff, 0x4f, 0x59, 0x11, 0xd3, 0xed, 0xa6, 0x9c, + 0xd9, 0x6e, 0xcc, 0x35, 0x58, 0x9d, 0x76, 0x9d, 0xde, 0x9b, 0xcd, 0xdf, 0x60, 0x7d, 0xda, 0xee, + 0xbb, 0x17, 0x25, 0xe1, 0x67, 0xd8, 0x7f, 0xff, 0x28, 0xc3, 0xc6, 0xe5, 0xfa, 0xe3, 0xdd, 0xfd, + 0x5e, 0x71, 0x99, 0xba, 0x5e, 0x0c, 0xe1, 0x99, 0x60, 0xd1, 0x16, 0x35, 0xde, 0xa1, 0x3a, 0x85, + 0x5a, 0xbc, 0x94, 0x91, 0x54, 0xe1, 0x36, 0x34, 0x46, 0x21, 0x63, 0x1f, 0xba, 0xca, 0x60, 0x88, + 0xd0, 0xe9, 0x0a, 0xb3, 0xa8, 0xb8, 0xc9, 0x23, 0x2b, 0xb3, 0xc8, 0xea, 0xaa, 0x13, 0x8d, 0xde, + 0xfd, 0xfe, 0xc5, 0xd6, 0xb9, 0x23, 0x2f, 0xc2, 0x61, 0xdb, 0xe2, 0x6e, 0x47, 0x71, 0xb8, 0x38, + 0xef, 0xa4, 0x7f, 0x2f, 0xcf, 0xa9, 0xd7, 0xf1, 0x87, 0xdf, 0x9d, 0xf3, 0x4e, 0xfe, 0xbf, 0xec, + 0xb0, 0xa6, 0x46, 0xd2, 0xfd, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x0e, 0x7b, 0x13, 0x2a, 0x14, 0x0f, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/execution.pb.validate.go b/gen/pb-go/flyteidl/admin/execution.pb.validate.go index 0eb4035c4..45d1fb992 100644 --- a/gen/pb-go/flyteidl/admin/execution.pb.validate.go +++ b/gen/pb-go/flyteidl/admin/execution.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/gen/pb-go/flyteidl/admin/launch_plan.pb.go b/gen/pb-go/flyteidl/admin/launch_plan.pb.go index 7a06bda4a..214b60f4e 100644 --- a/gen/pb-go/flyteidl/admin/launch_plan.pb.go +++ b/gen/pb-go/flyteidl/admin/launch_plan.pb.go @@ -5,9 +5,9 @@ package admin import ( fmt "fmt" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" timestamp "github.com/golang/protobuf/ptypes/timestamp" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" math "math" ) @@ -818,71 +818,71 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/launch_plan.proto", fileDescriptor_368a863574f5e699) } var fileDescriptor_368a863574f5e699 = []byte{ - // 1051 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x6d, 0x6f, 0xdb, 0x36, - 0x10, 0x8e, 0x5d, 0xc7, 0x49, 0xce, 0x89, 0xe3, 0x72, 0x45, 0xaa, 0x39, 0x5d, 0x9b, 0x79, 0x18, - 0xd0, 0xbd, 0x54, 0xc6, 0xd2, 0xf5, 0x43, 0xb7, 0x75, 0x80, 0x9d, 0x06, 0xa8, 0xb7, 0xa4, 0xcd, - 0x98, 0xae, 0x18, 0xf6, 0x45, 0xa0, 0xa5, 0xb3, 0xcd, 0x45, 0x12, 0x15, 0x91, 0x6a, 0x12, 0xec, - 0x4b, 0x7f, 0xc1, 0x7e, 0xc7, 0xb0, 0xff, 0xb2, 0xff, 0x34, 0x90, 0xa2, 0xfc, 0x22, 0x37, 0xe8, - 0x36, 0xa0, 0x9f, 0x6c, 0xf2, 0x9e, 0xe7, 0x78, 0x77, 0x7c, 0x78, 0x27, 0xd8, 0x1b, 0x85, 0x57, - 0x0a, 0x79, 0x10, 0x76, 0x59, 0x10, 0xf1, 0xb8, 0x1b, 0xb2, 0x2c, 0xf6, 0x27, 0x5e, 0x12, 0xb2, - 0xd8, 0x4d, 0x52, 0xa1, 0x04, 0x69, 0x16, 0x08, 0xd7, 0x20, 0xda, 0x1f, 0x4d, 0x19, 0xbe, 0x48, - 0xb1, 0x8b, 0x97, 0xe8, 0x67, 0x8a, 0x0b, 0x0b, 0x6f, 0xdf, 0x59, 0x34, 0x87, 0x5c, 0x61, 0xca, - 0x42, 0x69, 0xad, 0x77, 0x17, 0xad, 0x3c, 0xc0, 0x58, 0xf1, 0x11, 0xc7, 0xd4, 0xda, 0x4b, 0xce, - 0x79, 0xac, 0x30, 0x1d, 0x31, 0x1f, 0x97, 0xcc, 0x79, 0xb4, 0xd2, 0x9f, 0x60, 0x90, 0x85, 0x85, - 0x79, 0xb7, 0x64, 0xf6, 0x45, 0x14, 0x4d, 0x03, 0xbb, 0x37, 0x16, 0x62, 0x1c, 0x62, 0xd7, 0xac, - 0x86, 0xd9, 0xa8, 0xab, 0x78, 0x84, 0x52, 0xb1, 0x28, 0xc9, 0x01, 0x9d, 0x4b, 0xb8, 0x7d, 0x64, - 0xb2, 0x3f, 0x09, 0x59, 0x7c, 0x90, 0x22, 0x53, 0x48, 0xf1, 0x3c, 0x43, 0xa9, 0xc8, 0x67, 0x50, - 0xe5, 0x81, 0x53, 0xd9, 0xab, 0xdc, 0x6f, 0xec, 0x7f, 0xe8, 0x4e, 0x0b, 0xa2, 0x63, 0x74, 0x07, - 0xd3, 0x1c, 0x68, 0x95, 0x07, 0x64, 0x1f, 0x6a, 0x32, 0x41, 0xdf, 0xa9, 0x1a, 0xf0, 0x5d, 0x77, - 0xb1, 0x7a, 0xee, 0xec, 0x84, 0xd3, 0x04, 0x7d, 0x6a, 0xb0, 0x9d, 0x36, 0x38, 0xcb, 0x27, 0xcb, - 0x44, 0xc4, 0x12, 0x3b, 0x7f, 0x56, 0x00, 0x66, 0xc6, 0xf7, 0x1c, 0x09, 0xf9, 0x16, 0xd6, 0xfc, - 0x50, 0xc8, 0x2c, 0x45, 0xe7, 0x86, 0xa1, 0x7d, 0x7c, 0x3d, 0xed, 0x20, 0x07, 0xd2, 0x82, 0xd1, - 0x41, 0x68, 0xce, 0xac, 0x47, 0x5c, 0x2a, 0xf2, 0x04, 0x36, 0xe7, 0x04, 0x25, 0x9d, 0xca, 0xde, - 0x8d, 0xfb, 0x8d, 0xfd, 0xf6, 0xf5, 0x3e, 0x69, 0x23, 0x9c, 0xfe, 0x97, 0xe4, 0x16, 0xac, 0x2a, - 0x71, 0x86, 0xb1, 0x49, 0x61, 0x83, 0xe6, 0x8b, 0xce, 0x9b, 0x0a, 0xd4, 0x7a, 0x99, 0x9a, 0x10, + // 1052 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x6d, 0x6f, 0x1b, 0x45, + 0x10, 0x8e, 0x5d, 0xc7, 0x49, 0xc6, 0x89, 0xe3, 0x2e, 0x55, 0x7a, 0x38, 0xa5, 0x0d, 0x46, 0x48, + 0xe5, 0xa5, 0x67, 0x29, 0x10, 0xa1, 0x02, 0x45, 0xb2, 0xd3, 0x48, 0x35, 0x24, 0x6d, 0xd8, 0x94, + 0x0a, 0xf1, 0xe5, 0xb4, 0xbe, 0x1b, 0xdb, 0x4b, 0xee, 0x6e, 0x2f, 0xb7, 0x7b, 0x4d, 0x22, 0xbe, + 0xf4, 0x17, 0xf0, 0x3b, 0x10, 0xff, 0x85, 0xff, 0x84, 0x76, 0x6f, 0xcf, 0x2f, 0xe7, 0x46, 0x05, + 0x24, 0x3e, 0xd9, 0xbb, 0xf3, 0x3c, 0xb3, 0x33, 0xb3, 0xcf, 0xce, 0x1c, 0xec, 0x8d, 0xc2, 0x6b, + 0x85, 0x3c, 0x08, 0xbb, 0x2c, 0x88, 0x78, 0xdc, 0x0d, 0x59, 0x16, 0xfb, 0x13, 0x2f, 0x09, 0x59, + 0xec, 0x26, 0xa9, 0x50, 0x82, 0x34, 0x0b, 0x84, 0x6b, 0x10, 0xed, 0x0f, 0xa6, 0x0c, 0x5f, 0xa4, + 0xd8, 0xc5, 0x2b, 0xf4, 0x33, 0xc5, 0x85, 0x85, 0xb7, 0xef, 0x2d, 0x9a, 0x43, 0xae, 0x30, 0x65, + 0xa1, 0xb4, 0xd6, 0xfb, 0x8b, 0x56, 0x1e, 0x60, 0xac, 0xf8, 0x88, 0x63, 0x6a, 0xed, 0x25, 0xe7, + 0x3c, 0x56, 0x98, 0x8e, 0x98, 0x8f, 0x4b, 0xe6, 0x3c, 0x5a, 0xe9, 0x4f, 0x30, 0xc8, 0xc2, 0xc2, + 0xbc, 0x5b, 0x32, 0xfb, 0x22, 0x8a, 0xa6, 0x81, 0x3d, 0x18, 0x0b, 0x31, 0x0e, 0xb1, 0x6b, 0x56, + 0xc3, 0x6c, 0xd4, 0x55, 0x3c, 0x42, 0xa9, 0x58, 0x94, 0xe4, 0x80, 0xce, 0x15, 0xdc, 0x3d, 0x36, + 0xd9, 0x9f, 0x86, 0x2c, 0x3e, 0x4c, 0x91, 0x29, 0xa4, 0x78, 0x91, 0xa1, 0x54, 0xe4, 0x13, 0xa8, + 0xf2, 0xc0, 0xa9, 0xec, 0x55, 0x1e, 0x36, 0xf6, 0xdf, 0x77, 0xa7, 0x05, 0xd1, 0x31, 0xba, 0x83, + 0x69, 0x0e, 0xb4, 0xca, 0x03, 0xb2, 0x0f, 0x35, 0x99, 0xa0, 0xef, 0x54, 0x0d, 0xf8, 0xbe, 0xbb, + 0x58, 0x3d, 0x77, 0x76, 0xc2, 0x59, 0x82, 0x3e, 0x35, 0xd8, 0x4e, 0x1b, 0x9c, 0xe5, 0x93, 0x65, + 0x22, 0x62, 0x89, 0x9d, 0x3f, 0x2a, 0x00, 0x33, 0xe3, 0xff, 0x1c, 0x09, 0xf9, 0x06, 0xd6, 0xfc, + 0x50, 0xc8, 0x2c, 0x45, 0xe7, 0x96, 0xa1, 0x7d, 0x78, 0x33, 0xed, 0x30, 0x07, 0xd2, 0x82, 0xd1, + 0x41, 0x68, 0xce, 0xac, 0xc7, 0x5c, 0x2a, 0xf2, 0x04, 0x36, 0xe7, 0x04, 0x25, 0x9d, 0xca, 0xde, + 0xad, 0x87, 0x8d, 0xfd, 0xf6, 0xcd, 0x3e, 0x69, 0x23, 0x9c, 0xfe, 0x97, 0xe4, 0x0e, 0xac, 0x2a, + 0x71, 0x8e, 0xb1, 0x49, 0x61, 0x83, 0xe6, 0x8b, 0xce, 0x9b, 0x0a, 0xd4, 0x7a, 0x99, 0x9a, 0x10, 0x17, 0x08, 0x93, 0x32, 0x8b, 0xd8, 0x30, 0x44, 0x8f, 0xb3, 0xc8, 0x4b, 0x45, 0x88, 0xa6, 0x36, - 0x1b, 0xcf, 0x56, 0x68, 0x6b, 0x6a, 0x1b, 0xb0, 0x88, 0x8a, 0x10, 0xc9, 0xf7, 0xd0, 0x3e, 0xcb, + 0x1b, 0xcf, 0x56, 0x68, 0x6b, 0x6a, 0x1b, 0xb0, 0x88, 0x8a, 0x10, 0xc9, 0x77, 0xd0, 0x3e, 0xcf, 0x86, 0x98, 0xc6, 0xa8, 0x50, 0x7a, 0x12, 0xd3, 0xd7, 0xdc, 0x47, 0x8f, 0xf9, 0xbe, 0xc8, 0x62, - 0x95, 0x9f, 0xf1, 0x6c, 0x85, 0x3a, 0x33, 0xcc, 0x69, 0x0e, 0xe9, 0xe5, 0x88, 0xfe, 0x3a, 0xd4, - 0x23, 0x54, 0x13, 0x11, 0x74, 0xde, 0xd4, 0xe7, 0x53, 0xd5, 0xf5, 0x23, 0xdf, 0x40, 0xe3, 0x42, - 0xa4, 0x67, 0xa3, 0x50, 0x5c, 0x78, 0xff, 0xe6, 0x86, 0xa0, 0x40, 0x0f, 0x02, 0xf2, 0x23, 0x6c, - 0xeb, 0x7d, 0x75, 0xe5, 0x45, 0xa8, 0x58, 0xc0, 0x14, 0xb3, 0x97, 0xd6, 0xb9, 0xbe, 0x52, 0xc7, + 0x95, 0x9f, 0xf1, 0x6c, 0x85, 0x3a, 0x33, 0xcc, 0x59, 0x0e, 0xe9, 0xe5, 0x88, 0xfe, 0x3a, 0xd4, + 0x23, 0x54, 0x13, 0x11, 0x74, 0xde, 0xd4, 0xe7, 0x53, 0xd5, 0xf5, 0x23, 0x5f, 0x43, 0xe3, 0x52, + 0xa4, 0xe7, 0xa3, 0x50, 0x5c, 0x7a, 0xff, 0xe4, 0x86, 0xa0, 0x40, 0x0f, 0x02, 0xf2, 0x03, 0x6c, + 0xeb, 0x7d, 0x75, 0xed, 0x45, 0xa8, 0x58, 0xc0, 0x14, 0xb3, 0x97, 0xd6, 0xb9, 0xb9, 0x52, 0x27, 0x16, 0x49, 0x9b, 0x39, 0xb5, 0x58, 0x93, 0x3e, 0x34, 0x03, 0x1c, 0xb1, 0x2c, 0x54, 0x1e, 0x8f, - 0x93, 0x4c, 0x49, 0x7b, 0x93, 0xbb, 0xa5, 0x58, 0x4e, 0x58, 0xca, 0x22, 0x54, 0x98, 0x1e, 0xb3, - 0x84, 0x6e, 0x59, 0xca, 0xc0, 0x30, 0xc8, 0x77, 0xb0, 0x39, 0xe2, 0x97, 0x18, 0x14, 0x1e, 0x6a, - 0x6f, 0xcd, 0xe6, 0x28, 0x7f, 0xdb, 0x9a, 0xdf, 0x30, 0x70, 0xcb, 0xde, 0x81, 0x9a, 0xb9, 0x89, + 0x93, 0x4c, 0x49, 0x7b, 0x93, 0xbb, 0xa5, 0x58, 0x4e, 0x59, 0xca, 0x22, 0x54, 0x98, 0x9e, 0xb0, + 0x84, 0x6e, 0x59, 0xca, 0xc0, 0x30, 0xc8, 0xb7, 0xb0, 0x39, 0xe2, 0x57, 0x18, 0x14, 0x1e, 0x6a, + 0x6f, 0xcd, 0xe6, 0x38, 0x7f, 0xdb, 0x9a, 0xdf, 0x30, 0x70, 0xcb, 0xde, 0x81, 0x9a, 0xb9, 0x89, 0x55, 0x5d, 0xd1, 0x7e, 0xd5, 0xa9, 0x50, 0xb3, 0x26, 0x2e, 0xd4, 0x43, 0x36, 0xc4, 0x50, 0x3a, 0x75, 0xe3, 0x6f, 0x67, 0x39, 0x3b, 0x6d, 0xa5, 0x16, 0x45, 0x9e, 0x40, 0x83, 0xc5, 0xb1, 0x50, - 0x4c, 0xb7, 0x17, 0xe9, 0xac, 0x95, 0xd3, 0xc8, 0x49, 0xbd, 0x19, 0x84, 0xce, 0xe3, 0xc9, 0x97, - 0x50, 0x63, 0x99, 0x9a, 0x38, 0xeb, 0x86, 0x77, 0x6b, 0x89, 0x97, 0xa9, 0x49, 0x1e, 0x9c, 0x46, + 0x4c, 0xb7, 0x17, 0xe9, 0xac, 0x95, 0xd3, 0xc8, 0x49, 0xbd, 0x19, 0x84, 0xce, 0xe3, 0xc9, 0xe7, + 0x50, 0x63, 0x99, 0x9a, 0x38, 0xeb, 0x86, 0x77, 0x67, 0x89, 0x97, 0xa9, 0x49, 0x1e, 0x9c, 0x46, 0x91, 0xc7, 0xb0, 0xa1, 0x7f, 0x73, 0x0d, 0x6d, 0x18, 0x8a, 0xf3, 0x36, 0x8a, 0x56, 0x92, 0xa1, - 0xad, 0x33, 0xbb, 0x22, 0x3f, 0x40, 0x4b, 0xa2, 0x9f, 0xa5, 0xfa, 0x02, 0x7d, 0x11, 0x2b, 0xbc, - 0x54, 0x0e, 0x18, 0x0f, 0xf7, 0xca, 0x1e, 0x4e, 0x2d, 0xee, 0x20, 0x87, 0xd1, 0x6d, 0xb9, 0xb8, - 0x41, 0x8e, 0x81, 0x9c, 0x67, 0x2c, 0xd4, 0xae, 0xc4, 0xa8, 0xd0, 0xa8, 0xd3, 0x2a, 0x7b, 0x33, - 0xf5, 0xff, 0x29, 0x07, 0xbe, 0x18, 0x59, 0x9d, 0xd2, 0xd6, 0x79, 0x69, 0x87, 0xfc, 0x02, 0x3b, - 0x29, 0xbb, 0xf0, 0x44, 0xa6, 0x92, 0x4c, 0x79, 0x5a, 0x1f, 0x3a, 0xc2, 0x11, 0x1f, 0x3b, 0x37, - 0x8d, 0xcb, 0x4f, 0xca, 0x01, 0x52, 0x76, 0xf1, 0xc2, 0x80, 0x9f, 0x32, 0xc5, 0x0e, 0x0c, 0x94, - 0x7e, 0x90, 0x2e, 0x6f, 0x76, 0xfe, 0xae, 0xc2, 0xcd, 0xa5, 0x5e, 0x40, 0x1e, 0xc1, 0xaa, 0x54, - 0x4c, 0xe5, 0xaf, 0xb0, 0xb9, 0x9c, 0xff, 0xdc, 0xa3, 0xd1, 0x30, 0x9a, 0xa3, 0xc9, 0x53, 0xd8, - 0xc6, 0xcb, 0x04, 0x7d, 0x35, 0x93, 0x5c, 0xf5, 0xdd, 0xa2, 0x6d, 0x16, 0x1c, 0xab, 0xbb, 0x43, - 0x68, 0x4d, 0xbd, 0xe4, 0x19, 0x17, 0xda, 0x6f, 0x97, 0xdc, 0xbc, 0x62, 0x29, 0xd7, 0x9d, 0x41, - 0x7b, 0x99, 0x9e, 0x9c, 0xa7, 0x28, 0xc9, 0x63, 0x00, 0xdf, 0xf4, 0xe0, 0xc0, 0x63, 0xca, 0x4a, - 0xbf, 0xed, 0xe6, 0xd3, 0xc3, 0x2d, 0xa6, 0x87, 0xfb, 0xb2, 0x98, 0x1e, 0x74, 0xc3, 0xa2, 0x7b, - 0x4a, 0x53, 0xb3, 0x24, 0x28, 0xa8, 0xab, 0xef, 0xa6, 0x5a, 0x74, 0x4f, 0x75, 0xfe, 0xa8, 0x00, - 0x59, 0x7e, 0xdd, 0xe4, 0x6b, 0x58, 0x2f, 0x86, 0x9c, 0xed, 0x29, 0x4b, 0xaa, 0x3c, 0xb5, 0x76, - 0x3a, 0x45, 0x92, 0x3e, 0x6c, 0xc5, 0x42, 0x37, 0x1a, 0xdf, 0xbe, 0x9d, 0xaa, 0x69, 0xbc, 0x77, - 0xca, 0xd4, 0xe7, 0x73, 0x20, 0xba, 0x48, 0xe9, 0xfc, 0x3e, 0x3f, 0x0e, 0x7f, 0x36, 0x71, 0xfe, - 0x8f, 0x71, 0x38, 0x15, 0x44, 0xf5, 0xbf, 0x08, 0x62, 0x71, 0x22, 0x16, 0x87, 0xdb, 0x89, 0x78, - 0x02, 0xb7, 0x7b, 0xbe, 0xe2, 0xaf, 0x71, 0x6e, 0x6c, 0xd8, 0xc0, 0x1e, 0xcd, 0x05, 0xf6, 0xe9, - 0x52, 0xb2, 0x2c, 0xc2, 0xe0, 0xd0, 0x34, 0xcb, 0xc5, 0x20, 0x3b, 0x7f, 0x55, 0x60, 0xb7, 0xec, - 0x52, 0xcf, 0xaf, 0xc2, 0xad, 0x03, 0x6b, 0x49, 0x2a, 0x7e, 0x43, 0x5f, 0xe5, 0xd3, 0x85, 0x16, - 0x4b, 0xb2, 0x03, 0xf5, 0x40, 0x44, 0x8c, 0x17, 0x23, 0xca, 0xae, 0xf4, 0xe4, 0x0a, 0x79, 0xc4, - 0x95, 0xd1, 0xdf, 0x16, 0xcd, 0x17, 0xb3, 0x79, 0x56, 0x9b, 0x9b, 0x67, 0xe4, 0x01, 0xac, 0x49, - 0x91, 0x2a, 0x6f, 0x78, 0x65, 0x15, 0xb3, 0xd4, 0xaa, 0x4e, 0x45, 0xaa, 0x68, 0x5d, 0x83, 0xfa, - 0x57, 0x9f, 0x7f, 0x01, 0xdb, 0xa5, 0xa2, 0x91, 0x4d, 0x58, 0x1f, 0x3c, 0xef, 0x1d, 0xbc, 0x1c, - 0xbc, 0x3a, 0x6c, 0xad, 0x10, 0x80, 0xba, 0xfd, 0x5f, 0xe9, 0x3f, 0xfc, 0xf5, 0xab, 0x31, 0x57, - 0x93, 0x6c, 0xe8, 0xfa, 0x22, 0xea, 0x86, 0x57, 0x23, 0xd5, 0x9d, 0x7e, 0x23, 0x8d, 0x31, 0xee, - 0x26, 0xc3, 0x07, 0x63, 0xd1, 0x5d, 0xfc, 0x6c, 0x1a, 0xd6, 0x8d, 0x52, 0x1f, 0xfe, 0x13, 0x00, - 0x00, 0xff, 0xff, 0xf3, 0x3b, 0x27, 0x63, 0x1c, 0x0a, 0x00, 0x00, + 0xad, 0x33, 0xbb, 0x22, 0xdf, 0x43, 0x4b, 0xa2, 0x9f, 0xa5, 0xfa, 0x02, 0x7d, 0x11, 0x2b, 0xbc, + 0x52, 0x0e, 0x18, 0x0f, 0x0f, 0xca, 0x1e, 0xce, 0x2c, 0xee, 0x30, 0x87, 0xd1, 0x6d, 0xb9, 0xb8, + 0x41, 0x4e, 0x80, 0x5c, 0x64, 0x2c, 0xd4, 0xae, 0xc4, 0xa8, 0xd0, 0xa8, 0xd3, 0x2a, 0x7b, 0x33, + 0xf5, 0xff, 0x31, 0x07, 0xbe, 0x18, 0x59, 0x9d, 0xd2, 0xd6, 0x45, 0x69, 0x87, 0xfc, 0x0c, 0x3b, + 0x29, 0xbb, 0xf4, 0x44, 0xa6, 0x92, 0x4c, 0x79, 0x5a, 0x1f, 0x3a, 0xc2, 0x11, 0x1f, 0x3b, 0xb7, + 0x8d, 0xcb, 0x8f, 0xca, 0x01, 0x52, 0x76, 0xf9, 0xc2, 0x80, 0x9f, 0x32, 0xc5, 0x0e, 0x0d, 0x94, + 0xbe, 0x97, 0x2e, 0x6f, 0x76, 0xfe, 0xaa, 0xc2, 0xed, 0xa5, 0x5e, 0x40, 0x0e, 0x60, 0x55, 0x2a, + 0xa6, 0xf2, 0x57, 0xd8, 0x5c, 0xce, 0x7f, 0xee, 0xd1, 0x68, 0x18, 0xcd, 0xd1, 0xe4, 0x29, 0x6c, + 0xe3, 0x55, 0x82, 0xbe, 0x9a, 0x49, 0xae, 0xfa, 0x6e, 0xd1, 0x36, 0x0b, 0x8e, 0xd5, 0xdd, 0x11, + 0xb4, 0xa6, 0x5e, 0xf2, 0x8c, 0x0b, 0xed, 0xb7, 0x4b, 0x6e, 0x5e, 0xb1, 0x94, 0xeb, 0xce, 0xa0, + 0xbd, 0x4c, 0x4f, 0xce, 0x53, 0x94, 0xe4, 0x31, 0x80, 0x6f, 0x7a, 0x70, 0xe0, 0x31, 0x65, 0xa5, + 0xdf, 0x76, 0xf3, 0xe9, 0xe1, 0x16, 0xd3, 0xc3, 0x7d, 0x59, 0x4c, 0x0f, 0xba, 0x61, 0xd1, 0x3d, + 0xa5, 0xa9, 0x59, 0x12, 0x14, 0xd4, 0xd5, 0x77, 0x53, 0x2d, 0xba, 0xa7, 0x3a, 0xbf, 0x57, 0x80, + 0x2c, 0xbf, 0x6e, 0xf2, 0x25, 0xac, 0x17, 0x43, 0xce, 0xf6, 0x94, 0x25, 0x55, 0x9e, 0x59, 0x3b, + 0x9d, 0x22, 0x49, 0x1f, 0xb6, 0x62, 0xa1, 0x1b, 0x8d, 0x6f, 0xdf, 0x4e, 0xd5, 0x34, 0xde, 0x7b, + 0x65, 0xea, 0xf3, 0x39, 0x10, 0x5d, 0xa4, 0x74, 0x7e, 0x9b, 0x1f, 0x87, 0x3f, 0x99, 0x38, 0xff, + 0xc3, 0x38, 0x9c, 0x0a, 0xa2, 0xfa, 0x6f, 0x04, 0xb1, 0x38, 0x11, 0x8b, 0xc3, 0xed, 0x44, 0x3c, + 0x85, 0xbb, 0x3d, 0x5f, 0xf1, 0xd7, 0x38, 0x37, 0x36, 0x6c, 0x60, 0x07, 0x73, 0x81, 0x7d, 0xbc, + 0x94, 0x2c, 0x8b, 0x30, 0x38, 0x32, 0xcd, 0x72, 0x31, 0xc8, 0xce, 0x9f, 0x15, 0xd8, 0x2d, 0xbb, + 0xd4, 0xf3, 0xab, 0x70, 0xeb, 0xc0, 0x5a, 0x92, 0x8a, 0x5f, 0xd1, 0x57, 0xf9, 0x74, 0xa1, 0xc5, + 0x92, 0xec, 0x40, 0x3d, 0x10, 0x11, 0xe3, 0xc5, 0x88, 0xb2, 0x2b, 0x3d, 0xb9, 0x42, 0x1e, 0x71, + 0x65, 0xf4, 0xb7, 0x45, 0xf3, 0xc5, 0x6c, 0x9e, 0xd5, 0xe6, 0xe6, 0x19, 0x79, 0x04, 0x6b, 0x52, + 0xa4, 0xca, 0x1b, 0x5e, 0x5b, 0xc5, 0x2c, 0xb5, 0xaa, 0x33, 0x91, 0x2a, 0x5a, 0xd7, 0xa0, 0xfe, + 0xf5, 0xa7, 0x9f, 0xc1, 0x76, 0xa9, 0x68, 0x64, 0x13, 0xd6, 0x07, 0xcf, 0x7b, 0x87, 0x2f, 0x07, + 0xaf, 0x8e, 0x5a, 0x2b, 0x04, 0xa0, 0x6e, 0xff, 0x57, 0xfa, 0x5f, 0xfd, 0x72, 0x30, 0xe6, 0x6a, + 0x92, 0x0d, 0x5d, 0x5f, 0x44, 0x5d, 0xe3, 0x56, 0xa4, 0xe3, 0xee, 0xf4, 0x3b, 0x69, 0x8c, 0x71, + 0x37, 0x19, 0x3e, 0x1a, 0x8b, 0xee, 0xe2, 0xa7, 0xd3, 0xb0, 0x6e, 0xd4, 0xfa, 0xc5, 0xdf, 0x01, + 0x00, 0x00, 0xff, 0xff, 0x87, 0x8b, 0x70, 0xf7, 0x20, 0x0a, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/matchable_resource.pb.go b/gen/pb-go/flyteidl/admin/matchable_resource.pb.go index 87f18a984..c4e8ba701 100644 --- a/gen/pb-go/flyteidl/admin/matchable_resource.pb.go +++ b/gen/pb-go/flyteidl/admin/matchable_resource.pb.go @@ -5,8 +5,8 @@ package admin import ( fmt "fmt" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" math "math" ) @@ -740,66 +740,67 @@ func init() { } var fileDescriptor_1d15bcabb02640f4 = []byte{ - // 976 bytes of a gzipped FileDescriptorProto + // 978 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xdd, 0x72, 0xda, 0x46, 0x14, 0x46, 0x06, 0x53, 0x38, 0x34, 0xa0, 0x6c, 0x63, 0x5b, 0xc1, 0xd3, 0x98, 0x6a, 0xfa, 0xe3, - 0x76, 0x26, 0xd0, 0x92, 0x5e, 0xa4, 0x9d, 0xf6, 0x02, 0x88, 0x28, 0x4c, 0xe5, 0x60, 0x2f, 0x90, - 0x49, 0x7a, 0xa3, 0x11, 0x62, 0x11, 0x2a, 0xfa, 0xb3, 0xb4, 0x72, 0xca, 0xf4, 0x25, 0xfa, 0x1a, - 0x7d, 0x80, 0x3e, 0x4a, 0x2f, 0xfa, 0x0e, 0x7d, 0x88, 0xcc, 0xea, 0x07, 0x81, 0x02, 0x19, 0xdf, - 0xe9, 0x9c, 0x3d, 0xe7, 0x7c, 0x67, 0xcf, 0x7e, 0xfb, 0x69, 0xe1, 0xab, 0x85, 0xb9, 0xa6, 0xc4, - 0x98, 0x9b, 0x2d, 0x75, 0x6e, 0x19, 0x76, 0xcb, 0x52, 0xa9, 0xb6, 0x54, 0x67, 0x26, 0x51, 0x3c, - 0xe2, 0x3b, 0x81, 0xa7, 0x91, 0xa6, 0xeb, 0x39, 0xd4, 0x41, 0xd5, 0x24, 0xb0, 0x19, 0x06, 0xd6, - 0xcf, 0x33, 0x89, 0x9a, 0x63, 0x59, 0x8e, 0x1d, 0x05, 0xd7, 0x3f, 0xdd, 0x2c, 0x6a, 0x8e, 0x47, - 0x5a, 0xe4, 0x0f, 0xa2, 0x05, 0xd4, 0x48, 0x96, 0xc5, 0x25, 0xf0, 0x13, 0xd5, 0x5f, 0xe1, 0x18, - 0x61, 0xec, 0x12, 0x0d, 0xf1, 0x90, 0xd7, 0xdc, 0x40, 0xe0, 0x1a, 0xdc, 0x65, 0x19, 0xb3, 0x4f, - 0xe6, 0xd1, 0xdd, 0x40, 0x38, 0x8a, 0x3c, 0xba, 0x1b, 0xa0, 0x53, 0x28, 0x5a, 0xc4, 0x72, 0xbc, - 0xb5, 0x90, 0x0f, 0x9d, 0xb1, 0x85, 0x04, 0xf8, 0xc8, 0xa7, 0x8e, 0xa7, 0xea, 0x44, 0x28, 0x84, - 0x0b, 0x89, 0x29, 0xfe, 0xc5, 0xc1, 0xe9, 0x36, 0x54, 0x87, 0x52, 0xcf, 0x98, 0x05, 0x94, 0xf8, - 0xe8, 0x27, 0x28, 0xcd, 0xc9, 0x42, 0x0d, 0x4c, 0xea, 0x87, 0xa8, 0x95, 0x76, 0xa3, 0xb9, 0xbb, - 0xc7, 0x66, 0xb6, 0x49, 0xbc, 0xc9, 0x40, 0xcf, 0xa1, 0x68, 0x1a, 0x96, 0x41, 0xfd, 0xb0, 0xbf, - 0xfb, 0xe4, 0xc6, 0xf1, 0xe2, 0x3f, 0x1c, 0x3c, 0xee, 0x99, 0x81, 0x4f, 0x89, 0xb7, 0xa7, 0xab, - 0x37, 0x00, 0xea, 0xc6, 0x12, 0xb8, 0x46, 0xfe, 0xb2, 0xd2, 0xfe, 0x21, 0x5b, 0xfb, 0x60, 0x7a, - 0x33, 0xfd, 0x94, 0x6c, 0xea, 0xad, 0xf1, 0x56, 0xb1, 0xfa, 0xcf, 0x50, 0xcb, 0x2c, 0xb3, 0x11, - 0xaf, 0xc8, 0x3a, 0x19, 0xfa, 0x8a, 0xac, 0xd1, 0x23, 0x38, 0xbe, 0x53, 0xcd, 0x80, 0xc4, 0x63, - 0x8f, 0x8c, 0x1f, 0x8f, 0x9e, 0x73, 0x62, 0x13, 0x04, 0x29, 0x39, 0xc7, 0x9b, 0x80, 0x04, 0xdb, - 0x5d, 0x23, 0x28, 0x50, 0x55, 0x8f, 0xfa, 0x2d, 0xe3, 0xf0, 0x5b, 0x7c, 0x0a, 0x27, 0x9b, 0xf8, - 0xb8, 0x61, 0x59, 0x9d, 0x11, 0x33, 0x85, 0xe0, 0xb6, 0x20, 0xc4, 0xff, 0x39, 0xa8, 0x5e, 0x9b, - 0x81, 0x6e, 0xd8, 0xa3, 0x3b, 0xe2, 0x79, 0xc6, 0x9c, 0xa0, 0x73, 0x28, 0x53, 0xd5, 0x5f, 0x29, - 0x74, 0xed, 0x26, 0xc1, 0x25, 0xe6, 0x98, 0xac, 0xdd, 0x70, 0xd1, 0x0d, 0xc3, 0x15, 0x63, 0x2e, - 0x1c, 0x85, 0xb8, 0xa5, 0xc8, 0x31, 0x9c, 0x23, 0x13, 0xce, 0x2c, 0xc3, 0xf7, 0x0d, 0x5b, 0x57, - 0xe2, 0xa0, 0x19, 0x59, 0xaa, 0x77, 0x86, 0xe3, 0x85, 0x04, 0xa9, 0xb6, 0xbf, 0xcf, 0x8e, 0x74, - 0x17, 0xba, 0x79, 0x15, 0x65, 0x47, 0xde, 0x6e, 0x9c, 0x8b, 0x4f, 0xac, 0x7d, 0x6e, 0xb1, 0x0d, - 0x27, 0x7b, 0xe3, 0x51, 0x09, 0x0a, 0xfd, 0xce, 0x50, 0xe6, 0x73, 0xa8, 0x06, 0x95, 0xe9, 0x58, - 0x52, 0x5e, 0x48, 0xfd, 0xce, 0x54, 0x9e, 0xf0, 0x9c, 0x38, 0x82, 0xda, 0x2e, 0x24, 0x23, 0x64, - 0xd9, 0x49, 0x8c, 0xf8, 0xe4, 0x9f, 0x7c, 0xb8, 0x4d, 0x9c, 0x26, 0x88, 0xff, 0x15, 0x00, 0x5d, - 0xb1, 0xcb, 0x6b, 0xd8, 0xfa, 0xd6, 0xc9, 0xcc, 0x40, 0x08, 0x67, 0x98, 0xdc, 0x66, 0x65, 0x87, - 0x5d, 0x8c, 0xb9, 0x5f, 0x7e, 0x88, 0xb9, 0x69, 0xa5, 0x41, 0x0e, 0x9f, 0xd2, 0xfd, 0x37, 0x69, - 0x05, 0xe7, 0x5a, 0x74, 0xc0, 0x7b, 0x61, 0xa2, 0x0b, 0xf2, 0xf5, 0xbd, 0x49, 0x3c, 0xc8, 0xe1, - 0xc7, 0xda, 0xc1, 0x0b, 0xb2, 0x84, 0xfa, 0x46, 0x4e, 0x94, 0x5b, 0xc6, 0xc3, 0x6d, 0xac, 0x7c, - 0x88, 0x75, 0x99, 0xc5, 0x3a, 0x44, 0xdc, 0x41, 0x0e, 0x0b, 0xe4, 0x10, 0xa9, 0x15, 0x38, 0x4b, - 0x91, 0x92, 0x0d, 0x9a, 0x8c, 0xc2, 0x21, 0x89, 0x2a, 0xed, 0x2f, 0x0e, 0xc2, 0x6c, 0xf3, 0x7d, - 0x90, 0xc3, 0x27, 0x64, 0xef, 0x45, 0x18, 0x01, 0xba, 0x0d, 0x54, 0xd3, 0xa0, 0x6b, 0xc5, 0x59, - 0x28, 0x3e, 0xf1, 0xee, 0x0c, 0x8d, 0x08, 0xc7, 0x61, 0xed, 0x8b, 0xb4, 0x36, 0x93, 0xd0, 0xe6, - 0x4d, 0x14, 0x38, 0x5a, 0x8c, 0xa3, 0xb0, 0x41, 0x0e, 0xf3, 0xb7, 0x19, 0x1f, 0x92, 0x81, 0x8f, - 0xe9, 0x9e, 0x12, 0xa9, 0x98, 0x2d, 0xb7, 0x8f, 0x48, 0x6c, 0x10, 0x35, 0x77, 0xd7, 0xd5, 0x2d, - 0x41, 0x91, 0xaa, 0x9e, 0x4e, 0xa8, 0xf8, 0x2f, 0x07, 0x8d, 0xab, 0xe4, 0xc7, 0x90, 0x4e, 0xa8, - 0xe7, 0xd8, 0x0b, 0x43, 0x0f, 0x3c, 0x95, 0xed, 0x0c, 0x75, 0x33, 0xca, 0xc5, 0x60, 0xc5, 0x2c, - 0xec, 0xfb, 0x0c, 0xdd, 0x96, 0x28, 0x26, 0xf0, 0x73, 0xc7, 0x52, 0x0d, 0x3b, 0x96, 0x9f, 0xd8, - 0x62, 0x02, 0xef, 0x7a, 0xce, 0xef, 0x44, 0xa3, 0xb1, 0xf2, 0x27, 0x26, 0xaa, 0x43, 0xe9, 0xad, - 0xe3, 0xad, 0x16, 0xa6, 0xf3, 0x36, 0xd6, 0xfe, 0x8d, 0x8d, 0x2e, 0xa0, 0x62, 0xaa, 0x81, 0xad, - 0x2d, 0x15, 0xd7, 0x54, 0xed, 0x70, 0xb0, 0x65, 0x0c, 0x91, 0xeb, 0xda, 0x54, 0x6d, 0x71, 0x09, - 0x4f, 0x64, 0xc3, 0xa7, 0x7b, 0xb6, 0x86, 0xc9, 0x6d, 0x40, 0x7c, 0x8a, 0xfa, 0xf0, 0x60, 0x43, - 0xe9, 0x8d, 0x0c, 0x55, 0xdb, 0x9f, 0xed, 0xdd, 0x17, 0x2b, 0x91, 0x30, 0x16, 0x7f, 0x9c, 0xe4, - 0x31, 0xb5, 0x12, 0xff, 0x84, 0x8b, 0x83, 0x48, 0xbe, 0xeb, 0xd8, 0x3e, 0x41, 0xaf, 0xa1, 0xaa, - 0x6d, 0x0f, 0x34, 0xd1, 0x80, 0x6f, 0x0f, 0x62, 0x1d, 0x38, 0x09, 0x9c, 0xa9, 0xf3, 0xcd, 0xdf, - 0x1c, 0x3c, 0x7c, 0xaf, 0x41, 0xf4, 0x10, 0x1e, 0x4c, 0x3a, 0xe3, 0x5f, 0x15, 0x2c, 0x8d, 0x47, - 0x53, 0xdc, 0x93, 0xf8, 0x1c, 0x7a, 0x04, 0x7c, 0x4f, 0x9e, 0x8e, 0x27, 0x12, 0x4e, 0xbd, 0x1c, - 0xfa, 0x04, 0x6a, 0xd2, 0x6b, 0xa9, 0x37, 0x9d, 0x0c, 0x47, 0x2f, 0x95, 0x9b, 0xa9, 0x34, 0x95, - 0xf8, 0x23, 0x74, 0x0e, 0x67, 0xa9, 0x33, 0x49, 0x92, 0x3b, 0x5d, 0x49, 0xe6, 0xf3, 0xe8, 0x73, - 0x68, 0xdc, 0x4c, 0x3b, 0xf2, 0x70, 0xf2, 0x46, 0x19, 0xf5, 0x95, 0xb1, 0x84, 0x5f, 0x0d, 0x7b, - 0x92, 0x32, 0xbe, 0x96, 0x7a, 0xc3, 0xfe, 0xb0, 0xd7, 0x61, 0x39, 0x7c, 0x81, 0xd5, 0xbd, 0x96, - 0xa7, 0xbf, 0x0c, 0x5f, 0x2a, 0xa3, 0x57, 0x12, 0xc6, 0xc3, 0x17, 0x12, 0x7f, 0xdc, 0x7d, 0xf6, - 0xdb, 0x77, 0xba, 0x41, 0x97, 0xc1, 0xac, 0xa9, 0x39, 0x56, 0xcb, 0x5c, 0x2f, 0x68, 0x6b, 0xf3, - 0x96, 0xd0, 0x89, 0xdd, 0x72, 0x67, 0x4f, 0x75, 0xa7, 0xb5, 0xfb, 0xf6, 0x98, 0x15, 0xc3, 0x67, - 0xc5, 0xb3, 0x77, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe1, 0xf4, 0x0c, 0x89, 0xcd, 0x08, 0x00, 0x00, + 0x76, 0x26, 0xd0, 0xa1, 0xed, 0x34, 0xed, 0xb4, 0x17, 0x40, 0x44, 0x61, 0x2a, 0x07, 0x7b, 0x81, + 0x4c, 0xd2, 0x1b, 0x8d, 0x10, 0x8b, 0x50, 0x91, 0xb4, 0xb2, 0xb4, 0x72, 0xca, 0xf4, 0x25, 0xfa, + 0x1a, 0x7d, 0x80, 0x3e, 0x4a, 0x2f, 0xfa, 0x0e, 0x7d, 0x88, 0x8c, 0xfe, 0x10, 0x28, 0x90, 0xf1, + 0x9d, 0xce, 0xd9, 0x73, 0xce, 0x77, 0xf6, 0xec, 0xb7, 0x9f, 0x16, 0xbe, 0x58, 0x98, 0x6b, 0x46, + 0x8c, 0xb9, 0xd9, 0x52, 0xe7, 0x96, 0x61, 0xb7, 0x2c, 0x95, 0x69, 0x4b, 0x75, 0x66, 0x12, 0xc5, + 0x25, 0x1e, 0xf5, 0x5d, 0x8d, 0x34, 0x1d, 0x97, 0x32, 0x8a, 0xaa, 0x49, 0x60, 0x33, 0x0c, 0xac, + 0x9f, 0x67, 0x12, 0x35, 0x6a, 0x59, 0xd4, 0x8e, 0x82, 0xeb, 0x1f, 0x6f, 0x16, 0x35, 0xea, 0x92, + 0x16, 0xf9, 0x83, 0x68, 0x3e, 0x33, 0x92, 0x65, 0x71, 0x09, 0xfc, 0x44, 0xf5, 0x56, 0x38, 0x46, + 0x18, 0x3b, 0x44, 0x43, 0x3c, 0xe4, 0x35, 0xc7, 0x17, 0xb8, 0x06, 0x77, 0x59, 0xc6, 0xc1, 0x67, + 0xe0, 0xd1, 0x1d, 0x5f, 0x38, 0x8a, 0x3c, 0xba, 0xe3, 0xa3, 0x53, 0x28, 0x5a, 0xc4, 0xa2, 0xee, + 0x5a, 0xc8, 0x87, 0xce, 0xd8, 0x42, 0x02, 0x7c, 0xe0, 0x31, 0xea, 0xaa, 0x3a, 0x11, 0x0a, 0xe1, + 0x42, 0x62, 0x8a, 0x7f, 0x71, 0x70, 0xba, 0x0d, 0xd5, 0x61, 0xcc, 0x35, 0x66, 0x3e, 0x23, 0x1e, + 0xfa, 0x09, 0x4a, 0x73, 0xb2, 0x50, 0x7d, 0x93, 0x79, 0x21, 0x6a, 0xa5, 0xdd, 0x68, 0xee, 0xee, + 0xb1, 0x99, 0x6d, 0x12, 0x6f, 0x32, 0xd0, 0x33, 0x28, 0x9a, 0x86, 0x65, 0x30, 0x2f, 0xec, 0xef, + 0x3e, 0xb9, 0x71, 0xbc, 0xf8, 0x0f, 0x07, 0x8f, 0x7b, 0xa6, 0xef, 0x31, 0xe2, 0xee, 0xe9, 0xea, + 0x35, 0x80, 0xba, 0xb1, 0x04, 0xae, 0x91, 0xbf, 0xac, 0xb4, 0x7f, 0xc8, 0xd6, 0x3e, 0x98, 0xde, + 0x4c, 0x3f, 0x25, 0x9b, 0xb9, 0x6b, 0xbc, 0x55, 0xac, 0xfe, 0x33, 0xd4, 0x32, 0xcb, 0xc1, 0x88, + 0x57, 0x64, 0x9d, 0x0c, 0x7d, 0x45, 0xd6, 0xe8, 0x11, 0x1c, 0xdf, 0xa9, 0xa6, 0x4f, 0xe2, 0xb1, + 0x47, 0xc6, 0x8f, 0x47, 0xcf, 0x38, 0xb1, 0x09, 0x82, 0x94, 0x9c, 0xe3, 0x8d, 0x4f, 0xfc, 0xed, + 0xae, 0x11, 0x14, 0x98, 0xaa, 0x47, 0xfd, 0x96, 0x71, 0xf8, 0x2d, 0x3e, 0x85, 0x93, 0x4d, 0x7c, + 0xdc, 0xb0, 0xac, 0xce, 0x88, 0x99, 0x42, 0x70, 0x5b, 0x10, 0xe2, 0xff, 0x1c, 0x54, 0xaf, 0x4d, + 0x5f, 0x37, 0xec, 0xd1, 0x1d, 0x71, 0x5d, 0x63, 0x4e, 0xd0, 0x39, 0x94, 0x99, 0xea, 0xad, 0x14, + 0xb6, 0x76, 0x92, 0xe0, 0x52, 0xe0, 0x98, 0xac, 0x9d, 0x70, 0xd1, 0x09, 0xc3, 0x15, 0x63, 0x2e, + 0x1c, 0x85, 0xb8, 0xa5, 0xc8, 0x31, 0x9c, 0x23, 0x13, 0xce, 0x2c, 0xc3, 0xf3, 0x0c, 0x5b, 0x57, + 0xe2, 0xa0, 0x19, 0x59, 0xaa, 0x77, 0x06, 0x75, 0x43, 0x82, 0x54, 0xdb, 0xdf, 0x66, 0x47, 0xba, + 0x0b, 0xdd, 0xbc, 0x8a, 0xb2, 0x23, 0x6f, 0x37, 0xce, 0xc5, 0x27, 0xd6, 0x3e, 0xb7, 0xd8, 0x86, + 0x93, 0xbd, 0xf1, 0xa8, 0x04, 0x85, 0x7e, 0x67, 0x28, 0xf3, 0x39, 0x54, 0x83, 0xca, 0x74, 0x2c, + 0x29, 0xcf, 0xa5, 0x7e, 0x67, 0x2a, 0x4f, 0x78, 0x4e, 0x1c, 0x41, 0x6d, 0x17, 0x32, 0x20, 0x64, + 0x99, 0x26, 0x46, 0x7c, 0xf2, 0x4f, 0xde, 0xdf, 0x26, 0x4e, 0x13, 0xc4, 0xff, 0x0a, 0x80, 0xae, + 0x82, 0xcb, 0x6b, 0xd8, 0xfa, 0xd6, 0xc9, 0xcc, 0x40, 0x08, 0x67, 0x98, 0xdc, 0x66, 0x65, 0x87, + 0x5d, 0x01, 0x73, 0x3f, 0x7f, 0x1f, 0x73, 0xd3, 0x4a, 0x83, 0x1c, 0x3e, 0x65, 0xfb, 0x6f, 0xd2, + 0x0a, 0xce, 0xb5, 0xe8, 0x80, 0xf7, 0xc2, 0x44, 0x17, 0xe4, 0xcb, 0x7b, 0x93, 0x78, 0x90, 0xc3, + 0x8f, 0xb5, 0x83, 0x17, 0x64, 0x09, 0xf5, 0x8d, 0x9c, 0x28, 0xb7, 0x01, 0x0f, 0xb7, 0xb1, 0xf2, + 0x21, 0xd6, 0x65, 0x16, 0xeb, 0x10, 0x71, 0x07, 0x39, 0x2c, 0x90, 0x43, 0xa4, 0x56, 0xe0, 0x2c, + 0x45, 0x4a, 0x36, 0x68, 0x06, 0x14, 0x0e, 0x49, 0x54, 0x69, 0x7f, 0x76, 0x10, 0x66, 0x9b, 0xef, + 0x83, 0x1c, 0x3e, 0x21, 0x7b, 0x2f, 0xc2, 0x08, 0xd0, 0xad, 0xaf, 0x9a, 0x06, 0x5b, 0x2b, 0x74, + 0xa1, 0x78, 0xc4, 0xbd, 0x33, 0x34, 0x22, 0x1c, 0x87, 0xb5, 0x2f, 0xd2, 0xda, 0x81, 0x84, 0x36, + 0x6f, 0xa2, 0xc0, 0xd1, 0x62, 0x1c, 0x85, 0x0d, 0x72, 0x98, 0xbf, 0xcd, 0xf8, 0x90, 0x0c, 0x7c, + 0x4c, 0xf7, 0x94, 0x48, 0xc5, 0x6c, 0xb9, 0x7d, 0x44, 0x0a, 0x06, 0x51, 0x73, 0x76, 0x5d, 0xdd, + 0x12, 0x14, 0x99, 0xea, 0xea, 0x84, 0x89, 0xff, 0x72, 0xd0, 0xb8, 0x4a, 0x7e, 0x0c, 0xe9, 0x84, + 0x7a, 0xd4, 0x5e, 0x18, 0xba, 0xef, 0xaa, 0xc1, 0xce, 0x50, 0x37, 0xa3, 0x5c, 0x01, 0xac, 0x98, + 0x85, 0x7d, 0x97, 0xa1, 0xdb, 0x12, 0x15, 0x08, 0xfc, 0x9c, 0x5a, 0xaa, 0x61, 0xc7, 0xf2, 0x13, + 0x5b, 0x81, 0xc0, 0x3b, 0x2e, 0xfd, 0x9d, 0x68, 0x2c, 0x56, 0xfe, 0xc4, 0x44, 0x75, 0x28, 0xbd, + 0xa1, 0xee, 0x6a, 0x61, 0xd2, 0x37, 0xb1, 0xf6, 0x6f, 0x6c, 0x74, 0x01, 0x15, 0x53, 0xf5, 0x6d, + 0x6d, 0xa9, 0x38, 0xa6, 0x6a, 0x87, 0x83, 0x2d, 0x63, 0x88, 0x5c, 0xd7, 0xa6, 0x6a, 0x8b, 0x4b, + 0x78, 0x22, 0x1b, 0x1e, 0xdb, 0xb3, 0x35, 0x4c, 0x6e, 0x7d, 0xe2, 0x31, 0xd4, 0x87, 0x07, 0x1b, + 0x4a, 0x6f, 0x64, 0xa8, 0xda, 0xfe, 0x64, 0xef, 0xbe, 0x82, 0x12, 0x09, 0x63, 0xf1, 0x87, 0x49, + 0x5e, 0xa0, 0x56, 0xe2, 0x9f, 0x70, 0x71, 0x10, 0xc9, 0x73, 0xa8, 0xed, 0x11, 0xf4, 0x0a, 0xaa, + 0xda, 0xf6, 0x40, 0x13, 0x0d, 0xf8, 0xfa, 0x20, 0xd6, 0x81, 0x93, 0xc0, 0x99, 0x3a, 0x5f, 0xfd, + 0xcd, 0xc1, 0xc3, 0x77, 0x1a, 0x44, 0x0f, 0xe1, 0xc1, 0xa4, 0x33, 0xfe, 0x55, 0xc1, 0xd2, 0x78, + 0x34, 0xc5, 0x3d, 0x89, 0xcf, 0xa1, 0x47, 0xc0, 0xf7, 0xe4, 0xe9, 0x78, 0x22, 0xe1, 0xd4, 0xcb, + 0xa1, 0x8f, 0xa0, 0x26, 0xbd, 0x92, 0x7a, 0xd3, 0xc9, 0x70, 0xf4, 0x42, 0xb9, 0x99, 0x4a, 0x53, + 0x89, 0x3f, 0x42, 0xe7, 0x70, 0x96, 0x3a, 0x93, 0x24, 0xb9, 0xd3, 0x95, 0x64, 0x3e, 0x8f, 0x3e, + 0x85, 0xc6, 0xcd, 0xb4, 0x23, 0x0f, 0x27, 0xaf, 0x95, 0x51, 0x5f, 0x19, 0x4b, 0xf8, 0xe5, 0xb0, + 0x27, 0x29, 0xe3, 0x6b, 0xa9, 0x37, 0xec, 0x0f, 0x7b, 0x9d, 0x20, 0x87, 0x2f, 0x04, 0x75, 0xaf, + 0xe5, 0xe9, 0x2f, 0xc3, 0x17, 0xca, 0xe8, 0xa5, 0x84, 0xf1, 0xf0, 0xb9, 0xc4, 0x1f, 0x77, 0xbf, + 0xff, 0xed, 0x3b, 0xdd, 0x60, 0x4b, 0x7f, 0xd6, 0xd4, 0xa8, 0xd5, 0x0a, 0x77, 0x4e, 0x5d, 0xbd, + 0xb5, 0x79, 0x4f, 0xe8, 0xc4, 0x6e, 0x39, 0xb3, 0xa7, 0x3a, 0x6d, 0xed, 0xbe, 0x3f, 0x66, 0xc5, + 0xf0, 0x69, 0xf1, 0xcd, 0xdb, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe1, 0x33, 0x3c, 0xa1, 0xd1, 0x08, + 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/node_execution.pb.go b/gen/pb-go/flyteidl/admin/node_execution.pb.go index 7cee5a58b..b80322711 100644 --- a/gen/pb-go/flyteidl/admin/node_execution.pb.go +++ b/gen/pb-go/flyteidl/admin/node_execution.pb.go @@ -5,10 +5,10 @@ package admin import ( fmt "fmt" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" duration "github.com/golang/protobuf/ptypes/duration" timestamp "github.com/golang/protobuf/ptypes/timestamp" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" math "math" ) @@ -813,66 +813,66 @@ func init() { var fileDescriptor_f73b3eae493fd736 = []byte{ // 978 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0x5d, 0x6f, 0xdc, 0x44, - 0x17, 0xae, 0xf3, 0xbd, 0x67, 0x93, 0x4d, 0x32, 0x6f, 0xfa, 0x76, 0x49, 0xda, 0x66, 0x31, 0x05, - 0x45, 0x48, 0xb5, 0xd5, 0xad, 0x8a, 0x00, 0x21, 0x50, 0x3e, 0xda, 0x26, 0x22, 0x81, 0x30, 0x6d, - 0x84, 0x84, 0x10, 0xd6, 0xac, 0x3d, 0xbb, 0x19, 0xc5, 0xeb, 0x71, 0x66, 0xc6, 0x0a, 0x7b, 0xc7, - 0xdf, 0xe8, 0xff, 0x43, 0x42, 0xe2, 0x37, 0x70, 0x81, 0x66, 0x3c, 0x76, 0xd6, 0x8e, 0x49, 0xa4, - 0x72, 0xc1, 0xe5, 0x9c, 0xf3, 0x3c, 0xcf, 0x99, 0xf3, 0xe1, 0x33, 0x86, 0x8f, 0x86, 0xf1, 0x44, - 0x51, 0x16, 0xc5, 0x3e, 0x89, 0xc6, 0x2c, 0xf1, 0x13, 0x1e, 0xd1, 0x80, 0xfe, 0x4a, 0xc3, 0x4c, - 0x31, 0x9e, 0x78, 0xa9, 0xe0, 0x8a, 0xa3, 0x4e, 0x01, 0xf2, 0x0c, 0x68, 0x73, 0xab, 0x46, 0x0a, - 0xf9, 0x78, 0x5c, 0x80, 0x37, 0x1f, 0x95, 0xce, 0x90, 0x0b, 0xea, 0xd7, 0xb4, 0xa6, 0xb8, 0xc6, - 0x1d, 0x12, 0x45, 0x62, 0x3e, 0xb2, 0xce, 0xc7, 0x55, 0x27, 0x8b, 0x68, 0xa2, 0xd8, 0x90, 0x51, - 0x61, 0xfd, 0x0f, 0xab, 0xfe, 0x98, 0x29, 0x2a, 0x48, 0x2c, 0xad, 0x77, 0x7b, 0xc4, 0xf9, 0x28, - 0xa6, 0xbe, 0x39, 0x0d, 0xb2, 0xa1, 0xaf, 0xd8, 0x98, 0x4a, 0x45, 0xc6, 0x69, 0x21, 0x5f, 0x07, - 0x44, 0x99, 0x20, 0xd7, 0x77, 0x73, 0x7f, 0x80, 0x07, 0xdf, 0xf1, 0x88, 0xbe, 0x2c, 0xae, 0xfc, - 0x9a, 0x2a, 0x4c, 0x2f, 0x33, 0x2a, 0x15, 0xfa, 0x0c, 0x66, 0x58, 0xd4, 0x75, 0x7a, 0xce, 0x4e, - 0xbb, 0xff, 0x89, 0x57, 0xd6, 0x43, 0x5f, 0xc3, 0xab, 0x70, 0x8e, 0xca, 0x3b, 0xe3, 0x19, 0x16, - 0xb9, 0xef, 0x66, 0xa0, 0x5b, 0xf1, 0x1f, 0x33, 0x59, 0x8a, 0xfe, 0x02, 0xf7, 0xaf, 0xb8, 0xb8, - 0x18, 0xc6, 0xfc, 0xea, 0xba, 0xe6, 0x41, 0x19, 0xe7, 0xd3, 0x5a, 0x9c, 0x1f, 0x2d, 0xb6, 0x29, - 0xd6, 0xff, 0xae, 0x6e, 0x3a, 0xd1, 0x06, 0xcc, 0xc7, 0x6c, 0xcc, 0x54, 0x77, 0xa6, 0xe7, 0xec, - 0xac, 0xe0, 0xfc, 0xa0, 0xad, 0x8a, 0x5f, 0xd0, 0xa4, 0x3b, 0xdb, 0x73, 0x76, 0x5a, 0x38, 0x3f, - 0xa0, 0x2e, 0x2c, 0x0e, 0x59, 0xac, 0xa8, 0x90, 0xdd, 0x39, 0x63, 0x2f, 0x8e, 0xe8, 0x29, 0x2c, - 0x4a, 0x2e, 0x54, 0x30, 0x98, 0x74, 0xe7, 0xcd, 0xbd, 0x36, 0xbc, 0xea, 0x3c, 0x78, 0x6f, 0xb8, - 0x50, 0x78, 0x41, 0x83, 0xf6, 0x26, 0x68, 0x07, 0xd6, 0xb2, 0x84, 0x5d, 0x66, 0x34, 0x48, 0x89, - 0xa0, 0x89, 0xd2, 0xf9, 0x2c, 0x18, 0xc5, 0x4e, 0x6e, 0x3f, 0x35, 0xe6, 0xa3, 0xc8, 0xfd, 0xd3, - 0x81, 0xed, 0x4a, 0x6d, 0x5e, 0x71, 0xf1, 0x96, 0xc8, 0x8b, 0xe9, 0x12, 0x61, 0x58, 0x57, 0x44, - 0x5e, 0x34, 0x95, 0xa7, 0xde, 0x06, 0x4d, 0x6d, 0x2a, 0xcd, 0xaa, 0xaa, 0x3a, 0xfe, 0x93, 0xb2, - 0xb8, 0x7f, 0x38, 0xb0, 0x52, 0x49, 0xf6, 0x7d, 0x47, 0x0a, 0x6d, 0x41, 0x8b, 0x25, 0x69, 0xa6, - 0x82, 0x4c, 0x30, 0x93, 0x42, 0x0b, 0x2f, 0x19, 0xc3, 0x99, 0x60, 0xe8, 0x6b, 0x58, 0x0c, 0x63, - 0x2e, 0x33, 0x41, 0x4d, 0x1e, 0xed, 0xfe, 0x93, 0xfa, 0xad, 0x2a, 0xd2, 0xfb, 0x39, 0x16, 0x17, - 0x24, 0xb4, 0x0b, 0x4b, 0x63, 0xaa, 0x48, 0x44, 0x14, 0x31, 0x09, 0xb7, 0xfb, 0x1f, 0xdf, 0x2a, - 0x70, 0x42, 0x15, 0x39, 0x20, 0x8a, 0xe0, 0x92, 0xe6, 0xfe, 0xe6, 0xc0, 0xfd, 0x46, 0x0c, 0xda, - 0x86, 0xb6, 0xa0, 0x4a, 0x4c, 0x82, 0x91, 0xe0, 0x59, 0x6a, 0x52, 0x6f, 0x61, 0x30, 0xa6, 0xd7, - 0xda, 0x82, 0x9e, 0x40, 0x87, 0xc9, 0x62, 0x6e, 0xf4, 0x2a, 0x32, 0xf9, 0x2d, 0xe1, 0x65, 0x26, - 0xf3, 0xa9, 0xd1, 0xba, 0xa8, 0x07, 0xcb, 0x32, 0xa5, 0xa1, 0x01, 0xe8, 0x71, 0xc8, 0x1b, 0x06, - 0xda, 0xa6, 0xfd, 0x47, 0x91, 0x7b, 0x09, 0xeb, 0x37, 0x3e, 0x3a, 0xf4, 0x0a, 0x56, 0xab, 0xdb, - 0x4d, 0x76, 0x9d, 0xde, 0xec, 0x4e, 0xbb, 0xff, 0xe8, 0xd6, 0x0c, 0x71, 0x27, 0x99, 0x3e, 0xca, - 0xeb, 0x41, 0x99, 0x99, 0x1a, 0x14, 0xf7, 0xf7, 0x39, 0xd8, 0x68, 0x2a, 0x2d, 0xda, 0x06, 0xe0, - 0x99, 0x2a, 0xfa, 0x65, 0x72, 0x3e, 0xbc, 0x87, 0x5b, 0xb9, 0x4d, 0xb7, 0xec, 0x05, 0xcc, 0x53, - 0x21, 0xb8, 0x30, 0x7a, 0x95, 0xdb, 0x98, 0x51, 0x28, 0x05, 0x5f, 0x6a, 0xd0, 0xe1, 0x3d, 0x9c, - 0xa3, 0xd1, 0xe7, 0x30, 0x9f, 0x9e, 0x13, 0x99, 0xf7, 0xb9, 0xd3, 0x77, 0x6f, 0x9b, 0x20, 0xef, - 0x54, 0x23, 0x71, 0x4e, 0x40, 0x5f, 0x00, 0x48, 0x45, 0x84, 0xa2, 0x51, 0x40, 0x94, 0xed, 0xf2, - 0xa6, 0x97, 0xef, 0x46, 0xaf, 0xd8, 0x8d, 0xde, 0xdb, 0x62, 0x79, 0xe2, 0x96, 0x45, 0xef, 0x2a, - 0xf4, 0x02, 0x96, 0x8a, 0x9d, 0x69, 0xa7, 0xfe, 0x83, 0x1b, 0xc4, 0x03, 0x0b, 0xc0, 0x25, 0x54, - 0x47, 0x0c, 0x05, 0x25, 0x36, 0xe2, 0xc2, 0xdd, 0x11, 0x2d, 0x7a, 0x57, 0x69, 0x6a, 0x96, 0x46, - 0x05, 0x75, 0xf1, 0x6e, 0xaa, 0x45, 0xef, 0x2a, 0xf4, 0x33, 0xfc, 0xbf, 0x5c, 0xaf, 0xa6, 0xf3, - 0xe5, 0x64, 0x2f, 0x35, 0x7f, 0x1a, 0xc5, 0x82, 0xd5, 0xb5, 0x3b, 0xb1, 0xd8, 0x43, 0x07, 0x6f, - 0x5c, 0x35, 0xd8, 0xd1, 0x29, 0x20, 0xb3, 0x99, 0xaa, 0xca, 0x2d, 0xa3, 0xdc, 0xab, 0x2b, 0xeb, - 0xdd, 0x54, 0x53, 0x5d, 0x53, 0x35, 0xdb, 0xde, 0x2a, 0xac, 0xd8, 0x49, 0x11, 0x54, 0x66, 0xb1, - 0xda, 0x5b, 0x87, 0x55, 0x45, 0xc4, 0x88, 0xaa, 0x52, 0xdf, 0x8d, 0x60, 0xa3, 0xe9, 0x96, 0xe8, - 0x18, 0xda, 0xf4, 0x7a, 0x5f, 0xbc, 0xc7, 0x03, 0x32, 0x4d, 0x77, 0xdf, 0x39, 0xb0, 0x56, 0xbf, - 0x32, 0x3a, 0x80, 0xe5, 0x90, 0x84, 0xe7, 0x34, 0x90, 0x8a, 0xa8, 0x4c, 0x9a, 0x18, 0x9d, 0xfe, - 0x87, 0xb5, 0x18, 0xfb, 0xf9, 0x83, 0xbe, 0xaf, 0x91, 0x6f, 0x0c, 0x10, 0xb7, 0xc3, 0xeb, 0x03, - 0xfa, 0x06, 0xda, 0xf6, 0xcd, 0x0f, 0x2e, 0xe8, 0xc4, 0xce, 0xfc, 0xe3, 0x66, 0x91, 0x22, 0x34, - 0x06, 0x4b, 0xf9, 0x96, 0x4e, 0xdc, 0x33, 0xd8, 0xaa, 0x3f, 0xd2, 0x66, 0x01, 0xfd, 0xcb, 0x87, - 0xfa, 0x2f, 0x07, 0x1e, 0x36, 0xeb, 0xca, 0x94, 0x27, 0x92, 0x22, 0x1f, 0x16, 0xcc, 0x96, 0x95, - 0x56, 0xfc, 0x41, 0xbd, 0xc7, 0x67, 0x22, 0xde, 0x8b, 0xf9, 0x00, 0x5b, 0x18, 0x7a, 0x06, 0x8b, - 0x79, 0x3b, 0xa5, 0xcd, 0xf2, 0x1f, 0x19, 0x05, 0x0e, 0x7d, 0x09, 0xed, 0x61, 0x16, 0xc7, 0x81, - 0x0d, 0x34, 0x6b, 0xbf, 0xb0, 0x6a, 0x16, 0xc7, 0xf9, 0x5f, 0xcf, 0x09, 0x49, 0x31, 0x68, 0xf4, - 0x51, 0x1e, 0xee, 0x2b, 0x58, 0x36, 0xdc, 0x22, 0xe6, 0xdc, 0x5d, 0x64, 0x13, 0xea, 0xfb, 0x1c, - 0xbd, 0xf7, 0xfc, 0xa7, 0x67, 0x23, 0xa6, 0xce, 0xb3, 0x81, 0x17, 0xf2, 0xb1, 0x1f, 0x4f, 0x86, - 0xca, 0x2f, 0xff, 0xb5, 0x46, 0x34, 0xf1, 0xd3, 0xc1, 0xd3, 0x11, 0xf7, 0xab, 0xff, 0x7d, 0x83, - 0x05, 0xf3, 0xfd, 0x3d, 0xff, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x3f, 0x67, 0xaa, 0xa4, 0x45, 0x0a, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0x5b, 0x6f, 0xdc, 0x44, + 0x14, 0xae, 0xd3, 0xdc, 0xf6, 0x6c, 0xb2, 0x49, 0x86, 0x94, 0x2e, 0x49, 0xdb, 0x2c, 0xa6, 0xa0, + 0x08, 0xa9, 0xb6, 0x58, 0x14, 0x6e, 0x42, 0xa0, 0x5c, 0xda, 0x26, 0x22, 0x81, 0x30, 0x6d, 0x84, + 0x84, 0x10, 0xd6, 0xac, 0x3d, 0xbb, 0x19, 0xc5, 0xeb, 0x71, 0x66, 0xc6, 0x0a, 0xfb, 0xc6, 0xdf, + 0xe8, 0xff, 0x43, 0x42, 0xe2, 0x37, 0xf0, 0x80, 0x66, 0x3c, 0x76, 0xd6, 0x8e, 0x49, 0xa4, 0xf2, + 0xc0, 0xe3, 0x9c, 0xf3, 0x7d, 0xdf, 0x99, 0x73, 0xf1, 0x19, 0xc3, 0x07, 0xc3, 0x78, 0xa2, 0x28, + 0x8b, 0x62, 0x9f, 0x44, 0x63, 0x96, 0xf8, 0x09, 0x8f, 0x68, 0x40, 0x7f, 0xa3, 0x61, 0xa6, 0x18, + 0x4f, 0xbc, 0x54, 0x70, 0xc5, 0x51, 0xa7, 0x00, 0x79, 0x06, 0xb4, 0xb1, 0x59, 0x23, 0x85, 0x7c, + 0x3c, 0x2e, 0xc0, 0x1b, 0x8f, 0x4b, 0x67, 0xc8, 0x05, 0xf5, 0x6b, 0x5a, 0x53, 0x5c, 0xe3, 0x0e, + 0x89, 0x22, 0x31, 0x1f, 0x59, 0xe7, 0x93, 0xaa, 0x93, 0x45, 0x34, 0x51, 0x6c, 0xc8, 0xa8, 0xb0, + 0xfe, 0x47, 0x55, 0x7f, 0xcc, 0x14, 0x15, 0x24, 0x96, 0xd6, 0xbb, 0x35, 0xe2, 0x7c, 0x14, 0x53, + 0xdf, 0x9c, 0x06, 0xd9, 0xd0, 0x57, 0x6c, 0x4c, 0xa5, 0x22, 0xe3, 0xb4, 0x90, 0xaf, 0x03, 0xa2, + 0x4c, 0x90, 0xeb, 0xbb, 0xb9, 0x3f, 0xc2, 0xc3, 0xef, 0x79, 0x44, 0x9f, 0x17, 0x57, 0x7e, 0x49, + 0x15, 0xa6, 0x97, 0x19, 0x95, 0x0a, 0x7d, 0x06, 0x33, 0x2c, 0xea, 0x3a, 0x3d, 0x67, 0xbb, 0xdd, + 0xff, 0xc8, 0x2b, 0xeb, 0xa1, 0xaf, 0xe1, 0x55, 0x38, 0x47, 0xe5, 0x9d, 0xf1, 0x0c, 0x8b, 0xdc, + 0x37, 0x33, 0xd0, 0xad, 0xf8, 0x8f, 0x99, 0x2c, 0x45, 0x7f, 0x85, 0x07, 0x57, 0x5c, 0x5c, 0x0c, + 0x63, 0x7e, 0x75, 0x5d, 0xf3, 0xa0, 0x8c, 0xf3, 0x71, 0x2d, 0xce, 0x4f, 0x16, 0xdb, 0x14, 0xeb, + 0x9d, 0xab, 0x9b, 0x4e, 0xb4, 0x0e, 0x73, 0x31, 0x1b, 0x33, 0xd5, 0x9d, 0xe9, 0x39, 0xdb, 0xcb, + 0x38, 0x3f, 0x68, 0xab, 0xe2, 0x17, 0x34, 0xe9, 0xde, 0xef, 0x39, 0xdb, 0x2d, 0x9c, 0x1f, 0x50, + 0x17, 0x16, 0x86, 0x2c, 0x56, 0x54, 0xc8, 0xee, 0xac, 0xb1, 0x17, 0x47, 0xf4, 0x0c, 0x16, 0x24, + 0x17, 0x2a, 0x18, 0x4c, 0xba, 0x73, 0xe6, 0x5e, 0xeb, 0x5e, 0x75, 0x1e, 0xbc, 0x57, 0x5c, 0x28, + 0x3c, 0xaf, 0x41, 0x7b, 0x13, 0xb4, 0x0d, 0xab, 0x59, 0xc2, 0x2e, 0x33, 0x1a, 0xa4, 0x44, 0xd0, + 0x44, 0xe9, 0x7c, 0xe6, 0x8d, 0x62, 0x27, 0xb7, 0x9f, 0x1a, 0xf3, 0x51, 0xe4, 0xfe, 0xe5, 0xc0, + 0x56, 0xa5, 0x36, 0x2f, 0xb8, 0x78, 0x4d, 0xe4, 0xc5, 0x74, 0x89, 0x30, 0xac, 0x29, 0x22, 0x2f, + 0x9a, 0xca, 0x53, 0x6f, 0x83, 0xa6, 0x36, 0x95, 0x66, 0x45, 0x55, 0x1d, 0xff, 0x4b, 0x59, 0xdc, + 0x3f, 0x1d, 0x58, 0xae, 0x24, 0xfb, 0xb6, 0x23, 0x85, 0x36, 0xa1, 0xc5, 0x92, 0x34, 0x53, 0x41, + 0x26, 0x98, 0x49, 0xa1, 0x85, 0x17, 0x8d, 0xe1, 0x4c, 0x30, 0xf4, 0x0d, 0x2c, 0x84, 0x31, 0x97, + 0x99, 0xa0, 0x26, 0x8f, 0x76, 0xff, 0x69, 0xfd, 0x56, 0x15, 0xe9, 0xfd, 0x1c, 0x8b, 0x0b, 0x12, + 0xda, 0x85, 0xc5, 0x31, 0x55, 0x24, 0x22, 0x8a, 0x98, 0x84, 0xdb, 0xfd, 0x0f, 0x6f, 0x15, 0x38, + 0xa1, 0x8a, 0x1c, 0x10, 0x45, 0x70, 0x49, 0x73, 0x7f, 0x77, 0xe0, 0x41, 0x23, 0x06, 0x6d, 0x41, + 0x5b, 0x50, 0x25, 0x26, 0xc1, 0x48, 0xf0, 0x2c, 0x35, 0xa9, 0xb7, 0x30, 0x18, 0xd3, 0x4b, 0x6d, + 0x41, 0x4f, 0xa1, 0xc3, 0x64, 0x31, 0x37, 0x7a, 0x15, 0x99, 0xfc, 0x16, 0xf1, 0x12, 0x93, 0xf9, + 0xd4, 0x68, 0x5d, 0xd4, 0x83, 0x25, 0x99, 0xd2, 0xd0, 0x00, 0xf4, 0x38, 0xe4, 0x0d, 0x03, 0x6d, + 0xd3, 0xfe, 0xa3, 0xc8, 0xbd, 0x84, 0xb5, 0x1b, 0x1f, 0x1d, 0x7a, 0x01, 0x2b, 0xd5, 0xed, 0x26, + 0xbb, 0x4e, 0xef, 0xfe, 0x76, 0xbb, 0xff, 0xf8, 0xd6, 0x0c, 0x71, 0x27, 0x99, 0x3e, 0xca, 0xeb, + 0x41, 0x99, 0x99, 0x1a, 0x14, 0xf7, 0x8f, 0x59, 0x58, 0x6f, 0x2a, 0x2d, 0xda, 0x02, 0xe0, 0x99, + 0x2a, 0xfa, 0x65, 0x72, 0x3e, 0xbc, 0x87, 0x5b, 0xb9, 0x4d, 0xb7, 0x6c, 0x07, 0xe6, 0xa8, 0x10, + 0x5c, 0x18, 0xbd, 0xca, 0x6d, 0xcc, 0x28, 0x94, 0x82, 0xcf, 0x35, 0xe8, 0xf0, 0x1e, 0xce, 0xd1, + 0xe8, 0x0b, 0x98, 0x4b, 0xcf, 0x89, 0xcc, 0xfb, 0xdc, 0xe9, 0xbb, 0xb7, 0x4d, 0x90, 0x77, 0xaa, + 0x91, 0x38, 0x27, 0xa0, 0x2f, 0x01, 0xa4, 0x22, 0x42, 0xd1, 0x28, 0x20, 0xca, 0x76, 0x79, 0xc3, + 0xcb, 0x77, 0xa3, 0x57, 0xec, 0x46, 0xef, 0x75, 0xb1, 0x3c, 0x71, 0xcb, 0xa2, 0x77, 0x15, 0xda, + 0x81, 0xc5, 0x62, 0x67, 0xda, 0xa9, 0x7f, 0xef, 0x06, 0xf1, 0xc0, 0x02, 0x70, 0x09, 0xd5, 0x11, + 0x43, 0x41, 0x89, 0x8d, 0x38, 0x7f, 0x77, 0x44, 0x8b, 0xde, 0x55, 0x9a, 0x9a, 0xa5, 0x51, 0x41, + 0x5d, 0xb8, 0x9b, 0x6a, 0xd1, 0xbb, 0x0a, 0xfd, 0x02, 0xef, 0x96, 0xeb, 0xd5, 0x74, 0xbe, 0x9c, + 0xec, 0xc5, 0xe6, 0x4f, 0xa3, 0x58, 0xb0, 0xba, 0x76, 0x27, 0x16, 0x7b, 0xe8, 0xe0, 0xf5, 0xab, + 0x06, 0x3b, 0x3a, 0x05, 0x64, 0x36, 0x53, 0x55, 0xb9, 0x65, 0x94, 0x7b, 0x75, 0x65, 0xbd, 0x9b, + 0x6a, 0xaa, 0xab, 0xaa, 0x66, 0xdb, 0x5b, 0x81, 0x65, 0x3b, 0x29, 0x82, 0xca, 0x2c, 0x56, 0x7b, + 0x6b, 0xb0, 0xa2, 0x88, 0x18, 0x51, 0x55, 0xea, 0xbb, 0x11, 0xac, 0x37, 0xdd, 0x12, 0x1d, 0x43, + 0x9b, 0x5e, 0xef, 0x8b, 0xb7, 0x78, 0x40, 0xa6, 0xe9, 0xee, 0x1b, 0x07, 0x56, 0xeb, 0x57, 0x46, + 0x07, 0xb0, 0x14, 0x92, 0xf0, 0x9c, 0x06, 0x52, 0x11, 0x95, 0x49, 0x13, 0xa3, 0xd3, 0x7f, 0xbf, + 0x16, 0x63, 0x3f, 0x7f, 0xd0, 0xf7, 0x35, 0xf2, 0x95, 0x01, 0xe2, 0x76, 0x78, 0x7d, 0x40, 0xdf, + 0x42, 0xdb, 0xbe, 0xf9, 0xc1, 0x05, 0x9d, 0xd8, 0x99, 0x7f, 0xd2, 0x2c, 0x52, 0x84, 0xc6, 0x60, + 0x29, 0xdf, 0xd1, 0x89, 0x7b, 0x06, 0x9b, 0xf5, 0x47, 0xda, 0x2c, 0xa0, 0xff, 0xf8, 0x50, 0xff, + 0xed, 0xc0, 0xa3, 0x66, 0x5d, 0x99, 0xf2, 0x44, 0x52, 0xe4, 0xc3, 0xbc, 0xd9, 0xb2, 0xd2, 0x8a, + 0x3f, 0xac, 0xf7, 0xf8, 0x4c, 0xc4, 0x7b, 0x31, 0x1f, 0x60, 0x0b, 0x43, 0x9f, 0xc0, 0x42, 0xde, + 0x4e, 0x69, 0xb3, 0xfc, 0x57, 0x46, 0x81, 0x43, 0x5f, 0x41, 0x7b, 0x98, 0xc5, 0x71, 0x60, 0x03, + 0xdd, 0xb7, 0x5f, 0x58, 0x35, 0x8b, 0xe3, 0xfc, 0xaf, 0xe7, 0x84, 0xa4, 0x18, 0x34, 0xfa, 0x28, + 0x0f, 0xf7, 0x35, 0x2c, 0x19, 0x6e, 0x11, 0x73, 0xf6, 0x2e, 0xb2, 0x09, 0xf5, 0x43, 0x8e, 0xde, + 0xfb, 0xfc, 0xe7, 0x9d, 0x11, 0x53, 0xe7, 0xd9, 0xc0, 0x0b, 0xf9, 0xd8, 0x37, 0x1c, 0x2e, 0x46, + 0x7e, 0xf9, 0xbf, 0x35, 0xa2, 0x89, 0x9f, 0x0e, 0x9e, 0x8d, 0xb8, 0x5f, 0xfd, 0xf7, 0x1b, 0xcc, + 0x9b, 0x6f, 0xf0, 0xd3, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xf8, 0xbc, 0x60, 0x25, 0x49, 0x0a, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/node_execution.pb.validate.go b/gen/pb-go/flyteidl/admin/node_execution.pb.validate.go index 375a6407d..f141c86b5 100644 --- a/gen/pb-go/flyteidl/admin/node_execution.pb.validate.go +++ b/gen/pb-go/flyteidl/admin/node_execution.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/gen/pb-go/flyteidl/admin/notification.pb.go b/gen/pb-go/flyteidl/admin/notification.pb.go index 2f03f79f6..954a303a6 100644 --- a/gen/pb-go/flyteidl/admin/notification.pb.go +++ b/gen/pb-go/flyteidl/admin/notification.pb.go @@ -102,18 +102,18 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/notification.proto", fileDescriptor_cbe32eb21e00da05) } var fileDescriptor_cbe32eb21e00da05 = []byte{ - // 206 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x8f, 0xbf, 0x4e, 0xc3, 0x30, - 0x10, 0x87, 0x15, 0x5a, 0x21, 0xd5, 0x54, 0x80, 0x3c, 0x65, 0x6c, 0x99, 0xca, 0x40, 0x2c, 0xd4, - 0x37, 0x40, 0x62, 0x83, 0x25, 0x23, 0x4b, 0xe4, 0x3f, 0x17, 0x73, 0xc8, 0x39, 0x47, 0xf1, 0x65, - 0xc8, 0x73, 0xf0, 0xc2, 0x08, 0x27, 0x10, 0x75, 0x3b, 0x7d, 0xbf, 0xef, 0x86, 0x4f, 0x1c, 0xdb, - 0x30, 0x31, 0xa0, 0x0b, 0x4a, 0xbb, 0x0e, 0x49, 0x51, 0x64, 0x6c, 0xd1, 0x6a, 0xc6, 0x48, 0x55, - 0x3f, 0x44, 0x8e, 0xf2, 0xf6, 0x4f, 0xa9, 0xb2, 0xf2, 0xf0, 0x5d, 0x88, 0xfd, 0x6b, 0xa7, 0x31, - 0xbc, 0x43, 0x4a, 0xda, 0x83, 0x7c, 0x14, 0xf7, 0x03, 0x58, 0xec, 0x11, 0x88, 0x53, 0x03, 0xbf, - 0x53, 0x59, 0x1c, 0x36, 0xa7, 0x5d, 0x7d, 0xb7, 0xf2, 0xfc, 0x21, 0x8f, 0x62, 0x9f, 0x80, 0x1c, - 0x0c, 0x8b, 0x76, 0x75, 0x28, 0x4e, 0xbb, 0xfa, 0x66, 0x66, 0xab, 0x32, 0x9a, 0x2f, 0xb0, 0xdc, - 0x04, 0x24, 0x28, 0x37, 0x8b, 0x32, 0xb3, 0x37, 0x24, 0x90, 0x52, 0x6c, 0x4d, 0x74, 0x53, 0xb9, - 0xcd, 0x53, 0xbe, 0x5f, 0xce, 0x1f, 0xcf, 0x1e, 0xf9, 0x73, 0x34, 0x95, 0x8d, 0x9d, 0x0a, 0x53, - 0xcb, 0xea, 0x3f, 0xcd, 0x03, 0xa9, 0xde, 0x3c, 0xf9, 0xa8, 0x2e, 0x6b, 0xcd, 0x75, 0x2e, 0x3c, - 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x4c, 0x9b, 0x4f, 0xc5, 0x06, 0x01, 0x00, 0x00, + // 208 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x8f, 0x3f, 0x4f, 0xc3, 0x30, + 0x10, 0x47, 0x15, 0x5a, 0x21, 0xd5, 0x54, 0x80, 0x3c, 0x65, 0x6c, 0x99, 0xca, 0x40, 0x3c, 0x20, + 0xc4, 0x8e, 0xc4, 0x06, 0x4b, 0x47, 0x96, 0xca, 0x7f, 0x2e, 0xe6, 0x90, 0x73, 0x17, 0xd9, 0xce, + 0x90, 0xcf, 0xc1, 0x17, 0x46, 0x38, 0x81, 0xa8, 0x9b, 0xf5, 0x7e, 0xcf, 0xd2, 0x3d, 0xb1, 0x6f, + 0xc3, 0x98, 0x01, 0x5d, 0x50, 0xda, 0x75, 0x48, 0x8a, 0x38, 0x63, 0x8b, 0x56, 0x67, 0x64, 0x6a, + 0xfa, 0xc8, 0x99, 0xe5, 0xf5, 0x9f, 0xd2, 0x14, 0xe5, 0xee, 0xbb, 0x12, 0xdb, 0xd7, 0x4e, 0x63, + 0x78, 0x87, 0x94, 0xb4, 0x07, 0x79, 0x2f, 0x6e, 0x23, 0x58, 0xec, 0x11, 0x28, 0xa7, 0x13, 0xfc, + 0x4e, 0x75, 0xb5, 0x5b, 0x1d, 0x36, 0xc7, 0x9b, 0x85, 0x97, 0x1f, 0x72, 0x2f, 0xb6, 0x09, 0xc8, + 0x41, 0x9c, 0xb5, 0x8b, 0x5d, 0x75, 0xd8, 0x1c, 0xaf, 0x26, 0xb6, 0x28, 0x83, 0xf9, 0x02, 0x9b, + 0x4f, 0x01, 0x09, 0xea, 0xd5, 0xac, 0x4c, 0xec, 0x0d, 0x09, 0xa4, 0x14, 0x6b, 0xc3, 0x6e, 0xac, + 0xd7, 0x65, 0x2a, 0xef, 0x97, 0xe7, 0x8f, 0x27, 0x8f, 0xf9, 0x73, 0x30, 0x8d, 0xe5, 0x4e, 0x95, + 0x93, 0x39, 0x7a, 0xf5, 0x9f, 0xe7, 0x81, 0x54, 0x6f, 0x1e, 0x3c, 0xab, 0xf3, 0x62, 0x73, 0x59, + 0x2a, 0x1f, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x59, 0x6f, 0x88, 0xf9, 0x0a, 0x01, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/project.pb.go b/gen/pb-go/flyteidl/admin/project.pb.go index 391ce6791..5056b240a 100644 --- a/gen/pb-go/flyteidl/admin/project.pb.go +++ b/gen/pb-go/flyteidl/admin/project.pb.go @@ -421,34 +421,34 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/project.proto", fileDescriptor_2db065ce03bf106d) } var fileDescriptor_2db065ce03bf106d = []byte{ - // 457 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xcf, 0x6e, 0xd3, 0x40, - 0x10, 0xc6, 0xb1, 0xdb, 0xd8, 0x61, 0x52, 0xa2, 0x68, 0x15, 0x1a, 0xf3, 0xe7, 0x60, 0x59, 0x1c, - 0x72, 0xa0, 0x36, 0x4d, 0x6e, 0x1c, 0x90, 0xd2, 0xc6, 0x82, 0x8a, 0x82, 0xd0, 0x26, 0xad, 0x04, - 0x97, 0xca, 0x8e, 0x37, 0x61, 0xc1, 0xde, 0x35, 0xde, 0xe9, 0x21, 0x8f, 0xc0, 0xc3, 0xf0, 0x8e, - 0xc8, 0xeb, 0x75, 0xd5, 0x86, 0x82, 0x38, 0x25, 0x33, 0xf3, 0xdb, 0x6f, 0xbf, 0x99, 0x59, 0xc3, - 0xf3, 0x75, 0xbe, 0x45, 0xc6, 0xb3, 0x3c, 0x4a, 0xb2, 0x82, 0x8b, 0xa8, 0xac, 0xe4, 0x37, 0xb6, - 0xc2, 0xb0, 0xac, 0x24, 0x4a, 0xd2, 0x6f, 0xab, 0xa1, 0xae, 0x3e, 0x7d, 0xb6, 0x43, 0xaf, 0x64, - 0x51, 0x48, 0xd1, 0xc0, 0xc1, 0x4b, 0x70, 0xe6, 0xb2, 0x48, 0xb8, 0x20, 0x7d, 0xb0, 0x79, 0xe6, - 0x59, 0xbe, 0x35, 0x7e, 0x48, 0x6d, 0x9e, 0x11, 0x02, 0xfb, 0x22, 0x29, 0x98, 0x67, 0xeb, 0x8c, - 0xfe, 0x1f, 0xfc, 0xb2, 0xc1, 0xfd, 0xd4, 0x5c, 0xf6, 0x3f, 0x3c, 0x79, 0x05, 0x6e, 0xa6, 0xd5, - 0x95, 0xb7, 0xe7, 0xef, 0x8d, 0x7b, 0x93, 0xc3, 0xf0, 0xae, 0xb9, 0xb0, 0xb9, 0x9c, 0xb6, 0x18, - 0xf1, 0xa1, 0x97, 0x31, 0xb5, 0xaa, 0x78, 0x89, 0x5c, 0x0a, 0x6f, 0x5f, 0x8b, 0xdd, 0x4e, 0x91, - 0x10, 0x9c, 0x3c, 0x49, 0x59, 0xae, 0xbc, 0x8e, 0x6f, 0xdd, 0x27, 0x79, 0xae, 0xab, 0xd4, 0x50, - 0xe4, 0x35, 0x74, 0x14, 0x26, 0xc8, 0x3c, 0xc7, 0xb7, 0xc6, 0xfd, 0xc9, 0x8b, 0x5d, 0xdc, 0xf4, - 0xd3, 0xfe, 0x2e, 0x6a, 0x96, 0x36, 0x47, 0x82, 0x37, 0x70, 0x70, 0x3b, 0x4d, 0x00, 0x9c, 0xd9, - 0xe9, 0xf2, 0xec, 0x32, 0x1e, 0x3c, 0x20, 0x07, 0xd0, 0x9d, 0xd1, 0xd3, 0x77, 0x67, 0x97, 0xf1, - 0x7c, 0x60, 0x91, 0x21, 0x0c, 0x16, 0x9f, 0x17, 0xcb, 0xf8, 0xc3, 0xd5, 0xdb, 0xf8, 0x63, 0x4c, - 0x67, 0xcb, 0x78, 0x3e, 0xb0, 0x83, 0x0b, 0xe8, 0x9a, 0xf3, 0x8a, 0x4c, 0xa1, 0x6b, 0xf6, 0xa4, - 0x3c, 0x4b, 0x0f, 0x63, 0xf4, 0x17, 0x2b, 0xf4, 0x06, 0x24, 0x43, 0xe8, 0xa0, 0xfc, 0xce, 0x84, - 0x99, 0x6a, 0x13, 0x04, 0x3f, 0x2d, 0x20, 0x86, 0x3d, 0xe7, 0x0a, 0x29, 0xfb, 0x71, 0xcd, 0x14, - 0xd6, 0x70, 0xce, 0x0b, 0x8e, 0x7a, 0x29, 0x8f, 0x68, 0x13, 0xdc, 0x2f, 0x41, 0x3c, 0x70, 0xd7, - 0x3c, 0x47, 0x56, 0xd5, 0x9b, 0xa9, 0xf3, 0x6d, 0x48, 0x8e, 0xc0, 0x55, 0xb2, 0xc2, 0xab, 0x74, - 0xab, 0xa7, 0xdf, 0x9b, 0x0c, 0x77, 0x6d, 0x2e, 0x64, 0x85, 0xd4, 0xa9, 0xa1, 0x93, 0x6d, 0xf0, - 0x1e, 0x0e, 0x5b, 0xdb, 0x6c, 0xc3, 0x15, 0xb2, 0xaa, 0xb5, 0x73, 0x0c, 0xae, 0xe9, 0x43, 0x1b, - 0xfa, 0x47, 0xbf, 0x2d, 0x17, 0x3c, 0x81, 0xd1, 0x1f, 0x62, 0xaa, 0x94, 0x42, 0xb1, 0x60, 0x04, - 0x8f, 0x4d, 0xe9, 0xa2, 0xcc, 0xea, 0x15, 0x99, 0xc2, 0xc9, 0xf4, 0xcb, 0xf1, 0x86, 0xe3, 0xd7, - 0xeb, 0x34, 0x5c, 0xc9, 0x22, 0xca, 0xb7, 0x6b, 0x8c, 0x6e, 0x1e, 0xfc, 0x86, 0x89, 0xa8, 0x4c, - 0x8f, 0x36, 0x32, 0xba, 0xfb, 0x0d, 0xa4, 0x8e, 0x7e, 0xfd, 0xd3, 0xdf, 0x01, 0x00, 0x00, 0xff, - 0xff, 0x9c, 0x5a, 0xc0, 0x5e, 0x4a, 0x03, 0x00, 0x00, + // 459 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xcd, 0x6e, 0xd3, 0x40, + 0x10, 0xc7, 0xb1, 0xdb, 0xd8, 0x61, 0x52, 0xa2, 0x68, 0x14, 0x1a, 0xf3, 0x71, 0xb0, 0x2c, 0x0e, + 0x39, 0x50, 0x1b, 0x52, 0x21, 0x24, 0x0e, 0x48, 0x69, 0x63, 0x41, 0x45, 0x41, 0x68, 0x93, 0x56, + 0x82, 0x4b, 0xe5, 0x8f, 0xad, 0x59, 0xb0, 0xbd, 0xc6, 0xbb, 0x3d, 0xe4, 0x11, 0x78, 0x18, 0xde, + 0x11, 0x79, 0xbd, 0xae, 0xda, 0x10, 0x50, 0x4f, 0xf6, 0xcc, 0xfc, 0x76, 0xe6, 0x3f, 0x33, 0xbb, + 0xf0, 0xf4, 0x32, 0x5f, 0x4b, 0xca, 0xd2, 0x3c, 0x88, 0xd2, 0x82, 0x95, 0x41, 0x55, 0xf3, 0xef, + 0x34, 0x91, 0x7e, 0x55, 0x73, 0xc9, 0x71, 0xd8, 0x45, 0x7d, 0x15, 0x7d, 0xfc, 0x64, 0x83, 0x4e, + 0x78, 0x51, 0xf0, 0xb2, 0x85, 0xbd, 0xe7, 0x60, 0x2d, 0x78, 0x11, 0xb1, 0x12, 0x87, 0x60, 0xb2, + 0xd4, 0x31, 0x5c, 0x63, 0x7a, 0x9f, 0x98, 0x2c, 0x45, 0x84, 0xdd, 0x32, 0x2a, 0xa8, 0x63, 0x2a, + 0x8f, 0xfa, 0xf7, 0x7e, 0x9b, 0x60, 0x7f, 0x6e, 0x8b, 0xdd, 0x85, 0xc7, 0x17, 0x60, 0xa7, 0x2a, + 0xbb, 0x70, 0x76, 0xdc, 0x9d, 0xe9, 0x60, 0xb6, 0xef, 0xdf, 0x16, 0xe7, 0xb7, 0xc5, 0x49, 0x87, + 0xa1, 0x0b, 0x83, 0x94, 0x8a, 0xa4, 0x66, 0x95, 0x64, 0xbc, 0x74, 0x76, 0x55, 0xb2, 0x9b, 0x2e, + 0xf4, 0xc1, 0xca, 0xa3, 0x98, 0xe6, 0xc2, 0xe9, 0xb9, 0xc6, 0xb6, 0x94, 0xa7, 0x2a, 0x4a, 0x34, + 0x85, 0x6f, 0xa0, 0x27, 0x64, 0x24, 0xa9, 0x63, 0xb9, 0xc6, 0x74, 0x38, 0x7b, 0xb6, 0x89, 0xeb, + 0x7e, 0xba, 0xef, 0xb2, 0x61, 0x49, 0x7b, 0xc4, 0x7b, 0x0b, 0x7b, 0x37, 0xdd, 0x08, 0x60, 0xcd, + 0x8f, 0x57, 0x27, 0xe7, 0xe1, 0xe8, 0x1e, 0xee, 0x41, 0x7f, 0x4e, 0x8e, 0xdf, 0x9f, 0x9c, 0x87, + 0x8b, 0x91, 0x81, 0x63, 0x18, 0x2d, 0xbf, 0x2c, 0x57, 0xe1, 0xc7, 0x8b, 0x77, 0xe1, 0xa7, 0x90, + 0xcc, 0x57, 0xe1, 0x62, 0x64, 0x7a, 0x67, 0xd0, 0xd7, 0xe7, 0x05, 0x1e, 0x42, 0x5f, 0xef, 0x49, + 0x38, 0x86, 0x1a, 0xc6, 0xe4, 0x1f, 0x52, 0xc8, 0x35, 0x88, 0x63, 0xe8, 0x49, 0xfe, 0x83, 0x96, + 0x7a, 0xaa, 0xad, 0xe1, 0xfd, 0x32, 0x00, 0x35, 0x7b, 0xca, 0x84, 0x24, 0xf4, 0xe7, 0x15, 0x15, + 0xb2, 0x81, 0x73, 0x56, 0x30, 0xa9, 0x96, 0xf2, 0x80, 0xb4, 0xc6, 0xf6, 0x14, 0xe8, 0x80, 0x7d, + 0xc9, 0x72, 0x49, 0xeb, 0x66, 0x33, 0x8d, 0xbf, 0x33, 0xf1, 0x00, 0x6c, 0xc1, 0x6b, 0x79, 0x11, + 0xaf, 0xd5, 0xf4, 0x07, 0xb3, 0xf1, 0xa6, 0xcc, 0x25, 0xaf, 0x25, 0xb1, 0x1a, 0xe8, 0x68, 0xed, + 0x7d, 0x80, 0xfd, 0x4e, 0x36, 0xcd, 0x98, 0x90, 0xb4, 0xee, 0xe4, 0xbc, 0x04, 0x5b, 0xf7, 0xa1, + 0x04, 0xfd, 0xa7, 0xdf, 0x8e, 0xf3, 0x1e, 0xc1, 0xe4, 0xaf, 0x64, 0xa2, 0xe2, 0xa5, 0xa0, 0xde, + 0x04, 0x1e, 0xea, 0xd0, 0x59, 0x95, 0x36, 0x2b, 0xd2, 0x81, 0xa3, 0xd7, 0x5f, 0x5f, 0x65, 0x4c, + 0x7e, 0xbb, 0x8a, 0xfd, 0x84, 0x17, 0x81, 0xaa, 0xc0, 0xeb, 0x2c, 0xb8, 0xbe, 0xf4, 0x19, 0x2d, + 0x83, 0x2a, 0x3e, 0xc8, 0x78, 0x70, 0xfb, 0x1d, 0xc4, 0x96, 0x7a, 0x01, 0x87, 0x7f, 0x02, 0x00, + 0x00, 0xff, 0xff, 0xff, 0xe4, 0x77, 0x94, 0x4e, 0x03, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/project_domain_attributes.pb.go b/gen/pb-go/flyteidl/admin/project_domain_attributes.pb.go index db9649119..226268b65 100644 --- a/gen/pb-go/flyteidl/admin/project_domain_attributes.pb.go +++ b/gen/pb-go/flyteidl/admin/project_domain_attributes.pb.go @@ -349,26 +349,27 @@ func init() { } var fileDescriptor_e8ab0b551a649f05 = []byte{ - // 336 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x53, 0x4d, 0x4b, 0xc3, 0x40, - 0x10, 0x65, 0x15, 0x2a, 0x8e, 0xda, 0x43, 0x04, 0x0d, 0x9e, 0xda, 0x45, 0x69, 0x2f, 0x26, 0xd8, - 0xfe, 0x02, 0xa5, 0xd8, 0x93, 0x20, 0x51, 0x2f, 0x5e, 0x42, 0x3e, 0xa6, 0x69, 0x24, 0xc9, 0xae, - 0xc9, 0xe4, 0x90, 0x1f, 0x23, 0xf4, 0xa7, 0x8a, 0x9b, 0x6c, 0xbf, 0x34, 0x8a, 0x20, 0x78, 0x9c, - 0xe4, 0xcd, 0x7b, 0x6f, 0xdf, 0x63, 0xc0, 0x9a, 0x25, 0x15, 0x61, 0x1c, 0x26, 0xb6, 0x17, 0xa6, - 0x71, 0x66, 0xcb, 0x5c, 0xbc, 0x60, 0x40, 0x6e, 0x28, 0x52, 0x2f, 0xce, 0x5c, 0x8f, 0x28, 0x8f, - 0xfd, 0x92, 0xb0, 0xb0, 0x64, 0x2e, 0x48, 0x18, 0x5d, 0x8d, 0xb7, 0x14, 0xfe, 0x6c, 0xb0, 0xb5, - 0x9f, 0x7a, 0x14, 0xcc, 0x3d, 0x3f, 0x41, 0x37, 0xc7, 0x42, 0x94, 0x79, 0x80, 0xf5, 0x22, 0x5f, - 0x30, 0x38, 0xbd, 0xaf, 0xc9, 0x27, 0x8a, 0xfb, 0x7a, 0x49, 0x6d, 0x98, 0xb0, 0xd7, 0xe8, 0x9a, - 0xac, 0xc7, 0x86, 0xfb, 0x8e, 0x1e, 0x8d, 0x13, 0xe8, 0xd4, 0x4e, 0xcc, 0x1d, 0xf5, 0xa3, 0x99, - 0x8c, 0x07, 0x38, 0x56, 0x4a, 0x71, 0x16, 0xad, 0x79, 0x34, 0x77, 0x7b, 0x6c, 0x78, 0x30, 0xe2, - 0xd6, 0xa6, 0x49, 0xeb, 0xae, 0x81, 0xae, 0x24, 0x1d, 0x23, 0xfd, 0xf4, 0x8d, 0x0b, 0x38, 0x6f, - 0x71, 0xf8, 0x24, 0x43, 0x8f, 0xd0, 0xc1, 0xd7, 0x12, 0x0b, 0x32, 0xa6, 0x00, 0x6b, 0x9a, 0x4c, - 0x69, 0x0e, 0xb6, 0x35, 0x5b, 0x98, 0x9c, 0xb5, 0x55, 0x3e, 0x80, 0x8b, 0x1f, 0x04, 0x0b, 0x29, - 0xb2, 0x02, 0xf9, 0x1b, 0x83, 0x7e, 0x0b, 0x72, 0x8a, 0xa4, 0x7d, 0xfd, 0x3e, 0xc6, 0x5b, 0x38, - 0xd2, 0x35, 0xb9, 0x54, 0x49, 0x54, 0x01, 0x76, 0x47, 0xfd, 0x2f, 0x03, 0xfc, 0x68, 0xd5, 0x69, - 0xd0, 0xce, 0xa1, 0xde, 0x7b, 0xac, 0x24, 0xf2, 0x14, 0xf8, 0x77, 0xf6, 0xea, 0x57, 0xfc, 0x5d, - 0x6e, 0x0b, 0xd6, 0xda, 0xd4, 0x04, 0x13, 0x5c, 0x35, 0xf5, 0x7f, 0x89, 0xb4, 0x57, 0xab, 0x1d, - 0xd6, 0xa1, 0xdc, 0x8c, 0x9f, 0xaf, 0xa2, 0x98, 0xe6, 0xa5, 0x6f, 0x05, 0x22, 0xb5, 0x93, 0x6a, - 0x46, 0xf6, 0xf2, 0xa4, 0x22, 0xcc, 0x6c, 0xe9, 0x5f, 0x46, 0xc2, 0xde, 0xbc, 0x32, 0xbf, 0xa3, - 0x6e, 0x6a, 0xfc, 0x1e, 0x00, 0x00, 0xff, 0xff, 0xcb, 0x5e, 0x6c, 0x80, 0xbe, 0x03, 0x00, 0x00, + // 339 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x53, 0x4f, 0x4b, 0xfb, 0x40, + 0x10, 0x65, 0x7f, 0x3f, 0xa8, 0x38, 0x6a, 0x0f, 0x11, 0x34, 0x78, 0x6a, 0x17, 0xa5, 0xbd, 0x98, + 0x40, 0x45, 0x3c, 0x2b, 0xc5, 0x9e, 0x04, 0x89, 0x7a, 0xf1, 0x12, 0xf2, 0x67, 0x4c, 0x23, 0x49, + 0x76, 0xdd, 0x4c, 0x0e, 0xfd, 0x30, 0x42, 0x3f, 0xaa, 0xb8, 0xc9, 0xf6, 0x9f, 0x46, 0x11, 0x04, + 0x8f, 0x93, 0xbc, 0x79, 0xef, 0xed, 0x7b, 0x0c, 0x38, 0x4f, 0xd9, 0x8c, 0x30, 0x8d, 0x33, 0x37, + 0x88, 0xf3, 0xb4, 0x70, 0xa5, 0x12, 0xcf, 0x18, 0x91, 0x1f, 0x8b, 0x3c, 0x48, 0x0b, 0x3f, 0x20, + 0x52, 0x69, 0x58, 0x11, 0x96, 0x8e, 0x54, 0x82, 0x84, 0xd5, 0x35, 0x78, 0x47, 0xe3, 0x8f, 0x06, + 0x1b, 0xfb, 0x79, 0x40, 0xd1, 0x34, 0x08, 0x33, 0xf4, 0x15, 0x96, 0xa2, 0x52, 0x11, 0xd6, 0x8b, + 0x7c, 0xce, 0xe0, 0xf0, 0xb6, 0x26, 0x1f, 0x6b, 0xee, 0xcb, 0x05, 0xb5, 0x65, 0xc3, 0x56, 0xa3, + 0x6b, 0xb3, 0x1e, 0x1b, 0x6e, 0x7b, 0x66, 0xb4, 0x0e, 0xa0, 0x53, 0x3b, 0xb1, 0xff, 0xe9, 0x1f, + 0xcd, 0x64, 0xdd, 0xc1, 0xbe, 0x56, 0x4a, 0x8b, 0x64, 0xc5, 0xa3, 0xfd, 0xbf, 0xc7, 0x86, 0x3b, + 0x23, 0xee, 0xac, 0x9b, 0x74, 0x6e, 0x1a, 0xe8, 0x52, 0xd2, 0xb3, 0xf2, 0x0f, 0xdf, 0xb8, 0x80, + 0xe3, 0x16, 0x87, 0x0f, 0x32, 0x0e, 0x08, 0x3d, 0x7c, 0xa9, 0xb0, 0x24, 0x6b, 0x02, 0xb0, 0xa2, + 0xc9, 0xb4, 0xe6, 0x60, 0x53, 0xb3, 0x85, 0xc9, 0x5b, 0x59, 0xe5, 0x03, 0x38, 0xf9, 0x46, 0xb0, + 0x94, 0xa2, 0x28, 0x91, 0xbf, 0x32, 0xe8, 0xb7, 0x20, 0x27, 0x48, 0xc6, 0xd7, 0xcf, 0x63, 0xbc, + 0x86, 0x3d, 0x53, 0x93, 0x4f, 0x33, 0x89, 0x3a, 0xc0, 0xee, 0xa8, 0xff, 0x69, 0x80, 0xef, 0xad, + 0x7a, 0x0d, 0xda, 0xdb, 0x35, 0x7b, 0xf7, 0x33, 0x89, 0x3c, 0x07, 0xfe, 0x95, 0xbd, 0xfa, 0x15, + 0xbf, 0x97, 0xdb, 0x9c, 0xb5, 0x36, 0x35, 0xc6, 0x0c, 0x97, 0x4d, 0xfd, 0x5d, 0x22, 0xed, 0xd5, + 0x1a, 0x87, 0x75, 0x28, 0x57, 0x17, 0x8f, 0xe7, 0x49, 0x4a, 0xd3, 0x2a, 0x74, 0x22, 0x91, 0xbb, + 0x5a, 0x45, 0xa8, 0xc4, 0x5d, 0x9c, 0x55, 0x82, 0x85, 0x2b, 0xc3, 0xd3, 0x44, 0xb8, 0xeb, 0x97, + 0x16, 0x76, 0xf4, 0x5d, 0x9d, 0xbd, 0x05, 0x00, 0x00, 0xff, 0xff, 0x0e, 0x77, 0x7d, 0xa6, 0xc2, + 0x03, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/schedule.pb.go b/gen/pb-go/flyteidl/admin/schedule.pb.go index b46589996..ad5c8882a 100644 --- a/gen/pb-go/flyteidl/admin/schedule.pb.go +++ b/gen/pb-go/flyteidl/admin/schedule.pb.go @@ -265,28 +265,28 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/schedule.proto", fileDescriptor_a71cf75647fcd25a) } var fileDescriptor_a71cf75647fcd25a = []byte{ - // 355 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0x41, 0x6b, 0xe2, 0x40, - 0x14, 0xc7, 0x13, 0xcd, 0xba, 0xfa, 0x56, 0x5d, 0x99, 0x15, 0xc9, 0x96, 0x0a, 0xe2, 0x49, 0x0a, - 0x26, 0xa8, 0x9f, 0xc0, 0x58, 0x4b, 0x3c, 0xb4, 0x85, 0xa9, 0x1e, 0xda, 0x4b, 0x88, 0xc9, 0x24, - 0x0e, 0x26, 0x33, 0x21, 0x99, 0x14, 0xfd, 0xea, 0x3d, 0x15, 0x47, 0x4d, 0xb5, 0xd0, 0xe3, 0xe3, - 0x37, 0xef, 0xf7, 0xde, 0x7f, 0x78, 0xd0, 0x0d, 0xa2, 0xbd, 0x20, 0xd4, 0x8f, 0x4c, 0xd7, 0x8f, - 0x29, 0x33, 0x33, 0x6f, 0x43, 0xfc, 0x3c, 0x22, 0x46, 0x92, 0x72, 0xc1, 0x51, 0xf3, 0x8c, 0x0d, - 0x89, 0xfb, 0x4b, 0xa8, 0x3d, 0xd0, 0x1d, 0xf1, 0xb1, 0x2b, 0x08, 0x6a, 0xc3, 0xaf, 0x77, 0x37, - 0xca, 0x89, 0xae, 0xf6, 0xd4, 0x41, 0x03, 0x1f, 0x0b, 0x34, 0x02, 0x2d, 0x67, 0x54, 0xe8, 0xa5, - 0x9e, 0x3a, 0x68, 0x8e, 0xbb, 0xc6, 0xb5, 0xc1, 0x28, 0xda, 0x57, 0x8c, 0x0a, 0x2c, 0x9f, 0xf6, - 0x2d, 0xa8, 0xcf, 0x52, 0xce, 0x5e, 0x4e, 0xb3, 0xd1, 0x0d, 0x54, 0xcf, 0x7b, 0x48, 0x77, 0x0d, - 0x17, 0x35, 0xea, 0x40, 0x85, 0x07, 0x41, 0x46, 0x8e, 0x03, 0x6a, 0xf8, 0x54, 0xf5, 0x3f, 0x54, - 0xa8, 0x16, 0x82, 0x21, 0xfc, 0xf5, 0x52, 0xce, 0x1c, 0xb2, 0x4b, 0x52, 0x92, 0x65, 0x94, 0xb3, - 0xa3, 0xc7, 0x2a, 0xe9, 0xaa, 0xad, 0xe0, 0xe6, 0x01, 0xce, 0x0b, 0x86, 0x4c, 0xd0, 0x52, 0x57, - 0x10, 0x69, 0xfc, 0x33, 0xfe, 0xff, 0xe3, 0xca, 0xb6, 0x82, 0xe5, 0x43, 0x34, 0x83, 0x86, 0xf4, - 0x17, 0x5b, 0x6a, 0xb2, 0xf3, 0xf6, 0x7b, 0xe7, 0x65, 0x2a, 0x5b, 0xc1, 0x75, 0xef, 0x32, 0xe5, - 0x04, 0x3a, 0x5b, 0xea, 0x6d, 0x79, 0x10, 0x38, 0x82, 0xc6, 0xc4, 0xa1, 0x2c, 0xc9, 0x85, 0xe3, - 0xa6, 0xa1, 0x5e, 0x96, 0xc9, 0xfe, 0x9d, 0xe8, 0x92, 0xc6, 0x64, 0x71, 0x60, 0xd3, 0x34, 0xb4, - 0xda, 0x80, 0xce, 0x82, 0xaf, 0x00, 0x77, 0x06, 0x34, 0xae, 0xfe, 0x15, 0x01, 0x54, 0x1e, 0x17, - 0x4f, 0xab, 0xe5, 0xbc, 0xa5, 0xa0, 0x2a, 0x68, 0xf6, 0xf3, 0x0a, 0xb7, 0x54, 0xf4, 0x1b, 0xca, - 0xf7, 0xd3, 0xd7, 0x56, 0xc9, 0x9a, 0xbc, 0x8d, 0x42, 0x2a, 0x36, 0xf9, 0xda, 0xf0, 0x78, 0x6c, - 0x46, 0xfb, 0x40, 0x98, 0xc5, 0x1d, 0x84, 0x84, 0x99, 0xc9, 0x7a, 0x18, 0x72, 0xf3, 0xfa, 0x34, - 0xd6, 0x15, 0x79, 0x12, 0x93, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfb, 0x90, 0xa1, 0x91, 0x33, - 0x02, 0x00, 0x00, + // 358 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0xc1, 0x8b, 0xda, 0x40, + 0x14, 0xc6, 0x13, 0x4d, 0xad, 0xbe, 0xaa, 0x95, 0xa9, 0x48, 0x5a, 0x2a, 0x88, 0x27, 0x29, 0x98, + 0x50, 0xa5, 0xf4, 0x6c, 0xac, 0x25, 0x1e, 0x76, 0x17, 0x66, 0xf5, 0xb0, 0x7b, 0x09, 0x31, 0x99, + 0xc4, 0xc1, 0x64, 0x26, 0x4c, 0x26, 0x8b, 0xfb, 0xaf, 0xef, 0x69, 0x71, 0xd4, 0xac, 0x2e, 0xec, + 0xf1, 0xf1, 0xcd, 0xfb, 0xbd, 0xef, 0x1b, 0x3e, 0xe8, 0x47, 0xc9, 0xb3, 0x24, 0x34, 0x4c, 0x6c, + 0x3f, 0x4c, 0x29, 0xb3, 0xf3, 0x60, 0x4b, 0xc2, 0x22, 0x21, 0x56, 0x26, 0xb8, 0xe4, 0xa8, 0x7d, + 0x96, 0x2d, 0x25, 0x0f, 0x57, 0xd0, 0xf8, 0x4f, 0xf7, 0x24, 0xc4, 0xbe, 0x24, 0xa8, 0x0b, 0x9f, + 0x9e, 0xfc, 0xa4, 0x20, 0xa6, 0x3e, 0xd0, 0x47, 0x2d, 0x7c, 0x1c, 0xd0, 0x6f, 0x30, 0x0a, 0x46, + 0xa5, 0x59, 0x19, 0xe8, 0xa3, 0xf6, 0xa4, 0x6f, 0x5d, 0x13, 0xac, 0x72, 0x7d, 0xcd, 0xa8, 0xc4, + 0xea, 0xe9, 0xd0, 0x81, 0xe6, 0x5c, 0x70, 0x76, 0x7f, 0xba, 0x8d, 0x7e, 0x40, 0xfd, 0xec, 0x43, + 0xb1, 0x1b, 0xb8, 0x9c, 0x51, 0x0f, 0x6a, 0x3c, 0x8a, 0x72, 0x72, 0x3c, 0xd0, 0xc0, 0xa7, 0x69, + 0xf8, 0xa2, 0x43, 0xbd, 0x04, 0x8c, 0xe1, 0x6b, 0x20, 0x38, 0xf3, 0xc8, 0x3e, 0x13, 0x24, 0xcf, + 0x29, 0x67, 0x47, 0x8e, 0x53, 0x31, 0x75, 0x57, 0xc3, 0xed, 0x83, 0xb8, 0x28, 0x35, 0x64, 0x83, + 0x21, 0x7c, 0x49, 0x14, 0xf1, 0xcb, 0xe4, 0xfb, 0x87, 0x96, 0x5d, 0x0d, 0xab, 0x87, 0x68, 0x0e, + 0x2d, 0xc5, 0x2f, 0x5d, 0x1a, 0x6a, 0xf3, 0xe7, 0xfb, 0xcd, 0xcb, 0x54, 0xae, 0x86, 0x9b, 0xc1, + 0x65, 0xca, 0x29, 0xf4, 0x76, 0x34, 0xd8, 0xf1, 0x28, 0xf2, 0x24, 0x4d, 0x89, 0x47, 0x59, 0x56, + 0x48, 0xcf, 0x17, 0xb1, 0x59, 0x55, 0xc9, 0xbe, 0x9d, 0xd4, 0x15, 0x4d, 0xc9, 0xf2, 0xa0, 0xcd, + 0x44, 0xec, 0x74, 0x01, 0x9d, 0x01, 0x6f, 0x01, 0x7e, 0x59, 0xd0, 0xba, 0xfa, 0x57, 0x04, 0x50, + 0xbb, 0x59, 0xde, 0xae, 0x57, 0x8b, 0x8e, 0x86, 0xea, 0x60, 0xb8, 0x77, 0x6b, 0xdc, 0xd1, 0xd1, + 0x67, 0xa8, 0xfe, 0x9b, 0x3d, 0x74, 0x2a, 0xce, 0xdf, 0xc7, 0x3f, 0x31, 0x95, 0xdb, 0x62, 0x63, + 0x05, 0x3c, 0xb5, 0x95, 0x69, 0x2e, 0x62, 0xbb, 0xec, 0x42, 0x4c, 0x98, 0x9d, 0x6d, 0xc6, 0x31, + 0xb7, 0xaf, 0xeb, 0xb1, 0xa9, 0xa9, 0x5a, 0x4c, 0x5f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x14, 0xbd, + 0x83, 0xd9, 0x37, 0x02, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/task.pb.go b/gen/pb-go/flyteidl/admin/task.pb.go index d2978a3dd..d90bb24f0 100644 --- a/gen/pb-go/flyteidl/admin/task.pb.go +++ b/gen/pb-go/flyteidl/admin/task.pb.go @@ -5,9 +5,9 @@ package admin import ( fmt "fmt" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" timestamp "github.com/golang/protobuf/ptypes/timestamp" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" math "math" ) @@ -311,30 +311,30 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/task.proto", fileDescriptor_9204120d588b2162) } var fileDescriptor_9204120d588b2162 = []byte{ - // 390 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x41, 0x6f, 0xd4, 0x30, - 0x10, 0x85, 0xb5, 0x4b, 0x0b, 0xad, 0x17, 0x90, 0xb0, 0xf6, 0x90, 0xdd, 0x22, 0xa8, 0x72, 0x2a, - 0x08, 0x6c, 0xd1, 0x0a, 0x21, 0x6e, 0x40, 0x4e, 0x48, 0x3d, 0x99, 0x3d, 0x71, 0xa9, 0x12, 0x67, - 0x92, 0x5a, 0xeb, 0xc4, 0x26, 0x9e, 0x1c, 0xfa, 0x17, 0xf8, 0xd5, 0xc8, 0x8e, 0x13, 0x6d, 0xd0, - 0x72, 0xe0, 0x38, 0x9e, 0x2f, 0xef, 0xcd, 0x4c, 0x1e, 0xd9, 0x54, 0xfa, 0x01, 0x41, 0x95, 0x9a, - 0xe7, 0x65, 0xa3, 0x5a, 0x8e, 0xb9, 0xdb, 0x33, 0xdb, 0x19, 0x34, 0xf4, 0xf9, 0xd8, 0x62, 0xa1, - 0xb5, 0x7d, 0x35, 0xa1, 0xd2, 0x74, 0xc0, 0x55, 0x09, 0x2d, 0xaa, 0x4a, 0x41, 0x37, 0xf0, 0xdb, - 0xcd, 0xbc, 0xef, 0x95, 0x5c, 0x6c, 0xbd, 0x9c, 0xb7, 0xa4, 0x69, 0xac, 0xd2, 0xd3, 0x87, 0xaf, - 0x6b, 0x63, 0x6a, 0x0d, 0x3c, 0x54, 0x45, 0x5f, 0x71, 0x54, 0x0d, 0x38, 0xcc, 0x1b, 0x3b, 0x00, - 0xa9, 0x26, 0x2f, 0x76, 0xb9, 0xdb, 0x67, 0x1d, 0xe4, 0x08, 0x02, 0x7e, 0xf5, 0xe0, 0x90, 0xbe, - 0x21, 0x4b, 0x55, 0x26, 0x8b, 0xcb, 0xc5, 0xd5, 0xea, 0x7a, 0xc3, 0xa6, 0x59, 0xbd, 0x01, 0xfb, - 0x3e, 0xcd, 0x26, 0x96, 0xaa, 0xa4, 0xef, 0xc8, 0x89, 0xb3, 0x20, 0x93, 0x65, 0x80, 0x13, 0x36, - 0x5f, 0x8c, 0x79, 0xed, 0x1f, 0x16, 0xa4, 0x08, 0x54, 0xba, 0x26, 0xf4, 0xd0, 0xcd, 0x59, 0xd3, - 0x3a, 0x48, 0xef, 0xc9, 0x89, 0x7f, 0xfd, 0x1f, 0xdb, 0x8f, 0xe4, 0x89, 0xd4, 0xc6, 0xf5, 0x1d, - 0x44, 0xe7, 0x8b, 0x63, 0xce, 0xd9, 0x80, 0x88, 0x91, 0x4d, 0x6f, 0xc9, 0x99, 0x7f, 0xbf, 0x55, - 0x0e, 0xe9, 0x5b, 0x72, 0x1a, 0xee, 0x98, 0x2c, 0x2e, 0x1f, 0x5d, 0xad, 0xae, 0xd7, 0xc7, 0x04, - 0xc4, 0x80, 0xd0, 0x35, 0x39, 0x45, 0xb3, 0x87, 0x36, 0x98, 0x9d, 0x8b, 0xa1, 0x48, 0xb3, 0x41, - 0xcd, 0xef, 0x47, 0x3f, 0x91, 0x33, 0x84, 0xc6, 0xea, 0x1c, 0x21, 0x6e, 0x70, 0xf1, 0xd7, 0x06, - 0x1e, 0xdd, 0x45, 0x44, 0x4c, 0x70, 0xfa, 0x7b, 0x41, 0x56, 0x07, 0xb3, 0xd2, 0x2f, 0xe4, 0x59, - 0xfc, 0x87, 0xe5, 0x9d, 0x37, 0xff, 0x87, 0x5a, 0x16, 0x99, 0x30, 0xe5, 0x53, 0x79, 0x50, 0xd1, - 0xcf, 0x84, 0xc8, 0x70, 0xe0, 0xf2, 0x2e, 0xc7, 0x78, 0x9e, 0x2d, 0x1b, 0x82, 0xc0, 0xc6, 0x20, - 0xb0, 0xdd, 0x18, 0x04, 0x71, 0x1e, 0xe9, 0xaf, 0xf8, 0xed, 0xe6, 0xe7, 0x87, 0x5a, 0xe1, 0x7d, - 0x5f, 0x30, 0x69, 0x1a, 0xae, 0x1f, 0x2a, 0xe4, 0x53, 0xbc, 0x6a, 0x68, 0xb9, 0x2d, 0xde, 0xd7, - 0x86, 0xcf, 0x73, 0x5d, 0x3c, 0x0e, 0x9a, 0x37, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xb8, 0xb5, - 0x0c, 0xc8, 0xf0, 0x02, 0x00, 0x00, + // 389 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x31, 0xef, 0xd3, 0x30, + 0x10, 0xc5, 0x95, 0xf2, 0x2f, 0xb4, 0x2e, 0x20, 0x61, 0x75, 0x48, 0x5b, 0x04, 0x55, 0xa6, 0x82, + 0xc0, 0x96, 0x8a, 0xaa, 0x8a, 0x0d, 0xc8, 0x84, 0xd4, 0xc9, 0x74, 0x62, 0xa9, 0x12, 0xe7, 0x9a, + 0x5a, 0x4d, 0x62, 0x13, 0x3b, 0x03, 0x5f, 0x81, 0x4f, 0x8d, 0xec, 0x38, 0x51, 0x83, 0xca, 0xf0, + 0x1f, 0xcf, 0xf7, 0xcb, 0x7b, 0x77, 0x97, 0x87, 0x16, 0xe7, 0xe2, 0xb7, 0x01, 0x91, 0x15, 0x34, + 0xc9, 0x4a, 0x51, 0x51, 0x93, 0xe8, 0x2b, 0x51, 0xb5, 0x34, 0x12, 0xbf, 0xec, 0x5a, 0xc4, 0xb5, + 0x96, 0x6f, 0x7a, 0x94, 0xcb, 0x1a, 0xa8, 0xc8, 0xa0, 0x32, 0xe2, 0x2c, 0xa0, 0x6e, 0xf9, 0xe5, + 0x62, 0xd8, 0xb7, 0x4a, 0xda, 0xb7, 0x5e, 0x0f, 0x5b, 0x5c, 0x96, 0x4a, 0x14, 0xfd, 0x87, 0x6f, + 0x73, 0x29, 0xf3, 0x02, 0xa8, 0xab, 0xd2, 0xe6, 0x4c, 0x8d, 0x28, 0x41, 0x9b, 0xa4, 0x54, 0x2d, + 0x10, 0x15, 0xe8, 0xd5, 0x31, 0xd1, 0xd7, 0xb8, 0x86, 0xc4, 0x00, 0x83, 0x5f, 0x0d, 0x68, 0x83, + 0xdf, 0xa1, 0x91, 0xc8, 0xc2, 0x60, 0x1d, 0x6c, 0x66, 0xdb, 0x05, 0xe9, 0x67, 0xb5, 0x06, 0xe4, + 0x7b, 0x3f, 0x1b, 0x1b, 0x89, 0x0c, 0x7f, 0x40, 0x0f, 0x5a, 0x01, 0x0f, 0x47, 0x0e, 0x0e, 0xc9, + 0x70, 0x31, 0x62, 0xb5, 0x7f, 0x28, 0xe0, 0xcc, 0x51, 0xd1, 0x1c, 0xe1, 0x5b, 0x37, 0xad, 0x64, + 0xa5, 0x21, 0xba, 0xa0, 0x07, 0xfb, 0xfa, 0x18, 0xdb, 0x1d, 0x7a, 0xc6, 0x0b, 0xa9, 0x9b, 0x1a, + 0xbc, 0xf3, 0xea, 0x9e, 0x73, 0xdc, 0x22, 0xac, 0x63, 0xa3, 0x03, 0x9a, 0xd8, 0xf7, 0x83, 0xd0, + 0x06, 0xbf, 0x47, 0x63, 0x77, 0xc7, 0x30, 0x58, 0x3f, 0xd9, 0xcc, 0xb6, 0xf3, 0x7b, 0x02, 0xac, + 0x45, 0xf0, 0x1c, 0x8d, 0x8d, 0xbc, 0x42, 0xe5, 0xcc, 0xa6, 0xac, 0x2d, 0xa2, 0xb8, 0x55, 0xb3, + 0xfb, 0xe1, 0x3d, 0x9a, 0x18, 0x28, 0x55, 0x91, 0x18, 0xf0, 0x1b, 0xac, 0xfe, 0xd9, 0xc0, 0xa2, + 0x47, 0x8f, 0xb0, 0x1e, 0x8e, 0xfe, 0x04, 0x68, 0x76, 0x33, 0x2b, 0xfe, 0x82, 0x5e, 0xf8, 0x7f, + 0x98, 0x9d, 0xac, 0xf9, 0x7f, 0xd4, 0x62, 0xcf, 0xb8, 0x29, 0x9f, 0xf3, 0x9b, 0x0a, 0x7f, 0x46, + 0x88, 0xbb, 0x03, 0x67, 0xa7, 0xc4, 0xf8, 0xf3, 0x2c, 0x49, 0x1b, 0x04, 0xd2, 0x05, 0x81, 0x1c, + 0xbb, 0x20, 0xb0, 0xa9, 0xa7, 0xbf, 0x9a, 0x6f, 0xfb, 0x9f, 0xbb, 0x5c, 0x98, 0x4b, 0x93, 0x12, + 0x2e, 0x4b, 0xea, 0x1c, 0x65, 0x9d, 0xd3, 0x3e, 0x62, 0x39, 0x54, 0x54, 0xa5, 0x1f, 0x73, 0x49, + 0x87, 0xd9, 0x4e, 0x9f, 0x3a, 0xdd, 0x4f, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x38, 0xe5, 0xba, + 0x67, 0xf4, 0x02, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/task_execution.pb.go b/gen/pb-go/flyteidl/admin/task_execution.pb.go index c974ade30..d6c390d17 100644 --- a/gen/pb-go/flyteidl/admin/task_execution.pb.go +++ b/gen/pb-go/flyteidl/admin/task_execution.pb.go @@ -5,11 +5,11 @@ package admin import ( fmt "fmt" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" duration "github.com/golang/protobuf/ptypes/duration" _struct "github.com/golang/protobuf/ptypes/struct" timestamp "github.com/golang/protobuf/ptypes/timestamp" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" math "math" ) @@ -535,52 +535,52 @@ func init() { } var fileDescriptor_8cde4c3aa101642e = []byte{ - // 742 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0xdd, 0x4e, 0xeb, 0x46, - 0x10, 0xc6, 0x21, 0xbf, 0x93, 0x02, 0x62, 0x85, 0x8a, 0x1b, 0xa0, 0x44, 0x69, 0x55, 0x45, 0x95, - 0xb0, 0x45, 0x10, 0x15, 0xad, 0xaa, 0x4a, 0xa4, 0xd0, 0x82, 0x44, 0x5b, 0xba, 0xc0, 0x4d, 0x6f, - 0x2c, 0xc7, 0x5e, 0x87, 0x15, 0xb6, 0xd7, 0xec, 0x8e, 0xa5, 0xe6, 0x09, 0xfa, 0x5c, 0x7d, 0x96, - 0xbe, 0x46, 0x2f, 0x8e, 0xbc, 0xb6, 0x03, 0x0e, 0x01, 0xa4, 0x73, 0x2e, 0x67, 0xe7, 0xfb, 0xe6, - 0x9b, 0x99, 0x9d, 0xd9, 0x85, 0xaf, 0x82, 0x70, 0x86, 0x8c, 0xfb, 0xa1, 0xed, 0xfa, 0x11, 0x8f, - 0x6d, 0x74, 0xd5, 0x83, 0xc3, 0xfe, 0x66, 0x5e, 0x8a, 0x5c, 0xc4, 0x56, 0x22, 0x05, 0x0a, 0xb2, - 0x5e, 0x82, 0x2c, 0x0d, 0xea, 0xed, 0x2c, 0x90, 0x3c, 0x11, 0x45, 0x25, 0xb8, 0xb7, 0x37, 0x77, - 0x7a, 0x42, 0x32, 0x7b, 0x21, 0x56, 0xef, 0xcb, 0xaa, 0x9b, 0xfb, 0x2c, 0x46, 0x1e, 0x70, 0x26, - 0x0b, 0xff, 0x6e, 0xd5, 0x1f, 0x72, 0x64, 0xd2, 0x0d, 0x55, 0xe1, 0xdd, 0x9f, 0x0a, 0x31, 0x0d, - 0x99, 0xad, 0xad, 0x49, 0x1a, 0xd8, 0xc8, 0x23, 0xa6, 0xd0, 0x8d, 0x92, 0x32, 0xfc, 0x22, 0xc0, - 0x4f, 0xa5, 0xfb, 0x4c, 0x7e, 0x77, 0xd1, 0xaf, 0x50, 0xa6, 0x1e, 0xe6, 0xde, 0xc1, 0x9f, 0xb0, - 0x7d, 0xeb, 0xaa, 0x87, 0xf3, 0x32, 0xe7, 0x5f, 0x19, 0x52, 0xf6, 0x98, 0x32, 0x85, 0xe4, 0x3b, - 0xa8, 0x71, 0xdf, 0x34, 0xfa, 0xc6, 0xb0, 0x3b, 0xfa, 0xc6, 0x9a, 0x37, 0x24, 0x4b, 0xd2, 0xaa, - 0x70, 0x2e, 0xe7, 0x15, 0xd1, 0x1a, 0xf7, 0x07, 0xff, 0x19, 0x60, 0x56, 0xfc, 0x57, 0x5c, 0xcd, - 0x83, 0x52, 0xd8, 0x8c, 0x85, 0xcf, 0x9e, 0x1a, 0xee, 0xbc, 0xaa, 0xf1, 0xbb, 0xf0, 0xd9, 0x32, - 0x8d, 0x8d, 0xb8, 0xea, 0x20, 0x5b, 0xd0, 0x08, 0x79, 0xc4, 0xd1, 0xac, 0xf5, 0x8d, 0xe1, 0x1a, - 0xcd, 0x8d, 0xec, 0x14, 0xc5, 0x03, 0x8b, 0xcd, 0xd5, 0xbe, 0x31, 0xec, 0xd0, 0xdc, 0x20, 0x26, - 0xb4, 0x02, 0x1e, 0x22, 0x93, 0xca, 0xac, 0xeb, 0xf3, 0xd2, 0x24, 0x07, 0xd0, 0x52, 0x42, 0xa2, - 0x33, 0x99, 0x99, 0x0d, 0x9d, 0xcf, 0x96, 0x55, 0x1d, 0x02, 0xeb, 0x46, 0x48, 0xa4, 0xcd, 0x0c, - 0x34, 0x9e, 0x0d, 0xfe, 0x35, 0x60, 0xad, 0x52, 0xe5, 0xc7, 0xf6, 0x8b, 0xec, 0x40, 0x87, 0xc7, - 0x49, 0x8a, 0x4e, 0x2a, 0xb9, 0x2e, 0xa1, 0x43, 0xdb, 0xfa, 0xe0, 0x4e, 0x72, 0xf2, 0x13, 0xb4, - 0xbc, 0x50, 0xa8, 0x54, 0x32, 0x5d, 0x47, 0x77, 0xf4, 0xf5, 0x62, 0x56, 0x95, 0xd0, 0x3f, 0xe7, - 0x58, 0x5a, 0x92, 0x74, 0x70, 0xe5, 0x24, 0xae, 0x64, 0x31, 0xea, 0x8a, 0xdb, 0xb4, 0xcd, 0xd5, - 0xb5, 0xb6, 0x07, 0x8f, 0xb0, 0xf9, 0xe2, 0xa2, 0xc8, 0x2f, 0xb0, 0x51, 0x5d, 0x09, 0x65, 0x1a, - 0xfd, 0xd5, 0x61, 0x77, 0xb4, 0xf7, 0xa6, 0x32, 0x5d, 0xc7, 0xe7, 0xa6, 0x7a, 0xea, 0x7f, 0xed, - 0x59, 0xff, 0x07, 0xff, 0xd4, 0x61, 0x6b, 0x59, 0xc6, 0x64, 0x1f, 0x40, 0xa4, 0x58, 0xb6, 0x21, - 0xeb, 0x62, 0xe7, 0x62, 0x85, 0x76, 0xf2, 0xb3, 0xac, 0x13, 0xc7, 0xd0, 0x60, 0x52, 0x0a, 0xa9, - 0xe3, 0x55, 0xb2, 0xd1, 0x1d, 0x9e, 0x07, 0x3c, 0xcf, 0x40, 0x17, 0x2b, 0x34, 0x47, 0x93, 0x13, - 0x68, 0x24, 0xf7, 0xae, 0xca, 0xdb, 0xb7, 0x3e, 0x1a, 0xbc, 0x75, 0x31, 0xd6, 0x75, 0x86, 0xa4, - 0x39, 0x81, 0x7c, 0x0b, 0xf5, 0x50, 0x4c, 0xb3, 0x39, 0xc9, 0xaa, 0xff, 0x7c, 0x09, 0xf1, 0x4a, - 0x4c, 0xa9, 0xc6, 0x90, 0xef, 0x01, 0x14, 0xba, 0x12, 0x99, 0xef, 0xb8, 0x58, 0xcc, 0x4f, 0xcf, - 0xca, 0x37, 0xcf, 0x2a, 0x37, 0xcf, 0xba, 0x2d, 0x57, 0x97, 0x76, 0x0a, 0xf4, 0x29, 0x92, 0x63, - 0x68, 0x97, 0x1b, 0x6b, 0x36, 0x35, 0xf1, 0x8b, 0x17, 0xc4, 0xb3, 0x02, 0x40, 0xe7, 0xd0, 0x4c, - 0xd1, 0x93, 0xcc, 0x2d, 0x14, 0x5b, 0xef, 0x2b, 0x16, 0xe8, 0x53, 0xcc, 0xa8, 0x69, 0xe2, 0x97, - 0xd4, 0xf6, 0xfb, 0xd4, 0x02, 0x7d, 0x8a, 0xe4, 0x04, 0xba, 0x5e, 0xaa, 0x50, 0x44, 0x0e, 0x8f, - 0x03, 0x61, 0x76, 0x34, 0x77, 0xfb, 0x05, 0xf7, 0x46, 0x3f, 0x31, 0x14, 0x72, 0xec, 0x65, 0x1c, - 0x88, 0xf1, 0x06, 0xac, 0x15, 0xf7, 0x2b, 0x99, 0x4a, 0x43, 0x1c, 0xdc, 0xc1, 0xce, 0xe2, 0xcb, - 0x73, 0xe6, 0xa2, 0xfb, 0xa9, 0xaf, 0xcf, 0xff, 0x06, 0xec, 0x2e, 0x8f, 0xab, 0x12, 0x11, 0x2b, - 0x46, 0x6c, 0x68, 0xea, 0xed, 0x52, 0x45, 0xf0, 0xed, 0xc5, 0xb1, 0xbe, 0x93, 0xe1, 0x38, 0x14, - 0x13, 0x5a, 0xc0, 0xc8, 0x21, 0xb4, 0xf2, 0xcc, 0x55, 0x31, 0x7a, 0xaf, 0x32, 0x4a, 0x1c, 0xf9, - 0x01, 0xba, 0x41, 0x1a, 0x86, 0x4e, 0x21, 0xb4, 0x5a, 0x5c, 0x6b, 0xb5, 0x8a, 0xab, 0xfc, 0xa1, - 0xff, 0xcd, 0x4d, 0x28, 0x64, 0xe8, 0xcb, 0x5c, 0xee, 0x47, 0xf8, 0x4c, 0x73, 0x4b, 0xcd, 0xfa, - 0x7b, 0x64, 0x2d, 0xf5, 0x47, 0x8e, 0x1e, 0x1f, 0xfd, 0x75, 0x38, 0xe5, 0x78, 0x9f, 0x4e, 0x2c, - 0x4f, 0x44, 0x76, 0x38, 0x0b, 0xd0, 0x9e, 0x7f, 0x2f, 0x53, 0x16, 0xdb, 0xc9, 0xe4, 0x60, 0x2a, - 0xec, 0xea, 0x6f, 0x36, 0x69, 0xea, 0x8b, 0x3b, 0xfa, 0x10, 0x00, 0x00, 0xff, 0xff, 0x67, 0x3f, - 0xf7, 0x0d, 0x1b, 0x07, 0x00, 0x00, + // 745 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0xef, 0x4e, 0xe3, 0x46, + 0x10, 0xc7, 0x21, 0x7f, 0x27, 0x05, 0xc4, 0x0a, 0x15, 0x37, 0x40, 0x89, 0xd2, 0xaa, 0x8a, 0x2a, + 0x61, 0xab, 0xa9, 0x68, 0x69, 0x55, 0x55, 0x22, 0x85, 0x16, 0x24, 0x7a, 0xc7, 0x2d, 0xf0, 0xe5, + 0xbe, 0x58, 0x8e, 0xbd, 0x31, 0x2b, 0x6c, 0xaf, 0xd9, 0x1d, 0x4b, 0xc7, 0x13, 0xdc, 0x73, 0xdd, + 0xb3, 0xdc, 0x6b, 0xdc, 0x87, 0x93, 0xd7, 0x76, 0xc0, 0x21, 0x80, 0x74, 0xf7, 0x71, 0x76, 0x7e, + 0xbf, 0xf9, 0xcd, 0xcc, 0xce, 0xec, 0xc2, 0x0f, 0xd3, 0xf0, 0x0e, 0x19, 0xf7, 0x43, 0xdb, 0xf5, + 0x23, 0x1e, 0xdb, 0xe8, 0xaa, 0x1b, 0x87, 0xbd, 0x63, 0x5e, 0x8a, 0x5c, 0xc4, 0x56, 0x22, 0x05, + 0x0a, 0xb2, 0x5a, 0x82, 0x2c, 0x0d, 0xea, 0x6d, 0xcd, 0x91, 0x3c, 0x11, 0x45, 0x25, 0xb8, 0xb7, + 0x33, 0x73, 0x7a, 0x42, 0x32, 0x7b, 0x2e, 0x56, 0xef, 0xfb, 0xaa, 0x9b, 0xfb, 0x2c, 0x46, 0x3e, + 0xe5, 0x4c, 0x16, 0xfe, 0xed, 0xaa, 0x3f, 0xe4, 0xc8, 0xa4, 0x1b, 0xaa, 0xc2, 0xbb, 0x1b, 0x08, + 0x11, 0x84, 0xcc, 0xd6, 0xd6, 0x24, 0x9d, 0xda, 0xc8, 0x23, 0xa6, 0xd0, 0x8d, 0x92, 0x32, 0xfc, + 0x3c, 0xc0, 0x4f, 0xa5, 0xfb, 0x40, 0x7e, 0x7b, 0xde, 0xaf, 0x50, 0xa6, 0x1e, 0xe6, 0xde, 0xc1, + 0x1b, 0xd8, 0xbc, 0x74, 0xd5, 0xcd, 0x71, 0x99, 0xf3, 0x7f, 0x0c, 0x29, 0xbb, 0x4d, 0x99, 0x42, + 0xf2, 0x1b, 0xd4, 0xb8, 0x6f, 0x1a, 0x7d, 0x63, 0xd8, 0x1d, 0xfd, 0x64, 0xcd, 0x1a, 0x92, 0x25, + 0x69, 0x55, 0x38, 0xa7, 0xb3, 0x8a, 0x68, 0x8d, 0xfb, 0x83, 0x8f, 0x06, 0x98, 0x15, 0xff, 0x19, + 0x57, 0xb3, 0xa0, 0x14, 0xd6, 0x63, 0xe1, 0xb3, 0xfb, 0x86, 0x3b, 0x4f, 0x6a, 0xbc, 0x12, 0x3e, + 0x5b, 0xa4, 0xb1, 0x16, 0x57, 0x1d, 0x64, 0x03, 0x1a, 0x21, 0x8f, 0x38, 0x9a, 0xb5, 0xbe, 0x31, + 0x5c, 0xa1, 0xb9, 0x91, 0x9d, 0xa2, 0xb8, 0x61, 0xb1, 0xb9, 0xdc, 0x37, 0x86, 0x1d, 0x9a, 0x1b, + 0xc4, 0x84, 0xd6, 0x94, 0x87, 0xc8, 0xa4, 0x32, 0xeb, 0xfa, 0xbc, 0x34, 0xc9, 0x1e, 0xb4, 0x94, + 0x90, 0xe8, 0x4c, 0xee, 0xcc, 0x86, 0xce, 0x67, 0xc3, 0xaa, 0x0e, 0x81, 0x75, 0x21, 0x24, 0xd2, + 0x66, 0x06, 0x1a, 0xdf, 0x0d, 0x3e, 0x18, 0xb0, 0x52, 0xa9, 0xf2, 0x4b, 0xfb, 0x45, 0xb6, 0xa0, + 0xc3, 0xe3, 0x24, 0x45, 0x27, 0x95, 0x5c, 0x97, 0xd0, 0xa1, 0x6d, 0x7d, 0x70, 0x25, 0x39, 0xf9, + 0x1b, 0x5a, 0x5e, 0x28, 0x54, 0x2a, 0x99, 0xae, 0xa3, 0x3b, 0xfa, 0x71, 0x3e, 0xab, 0x4a, 0xe8, + 0x7f, 0x72, 0x2c, 0x2d, 0x49, 0x3a, 0xb8, 0x72, 0x12, 0x57, 0xb2, 0x18, 0x75, 0xc5, 0x6d, 0xda, + 0xe6, 0xea, 0x5c, 0xdb, 0x83, 0x5b, 0x58, 0x7f, 0x74, 0x51, 0xe4, 0x5f, 0x58, 0xab, 0xae, 0x84, + 0x32, 0x8d, 0xfe, 0xf2, 0xb0, 0x3b, 0xda, 0x79, 0x56, 0x99, 0xae, 0xe2, 0x43, 0x53, 0xdd, 0xf7, + 0xbf, 0xf6, 0xa0, 0xff, 0x83, 0xf7, 0x75, 0xd8, 0x58, 0x94, 0x31, 0xd9, 0x05, 0x10, 0x29, 0x96, + 0x6d, 0xc8, 0xba, 0xd8, 0x39, 0x59, 0xa2, 0x9d, 0xfc, 0x2c, 0xeb, 0xc4, 0x3e, 0x34, 0x98, 0x94, + 0x42, 0xea, 0x78, 0x95, 0x6c, 0x74, 0x87, 0x67, 0x01, 0x8f, 0x33, 0xd0, 0xc9, 0x12, 0xcd, 0xd1, + 0xe4, 0x00, 0x1a, 0xc9, 0xb5, 0xab, 0xf2, 0xf6, 0xad, 0x8e, 0x06, 0xcf, 0x5d, 0x8c, 0x75, 0x9e, + 0x21, 0x69, 0x4e, 0x20, 0x3f, 0x43, 0x3d, 0x14, 0x41, 0x36, 0x27, 0x59, 0xf5, 0xdf, 0x2e, 0x20, + 0x9e, 0x89, 0x80, 0x6a, 0x0c, 0xf9, 0x03, 0x40, 0xa1, 0x2b, 0x91, 0xf9, 0x8e, 0x8b, 0xc5, 0xfc, + 0xf4, 0xac, 0x7c, 0xf3, 0xac, 0x72, 0xf3, 0xac, 0xcb, 0x72, 0x75, 0x69, 0xa7, 0x40, 0x1f, 0x22, + 0xd9, 0x87, 0x76, 0xb9, 0xb1, 0x66, 0x53, 0x13, 0xbf, 0x7b, 0x44, 0x3c, 0x2a, 0x00, 0x74, 0x06, + 0xcd, 0x14, 0x3d, 0xc9, 0xdc, 0x42, 0xb1, 0xf5, 0xb2, 0x62, 0x81, 0x3e, 0xc4, 0x8c, 0x9a, 0x26, + 0x7e, 0x49, 0x6d, 0xbf, 0x4c, 0x2d, 0xd0, 0x87, 0x48, 0x0e, 0xa0, 0xeb, 0xa5, 0x0a, 0x45, 0xe4, + 0xf0, 0x78, 0x2a, 0xcc, 0x8e, 0xe6, 0x6e, 0x3e, 0xe2, 0x5e, 0xe8, 0x27, 0x86, 0x42, 0x8e, 0x3d, + 0x8d, 0xa7, 0x62, 0xbc, 0x06, 0x2b, 0xc5, 0xfd, 0x4a, 0xa6, 0xd2, 0x10, 0x07, 0x57, 0xb0, 0x35, + 0xff, 0xf2, 0x1c, 0xb9, 0xe8, 0x7e, 0xed, 0xeb, 0xf3, 0xc9, 0x80, 0xed, 0xc5, 0x71, 0x55, 0x22, + 0x62, 0xc5, 0x88, 0x0d, 0x4d, 0xbd, 0x5d, 0xaa, 0x08, 0xbe, 0x39, 0x3f, 0xd6, 0x57, 0x32, 0x1c, + 0x87, 0x62, 0x42, 0x0b, 0x18, 0xf9, 0x05, 0x5a, 0x79, 0xe6, 0xaa, 0x18, 0xbd, 0x27, 0x19, 0x25, + 0x8e, 0xfc, 0x09, 0xdd, 0x69, 0x1a, 0x86, 0x4e, 0x21, 0xb4, 0x5c, 0x5c, 0x6b, 0xb5, 0x8a, 0xb3, + 0xfc, 0xa1, 0xff, 0xdf, 0x4d, 0x28, 0x64, 0xe8, 0xd3, 0x5c, 0xee, 0x2f, 0xf8, 0x46, 0x73, 0x4b, + 0xcd, 0xfa, 0x4b, 0x64, 0x2d, 0xf5, 0x3a, 0x47, 0x8f, 0x7f, 0x7f, 0xbb, 0x1f, 0x70, 0xbc, 0x4e, + 0x27, 0x96, 0x27, 0x22, 0x5b, 0x73, 0x84, 0x0c, 0xec, 0xd9, 0x17, 0x13, 0xb0, 0xd8, 0x4e, 0x26, + 0x7b, 0x81, 0xb0, 0xab, 0x3f, 0xda, 0xa4, 0xa9, 0x2f, 0xef, 0xd7, 0xcf, 0x01, 0x00, 0x00, 0xff, + 0xff, 0xe8, 0xdc, 0x69, 0xe9, 0x1f, 0x07, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/task_execution.pb.validate.go b/gen/pb-go/flyteidl/admin/task_execution.pb.validate.go index cddc53615..89f8b7ea6 100644 --- a/gen/pb-go/flyteidl/admin/task_execution.pb.validate.go +++ b/gen/pb-go/flyteidl/admin/task_execution.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/gen/pb-go/flyteidl/admin/workflow.pb.go b/gen/pb-go/flyteidl/admin/workflow.pb.go index b2873897b..bb5ee714b 100644 --- a/gen/pb-go/flyteidl/admin/workflow.pb.go +++ b/gen/pb-go/flyteidl/admin/workflow.pb.go @@ -5,9 +5,9 @@ package admin import ( fmt "fmt" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" timestamp "github.com/golang/protobuf/ptypes/timestamp" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" math "math" ) @@ -323,29 +323,29 @@ var fileDescriptor_827ade3f2372dc85 = []byte{ // 429 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x5f, 0x6b, 0xd4, 0x40, 0x14, 0xc5, 0xc9, 0xfa, 0xaf, 0x7b, 0x5b, 0xff, 0x0d, 0x2a, 0x71, 0xad, 0x6e, 0xc9, 0x83, 0xd4, - 0x07, 0x67, 0xb4, 0x05, 0xa1, 0xf8, 0xa4, 0xeb, 0x8b, 0xe0, 0x53, 0x5a, 0x10, 0x44, 0x28, 0xc9, - 0xe4, 0x26, 0x0e, 0x4d, 0x32, 0x63, 0xe6, 0x86, 0xd2, 0x8f, 0xe1, 0x47, 0xf0, 0x9b, 0x4a, 0x93, - 0x99, 0x2c, 0x3b, 0xb0, 0x48, 0x1f, 0x93, 0xf3, 0x9b, 0x33, 0xe7, 0xde, 0x39, 0xf0, 0xb2, 0xac, - 0xaf, 0x08, 0x55, 0x51, 0x8b, 0xac, 0x68, 0x54, 0x2b, 0x2e, 0x75, 0x77, 0x51, 0xd6, 0xfa, 0x92, - 0x9b, 0x4e, 0x93, 0x66, 0x0f, 0xbc, 0xcc, 0x07, 0x79, 0xb1, 0x3f, 0xe1, 0x52, 0x77, 0x28, 0xa4, - 0x6e, 0x8c, 0xaa, 0xb1, 0x1b, 0xe9, 0xc5, 0xab, 0x4d, 0x55, 0x15, 0xd8, 0x92, 0x2a, 0xd5, 0xa4, - 0x07, 0xa7, 0x37, 0xef, 0x5a, 0xbc, 0x08, 0xa2, 0x48, 0xdd, 0x34, 0xba, 0x75, 0xe2, 0xb2, 0xd2, - 0xba, 0xaa, 0x51, 0x0c, 0x5f, 0x79, 0x5f, 0x0a, 0x52, 0x0d, 0x5a, 0xca, 0x1a, 0x33, 0x02, 0x09, - 0xc1, 0xd3, 0xef, 0xce, 0x6f, 0xd5, 0x61, 0x46, 0x98, 0xe2, 0xef, 0x1e, 0x2d, 0xb1, 0x37, 0x30, - 0x53, 0x45, 0x1c, 0x1d, 0x44, 0x87, 0xbb, 0x47, 0xcf, 0xf9, 0x34, 0xcf, 0x75, 0x02, 0xfe, 0x75, - 0x4a, 0x98, 0xce, 0x54, 0xc1, 0xde, 0xc1, 0x6d, 0x6b, 0x50, 0xc6, 0xb3, 0x01, 0xde, 0xe7, 0x9b, - 0xc3, 0x73, 0xef, 0x7f, 0x6a, 0x50, 0xa6, 0x03, 0x99, 0xc4, 0xf0, 0x2c, 0xbc, 0xd5, 0x1a, 0xdd, - 0x5a, 0x4c, 0x0c, 0xec, 0x78, 0xe5, 0x26, 0x11, 0x4e, 0xe0, 0x9e, 0xac, 0xb5, 0xed, 0x3b, 0x74, - 0x29, 0x96, 0xdb, 0x52, 0xac, 0x46, 0x2c, 0xf5, 0x7c, 0xf2, 0x13, 0xf6, 0xbc, 0xf6, 0x4d, 0x59, - 0x62, 0x1f, 0x60, 0xee, 0x37, 0x6c, 0xe3, 0xe8, 0xe0, 0xd6, 0xe1, 0xee, 0x51, 0xbc, 0xcd, 0x2c, - 0x5d, 0xa3, 0xec, 0x09, 0xdc, 0x21, 0x7d, 0x81, 0xed, 0x10, 0x60, 0x9e, 0x8e, 0x1f, 0xc9, 0x9f, - 0x68, 0x6d, 0x7f, 0xbd, 0x00, 0xf6, 0x11, 0x76, 0x08, 0x1b, 0x53, 0x67, 0x84, 0x6e, 0xb4, 0x65, - 0x30, 0x9a, 0xc7, 0xcf, 0x1c, 0x96, 0x4e, 0x07, 0xd8, 0x17, 0xb8, 0x6f, 0xfb, 0xfc, 0x7c, 0x9d, - 0x6f, 0x36, 0xe4, 0xfb, 0xaf, 0xc3, 0x9e, 0xed, 0x73, 0xff, 0xd3, 0x26, 0x7f, 0x23, 0x78, 0x18, - 0xac, 0x83, 0x9d, 0xc2, 0x63, 0xd7, 0xca, 0x62, 0xb2, 0x77, 0xf9, 0x5e, 0x07, 0xee, 0x2b, 0xc7, - 0x85, 0x1b, 0x7d, 0x24, 0x03, 0x81, 0x9d, 0x00, 0xc8, 0xe1, 0x79, 0x8b, 0xf3, 0x8c, 0xdc, 0xc3, - 0x2c, 0xf8, 0x58, 0x49, 0xee, 0x2b, 0xc9, 0xcf, 0x7c, 0x25, 0xd3, 0xb9, 0xa3, 0x3f, 0xd1, 0xe7, - 0xe3, 0x1f, 0xef, 0x2b, 0x45, 0xbf, 0xfa, 0x9c, 0x4b, 0xdd, 0x88, 0xfa, 0xaa, 0x24, 0x31, 0xf5, - 0xbc, 0xc2, 0x56, 0x98, 0xfc, 0x6d, 0xa5, 0xc5, 0x66, 0xf5, 0xf3, 0xbb, 0x83, 0xe7, 0xf1, 0xbf, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x8b, 0xd2, 0xc3, 0x6d, 0x9e, 0x03, 0x00, 0x00, + 0x07, 0x67, 0xa4, 0xa2, 0x52, 0x7c, 0xd2, 0xf5, 0x45, 0xf0, 0x29, 0x2d, 0x08, 0x22, 0x94, 0x64, + 0x72, 0x37, 0x0e, 0x4d, 0x72, 0xc7, 0xcc, 0x84, 0xe2, 0xc7, 0xf0, 0x23, 0xf8, 0x4d, 0xa5, 0x93, + 0x99, 0x2c, 0x3b, 0x50, 0xc4, 0xc7, 0xe4, 0xfc, 0xe6, 0xcc, 0xb9, 0x77, 0x0e, 0x3c, 0x5d, 0x37, + 0xbf, 0x2c, 0xaa, 0xaa, 0x11, 0x45, 0xd5, 0xaa, 0x4e, 0x5c, 0x50, 0x7f, 0xbe, 0x6e, 0xe8, 0x82, + 0xeb, 0x9e, 0x2c, 0xb1, 0x3b, 0x41, 0xe6, 0x4e, 0x5e, 0xec, 0x4f, 0xb8, 0xa4, 0x1e, 0x85, 0xa4, + 0x56, 0xab, 0x06, 0xfb, 0x91, 0x5e, 0x3c, 0xdb, 0x56, 0x55, 0x85, 0x9d, 0x55, 0x6b, 0x35, 0xe9, + 0xd1, 0xe9, 0xed, 0xbb, 0x16, 0x4f, 0xa2, 0x28, 0x92, 0xda, 0x96, 0x3a, 0x2f, 0x2e, 0x6b, 0xa2, + 0xba, 0x41, 0xe1, 0xbe, 0xca, 0x61, 0x2d, 0xac, 0x6a, 0xd1, 0xd8, 0xa2, 0xd5, 0x23, 0x90, 0x59, + 0x78, 0xf8, 0xd5, 0xfb, 0xad, 0x7a, 0x2c, 0x2c, 0xe6, 0xf8, 0x73, 0x40, 0x63, 0xd9, 0x0b, 0x98, + 0xa9, 0x2a, 0x4d, 0x0e, 0x92, 0xc3, 0xdd, 0xa3, 0xc7, 0x7c, 0x9a, 0xe7, 0x32, 0x01, 0xff, 0x3c, + 0x25, 0xcc, 0x67, 0xaa, 0x62, 0xaf, 0xe0, 0xba, 0xd1, 0x28, 0xd3, 0x99, 0x83, 0xf7, 0xf9, 0xf6, + 0xf0, 0x3c, 0xf8, 0x9f, 0x68, 0x94, 0xb9, 0x23, 0xb3, 0x14, 0x1e, 0xc5, 0xb7, 0x1a, 0x4d, 0x9d, + 0xc1, 0x4c, 0xc3, 0x4e, 0x50, 0xfe, 0x27, 0xc2, 0x31, 0xdc, 0x92, 0x0d, 0x99, 0xa1, 0x47, 0x9f, + 0x62, 0x79, 0x55, 0x8a, 0xd5, 0x88, 0xe5, 0x81, 0xcf, 0xbe, 0xc3, 0x5e, 0xd0, 0xbe, 0x28, 0x63, + 0xd9, 0x5b, 0x98, 0x87, 0x0d, 0x9b, 0x34, 0x39, 0xb8, 0x76, 0xb8, 0x7b, 0x94, 0x5e, 0x65, 0x96, + 0x6f, 0x50, 0xf6, 0x00, 0x6e, 0x58, 0x3a, 0xc7, 0xce, 0x05, 0x98, 0xe7, 0xe3, 0x47, 0xf6, 0x3b, + 0xd9, 0xd8, 0x5f, 0x2e, 0x80, 0xbd, 0x87, 0x1d, 0x8b, 0xad, 0x6e, 0x0a, 0x8b, 0x7e, 0xb4, 0x65, + 0x34, 0x5a, 0xc0, 0x4f, 0x3d, 0x96, 0x4f, 0x07, 0xd8, 0x27, 0xb8, 0x6d, 0x86, 0xf2, 0x6c, 0x93, + 0x6f, 0xe6, 0xf2, 0xfd, 0xd3, 0x61, 0xcf, 0x0c, 0x65, 0xf8, 0x69, 0xb2, 0x3f, 0x09, 0xdc, 0x8d, + 0xd6, 0xc1, 0x4e, 0xe0, 0xbe, 0x6f, 0x65, 0x35, 0xd9, 0xfb, 0x7c, 0xcf, 0x23, 0xf7, 0x95, 0xe7, + 0xe2, 0x8d, 0xde, 0x93, 0x91, 0xc0, 0x8e, 0x01, 0xa4, 0x7b, 0xde, 0xea, 0xac, 0xb0, 0xfe, 0x61, + 0x16, 0x7c, 0xac, 0x24, 0x0f, 0x95, 0xe4, 0xa7, 0xa1, 0x92, 0xf9, 0xdc, 0xd3, 0x1f, 0xec, 0xc7, + 0x77, 0xdf, 0xde, 0xd4, 0xca, 0xfe, 0x18, 0x4a, 0x2e, 0xa9, 0x15, 0x2e, 0x00, 0xf5, 0xb5, 0x98, + 0xba, 0x5e, 0x63, 0x27, 0x74, 0xf9, 0xb2, 0x26, 0xb1, 0x5d, 0xff, 0xf2, 0xa6, 0xf3, 0x7d, 0xfd, + 0x37, 0x00, 0x00, 0xff, 0xff, 0x34, 0xf3, 0x62, 0x22, 0xa2, 0x03, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/admin/workflow_attributes.pb.go b/gen/pb-go/flyteidl/admin/workflow_attributes.pb.go index 1e266a40a..82f72a9e4 100644 --- a/gen/pb-go/flyteidl/admin/workflow_attributes.pb.go +++ b/gen/pb-go/flyteidl/admin/workflow_attributes.pb.go @@ -376,27 +376,27 @@ func init() { } var fileDescriptor_8ba8a51ab86bc38c = []byte{ - // 344 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x93, 0xcf, 0x4a, 0xc3, 0x40, - 0x10, 0xc6, 0x59, 0x95, 0xaa, 0xa3, 0xf6, 0xb0, 0x82, 0x84, 0xa2, 0x58, 0xf7, 0x62, 0x2f, 0x26, - 0xd8, 0x3e, 0x81, 0x45, 0xf4, 0xe4, 0x25, 0x2a, 0x82, 0x97, 0x92, 0x3f, 0xd3, 0x34, 0x9a, 0x64, - 0xd7, 0x64, 0x42, 0xc9, 0x7b, 0x09, 0x7d, 0x3d, 0x31, 0xcd, 0xf6, 0x8f, 0x49, 0x6f, 0x3d, 0x78, - 0x9c, 0xec, 0x37, 0x33, 0xbf, 0x7c, 0x1f, 0x03, 0xbd, 0x71, 0x54, 0x10, 0x86, 0x7e, 0x64, 0x39, - 0x7e, 0x1c, 0x26, 0xd6, 0x54, 0xa6, 0x9f, 0xe3, 0x48, 0x4e, 0x47, 0x0e, 0x51, 0x1a, 0xba, 0x39, - 0x61, 0x66, 0xaa, 0x54, 0x92, 0xe4, 0x6d, 0xad, 0x34, 0x4b, 0x65, 0xe7, 0xfa, 0x4f, 0x67, 0xec, - 0x90, 0x37, 0x71, 0xdc, 0x08, 0x47, 0x29, 0x66, 0x32, 0x4f, 0x3d, 0x9c, 0x37, 0x8a, 0x19, 0x03, - 0xfe, 0x56, 0x8d, 0xbd, 0x5b, 0x4c, 0xe5, 0x06, 0xec, 0xab, 0x54, 0x7e, 0xa0, 0x47, 0x06, 0xeb, - 0xb2, 0xde, 0xa1, 0xad, 0x4b, 0x7e, 0x06, 0x2d, 0x5f, 0xc6, 0x4e, 0x98, 0x18, 0x3b, 0xe5, 0x43, - 0x55, 0xf1, 0x0e, 0x1c, 0x68, 0x3c, 0x63, 0xb7, 0x7c, 0x59, 0xd4, 0xfc, 0x19, 0x4e, 0x4b, 0x80, - 0x30, 0x09, 0x56, 0xd0, 0x8d, 0xbd, 0x2e, 0xeb, 0x1d, 0xf5, 0x85, 0xb9, 0xce, 0x6e, 0x3e, 0x55, - 0xd2, 0x25, 0x8e, 0xcd, 0xe3, 0xda, 0x37, 0x81, 0x70, 0x59, 0x07, 0x7f, 0x55, 0xbe, 0x43, 0x68, - 0xe3, 0x57, 0x8e, 0x19, 0xf1, 0x21, 0xc0, 0xca, 0x3a, 0xd6, 0xbc, 0xae, 0x3e, 0xc4, 0x5e, 0xe9, - 0x12, 0x02, 0xba, 0x9b, 0xd7, 0x64, 0x4a, 0x26, 0x19, 0x8a, 0x6f, 0x06, 0xe7, 0x75, 0xd1, 0x23, - 0x92, 0x06, 0xd9, 0xae, 0x9d, 0x0f, 0x70, 0xa2, 0x53, 0x1c, 0x51, 0xa1, 0xb0, 0x34, 0xb2, 0xdd, - 0xbf, 0x6a, 0x34, 0xf2, 0x37, 0x74, 0xbb, 0x52, 0xdb, 0xc7, 0xba, 0xef, 0xa5, 0x50, 0x28, 0x3c, - 0xb8, 0xd8, 0x40, 0x3d, 0xff, 0xaf, 0xad, 0xf8, 0x37, 0x63, 0x4d, 0x39, 0xdd, 0x63, 0x84, 0xcb, - 0x9c, 0xfe, 0xa7, 0x3d, 0x8d, 0xc9, 0x6b, 0xf0, 0xb9, 0x43, 0xc3, 0xc1, 0xfb, 0x6d, 0x10, 0xd2, - 0x24, 0x77, 0x4d, 0x4f, 0xc6, 0x56, 0x54, 0x8c, 0xc9, 0x5a, 0x5c, 0x5e, 0x80, 0x89, 0xa5, 0xdc, - 0x9b, 0x40, 0x5a, 0xeb, 0xc7, 0xe8, 0xb6, 0xca, 0xd3, 0x1b, 0xfc, 0x04, 0x00, 0x00, 0xff, 0xff, - 0x42, 0xae, 0xa0, 0x52, 0xdf, 0x03, 0x00, 0x00, + // 346 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x93, 0x4f, 0x4b, 0xc3, 0x40, + 0x10, 0xc5, 0x59, 0x95, 0xaa, 0xa3, 0xf6, 0xb0, 0x82, 0x84, 0xa2, 0x58, 0xf7, 0x62, 0x2f, 0x26, + 0x50, 0x11, 0xcf, 0x16, 0xd1, 0x93, 0x97, 0xa8, 0x08, 0x5e, 0x4a, 0xfe, 0x4c, 0xd3, 0x68, 0x92, + 0x5d, 0x37, 0x1b, 0x4a, 0xbf, 0x97, 0xd0, 0xaf, 0x27, 0x6e, 0xb3, 0x6d, 0x6a, 0xd2, 0x5b, 0x0f, + 0x1e, 0x27, 0xfb, 0x66, 0xe6, 0x97, 0xf7, 0x18, 0xe8, 0x8d, 0x92, 0xa9, 0xc2, 0x38, 0x4c, 0x1c, + 0x2f, 0x4c, 0xe3, 0xcc, 0x99, 0x70, 0xf9, 0x39, 0x4a, 0xf8, 0x64, 0xe8, 0x29, 0x25, 0x63, 0xbf, + 0x50, 0x98, 0xdb, 0x42, 0x72, 0xc5, 0x69, 0xdb, 0x28, 0x6d, 0xad, 0xec, 0x5c, 0xfe, 0xe9, 0x4c, + 0x3d, 0x15, 0x8c, 0x3d, 0x3f, 0xc1, 0xa1, 0xc4, 0x9c, 0x17, 0x32, 0xc0, 0x79, 0x23, 0x9b, 0x11, + 0xa0, 0x6f, 0xe5, 0xd8, 0xbb, 0xc5, 0x54, 0x6a, 0xc1, 0xae, 0x90, 0xfc, 0x03, 0x03, 0x65, 0x91, + 0x2e, 0xe9, 0xed, 0xbb, 0xa6, 0xa4, 0x27, 0xd0, 0x0a, 0x79, 0xea, 0xc5, 0x99, 0xb5, 0xa5, 0x1f, + 0xca, 0x8a, 0x76, 0x60, 0xcf, 0xe0, 0x59, 0xdb, 0xfa, 0x65, 0x51, 0xd3, 0x67, 0x38, 0xd6, 0x00, + 0x71, 0x16, 0x55, 0xd0, 0xad, 0x9d, 0x2e, 0xe9, 0x1d, 0xf4, 0x99, 0xbd, 0xca, 0x6e, 0x3f, 0x95, + 0xd2, 0x25, 0x8e, 0x4b, 0xd3, 0xda, 0x37, 0x86, 0x70, 0x5e, 0x07, 0x7f, 0x15, 0xa1, 0xa7, 0xd0, + 0xc5, 0xaf, 0x02, 0x73, 0x45, 0x07, 0x00, 0x95, 0x75, 0xa4, 0x79, 0x5d, 0x7d, 0x88, 0x5b, 0xe9, + 0x62, 0x0c, 0xba, 0xeb, 0xd7, 0xe4, 0x82, 0x67, 0x39, 0xb2, 0x6f, 0x02, 0xa7, 0x75, 0xd1, 0x23, + 0x2a, 0x03, 0xb2, 0x59, 0x3b, 0x1f, 0xe0, 0xc8, 0xa4, 0x38, 0x54, 0x53, 0x81, 0xda, 0xc8, 0x76, + 0xff, 0xa2, 0xd1, 0xc8, 0xdf, 0xd0, 0xdd, 0x52, 0xed, 0x1e, 0x9a, 0xbe, 0x97, 0xa9, 0x40, 0x16, + 0xc0, 0xd9, 0x1a, 0xea, 0xf9, 0x7f, 0x6d, 0xc4, 0xbf, 0x19, 0x69, 0xca, 0xe9, 0x1e, 0x13, 0x5c, + 0xe6, 0xf4, 0x3f, 0xed, 0x69, 0x4c, 0xde, 0x80, 0xcf, 0x1d, 0x1a, 0xdc, 0xbe, 0xdf, 0x44, 0xb1, + 0x1a, 0x17, 0xbe, 0x1d, 0xf0, 0xd4, 0xd1, 0x0b, 0xb8, 0x8c, 0x9c, 0xc5, 0xf5, 0x45, 0x98, 0x39, + 0xc2, 0xbf, 0x8a, 0xb8, 0xb3, 0x7a, 0x90, 0x7e, 0x4b, 0x9f, 0xdf, 0xf5, 0x4f, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xd5, 0xd6, 0x7a, 0x8c, 0xe3, 0x03, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/catalog.pb.go b/gen/pb-go/flyteidl/core/catalog.pb.go index 47adb87ea..c84671199 100644 --- a/gen/pb-go/flyteidl/core/catalog.pb.go +++ b/gen/pb-go/flyteidl/core/catalog.pb.go @@ -209,28 +209,28 @@ func init() { proto.RegisterFile("flyteidl/core/catalog.proto", fileDescriptor_5 var fileDescriptor_534f5d1443565574 = []byte{ // 383 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x92, 0xcd, 0xab, 0x9b, 0x40, - 0x14, 0xc5, 0x9f, 0x79, 0xaf, 0x85, 0xdc, 0xf4, 0xbd, 0xd8, 0x49, 0x03, 0xb6, 0x85, 0x7e, 0x64, - 0x51, 0x4a, 0xa1, 0x5a, 0xd2, 0x4d, 0xb7, 0x46, 0x2d, 0x19, 0x6a, 0x48, 0xf0, 0x63, 0x53, 0x0a, - 0x32, 0xd1, 0xd1, 0x0c, 0x31, 0x4e, 0xd0, 0x11, 0x9a, 0x75, 0xd7, 0xfd, 0x9f, 0x4b, 0xd4, 0x4c, - 0x31, 0x6f, 0xa5, 0xf7, 0xdc, 0x73, 0x7f, 0x73, 0x66, 0xb8, 0xf0, 0x3a, 0xcd, 0x4f, 0x82, 0xb2, - 0x24, 0x37, 0x62, 0x5e, 0x52, 0x23, 0x26, 0x82, 0xe4, 0x3c, 0xd3, 0x8f, 0x25, 0x17, 0x1c, 0xdd, - 0x5f, 0x9a, 0xfa, 0xb9, 0xf9, 0xea, 0x4d, 0xdf, 0xcb, 0x12, 0x5a, 0x08, 0x96, 0x32, 0x5a, 0xb6, - 0xf6, 0x19, 0x06, 0x64, 0xb5, 0xf3, 0x66, 0x29, 0x58, 0x4a, 0x62, 0x11, 0x90, 0x0c, 0xbd, 0x85, - 0x11, 0xe9, 0xca, 0x88, 0x25, 0x9a, 0xf2, 0x4e, 0xf9, 0x38, 0xf4, 0xe0, 0x22, 0xe1, 0x04, 0x21, - 0xb8, 0x2b, 0xc8, 0x81, 0x6a, 0x83, 0xa6, 0xd3, 0xfc, 0xcf, 0xfe, 0x0c, 0x60, 0xdc, 0xb1, 0x56, - 0x54, 0x90, 0x84, 0x08, 0x82, 0xbe, 0x01, 0x9c, 0xbf, 0x15, 0x95, 0x9c, 0xd1, 0xfc, 0xa5, 0xde, - 0x8b, 0xa8, 0x63, 0x99, 0xc9, 0x1b, 0x76, 0x66, 0x9c, 0x20, 0x1b, 0x9e, 0xc9, 0x08, 0x82, 0x64, - 0xcd, 0x49, 0xa3, 0xf9, 0xfb, 0xab, 0xd9, 0xc7, 0xd9, 0x3d, 0x99, 0xfc, 0x7c, 0x91, 0x5f, 0x30, - 0xad, 0x78, 0x5d, 0xc6, 0x34, 0x12, 0xa4, 0xda, 0x47, 0xf4, 0x37, 0x8d, 0x6b, 0xc1, 0x78, 0xa1, - 0xdd, 0x36, 0xb8, 0x0f, 0x57, 0xb8, 0x80, 0x54, 0x7b, 0xe7, 0xe2, 0xf9, 0x9f, 0x6b, 0x79, 0xe3, - 0x4d, 0x5a, 0x4c, 0xcf, 0xb0, 0x40, 0xa0, 0x76, 0x74, 0x09, 0xfe, 0xf4, 0x57, 0x91, 0x2f, 0x6a, - 0x91, 0x78, 0x47, 0x7d, 0x41, 0x44, 0x5d, 0x21, 0x04, 0x0f, 0x96, 0x69, 0x2d, 0x9d, 0xc8, 0xc6, - 0xbe, 0xb9, 0x70, 0x1d, 0x5b, 0xbd, 0x41, 0x0f, 0x00, 0xad, 0xb6, 0xc2, 0xbe, 0xaf, 0x2a, 0xe8, - 0x1e, 0x86, 0x6d, 0xbd, 0xc4, 0x81, 0x3a, 0x40, 0x13, 0x18, 0xb7, 0xe5, 0x66, 0xbd, 0x09, 0x5d, - 0x33, 0x70, 0x6c, 0xf5, 0x16, 0x69, 0xf0, 0xa2, 0x15, 0xdd, 0xf5, 0xfa, 0x47, 0xb8, 0x89, 0xbe, - 0x9b, 0xd8, 0x0d, 0x3d, 0x47, 0xbd, 0x43, 0x53, 0x78, 0xde, 0xd9, 0xc3, 0x40, 0xca, 0x4f, 0x16, - 0xf3, 0x9f, 0x5f, 0x32, 0x26, 0x76, 0xf5, 0x56, 0x8f, 0xf9, 0xc1, 0xc8, 0x4f, 0xa9, 0x30, 0xe4, - 0x4a, 0x64, 0xb4, 0x30, 0x8e, 0xdb, 0xcf, 0x19, 0x37, 0x7a, 0x5b, 0xb2, 0x7d, 0xda, 0xec, 0xc6, - 0xd7, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x0c, 0xd3, 0x8e, 0x7d, 0x69, 0x02, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x92, 0xcf, 0xeb, 0xda, 0x40, + 0x10, 0xc5, 0x8d, 0xda, 0x82, 0x63, 0xd5, 0x74, 0xad, 0x90, 0xb6, 0xd0, 0x1f, 0x1e, 0x4a, 0x29, + 0x34, 0x01, 0x5b, 0x4a, 0xaf, 0x31, 0x49, 0x71, 0x69, 0x44, 0xc9, 0x8f, 0x4b, 0x29, 0x84, 0x35, + 0x59, 0xe3, 0xa2, 0x66, 0x25, 0xd9, 0x40, 0x7b, 0xee, 0xb9, 0xff, 0x73, 0x31, 0x89, 0x5b, 0xe2, + 0xf7, 0x94, 0xcc, 0x9b, 0x37, 0x9f, 0xbc, 0x09, 0x03, 0x2f, 0xf7, 0xa7, 0xdf, 0x82, 0xb2, 0xe4, + 0x64, 0xc4, 0x3c, 0xa7, 0x46, 0x4c, 0x04, 0x39, 0xf1, 0x54, 0xbf, 0xe4, 0x5c, 0x70, 0x34, 0xba, + 0x35, 0xf5, 0x6b, 0xf3, 0xc5, 0xab, 0xb6, 0x97, 0x25, 0x34, 0x13, 0x6c, 0xcf, 0x68, 0x5e, 0xdb, + 0xe7, 0x18, 0x90, 0x55, 0xcf, 0x9b, 0xb9, 0x60, 0x7b, 0x12, 0x8b, 0x80, 0xa4, 0xe8, 0x35, 0x0c, + 0x49, 0x53, 0x46, 0x2c, 0xd1, 0x94, 0x37, 0xca, 0xfb, 0x81, 0x07, 0x37, 0x09, 0x27, 0x08, 0x41, + 0x3f, 0x23, 0x67, 0xaa, 0x75, 0xab, 0x4e, 0xf5, 0x3e, 0xff, 0xd3, 0x85, 0x49, 0xc3, 0x5a, 0x53, + 0x41, 0x12, 0x22, 0x08, 0xfa, 0x0a, 0x70, 0x7d, 0x16, 0x54, 0x72, 0x86, 0x8b, 0xe7, 0x7a, 0x2b, + 0xa2, 0x8e, 0x65, 0x26, 0x6f, 0xd0, 0x98, 0x71, 0x82, 0x6c, 0x78, 0x22, 0x23, 0x08, 0x92, 0x56, + 0x5f, 0x1a, 0x2e, 0xde, 0xde, 0xcd, 0x3e, 0xcc, 0xee, 0xc9, 0xe4, 0xd7, 0x45, 0x7e, 0xc2, 0xac, + 0xe0, 0x65, 0x1e, 0xd3, 0x48, 0x90, 0xe2, 0x18, 0xd1, 0x5f, 0x34, 0x2e, 0x05, 0xe3, 0x99, 0xd6, + 0xab, 0x70, 0xef, 0xee, 0x70, 0x01, 0x29, 0x8e, 0xce, 0xcd, 0xf3, 0x3f, 0xd7, 0xaa, 0xe3, 0x4d, + 0x6b, 0x4c, 0xcb, 0xb0, 0x44, 0xa0, 0x36, 0x74, 0x09, 0xfe, 0xf0, 0x57, 0x91, 0x7f, 0xd4, 0x22, + 0xf1, 0x81, 0xfa, 0x82, 0x88, 0xb2, 0x40, 0x08, 0xc6, 0x96, 0x69, 0xad, 0x9c, 0xc8, 0xc6, 0xbe, + 0xb9, 0x74, 0x1d, 0x5b, 0xed, 0xa0, 0x31, 0x40, 0xad, 0xad, 0xb1, 0xef, 0xab, 0x0a, 0x1a, 0xc1, + 0xa0, 0xae, 0x57, 0x38, 0x50, 0xbb, 0x68, 0x0a, 0x93, 0xba, 0xdc, 0x6e, 0xb6, 0xa1, 0x6b, 0x06, + 0x8e, 0xad, 0xf6, 0x90, 0x06, 0xcf, 0x6a, 0xd1, 0xdd, 0x6c, 0xbe, 0x87, 0xdb, 0xe8, 0x9b, 0x89, + 0xdd, 0xd0, 0x73, 0xd4, 0x3e, 0x9a, 0xc1, 0xd3, 0xc6, 0x1e, 0x06, 0x52, 0x7e, 0xb4, 0xfc, 0xf2, + 0xe3, 0x73, 0xca, 0xc4, 0xa1, 0xdc, 0xe9, 0x31, 0x3f, 0x1b, 0xd5, 0xba, 0x3c, 0x4f, 0x0d, 0x79, + 0x16, 0x29, 0xcd, 0x8c, 0xcb, 0xee, 0x63, 0xca, 0x8d, 0xd6, 0xa5, 0xec, 0x1e, 0x57, 0xf7, 0xf1, + 0xe9, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x17, 0xfe, 0xcc, 0x9d, 0x6d, 0x02, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/compiler.pb.go b/gen/pb-go/flyteidl/core/compiler.pb.go index 7a485bcbe..9fe234c1e 100644 --- a/gen/pb-go/flyteidl/core/compiler.pb.go +++ b/gen/pb-go/flyteidl/core/compiler.pb.go @@ -280,32 +280,32 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/compiler.proto", fileDescriptor_d310dba155e4f065) } var fileDescriptor_d310dba155e4f065 = []byte{ - // 422 bytes of a gzipped FileDescriptorProto + // 423 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xcb, 0xca, 0xd3, 0x40, - 0x14, 0xc7, 0xc9, 0x17, 0xbe, 0xb6, 0x9e, 0x34, 0x58, 0x66, 0x63, 0x4c, 0x0b, 0x86, 0xb8, 0x29, - 0xa2, 0x89, 0xc6, 0x85, 0x56, 0xc1, 0x85, 0xad, 0x8a, 0xd0, 0x55, 0xac, 0x08, 0x6e, 0x34, 0x97, - 0x69, 0x0d, 0x99, 0x64, 0xc2, 0xcc, 0xc4, 0x92, 0x27, 0x70, 0xe9, 0x93, 0xf9, 0x4e, 0x92, 0x2b, - 0x4d, 0x4a, 0x8b, 0x0b, 0x77, 0x2d, 0xe7, 0xf7, 0xbf, 0x1c, 0x26, 0x07, 0x16, 0x7b, 0x52, 0x08, - 0x1c, 0x85, 0xc4, 0x0e, 0x28, 0xc3, 0x76, 0x40, 0x93, 0x2c, 0x22, 0x98, 0x59, 0x19, 0xa3, 0x82, - 0x22, 0xb5, 0x9d, 0x5a, 0xe5, 0x54, 0x1f, 0xc0, 0x47, 0xca, 0xe2, 0x3d, 0xa1, 0xc7, 0x1a, 0xd6, - 0xef, 0xf7, 0xa7, 0xc2, 0xe3, 0x31, 0xaf, 0x47, 0xe6, 0x2f, 0x19, 0xd4, 0x35, 0x4d, 0x53, 0x1c, - 0x88, 0x88, 0xa6, 0x9f, 0xb0, 0x40, 0x5b, 0x80, 0x90, 0x1e, 0x53, 0x2e, 0x18, 0xf6, 0x12, 0x6d, - 0x6c, 0xc8, 0x4b, 0xc5, 0x79, 0x6c, 0xf5, 0xe2, 0xac, 0x9e, 0xc2, 0xda, 0x74, 0xf8, 0xbb, 0x54, - 0xb0, 0xc2, 0x3d, 0xd1, 0xa3, 0xf7, 0x30, 0xc9, 0xb3, 0xc6, 0x6b, 0x52, 0x79, 0x3d, 0xba, 0xea, - 0xf5, 0x39, 0x3b, 0x75, 0xea, 0xb4, 0xba, 0x0e, 0xa3, 0x8f, 0xe1, 0x36, 0xe2, 0x02, 0xcd, 0x40, - 0x8e, 0x42, 0xae, 0x49, 0x86, 0xbc, 0xbc, 0xe3, 0x96, 0x3f, 0x75, 0x1f, 0xee, 0x0e, 0x2a, 0x94, - 0x50, 0x8c, 0x0b, 0x4d, 0x32, 0xa4, 0x12, 0x8a, 0x71, 0x81, 0x56, 0x70, 0xfb, 0xd3, 0x23, 0x39, - 0xd6, 0x6e, 0x0c, 0x69, 0xa9, 0x38, 0x0f, 0xaf, 0xb6, 0xa8, 0xa3, 0xdc, 0x5a, 0xf1, 0xea, 0xe6, - 0xa5, 0xa4, 0x7f, 0x07, 0xb5, 0x57, 0xed, 0xbf, 0x27, 0x98, 0xbf, 0x25, 0x98, 0xad, 0xeb, 0x47, - 0x0e, 0xbf, 0x34, 0xef, 0x87, 0x5e, 0xc3, 0x44, 0xe0, 0x24, 0x23, 0x9e, 0xc0, 0x55, 0x94, 0xe2, - 0x3c, 0x18, 0xd8, 0xb6, 0xe8, 0xae, 0xc1, 0xdc, 0x4e, 0x80, 0xde, 0x80, 0x12, 0x74, 0xa1, 0xbc, - 0xa9, 0xb5, 0xb8, 0x56, 0xcb, 0x3d, 0x15, 0x98, 0x1f, 0x60, 0xda, 0x16, 0xda, 0x79, 0x3c, 0x46, - 0x2f, 0xce, 0xca, 0xcc, 0x07, 0x66, 0x25, 0x76, 0x5e, 0xc4, 0xfc, 0x23, 0xc1, 0xbd, 0xe1, 0x6a, - 0x6b, 0x42, 0x79, 0xce, 0x30, 0x5a, 0xc1, 0x38, 0x63, 0x51, 0xe2, 0xb1, 0xe2, 0xc2, 0x82, 0x43, - 0xa1, 0xdb, 0xf2, 0x68, 0x03, 0x2a, 0xcf, 0xfd, 0x6f, 0xed, 0xc7, 0x5e, 0x6e, 0x28, 0xff, 0x8b, - 0xc1, 0x94, 0xe7, 0x7e, 0xfb, 0x87, 0xa3, 0x67, 0x70, 0x5b, 0x1d, 0x84, 0x26, 0x57, 0xea, 0xf9, - 0x05, 0x75, 0xb9, 0x9a, 0x5b, 0x93, 0x6f, 0x9d, 0xaf, 0x4f, 0x0f, 0x91, 0xf8, 0x91, 0xfb, 0x56, - 0x40, 0x13, 0x9b, 0x14, 0x7b, 0x61, 0x77, 0x17, 0x76, 0xc0, 0xa9, 0x9d, 0xf9, 0x4f, 0x0e, 0xd4, - 0xee, 0x1d, 0x9d, 0x3f, 0xaa, 0xee, 0xed, 0xf9, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa3, 0x57, - 0x8f, 0xc6, 0xd7, 0x03, 0x00, 0x00, + 0x14, 0xc7, 0x49, 0x43, 0x2f, 0x9e, 0x34, 0x58, 0x66, 0x63, 0x4c, 0x0b, 0x86, 0xb8, 0x29, 0xa2, + 0x09, 0x56, 0x51, 0xab, 0xe0, 0xc2, 0x56, 0x45, 0xe8, 0x2a, 0x56, 0x04, 0x37, 0x9a, 0xcb, 0x34, + 0x86, 0x5c, 0x26, 0xcc, 0x4c, 0x2c, 0x79, 0x02, 0x97, 0x3e, 0x99, 0xef, 0xf4, 0x91, 0x2b, 0x4d, + 0x4a, 0xcb, 0xb7, 0xf8, 0x76, 0x2d, 0xe7, 0xf7, 0xbf, 0x1c, 0x26, 0x07, 0x16, 0x87, 0x28, 0xe7, + 0x38, 0xf0, 0x22, 0xd3, 0x25, 0x14, 0x9b, 0x2e, 0x89, 0xd3, 0x20, 0xc2, 0xd4, 0x48, 0x29, 0xe1, + 0x04, 0xc9, 0xcd, 0xd4, 0x28, 0xa6, 0x6a, 0x0f, 0x3e, 0x12, 0x1a, 0x1e, 0x22, 0x72, 0xac, 0x60, + 0xf5, 0x61, 0x77, 0xca, 0x6d, 0x16, 0xb2, 0x6a, 0xa4, 0xff, 0x15, 0x41, 0xde, 0x90, 0x24, 0xc1, + 0x2e, 0x0f, 0x48, 0xf2, 0x15, 0x73, 0xb4, 0x03, 0xf0, 0xc8, 0x31, 0x61, 0x9c, 0x62, 0x3b, 0x56, + 0xc6, 0x9a, 0xb8, 0x94, 0x56, 0x4f, 0x8d, 0x4e, 0x9c, 0xd1, 0x51, 0x18, 0xdb, 0x16, 0xff, 0x98, + 0x70, 0x9a, 0x5b, 0x27, 0x7a, 0xf4, 0x09, 0x26, 0x59, 0x5a, 0x7b, 0x4d, 0x4a, 0xaf, 0x27, 0x57, + 0xbd, 0xbe, 0xa5, 0xa7, 0x4e, 0xad, 0x56, 0x55, 0x61, 0xf4, 0xc5, 0xdb, 0x05, 0x8c, 0xa3, 0x19, + 0x88, 0x81, 0xc7, 0x14, 0x41, 0x13, 0x97, 0xf7, 0xac, 0xe2, 0xa7, 0xea, 0xc0, 0xfd, 0x5e, 0x85, + 0x02, 0x0a, 0x71, 0xae, 0x08, 0x9a, 0x50, 0x40, 0x21, 0xce, 0xd1, 0x1a, 0x86, 0x7f, 0xec, 0x28, + 0xc3, 0xca, 0x40, 0x13, 0x96, 0xd2, 0xea, 0xf1, 0xd5, 0x16, 0x55, 0x94, 0x55, 0x29, 0xde, 0x0e, + 0xde, 0x08, 0xea, 0x2f, 0x90, 0x3b, 0xd5, 0xee, 0x3c, 0x41, 0xff, 0x27, 0xc0, 0x6c, 0x53, 0x3d, + 0xb2, 0xf7, 0xbd, 0x7e, 0x3f, 0xf4, 0x0e, 0x26, 0x1c, 0xc7, 0x69, 0x64, 0x73, 0x5c, 0x46, 0x49, + 0xab, 0x47, 0x3d, 0xdb, 0x06, 0xdd, 0xd7, 0x98, 0xd5, 0x0a, 0xd0, 0x7b, 0x90, 0xdc, 0x36, 0x94, + 0xd5, 0xb5, 0x16, 0xd7, 0x6a, 0x59, 0xa7, 0x02, 0xfd, 0x33, 0x4c, 0x9b, 0x42, 0x7b, 0x9b, 0x85, + 0xe8, 0xf5, 0x59, 0x99, 0x79, 0xcf, 0xac, 0xc0, 0xce, 0x8b, 0xe8, 0xff, 0x05, 0x78, 0xd0, 0x5f, + 0x6d, 0x13, 0x11, 0x96, 0x51, 0x8c, 0xd6, 0x30, 0x4e, 0x69, 0x10, 0xdb, 0x34, 0xbf, 0xb0, 0x60, + 0x5f, 0x68, 0x35, 0x3c, 0xda, 0x82, 0xcc, 0x32, 0xe7, 0x67, 0xf3, 0xb1, 0x17, 0x1b, 0x8a, 0xb7, + 0x31, 0x98, 0xb2, 0xcc, 0x69, 0xfe, 0x30, 0xf4, 0x1c, 0x86, 0xe5, 0x41, 0x28, 0x62, 0xa9, 0x9e, + 0x5f, 0x50, 0x17, 0xab, 0x59, 0x15, 0xf9, 0xe1, 0xd5, 0x8f, 0x97, 0x7e, 0xc0, 0x7f, 0x67, 0x8e, + 0xe1, 0x92, 0xd8, 0x2c, 0x79, 0x42, 0x7d, 0xb3, 0xbd, 0x32, 0x1f, 0x27, 0x66, 0xea, 0x3c, 0xf3, + 0x89, 0xd9, 0x39, 0x3c, 0x67, 0x54, 0xde, 0xdc, 0x8b, 0x9b, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5d, + 0x1f, 0x50, 0x2b, 0xdb, 0x03, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/condition.pb.go b/gen/pb-go/flyteidl/core/condition.pb.go index bd026da48..141dc2641 100644 --- a/gen/pb-go/flyteidl/core/condition.pb.go +++ b/gen/pb-go/flyteidl/core/condition.pb.go @@ -376,34 +376,34 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/condition.proto", fileDescriptor_df35c44899db166a) } var fileDescriptor_df35c44899db166a = []byte{ - // 462 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xcf, 0x6e, 0xd3, 0x40, - 0x10, 0xc6, 0xfd, 0xa7, 0x4d, 0x9b, 0x89, 0x68, 0x96, 0x15, 0xa0, 0x08, 0x81, 0x14, 0x19, 0x0e, - 0x3d, 0x80, 0x8d, 0x02, 0x08, 0x2e, 0x1c, 0x08, 0x58, 0x35, 0x22, 0xea, 0x1f, 0x2b, 0xe2, 0xc0, - 0x01, 0xe4, 0x38, 0x1b, 0x77, 0xd1, 0xc6, 0x63, 0x6d, 0x36, 0x51, 0xfb, 0x14, 0x3c, 0x05, 0x37, - 0x1e, 0x12, 0xed, 0xd6, 0x71, 0x12, 0x27, 0x42, 0x39, 0x7a, 0xf6, 0xfb, 0xcd, 0x7e, 0x9e, 0xfd, - 0x06, 0x9e, 0x4e, 0xc4, 0xad, 0x62, 0x7c, 0x2c, 0x82, 0x14, 0x25, 0x0b, 0x52, 0xcc, 0xc7, 0x5c, - 0x71, 0xcc, 0xfd, 0x42, 0xa2, 0x42, 0x7a, 0x6f, 0x79, 0xec, 0xeb, 0xe3, 0xc7, 0x4f, 0x36, 0xd5, - 0x82, 0x2b, 0x26, 0x13, 0x31, 0xbb, 0x13, 0x7b, 0xbf, 0x1d, 0x78, 0xf0, 0x09, 0xa7, 0x45, 0x22, - 0xf9, 0x0c, 0xf3, 0xf0, 0xa6, 0x90, 0x6c, 0x36, 0xe3, 0x98, 0xd3, 0x08, 0x8e, 0xb1, 0x60, 0x32, - 0x51, 0x28, 0x3b, 0x76, 0xd7, 0x3e, 0x3d, 0xe9, 0xbd, 0xf0, 0x37, 0x1a, 0xfb, 0xbb, 0x30, 0xff, - 0xa2, 0x64, 0xe2, 0x8a, 0xa6, 0x6f, 0x01, 0x04, 0x9b, 0xa8, 0x9f, 0x8b, 0x44, 0xcc, 0x59, 0xc7, - 0xe9, 0xda, 0xa7, 0xad, 0xde, 0xa3, 0x5a, 0x2f, 0x83, 0xe5, 0xe3, 0xb8, 0xa9, 0x95, 0xdf, 0xb4, - 0x90, 0xbe, 0x83, 0x96, 0xe4, 0xd9, 0xf5, 0x92, 0x73, 0xff, 0xcb, 0x81, 0x91, 0x1a, 0xd0, 0xfb, - 0x00, 0xc7, 0x4b, 0x17, 0xb4, 0x01, 0x4e, 0x78, 0x45, 0x2c, 0x7a, 0x04, 0xee, 0x79, 0x78, 0x45, - 0x6c, 0x5d, 0x38, 0x1b, 0x12, 0x47, 0x17, 0xce, 0x86, 0x21, 0x71, 0x75, 0x61, 0x30, 0x24, 0x07, - 0xba, 0x30, 0x18, 0x86, 0xe4, 0xd0, 0xfb, 0x01, 0x47, 0x65, 0x57, 0xfa, 0x1e, 0x9a, 0x85, 0xe4, - 0x53, 0xae, 0xf8, 0x82, 0x99, 0x21, 0xb4, 0x7a, 0x9d, 0x9a, 0x81, 0xcb, 0xe5, 0x79, 0x64, 0xc5, - 0x2b, 0x31, 0xa5, 0xe0, 0x2e, 0x12, 0x69, 0x7e, 0xb6, 0x19, 0x59, 0xb1, 0xfe, 0xe8, 0x1f, 0xea, - 0x9a, 0xf0, 0xfe, 0xda, 0x70, 0xbf, 0x8f, 0x28, 0x58, 0xb2, 0x39, 0xee, 0x56, 0x8a, 0xf9, 0xaf, - 0x79, 0x9e, 0xea, 0x97, 0x2c, 0x2f, 0x7b, 0xbe, 0x35, 0xf1, 0x4a, 0xb1, 0x42, 0x23, 0x2b, 0x5e, - 0x47, 0x69, 0x08, 0x90, 0x56, 0x2f, 0x53, 0x8e, 0xfb, 0xd9, 0x1e, 0x4f, 0x17, 0x59, 0xf1, 0x1a, - 0xd8, 0x6f, 0xc0, 0x01, 0xbb, 0x29, 0xa4, 0xf7, 0xc7, 0x81, 0x87, 0x3b, 0xef, 0xa5, 0x97, 0x5b, - 0x09, 0x79, 0xb3, 0x8f, 0x5f, 0x7f, 0x80, 0x19, 0x4f, 0x13, 0xb1, 0x23, 0x29, 0x5f, 0xa0, 0x6d, - 0x92, 0xc2, 0x2a, 0x71, 0xe9, 0xbf, 0x5b, 0x6b, 0xbc, 0x35, 0xbf, 0xf8, 0x44, 0x83, 0x6b, 0xe6, - 0xbe, 0x02, 0xb9, 0x4b, 0xcf, 0x5a, 0x2f, 0x77, 0xcf, 0x5e, 0x6d, 0x43, 0xae, 0x0a, 0x9e, 0x07, - 0xed, 0x9a, 0x69, 0x1d, 0x97, 0x8f, 0xe7, 0x9f, 0x89, 0xa5, 0xf3, 0x73, 0x11, 0x13, 0xbb, 0xdf, - 0xfb, 0xfe, 0x2a, 0xe3, 0xea, 0x7a, 0x3e, 0xf2, 0x53, 0x9c, 0x06, 0xe2, 0x76, 0xa2, 0x82, 0x6a, - 0xf1, 0x32, 0x96, 0x07, 0xc5, 0xe8, 0x65, 0x86, 0xc1, 0xc6, 0x2e, 0x8e, 0x1a, 0x66, 0x07, 0x5f, - 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x67, 0x4b, 0xa0, 0x12, 0xd1, 0x03, 0x00, 0x00, + // 463 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x4d, 0x6f, 0xd3, 0x40, + 0x10, 0x86, 0xfd, 0xd1, 0xa6, 0xcd, 0x44, 0x34, 0xcb, 0x0a, 0x50, 0x84, 0x40, 0x8a, 0x0c, 0x87, + 0x1e, 0xc0, 0x96, 0x42, 0xf9, 0xb8, 0x70, 0x20, 0x60, 0xd5, 0x88, 0xa8, 0x1f, 0x56, 0xc4, 0x81, + 0x03, 0xc8, 0x71, 0xb6, 0xee, 0xa2, 0x8d, 0xc7, 0xda, 0x6c, 0xa2, 0xf2, 0x2b, 0xf8, 0x15, 0xdc, + 0xf8, 0x91, 0x68, 0x37, 0x8e, 0x93, 0x38, 0x11, 0xca, 0xd1, 0xb3, 0xef, 0x33, 0xfb, 0x7a, 0xf6, + 0x1d, 0x78, 0x7a, 0x23, 0x7e, 0x29, 0xc6, 0xc7, 0x22, 0x48, 0x51, 0xb2, 0x20, 0xc5, 0x7c, 0xcc, + 0x15, 0xc7, 0xdc, 0x2f, 0x24, 0x2a, 0xa4, 0xf7, 0x96, 0xc7, 0xbe, 0x3e, 0x7e, 0xfc, 0x64, 0x53, + 0x2d, 0xb8, 0x62, 0x32, 0x11, 0xd3, 0x85, 0xd8, 0xfb, 0xed, 0xc0, 0x83, 0x8f, 0x38, 0x29, 0x12, + 0xc9, 0xa7, 0x98, 0x87, 0x77, 0x85, 0x64, 0xd3, 0x29, 0xc7, 0x9c, 0x46, 0x70, 0x8c, 0x05, 0x93, + 0x89, 0x42, 0xd9, 0xb1, 0xbb, 0xf6, 0xe9, 0x49, 0xef, 0x85, 0xbf, 0xd1, 0xd8, 0xdf, 0x85, 0xf9, + 0x97, 0x25, 0x13, 0x57, 0x34, 0x7d, 0x0d, 0x20, 0xd8, 0x8d, 0xfa, 0x31, 0x4f, 0xc4, 0x8c, 0x75, + 0x9c, 0xae, 0x7d, 0xda, 0xea, 0x3d, 0xaa, 0xf5, 0x32, 0x58, 0x3e, 0x8e, 0x9b, 0x5a, 0xf9, 0x55, + 0x0b, 0xe9, 0x5b, 0x68, 0x49, 0x9e, 0xdd, 0x2e, 0x39, 0xf7, 0xbf, 0x1c, 0x18, 0xa9, 0x01, 0xbd, + 0xf7, 0x70, 0xbc, 0x74, 0x41, 0x1b, 0xe0, 0x84, 0xd7, 0xc4, 0xa2, 0x47, 0xe0, 0x5e, 0x84, 0xd7, + 0xc4, 0xd6, 0x85, 0xf3, 0x21, 0x71, 0x74, 0xe1, 0x7c, 0x18, 0x12, 0x57, 0x17, 0x06, 0x43, 0x72, + 0xa0, 0x0b, 0x83, 0x61, 0x48, 0x0e, 0xbd, 0xef, 0x70, 0x54, 0x76, 0xa5, 0xef, 0xa0, 0x59, 0x48, + 0x3e, 0xe1, 0x8a, 0xcf, 0x99, 0x19, 0x42, 0xab, 0xd7, 0xa9, 0x19, 0xb8, 0x5a, 0x9e, 0x47, 0x56, + 0xbc, 0x12, 0x53, 0x0a, 0xee, 0x3c, 0x91, 0xe6, 0x67, 0x9b, 0x91, 0x15, 0xeb, 0x8f, 0xfe, 0xa1, + 0xae, 0x09, 0xef, 0xaf, 0x0d, 0xf7, 0xfb, 0x88, 0x82, 0x25, 0x9b, 0xe3, 0x6e, 0xa5, 0x98, 0xff, + 0x9c, 0xe5, 0xa9, 0x7e, 0xc9, 0xf2, 0xb2, 0xe7, 0x5b, 0x13, 0xaf, 0x14, 0x2b, 0x34, 0xb2, 0xe2, + 0x75, 0x94, 0x86, 0x00, 0x69, 0xf5, 0x32, 0xe5, 0xb8, 0x9f, 0xed, 0xf1, 0x74, 0x91, 0x15, 0xaf, + 0x81, 0xfd, 0x06, 0x1c, 0xb0, 0xbb, 0x42, 0x7a, 0x7f, 0x1c, 0x78, 0xb8, 0xf3, 0x5e, 0x7a, 0xb5, + 0x95, 0x90, 0xb3, 0x7d, 0xfc, 0xfa, 0x03, 0xcc, 0x78, 0x9a, 0x88, 0x1d, 0x49, 0xf9, 0x0c, 0x6d, + 0x93, 0x14, 0x56, 0x89, 0x4b, 0xff, 0xdd, 0x5a, 0xe3, 0xad, 0xf9, 0xc5, 0x27, 0x1a, 0x5c, 0x33, + 0xf7, 0x05, 0xc8, 0x22, 0x3d, 0x6b, 0xbd, 0xdc, 0x3d, 0x7b, 0xb5, 0x0d, 0xb9, 0x2a, 0x78, 0x1e, + 0xb4, 0x6b, 0xa6, 0x75, 0x5c, 0x3e, 0x5c, 0x7c, 0x22, 0x96, 0xce, 0xcf, 0x65, 0x4c, 0xec, 0xfe, + 0x9b, 0x6f, 0x67, 0x19, 0x57, 0xb7, 0xb3, 0x91, 0x9f, 0xe2, 0x24, 0x30, 0x57, 0xa0, 0xcc, 0x82, + 0x6a, 0xf9, 0x32, 0x96, 0x07, 0xc5, 0xe8, 0x65, 0x86, 0xc1, 0xc6, 0x3e, 0x8e, 0x1a, 0x66, 0x0f, + 0x5f, 0xfd, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xb8, 0x12, 0xe1, 0x54, 0xd5, 0x03, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/dynamic_job.pb.go b/gen/pb-go/flyteidl/core/dynamic_job.pb.go index ae7e5f9f8..eb37f27ec 100644 --- a/gen/pb-go/flyteidl/core/dynamic_job.pb.go +++ b/gen/pb-go/flyteidl/core/dynamic_job.pb.go @@ -109,23 +109,23 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/dynamic_job.proto", fileDescriptor_87e0015f5a750c69) } var fileDescriptor_87e0015f5a750c69 = []byte{ - // 283 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x90, 0xc1, 0x4a, 0xc3, 0x40, - 0x10, 0x86, 0x69, 0x6b, 0x15, 0xd6, 0xd6, 0xc3, 0x0a, 0x12, 0xab, 0xd0, 0xa2, 0x97, 0x7a, 0x30, - 0x5b, 0xeb, 0x1b, 0x54, 0x4f, 0x1e, 0x3c, 0xa4, 0x05, 0xc1, 0x4b, 0xc9, 0x6e, 0xa6, 0x71, 0xcd, - 0x66, 0x27, 0x64, 0x36, 0x94, 0xbc, 0x82, 0x4f, 0x2d, 0x26, 0x4d, 0x21, 0xc1, 0xeb, 0xfe, 0xdf, - 0x37, 0x3b, 0xf3, 0xb3, 0xe9, 0xce, 0x94, 0x0e, 0x74, 0x64, 0x84, 0xc2, 0x1c, 0x44, 0x54, 0xda, - 0x30, 0xd5, 0x6a, 0xfb, 0x8d, 0xd2, 0xcf, 0x72, 0x74, 0xc8, 0xc7, 0x0d, 0xe0, 0xff, 0x01, 0x93, - 0xeb, 0x36, 0xef, 0x42, 0x4a, 0xa8, 0x26, 0x27, 0xb7, 0xed, 0x68, 0x8f, 0x79, 0xb2, 0x33, 0xb8, - 0xff, 0x3f, 0x35, 0xda, 0x41, 0x1e, 0x9a, 0x83, 0x7b, 0xf7, 0xd3, 0x67, 0x17, 0xaf, 0xf5, 0xdf, - 0x6f, 0x28, 0xd7, 0x19, 0x28, 0xfe, 0xc0, 0x86, 0x16, 0x23, 0x20, 0xaf, 0x37, 0x1b, 0xcc, 0xcf, - 0x97, 0x97, 0x7e, 0x6b, 0x11, 0xff, 0x1d, 0x23, 0x08, 0x6a, 0x82, 0xdf, 0xb3, 0x71, 0xaa, 0xed, - 0x96, 0x0a, 0xa5, 0x80, 0x08, 0xc8, 0xeb, 0xcf, 0x7a, 0xf3, 0x41, 0x30, 0x4a, 0xb5, 0x5d, 0x37, - 0x6f, 0x7c, 0xc1, 0xce, 0xb0, 0x70, 0x59, 0xe1, 0xc8, 0x1b, 0x54, 0x13, 0xaf, 0x3a, 0x13, 0x57, - 0xda, 0x46, 0xda, 0xc6, 0x41, 0x83, 0xf1, 0x27, 0x36, 0xac, 0xee, 0xf3, 0x4e, 0x2a, 0xfe, 0xa6, - 0xc3, 0x6f, 0x42, 0x4a, 0x36, 0x90, 0x66, 0x26, 0x74, 0x10, 0xd4, 0x24, 0x7f, 0x61, 0x23, 0x2a, - 0x64, 0x73, 0x3a, 0x79, 0xc3, 0xca, 0x9c, 0x76, 0xcc, 0x8f, 0x43, 0x7e, 0xb4, 0x5b, 0xd2, 0x6a, - 0xf9, 0xb9, 0x88, 0xb5, 0xfb, 0x2a, 0xa4, 0xaf, 0x30, 0x15, 0xa6, 0xdc, 0x39, 0x71, 0x2c, 0x2f, - 0x06, 0x2b, 0x32, 0xf9, 0x18, 0xa3, 0x68, 0xf5, 0x29, 0x4f, 0xab, 0x1e, 0x9f, 0x7f, 0x03, 0x00, - 0x00, 0xff, 0xff, 0xe0, 0xae, 0x95, 0xbb, 0xd0, 0x01, 0x00, 0x00, + // 285 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x90, 0xcf, 0x4a, 0xc3, 0x40, + 0x10, 0xc6, 0x69, 0x6b, 0x15, 0xd6, 0xd6, 0xc3, 0x0a, 0x12, 0xab, 0xd0, 0xa2, 0x97, 0x7a, 0x30, + 0xeb, 0x3f, 0x7c, 0x80, 0xea, 0xc9, 0x83, 0x87, 0xb4, 0x20, 0x78, 0x29, 0xd9, 0xcd, 0x34, 0xae, + 0xdd, 0xec, 0x84, 0xcc, 0x86, 0xd2, 0x57, 0xf0, 0xa9, 0xc5, 0x4d, 0x53, 0x48, 0xf0, 0xba, 0xdf, + 0xef, 0x37, 0x3b, 0xf3, 0xb1, 0xf1, 0xca, 0x6c, 0x1d, 0xe8, 0xc4, 0x08, 0x85, 0x05, 0x88, 0x64, + 0x6b, 0xe3, 0x4c, 0xab, 0xe5, 0x37, 0xca, 0x30, 0x2f, 0xd0, 0x21, 0x1f, 0xd6, 0x40, 0xf8, 0x07, + 0x8c, 0xce, 0x9b, 0xbc, 0x8b, 0x69, 0x4d, 0x15, 0x39, 0xba, 0x6c, 0x46, 0x1b, 0x2c, 0xd6, 0x2b, + 0x83, 0x9b, 0xff, 0x53, 0xa3, 0x1d, 0x14, 0xb1, 0xd9, 0xb9, 0x57, 0x3f, 0x5d, 0x76, 0xf2, 0x5a, + 0xfd, 0xfd, 0x86, 0x72, 0x9e, 0x83, 0xe2, 0x37, 0xac, 0x6f, 0x31, 0x01, 0x0a, 0x3a, 0x93, 0xde, + 0xf4, 0xf8, 0xe1, 0x34, 0x6c, 0x2c, 0x12, 0xbe, 0x63, 0x02, 0x51, 0x45, 0xf0, 0x6b, 0x36, 0xcc, + 0xb4, 0x5d, 0x52, 0xa9, 0x14, 0x10, 0x01, 0x05, 0xdd, 0x49, 0x67, 0xda, 0x8b, 0x06, 0x99, 0xb6, + 0xf3, 0xfa, 0x8d, 0xdf, 0xb1, 0x23, 0x2c, 0x5d, 0x5e, 0x3a, 0x0a, 0x7a, 0x7e, 0xe2, 0x59, 0x6b, + 0xe2, 0x4c, 0xdb, 0x44, 0xdb, 0x34, 0xaa, 0x31, 0x7e, 0xcf, 0xfa, 0xfe, 0xbe, 0xe0, 0xc0, 0xf3, + 0x17, 0x2d, 0x7e, 0x11, 0xd3, 0x7a, 0x01, 0x59, 0x6e, 0x62, 0x07, 0x51, 0x45, 0xf2, 0x17, 0x36, + 0xa0, 0x52, 0xd6, 0xa7, 0x53, 0xd0, 0xf7, 0xe6, 0xb8, 0x65, 0x7e, 0xec, 0xf2, 0xbd, 0xdd, 0x90, + 0x66, 0xcf, 0x9f, 0x4f, 0xa9, 0x76, 0x5f, 0xa5, 0x0c, 0x15, 0x66, 0xc2, 0xab, 0x58, 0xa4, 0x62, + 0x5f, 0x60, 0x0a, 0x56, 0xe4, 0xf2, 0x36, 0x45, 0xd1, 0xe8, 0x54, 0x1e, 0xfa, 0x2e, 0x1f, 0x7f, + 0x03, 0x00, 0x00, 0xff, 0xff, 0x8b, 0x57, 0x7d, 0x86, 0xd4, 0x01, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/errors.pb.go b/gen/pb-go/flyteidl/core/errors.pb.go index 036215bb4..6e12d3b80 100644 --- a/gen/pb-go/flyteidl/core/errors.pb.go +++ b/gen/pb-go/flyteidl/core/errors.pb.go @@ -166,23 +166,23 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/errors.proto", fileDescriptor_c2a49b99f342b879) } var fileDescriptor_c2a49b99f342b879 = []byte{ - // 285 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x90, 0x41, 0x4b, 0xfb, 0x40, - 0x10, 0xc5, 0xff, 0xf9, 0x1b, 0x2b, 0x4e, 0x69, 0x2b, 0xeb, 0x25, 0x14, 0x0a, 0x25, 0x17, 0x7b, - 0xd0, 0x5d, 0x49, 0xc1, 0xab, 0xd8, 0x36, 0x27, 0xa5, 0x85, 0x1c, 0x3c, 0x78, 0x91, 0x26, 0xd9, - 0xc6, 0xc5, 0x64, 0xa7, 0x6c, 0x36, 0x60, 0x3f, 0xb0, 0xdf, 0x43, 0x32, 0x31, 0x62, 0x7a, 0xf0, - 0xb2, 0xec, 0xcc, 0xbc, 0xdf, 0xdb, 0xd9, 0x07, 0xe3, 0x5d, 0x7e, 0xb0, 0x52, 0xa5, 0xb9, 0x48, - 0xd0, 0x48, 0x21, 0x8d, 0x41, 0x53, 0xf2, 0xbd, 0x41, 0x8b, 0x6c, 0xd0, 0xce, 0x78, 0x3d, 0x1b, - 0x4f, 0x8e, 0xa4, 0x1f, 0x32, 0xa9, 0xac, 0x42, 0xdd, 0xa8, 0xfd, 0x4f, 0x07, 0x86, 0x4b, 0xd4, - 0x76, 0xab, 0xb4, 0x34, 0x61, 0xed, 0xc3, 0x18, 0xb8, 0x09, 0xa6, 0xd2, 0x73, 0xa6, 0xce, 0xec, - 0x3c, 0xa2, 0x3b, 0xf3, 0xe0, 0xac, 0x90, 0x65, 0xb9, 0xcd, 0xa4, 0xf7, 0x9f, 0xda, 0x6d, 0xc9, - 0xee, 0xc0, 0x7d, 0x57, 0x3a, 0xf5, 0x4e, 0xa6, 0xce, 0x6c, 0x18, 0xf8, 0xbc, 0xf3, 0x3a, 0xef, - 0x5a, 0xf3, 0x47, 0xa5, 0xd3, 0x88, 0xf4, 0xec, 0x1e, 0x7a, 0x68, 0x54, 0xa6, 0xb4, 0xe7, 0x12, - 0x79, 0x75, 0x44, 0x86, 0xed, 0xa2, 0x0d, 0x49, 0x27, 0xe1, 0xdf, 0x98, 0x7f, 0x0d, 0x6e, 0x5d, - 0xb3, 0x4b, 0x18, 0xad, 0x37, 0xeb, 0xd7, 0x28, 0x5c, 0x6e, 0x9e, 0xc3, 0xe8, 0x61, 0xf1, 0x14, - 0x5e, 0xfc, 0x63, 0x23, 0xe8, 0xff, 0x6e, 0x38, 0xfe, 0x0a, 0x06, 0x64, 0xb1, 0xc2, 0xa4, 0x2a, - 0xa4, 0xb6, 0x6c, 0x0e, 0xa7, 0x14, 0x1b, 0x7d, 0xb3, 0x1f, 0x4c, 0xfe, 0x5c, 0x3c, 0x6a, 0xb4, - 0x8b, 0xe0, 0xe5, 0x36, 0x53, 0xf6, 0xad, 0x8a, 0x79, 0x82, 0x85, 0xc8, 0x0f, 0x3b, 0x2b, 0x7e, - 0xe2, 0xcd, 0xa4, 0x16, 0xfb, 0xf8, 0x26, 0x43, 0xd1, 0x49, 0x3c, 0xee, 0x51, 0xd0, 0xf3, 0xaf, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x4a, 0xfc, 0x79, 0xc4, 0xb4, 0x01, 0x00, 0x00, + // 283 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x90, 0xc1, 0x4b, 0xc3, 0x30, + 0x14, 0xc6, 0xad, 0xd6, 0x89, 0x6f, 0x6c, 0x93, 0x78, 0x29, 0x83, 0xc1, 0xe8, 0xc5, 0x1d, 0x34, + 0x81, 0x4d, 0x76, 0x15, 0xb7, 0xf5, 0xa4, 0x6c, 0xd0, 0x83, 0x07, 0x2f, 0xb2, 0xb6, 0x31, 0x06, + 0xd7, 0xbc, 0x91, 0xa6, 0xa0, 0x7f, 0xb0, 0xff, 0x87, 0xf4, 0xd5, 0x8a, 0xdd, 0xc1, 0x4b, 0xc8, + 0x7b, 0xef, 0xfb, 0x7d, 0x79, 0xf9, 0x60, 0xf8, 0xba, 0xfb, 0x74, 0x52, 0x67, 0x3b, 0x91, 0xa2, + 0x95, 0x42, 0x5a, 0x8b, 0xb6, 0xe0, 0x7b, 0x8b, 0x0e, 0x59, 0xaf, 0x99, 0xf1, 0x6a, 0x36, 0x1c, + 0x1d, 0x48, 0x3f, 0x64, 0x5a, 0x3a, 0x8d, 0xa6, 0x56, 0x87, 0x5f, 0x1e, 0xf4, 0x97, 0x68, 0xdc, + 0x56, 0x1b, 0x69, 0xa3, 0xca, 0x87, 0x31, 0xf0, 0x53, 0xcc, 0x64, 0xe0, 0x8d, 0xbd, 0xc9, 0x79, + 0x4c, 0x77, 0x16, 0xc0, 0x59, 0x2e, 0x8b, 0x62, 0xab, 0x64, 0x70, 0x4c, 0xed, 0xa6, 0x64, 0x73, + 0xf0, 0xdf, 0xb5, 0xc9, 0x82, 0x93, 0xb1, 0x37, 0xe9, 0x4f, 0x43, 0xde, 0x7a, 0x9d, 0xb7, 0xad, + 0xf9, 0x83, 0x36, 0x59, 0x4c, 0x7a, 0x76, 0x07, 0x1d, 0xb4, 0x5a, 0x69, 0x13, 0xf8, 0x44, 0x5e, + 0x1d, 0x90, 0x51, 0xb3, 0x68, 0x4d, 0xd2, 0x49, 0xf8, 0x0f, 0x16, 0x5e, 0x83, 0x5f, 0xd5, 0xec, + 0x12, 0x06, 0xeb, 0xcd, 0xfa, 0x25, 0x8e, 0x96, 0x9b, 0xa7, 0x28, 0xbe, 0x5f, 0x3c, 0x46, 0x17, + 0x47, 0x6c, 0x00, 0xdd, 0xbf, 0x0d, 0x2f, 0x5c, 0x41, 0x8f, 0x2c, 0x56, 0x98, 0x96, 0xb9, 0x34, + 0x8e, 0xcd, 0xe0, 0x94, 0x62, 0xa3, 0x6f, 0x76, 0xa7, 0xa3, 0x7f, 0x17, 0x8f, 0x6b, 0xed, 0x62, + 0xfe, 0x7c, 0xab, 0xb4, 0x7b, 0x2b, 0x13, 0x9e, 0x62, 0x2e, 0x88, 0x40, 0xab, 0xc4, 0x6f, 0xc4, + 0x4a, 0x1a, 0xb1, 0x4f, 0x6e, 0x14, 0x8a, 0x56, 0xea, 0x49, 0x87, 0xc2, 0x9e, 0x7d, 0x07, 0x00, + 0x00, 0xff, 0xff, 0x79, 0x84, 0xe2, 0xf9, 0xb8, 0x01, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/execution.pb.go b/gen/pb-go/flyteidl/core/execution.pb.go index 521bbb12a..f6cb8e7ff 100644 --- a/gen/pb-go/flyteidl/core/execution.pb.go +++ b/gen/pb-go/flyteidl/core/execution.pb.go @@ -618,49 +618,49 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/execution.proto", fileDescriptor_1523842fd9084ee4) } var fileDescriptor_1523842fd9084ee4 = []byte{ - // 695 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0xdf, 0x8e, 0xd2, 0x4e, - 0x14, 0xc7, 0xb7, 0xd0, 0xe5, 0xcf, 0xe1, 0x07, 0xbf, 0x71, 0xa2, 0x09, 0xab, 0xd1, 0x6c, 0xaa, - 0x89, 0x9b, 0x18, 0x5b, 0x83, 0xde, 0xa8, 0x57, 0x40, 0x87, 0xdd, 0x0a, 0xb4, 0xbb, 0xfd, 0x23, - 0x71, 0x6f, 0x08, 0xd0, 0xa1, 0xdb, 0x2c, 0x30, 0x58, 0x5a, 0x75, 0xef, 0x4c, 0xf4, 0x09, 0xbc, - 0x30, 0xf1, 0x8d, 0xbc, 0xf2, 0x01, 0x7c, 0x1a, 0x33, 0x03, 0xec, 0x52, 0x34, 0x1a, 0x13, 0x6f, - 0xc8, 0x9c, 0x39, 0xe7, 0x7b, 0xfa, 0xf9, 0x1e, 0x7a, 0x0a, 0xb7, 0xc7, 0x93, 0x8b, 0x98, 0x86, - 0xfe, 0x44, 0x1b, 0xb1, 0x88, 0x6a, 0xf4, 0x1d, 0x1d, 0x25, 0x71, 0xc8, 0x66, 0xea, 0x3c, 0x62, - 0x31, 0xc3, 0xe5, 0x75, 0x5a, 0xe5, 0xe9, 0x9b, 0x77, 0x02, 0xc6, 0x82, 0x09, 0xd5, 0x44, 0x72, - 0x98, 0x8c, 0x35, 0x3f, 0x89, 0x06, 0x57, 0xe5, 0xca, 0x17, 0x09, 0xae, 0xf5, 0x58, 0x74, 0x3e, - 0x9e, 0xb0, 0xb7, 0x64, 0xdd, 0x4a, 0xf9, 0x20, 0xc1, 0xee, 0xf1, 0xd9, 0x60, 0x41, 0x71, 0x19, - 0x8a, 0x9e, 0xa9, 0x93, 0x96, 0x61, 0x12, 0x1d, 0xed, 0x60, 0x80, 0xdc, 0x89, 0x47, 0x3c, 0xa2, - 0x23, 0x09, 0x97, 0x20, 0x6f, 0x7b, 0xa6, 0x69, 0x98, 0x87, 0x28, 0x83, 0x2b, 0x00, 0x8e, 0xd7, - 0x6c, 0x12, 0xa2, 0xf3, 0x38, 0xcb, 0x75, 0xab, 0x98, 0xe8, 0x48, 0xe6, 0xb5, 0xad, 0xba, 0xd1, - 0xe1, 0xb9, 0x5d, 0xde, 0x84, 0x07, 0x44, 0x47, 0x39, 0x9e, 0xa8, 0x37, 0x2c, 0xdb, 0x25, 0x3a, - 0xca, 0x73, 0x91, 0x6b, 0x74, 0x89, 0xde, 0xb7, 0x3c, 0x17, 0x15, 0x94, 0x4f, 0x12, 0x94, 0x4d, - 0xe6, 0xd3, 0x2b, 0xae, 0xf7, 0x7f, 0xcd, 0x95, 0xe2, 0xc8, 0x6e, 0x72, 0xc8, 0x1b, 0x1c, 0xbb, - 0x9b, 0x1c, 0x02, 0xca, 0x69, 0x1b, 0xc7, 0xc7, 0xbf, 0x82, 0xfa, 0x2c, 0x41, 0xd9, 0x1d, 0x2c, - 0xce, 0xaf, 0xa0, 0x3e, 0xfe, 0x03, 0xa8, 0xf5, 0xb3, 0xd3, 0x50, 0x08, 0xfe, 0x33, 0x4c, 0xc3, - 0x35, 0xea, 0x1d, 0xe3, 0x94, 0x2b, 0x73, 0x78, 0x0f, 0x6e, 0xf4, 0xea, 0x86, 0x6b, 0x98, 0x87, - 0xfd, 0x96, 0x65, 0xf7, 0x6d, 0xe2, 0x58, 0x9e, 0xdd, 0x24, 0x0e, 0xca, 0x2b, 0x5f, 0x25, 0xa8, - 0x5c, 0x42, 0x91, 0x28, 0x62, 0x11, 0xc6, 0x20, 0x8f, 0x98, 0x4f, 0xab, 0xd2, 0xbe, 0x74, 0x50, - 0xb4, 0xc5, 0x19, 0x57, 0x21, 0x3f, 0xa5, 0x8b, 0xc5, 0x20, 0xa0, 0xd5, 0x8c, 0xb8, 0x5e, 0x87, - 0xf8, 0x16, 0x14, 0x29, 0x97, 0xf5, 0x93, 0x28, 0xac, 0x66, 0x45, 0xae, 0x20, 0x2e, 0xbc, 0x28, - 0xc4, 0xcf, 0x41, 0x3e, 0x0f, 0x67, 0x7e, 0x55, 0xde, 0x97, 0x0e, 0x2a, 0xb5, 0xfb, 0x6a, 0xea, - 0x2d, 0x53, 0xd3, 0xcf, 0x55, 0xc5, 0x6f, 0x3b, 0x9c, 0xf9, 0xb6, 0x10, 0x29, 0x2a, 0x14, 0x2f, - 0xaf, 0xb8, 0x5b, 0xcf, 0x6c, 0x9b, 0x56, 0xcf, 0x44, 0x3b, 0xb8, 0x00, 0xb2, 0xe7, 0x10, 0x1b, - 0x49, 0xdc, 0xb7, 0xf3, 0xca, 0x71, 0x49, 0x17, 0x65, 0x94, 0xef, 0x12, 0xe4, 0xf9, 0x8c, 0x3b, - 0x2c, 0xc0, 0x08, 0xb2, 0x9c, 0x67, 0x69, 0x81, 0x1f, 0xb9, 0xab, 0xd9, 0x60, 0xba, 0xc6, 0x17, - 0x67, 0xdc, 0x86, 0xca, 0xca, 0x46, 0x7f, 0xcc, 0xa2, 0xe9, 0x20, 0x16, 0x06, 0x2a, 0xb5, 0x7b, - 0x5b, 0xa0, 0xab, 0xae, 0x6a, 0x77, 0x59, 0xdc, 0x12, 0xb5, 0x76, 0x79, 0xba, 0x19, 0xe2, 0x07, - 0x90, 0x8d, 0xe3, 0x89, 0xb0, 0x5a, 0xaa, 0xed, 0xa9, 0xcb, 0x0d, 0x52, 0xd7, 0x1b, 0xa4, 0xea, - 0xab, 0x0d, 0xb2, 0x79, 0x95, 0xa2, 0x41, 0x39, 0xd5, 0x2c, 0xed, 0x2f, 0x0f, 0xd9, 0xa6, 0xf3, - 0x12, 0x49, 0xdc, 0xe8, 0x0b, 0xc7, 0x32, 0x51, 0x46, 0x39, 0x85, 0xeb, 0x27, 0xc9, 0x60, 0x12, - 0xc6, 0x17, 0xd6, 0xd8, 0xa1, 0xd1, 0x9b, 0x70, 0x44, 0x9d, 0x39, 0x1d, 0xe1, 0x06, 0xfc, 0xff, - 0x3a, 0xa1, 0x09, 0x0d, 0x67, 0x41, 0x7f, 0x98, 0xf8, 0x01, 0x8d, 0x85, 0xe9, 0xdf, 0x12, 0x54, - 0xd6, 0x8a, 0x86, 0x10, 0x28, 0xdf, 0x24, 0x40, 0xdb, 0xcd, 0xf1, 0x33, 0x90, 0xe3, 0x90, 0x46, - 0xa2, 0xdb, 0xcf, 0x13, 0xd9, 0x2e, 0x57, 0xdd, 0x90, 0x46, 0x47, 0x3b, 0xb6, 0xd0, 0xe0, 0xa7, - 0x20, 0x2f, 0xe6, 0x74, 0x24, 0x66, 0x5d, 0xaa, 0xdd, 0xfd, 0x83, 0x96, 0xfb, 0xe0, 0x52, 0x2e, - 0x51, 0x9e, 0x80, 0xcc, 0x5b, 0x6d, 0x2f, 0x45, 0x01, 0xe4, 0x23, 0xe3, 0xf0, 0x68, 0xf9, 0x8f, - 0x77, 0x89, 0x6e, 0x78, 0x5d, 0x94, 0xe1, 0x73, 0xea, 0x58, 0x3d, 0x94, 0x6d, 0x94, 0xa1, 0xe4, - 0xd3, 0x45, 0x18, 0xcc, 0x84, 0xc1, 0x46, 0xed, 0xf4, 0x51, 0x10, 0xc6, 0x67, 0xc9, 0x50, 0x1d, - 0xb1, 0xa9, 0x36, 0xb9, 0x18, 0xc7, 0xda, 0xe5, 0xe7, 0x2f, 0xa0, 0x33, 0x6d, 0x3e, 0x7c, 0x18, - 0x30, 0x2d, 0xf5, 0x45, 0x1c, 0xe6, 0xc4, 0x9c, 0x1e, 0xff, 0x08, 0x00, 0x00, 0xff, 0xff, 0x3f, - 0x90, 0x47, 0xe7, 0x29, 0x05, 0x00, 0x00, + // 698 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0x5d, 0x8f, 0xd2, 0x4c, + 0x14, 0xc7, 0xb7, 0xd0, 0xe5, 0xe5, 0xf0, 0xc0, 0x33, 0xcf, 0xe4, 0x31, 0x61, 0x35, 0x9a, 0x4d, + 0x35, 0x71, 0x13, 0x63, 0x9b, 0xe0, 0xc6, 0x44, 0xbd, 0x02, 0x3a, 0xec, 0x56, 0xa0, 0xdd, 0xed, + 0x8b, 0xc4, 0xbd, 0x21, 0x40, 0x87, 0x6e, 0xb3, 0xc0, 0x60, 0x69, 0xd5, 0xbd, 0x33, 0xd1, 0x4f, + 0xe0, 0x85, 0x89, 0xdf, 0xc8, 0x2b, 0x3f, 0x80, 0x9f, 0xc6, 0xcc, 0x00, 0xbb, 0x14, 0x8d, 0xc6, + 0xc4, 0x1b, 0x32, 0x67, 0xce, 0xf9, 0x9f, 0xf9, 0xfd, 0x0f, 0x9d, 0x81, 0xdb, 0xe3, 0xc9, 0x65, + 0x4c, 0x43, 0x7f, 0xa2, 0x8d, 0x58, 0x44, 0x35, 0xfa, 0x96, 0x8e, 0x92, 0x38, 0x64, 0x33, 0x75, + 0x1e, 0xb1, 0x98, 0xe1, 0xf2, 0x3a, 0xad, 0xf2, 0xf4, 0xcd, 0x3b, 0x01, 0x63, 0xc1, 0x84, 0x6a, + 0x22, 0x39, 0x4c, 0xc6, 0x9a, 0x9f, 0x44, 0x83, 0xeb, 0x72, 0xe5, 0xb3, 0x04, 0xff, 0xf5, 0x58, + 0x74, 0x31, 0x9e, 0xb0, 0x37, 0x64, 0xdd, 0x4a, 0x79, 0x2f, 0xc1, 0xee, 0xc9, 0xf9, 0x60, 0x41, + 0x71, 0x19, 0x8a, 0x9e, 0xa9, 0x93, 0x96, 0x61, 0x12, 0x1d, 0xed, 0x60, 0x80, 0xdc, 0xa9, 0x47, + 0x3c, 0xa2, 0x23, 0x09, 0x97, 0x20, 0x6f, 0x7b, 0xa6, 0x69, 0x98, 0x47, 0x28, 0x83, 0x2b, 0x00, + 0x8e, 0xd7, 0x6c, 0x12, 0xa2, 0xf3, 0x38, 0xcb, 0x75, 0xab, 0x98, 0xe8, 0x48, 0xe6, 0xb5, 0xad, + 0xba, 0xd1, 0xe1, 0xb9, 0x5d, 0xde, 0x84, 0x07, 0x44, 0x47, 0x39, 0x9e, 0xa8, 0x37, 0x2c, 0xdb, + 0x25, 0x3a, 0xca, 0x73, 0x91, 0x6b, 0x74, 0x89, 0xde, 0xb7, 0x3c, 0x17, 0x15, 0x94, 0x8f, 0x12, + 0x94, 0x4d, 0xe6, 0xd3, 0x6b, 0xae, 0x77, 0x7f, 0xcc, 0x95, 0xe2, 0xc8, 0x6e, 0x72, 0xc8, 0x1b, + 0x1c, 0xbb, 0x9b, 0x1c, 0x02, 0xca, 0x69, 0x1b, 0x27, 0x27, 0x3f, 0x83, 0xfa, 0x24, 0x41, 0xd9, + 0x1d, 0x2c, 0x2e, 0xae, 0xa1, 0x3e, 0xfc, 0x05, 0xa8, 0xf5, 0xd9, 0x69, 0x28, 0x04, 0xff, 0x18, + 0xa6, 0xe1, 0x1a, 0xf5, 0x8e, 0x71, 0xc6, 0x95, 0x39, 0xbc, 0x07, 0x37, 0x7a, 0x75, 0xc3, 0x35, + 0xcc, 0xa3, 0x7e, 0xcb, 0xb2, 0xfb, 0x36, 0x71, 0x2c, 0xcf, 0x6e, 0x12, 0x07, 0xe5, 0x95, 0x2f, + 0x12, 0x54, 0xae, 0xa0, 0x48, 0x14, 0xb1, 0x08, 0x63, 0x90, 0x47, 0xcc, 0xa7, 0x55, 0x69, 0x5f, + 0x3a, 0x28, 0xda, 0x62, 0x8d, 0xab, 0x90, 0x9f, 0xd2, 0xc5, 0x62, 0x10, 0xd0, 0x6a, 0x46, 0x6c, + 0xaf, 0x43, 0x7c, 0x0b, 0x8a, 0x94, 0xcb, 0xfa, 0x49, 0x14, 0x56, 0xb3, 0x22, 0x57, 0x10, 0x1b, + 0x5e, 0x14, 0xe2, 0x67, 0x20, 0x5f, 0x84, 0x33, 0xbf, 0x2a, 0xef, 0x4b, 0x07, 0x95, 0xda, 0x7d, + 0x35, 0xf5, 0x95, 0xa9, 0xe9, 0x73, 0x55, 0xf1, 0xdb, 0x0e, 0x67, 0xbe, 0x2d, 0x44, 0x8a, 0x0a, + 0xc5, 0xab, 0x2d, 0xee, 0xd6, 0x33, 0xdb, 0xa6, 0xd5, 0x33, 0xd1, 0x0e, 0x2e, 0x80, 0xec, 0x39, + 0xc4, 0x46, 0x12, 0xf7, 0xed, 0xbc, 0x74, 0x5c, 0xd2, 0x45, 0x19, 0xe5, 0x9b, 0x04, 0x79, 0x3e, + 0xe3, 0x0e, 0x0b, 0x30, 0x82, 0x2c, 0xe7, 0x59, 0x5a, 0xe0, 0x4b, 0xee, 0x6a, 0x36, 0x98, 0xae, + 0xf1, 0xc5, 0x1a, 0xb7, 0xa1, 0xb2, 0xb2, 0xd1, 0x1f, 0xb3, 0x68, 0x3a, 0x88, 0x85, 0x81, 0x4a, + 0xed, 0xde, 0x16, 0xe8, 0xaa, 0xab, 0xda, 0x5d, 0x16, 0xb7, 0x44, 0xad, 0x5d, 0x9e, 0x6e, 0x86, + 0xf8, 0x01, 0x64, 0xe3, 0x78, 0x22, 0xac, 0x96, 0x6a, 0x7b, 0xea, 0xf2, 0x06, 0xa9, 0xeb, 0x1b, + 0xa4, 0xea, 0xab, 0x1b, 0x64, 0xf3, 0x2a, 0x45, 0x83, 0x72, 0xaa, 0x59, 0xda, 0x5f, 0x1e, 0xb2, + 0x4d, 0xe7, 0x05, 0x92, 0xb8, 0xd1, 0xe7, 0x8e, 0x65, 0xa2, 0x8c, 0x72, 0x06, 0xff, 0x9f, 0x26, + 0x83, 0x49, 0x18, 0x5f, 0x5a, 0x63, 0x87, 0x46, 0xaf, 0xc3, 0x11, 0x75, 0xe6, 0x74, 0x84, 0x1b, + 0xf0, 0xef, 0xab, 0x84, 0x26, 0x34, 0x9c, 0x05, 0xfd, 0x61, 0xe2, 0x07, 0x34, 0x16, 0xa6, 0x7f, + 0x49, 0x50, 0x59, 0x2b, 0x1a, 0x42, 0xa0, 0x7c, 0x95, 0x00, 0x6d, 0x37, 0xc7, 0x4f, 0x41, 0x8e, + 0x43, 0x1a, 0x89, 0x6e, 0x3f, 0x4e, 0x64, 0xbb, 0x5c, 0x75, 0x43, 0x1a, 0x1d, 0xef, 0xd8, 0x42, + 0x83, 0x9f, 0x80, 0xbc, 0x98, 0xd3, 0x91, 0x98, 0x75, 0xa9, 0x76, 0xf7, 0x37, 0x5a, 0xee, 0x83, + 0x4b, 0xb9, 0x44, 0x39, 0x04, 0x99, 0xb7, 0xda, 0xbe, 0x14, 0x05, 0x90, 0x8f, 0x8d, 0xa3, 0xe3, + 0xe5, 0x3f, 0xde, 0x25, 0xba, 0xe1, 0x75, 0x51, 0x86, 0xcf, 0xa9, 0x63, 0xf5, 0x50, 0xb6, 0x51, + 0x86, 0x92, 0x4f, 0x17, 0x61, 0x30, 0x13, 0x06, 0x1b, 0x8f, 0xcf, 0x0e, 0x83, 0x30, 0x3e, 0x4f, + 0x86, 0xea, 0x88, 0x4d, 0x35, 0x71, 0x3a, 0x8b, 0x02, 0xed, 0xea, 0x09, 0x0c, 0xe8, 0x4c, 0x9b, + 0x0f, 0x1f, 0x06, 0x4c, 0x4b, 0xbd, 0x8a, 0xc3, 0x9c, 0x98, 0xd5, 0xa3, 0xef, 0x01, 0x00, 0x00, + 0xff, 0xff, 0x9c, 0x8c, 0x6c, 0x07, 0x2d, 0x05, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/identifier.pb.go b/gen/pb-go/flyteidl/core/identifier.pb.go index dc73f55cc..6535002cd 100644 --- a/gen/pb-go/flyteidl/core/identifier.pb.go +++ b/gen/pb-go/flyteidl/core/identifier.pb.go @@ -311,33 +311,33 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/identifier.proto", fileDescriptor_adfa846a86e1fa0c) } var fileDescriptor_adfa846a86e1fa0c = []byte{ - // 437 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x53, 0xd1, 0x8e, 0xd2, 0x40, - 0x14, 0x75, 0x58, 0x84, 0xf5, 0x16, 0xdc, 0x3a, 0x0f, 0x52, 0xb3, 0x89, 0xd9, 0x60, 0x62, 0x36, - 0x9b, 0xd8, 0x9a, 0xfa, 0x03, 0xd6, 0x5d, 0x36, 0x36, 0x8b, 0xec, 0xa6, 0x94, 0x90, 0xf8, 0x42, - 0x4a, 0xe7, 0x82, 0x23, 0x30, 0xd3, 0x0c, 0x83, 0xda, 0x47, 0x7f, 0xc8, 0xcf, 0xf0, 0xbb, 0xcc, - 0x74, 0x61, 0x2d, 0x04, 0xf4, 0xad, 0xe7, 0x9e, 0x33, 0xf7, 0x9c, 0xe9, 0xdc, 0x0b, 0x2f, 0x27, - 0xf3, 0x5c, 0x23, 0x67, 0x73, 0x2f, 0x95, 0x0a, 0x3d, 0xce, 0x50, 0x68, 0x3e, 0xe1, 0xa8, 0xdc, - 0x4c, 0x49, 0x2d, 0x69, 0x73, 0xc3, 0xbb, 0x86, 0x6f, 0xff, 0x22, 0x00, 0xe1, 0x83, 0x86, 0xbe, - 0x87, 0xa6, 0xc2, 0xa5, 0x5c, 0xa9, 0x14, 0x47, 0x3a, 0xcf, 0xd0, 0x21, 0x67, 0xe4, 0xfc, 0xa9, - 0x7f, 0xea, 0x6e, 0x9d, 0x72, 0xa3, 0xb5, 0x26, 0xce, 0x33, 0x8c, 0x1a, 0xaa, 0x84, 0xa8, 0x03, - 0xf5, 0x4c, 0xc9, 0xaf, 0x98, 0x6a, 0xa7, 0x72, 0x46, 0xce, 0x9f, 0x44, 0x1b, 0x48, 0x9f, 0x43, - 0x8d, 0xc9, 0x45, 0xc2, 0x85, 0x73, 0x54, 0x10, 0x6b, 0x44, 0x29, 0x54, 0x45, 0xb2, 0x40, 0xa7, - 0x5a, 0x54, 0x8b, 0x6f, 0xd3, 0xe5, 0x1b, 0xaa, 0x25, 0x97, 0xc2, 0x79, 0x7c, 0xdf, 0x65, 0x0d, - 0xdb, 0x29, 0x9c, 0x0e, 0xa5, 0x9a, 0x4d, 0xe6, 0xf2, 0x7b, 0xe7, 0x07, 0xa6, 0x2b, 0xcd, 0xa5, - 0x28, 0x5d, 0xa0, 0x64, 0x4f, 0x0e, 0xd9, 0x57, 0xfe, 0x67, 0xdf, 0xfe, 0x49, 0xa0, 0xd5, 0x93, - 0x0c, 0xf7, 0x39, 0xb4, 0xa0, 0x2e, 0x24, 0xc3, 0x11, 0x67, 0x6b, 0x87, 0x9a, 0x81, 0x21, 0xa3, - 0x9f, 0xa0, 0x81, 0x1b, 0xbd, 0x61, 0x8d, 0x8d, 0xe5, 0x5f, 0xec, 0xfc, 0xba, 0x7f, 0x84, 0x8f, - 0x2c, 0xfc, 0x5b, 0x6c, 0xff, 0x26, 0xd0, 0x8a, 0x93, 0xe5, 0x6c, 0x5f, 0x06, 0x1f, 0xea, 0x3a, - 0x59, 0xce, 0x36, 0x19, 0x2c, 0xff, 0xc5, 0x8e, 0x4b, 0xa9, 0x69, 0xcd, 0x28, 0x43, 0x46, 0x23, - 0x78, 0x56, 0xe4, 0xde, 0x93, 0xf1, 0xf5, 0xce, 0xe9, 0x03, 0x57, 0x8f, 0x4e, 0xc4, 0x36, 0x41, - 0x5f, 0x99, 0x71, 0xd1, 0x2a, 0x1f, 0x25, 0x5a, 0xe3, 0x22, 0xd3, 0xc5, 0xcb, 0x36, 0xcd, 0x44, - 0x68, 0x95, 0x07, 0xf7, 0xb5, 0x8b, 0x01, 0x34, 0xca, 0xf3, 0x42, 0x4f, 0xc0, 0x1a, 0xf4, 0xfa, - 0x77, 0x9d, 0xcb, 0xf0, 0x3a, 0xec, 0x5c, 0xd9, 0x8f, 0xe8, 0x31, 0x54, 0xe3, 0xa0, 0x7f, 0x63, - 0x13, 0xda, 0x80, 0xe3, 0xe1, 0x6d, 0x74, 0x73, 0xdd, 0xbd, 0x1d, 0xda, 0x15, 0x23, 0xec, 0x06, - 0x83, 0xde, 0xe5, 0xc7, 0xd1, 0x5d, 0x37, 0xe8, 0xd9, 0x47, 0xd4, 0x82, 0xfa, 0x55, 0x10, 0x07, - 0xfd, 0x4e, 0x6c, 0x57, 0x3f, 0xf8, 0x9f, 0xdf, 0x4e, 0xb9, 0xfe, 0xb2, 0x1a, 0xbb, 0xa9, 0x5c, - 0x78, 0xf3, 0x7c, 0xa2, 0xbd, 0x87, 0xd1, 0x9f, 0xa2, 0xf0, 0xb2, 0xf1, 0x9b, 0xa9, 0xf4, 0xb6, - 0xb6, 0x61, 0x5c, 0x2b, 0x76, 0xe0, 0xdd, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2f, 0x43, 0x25, - 0xc5, 0x25, 0x03, 0x00, 0x00, + // 439 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x53, 0xd1, 0x6e, 0xd3, 0x30, + 0x14, 0xc5, 0x5d, 0x69, 0xc7, 0x4d, 0xcb, 0x82, 0x1f, 0x68, 0xd0, 0x24, 0x34, 0x15, 0x09, 0x4d, + 0x93, 0x48, 0xa4, 0x82, 0x78, 0x26, 0x6c, 0x9d, 0x88, 0x56, 0xba, 0x29, 0x4d, 0x55, 0x89, 0x97, + 0x2a, 0x8d, 0x6f, 0x8b, 0x69, 0x6b, 0x47, 0xae, 0x0b, 0xe4, 0x91, 0x1f, 0xe2, 0x33, 0xf8, 0x2e, + 0xe4, 0xac, 0x19, 0x69, 0xd5, 0xb1, 0xb7, 0x9c, 0x7b, 0x8e, 0xef, 0x39, 0x37, 0xbe, 0x86, 0x97, + 0xd3, 0x45, 0xa6, 0x91, 0xb3, 0x85, 0x97, 0x48, 0x85, 0x1e, 0x67, 0x28, 0x34, 0x9f, 0x72, 0x54, + 0x6e, 0xaa, 0xa4, 0x96, 0xb4, 0x59, 0xf0, 0xae, 0xe1, 0xdb, 0xbf, 0x09, 0x40, 0x70, 0xa7, 0xa1, + 0x1f, 0xa0, 0xa9, 0x70, 0x25, 0xd7, 0x2a, 0xc1, 0xb1, 0xce, 0x52, 0x74, 0xc8, 0x09, 0x39, 0x7d, + 0xda, 0x39, 0x76, 0xb7, 0x4e, 0xb9, 0xe1, 0x46, 0x13, 0x65, 0x29, 0x86, 0x0d, 0x55, 0x42, 0xd4, + 0x81, 0x7a, 0xaa, 0xe4, 0x37, 0x4c, 0xb4, 0x53, 0x39, 0x21, 0xa7, 0x4f, 0xc2, 0x02, 0xd2, 0xe7, + 0x50, 0x63, 0x72, 0x19, 0x73, 0xe1, 0x1c, 0xe4, 0xc4, 0x06, 0x51, 0x0a, 0x55, 0x11, 0x2f, 0xd1, + 0xa9, 0xe6, 0xd5, 0xfc, 0xdb, 0x74, 0xf9, 0x8e, 0x6a, 0xc5, 0xa5, 0x70, 0x1e, 0xdf, 0x76, 0xd9, + 0xc0, 0x76, 0x02, 0xc7, 0x23, 0xa9, 0xe6, 0xd3, 0x85, 0xfc, 0xd1, 0xfd, 0x89, 0xc9, 0x5a, 0x73, + 0x29, 0x4a, 0x03, 0x94, 0xec, 0xc9, 0x7d, 0xf6, 0x95, 0x87, 0xec, 0xdb, 0xbf, 0x08, 0xb4, 0xfa, + 0x92, 0xe1, 0x3e, 0x87, 0x16, 0xd4, 0x85, 0x64, 0x38, 0xe6, 0x6c, 0xe3, 0x50, 0x33, 0x30, 0x60, + 0xf4, 0x33, 0x34, 0xb0, 0xd0, 0x1b, 0xd6, 0xd8, 0x58, 0x9d, 0xb3, 0x9d, 0x5f, 0xf7, 0x9f, 0xf0, + 0xa1, 0x85, 0xff, 0x8a, 0xed, 0x3f, 0x04, 0x5a, 0x51, 0xbc, 0x9a, 0xef, 0xcb, 0xd0, 0x81, 0xba, + 0x8e, 0x57, 0xf3, 0x22, 0x83, 0xd5, 0x79, 0xb1, 0xe3, 0x52, 0x6a, 0x5a, 0x33, 0xca, 0x80, 0xd1, + 0x10, 0x9e, 0xe5, 0xb9, 0xf7, 0x64, 0x7c, 0xbd, 0x73, 0xfa, 0x9e, 0xd1, 0xc3, 0x23, 0xb1, 0x4d, + 0xd0, 0x57, 0x66, 0x5d, 0xb4, 0xca, 0xc6, 0xb1, 0xd6, 0xb8, 0x4c, 0x75, 0x7e, 0xb3, 0x4d, 0xb3, + 0x11, 0x5a, 0x65, 0xfe, 0x6d, 0xed, 0x6c, 0x08, 0x8d, 0xf2, 0xbe, 0xd0, 0x23, 0xb0, 0x86, 0xfd, + 0xc1, 0x4d, 0xf7, 0x3c, 0xb8, 0x0c, 0xba, 0x17, 0xf6, 0x23, 0x7a, 0x08, 0xd5, 0xc8, 0x1f, 0x5c, + 0xd9, 0x84, 0x36, 0xe0, 0x70, 0x74, 0x1d, 0x5e, 0x5d, 0xf6, 0xae, 0x47, 0x76, 0xc5, 0x08, 0x7b, + 0xfe, 0xb0, 0x7f, 0xfe, 0x69, 0x7c, 0xd3, 0xf3, 0xfb, 0xf6, 0x01, 0xb5, 0xa0, 0x7e, 0xe1, 0x47, + 0xfe, 0xa0, 0x1b, 0xd9, 0xd5, 0x8f, 0xef, 0xbf, 0xbc, 0x9b, 0x71, 0xfd, 0x75, 0x3d, 0x71, 0x13, + 0xb9, 0xf4, 0xf2, 0x01, 0xa4, 0x9a, 0x79, 0x77, 0xeb, 0x3f, 0x43, 0xe1, 0xa5, 0x93, 0x37, 0x33, + 0xe9, 0x6d, 0xbd, 0x88, 0x49, 0x2d, 0x7f, 0x07, 0x6f, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0xab, + 0x18, 0x11, 0x5a, 0x29, 0x03, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/interface.pb.go b/gen/pb-go/flyteidl/core/interface.pb.go index 97a5c6209..5bca18cb4 100644 --- a/gen/pb-go/flyteidl/core/interface.pb.go +++ b/gen/pb-go/flyteidl/core/interface.pb.go @@ -306,32 +306,32 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/interface.proto", fileDescriptor_cd7be6cbe85c3def) } var fileDescriptor_cd7be6cbe85c3def = []byte{ - // 424 bytes of a gzipped FileDescriptorProto + // 425 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x53, 0x5d, 0x6b, 0xd4, 0x40, 0x14, 0xed, 0xec, 0x6a, 0xbb, 0x7b, 0xa3, 0x55, 0xe6, 0x41, 0x63, 0xa8, 0x10, 0xf2, 0xb4, 0x45, - 0x9a, 0x48, 0xf4, 0x41, 0x7c, 0x2c, 0x88, 0x15, 0x15, 0x64, 0xf0, 0x03, 0xc4, 0x97, 0xc9, 0xe6, - 0xee, 0x76, 0x70, 0x9a, 0x19, 0x27, 0x93, 0x40, 0xfc, 0x1d, 0xfe, 0x0d, 0xdf, 0xfc, 0x81, 0x92, - 0x6c, 0x92, 0x26, 0x4b, 0x43, 0xdf, 0xe6, 0xce, 0x39, 0x27, 0xe7, 0x64, 0x0e, 0x17, 0x9e, 0x6e, - 0x64, 0x65, 0x51, 0xa4, 0x32, 0x5a, 0x2b, 0x83, 0x91, 0xc8, 0x2c, 0x9a, 0x0d, 0x5f, 0x63, 0xa8, - 0x8d, 0xb2, 0x8a, 0xde, 0xef, 0xe0, 0xb0, 0x86, 0xbd, 0x27, 0x63, 0xb6, 0xad, 0x34, 0xe6, 0x3b, - 0xa6, 0x77, 0x32, 0x86, 0xa4, 0xb0, 0x68, 0xb8, 0x6c, 0xd1, 0xe0, 0x07, 0x2c, 0xbe, 0x72, 0x23, - 0x78, 0x22, 0x91, 0x86, 0x70, 0xa7, 0x16, 0xba, 0xc4, 0x27, 0x2b, 0x27, 0xf6, 0xc2, 0x91, 0x45, - 0xf8, 0x61, 0x27, 0xfc, 0x5c, 0x69, 0x64, 0x0d, 0x8f, 0xfa, 0xe0, 0xa4, 0x98, 0xaf, 0x8d, 0xd0, - 0x56, 0xa8, 0xcc, 0x9d, 0xf9, 0x64, 0xb5, 0x64, 0xc3, 0xab, 0xe0, 0x2f, 0x01, 0xa7, 0xfb, 0xfc, - 0x47, 0xae, 0xe9, 0x5b, 0x58, 0x96, 0xed, 0x98, 0xbb, 0xc4, 0x9f, 0xaf, 0x9c, 0xf8, 0x74, 0xcf, - 0x66, 0x40, 0xef, 0xcf, 0xf9, 0x9b, 0xcc, 0x9a, 0x8a, 0x5d, 0x6b, 0xbd, 0x2f, 0x70, 0x3c, 0x06, - 0xe9, 0x43, 0x98, 0xff, 0xc4, 0xaa, 0xc9, 0xbe, 0x64, 0xf5, 0x91, 0x9e, 0xc1, 0xdd, 0x92, 0xcb, - 0x02, 0x9b, 0x60, 0x4e, 0xfc, 0x78, 0xc2, 0x88, 0xed, 0x58, 0xaf, 0x67, 0xaf, 0x48, 0xf0, 0x1b, - 0x8e, 0xeb, 0xff, 0x4b, 0xdf, 0x75, 0xaf, 0x4d, 0x63, 0x38, 0x14, 0x99, 0x2e, 0x6c, 0x3e, 0xf1, - 0x2a, 0x83, 0xb8, 0xac, 0x65, 0xd2, 0x97, 0x70, 0xa4, 0x0a, 0xdb, 0x88, 0x66, 0xb7, 0x8a, 0x3a, - 0x6a, 0xf0, 0x87, 0xc0, 0xf2, 0x13, 0x37, 0xfc, 0x0a, 0x2d, 0x1a, 0x7a, 0x0a, 0xf3, 0x92, 0x9b, - 0xd6, 0x74, 0x32, 0x7a, 0xcd, 0xa1, 0x31, 0x1c, 0xa5, 0xb8, 0xe1, 0x85, 0xb4, 0xad, 0xdd, 0xa3, - 0x9b, 0x9b, 0xbb, 0x38, 0x60, 0x1d, 0x91, 0x9e, 0xc0, 0xc2, 0xe0, 0xaf, 0x42, 0x18, 0x4c, 0xdd, - 0xb9, 0x4f, 0x56, 0x8b, 0x8b, 0x03, 0xd6, 0xdf, 0x9c, 0x03, 0x2c, 0x12, 0xbc, 0xe4, 0xa5, 0x50, - 0x26, 0xf8, 0x47, 0xe0, 0x5e, 0x1f, 0xab, 0xee, 0xf0, 0x3d, 0x80, 0xee, 0xe6, 0xae, 0xc4, 0x67, - 0x7b, 0x8e, 0x43, 0xc1, 0xf5, 0xd0, 0xd6, 0x38, 0x90, 0x7b, 0xdf, 0xe0, 0xc1, 0x1e, 0x7c, 0x43, - 0x91, 0xe1, 0xb8, 0x48, 0x77, 0xca, 0x6c, 0xd0, 0xe4, 0x79, 0xfc, 0xfd, 0xf9, 0x56, 0xd8, 0xcb, - 0x22, 0x09, 0xd7, 0xea, 0x2a, 0x92, 0xd5, 0xc6, 0x46, 0xfd, 0x1e, 0x6c, 0x31, 0x8b, 0x74, 0x72, - 0xb6, 0x55, 0xd1, 0x68, 0x35, 0x92, 0xc3, 0x66, 0x25, 0x5e, 0xfc, 0x0f, 0x00, 0x00, 0xff, 0xff, - 0xe4, 0x24, 0x29, 0xd5, 0x7b, 0x03, 0x00, 0x00, + 0x9a, 0x40, 0x2c, 0x22, 0x3e, 0x16, 0xc4, 0x8a, 0x0a, 0x32, 0xf8, 0x01, 0xe2, 0xcb, 0x24, 0xb9, + 0x9b, 0x0e, 0xa6, 0x99, 0x71, 0x32, 0x09, 0xc4, 0xdf, 0xe1, 0xdf, 0xf0, 0xcd, 0x1f, 0x28, 0xc9, + 0x26, 0x69, 0xb2, 0x34, 0xf8, 0x36, 0x77, 0xce, 0x39, 0x39, 0x27, 0x73, 0xb8, 0xf0, 0x74, 0x9b, + 0xd5, 0x06, 0x45, 0x92, 0x05, 0xb1, 0xd4, 0x18, 0x88, 0xdc, 0xa0, 0xde, 0xf2, 0x18, 0x7d, 0xa5, + 0xa5, 0x91, 0xf4, 0x7e, 0x0f, 0xfb, 0x0d, 0xec, 0x3c, 0x99, 0xb2, 0x4d, 0xad, 0xb0, 0xd8, 0x31, + 0x9d, 0x93, 0x29, 0x94, 0x09, 0x83, 0x9a, 0x67, 0x1d, 0xea, 0x7d, 0x87, 0xd5, 0x17, 0xae, 0x05, + 0x8f, 0x32, 0xa4, 0x3e, 0xdc, 0x69, 0x84, 0x36, 0x71, 0xc9, 0xc6, 0x0a, 0x1d, 0x7f, 0x62, 0xe1, + 0xbf, 0xdf, 0x09, 0x3f, 0xd5, 0x0a, 0x59, 0xcb, 0xa3, 0x2e, 0x58, 0x09, 0x16, 0xb1, 0x16, 0xca, + 0x08, 0x99, 0xdb, 0x0b, 0x97, 0x6c, 0xd6, 0x6c, 0x7c, 0xe5, 0xfd, 0x21, 0x60, 0xf5, 0x9f, 0xff, + 0xc0, 0x15, 0x7d, 0x03, 0xeb, 0xaa, 0x1b, 0x0b, 0x9b, 0xb8, 0xcb, 0x8d, 0x15, 0x9e, 0xee, 0xd9, + 0x8c, 0xe8, 0xc3, 0xb9, 0x78, 0x9d, 0x1b, 0x5d, 0xb3, 0x1b, 0xad, 0xf3, 0x19, 0x8e, 0xa7, 0x20, + 0x7d, 0x08, 0xcb, 0x1f, 0x58, 0xb7, 0xd9, 0xd7, 0xac, 0x39, 0xd2, 0x33, 0xb8, 0x5b, 0xf1, 0xac, + 0xc4, 0x36, 0x98, 0x15, 0x3e, 0x9e, 0x31, 0x62, 0x3b, 0xd6, 0xab, 0xc5, 0x4b, 0xe2, 0xfd, 0x82, + 0xe3, 0xe6, 0xff, 0x92, 0xb7, 0xfd, 0x6b, 0xd3, 0x10, 0x0e, 0x45, 0xae, 0x4a, 0x53, 0xcc, 0xbc, + 0xca, 0x28, 0x2e, 0xeb, 0x98, 0xf4, 0x1c, 0x8e, 0x64, 0x69, 0x5a, 0xd1, 0xe2, 0xbf, 0xa2, 0x9e, + 0xea, 0xfd, 0x26, 0xb0, 0xfe, 0xc8, 0x35, 0xbf, 0x46, 0x83, 0x9a, 0x9e, 0xc2, 0xb2, 0xe2, 0xba, + 0x33, 0x9d, 0x8d, 0xde, 0x70, 0x68, 0x08, 0x47, 0x09, 0x6e, 0x79, 0x99, 0x99, 0xce, 0xee, 0xd1, + 0xed, 0xcd, 0x5d, 0x1e, 0xb0, 0x9e, 0x48, 0x4f, 0x60, 0xa5, 0xf1, 0x67, 0x29, 0x34, 0x26, 0xf6, + 0xd2, 0x25, 0x9b, 0xd5, 0xe5, 0x01, 0x1b, 0x6e, 0x2e, 0x00, 0x56, 0x11, 0x5e, 0xf1, 0x4a, 0x48, + 0xed, 0xfd, 0x25, 0x70, 0x6f, 0x88, 0xd5, 0x74, 0xf8, 0x0e, 0x40, 0xf5, 0x73, 0x5f, 0xe2, 0xb3, + 0x3d, 0xc7, 0xb1, 0xe0, 0x66, 0xe8, 0x6a, 0x1c, 0xc9, 0x9d, 0xaf, 0xf0, 0x60, 0x0f, 0xbe, 0xa5, + 0x48, 0x7f, 0x5a, 0xa4, 0x3d, 0x67, 0x36, 0x6a, 0xf2, 0xe2, 0xc5, 0xb7, 0xf3, 0x54, 0x98, 0xab, + 0x32, 0xf2, 0x63, 0x79, 0x1d, 0xb4, 0x02, 0xa9, 0xd3, 0x60, 0xd8, 0x85, 0x14, 0xf3, 0x40, 0x45, + 0x67, 0xa9, 0x0c, 0x26, 0xeb, 0x11, 0x1d, 0xb6, 0x6b, 0xf1, 0xfc, 0x5f, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x61, 0xf3, 0xc7, 0x07, 0x7f, 0x03, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/literals.pb.go b/gen/pb-go/flyteidl/core/literals.pb.go index de7c75695..b321ba4e2 100644 --- a/gen/pb-go/flyteidl/core/literals.pb.go +++ b/gen/pb-go/flyteidl/core/literals.pb.go @@ -1073,62 +1073,62 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/literals.proto", fileDescriptor_a1a523b10667cdfb) } var fileDescriptor_a1a523b10667cdfb = []byte{ - // 908 bytes of a gzipped FileDescriptorProto + // 910 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x56, 0xdd, 0x8e, 0xdb, 0x44, 0x14, 0x8e, 0x37, 0xd9, 0x38, 0x39, 0xd9, 0x20, 0x18, 0xb6, 0xe0, 0x86, 0x52, 0x82, 0x41, 0x22, - 0x55, 0xd9, 0x78, 0x49, 0x51, 0x59, 0x95, 0xbb, 0xb4, 0xa5, 0x41, 0x50, 0xb5, 0x9d, 0x54, 0x45, - 0xe2, 0xa6, 0x1a, 0x27, 0x13, 0x77, 0x54, 0xc7, 0x63, 0x4d, 0x26, 0x2b, 0xf9, 0x09, 0x78, 0x13, - 0x1e, 0x80, 0x0b, 0x5e, 0x8b, 0x37, 0x40, 0x68, 0xfe, 0x9c, 0x1f, 0x27, 0x15, 0xbd, 0x1b, 0xcf, - 0xf9, 0xce, 0x99, 0xef, 0x7c, 0xe7, 0x9b, 0x49, 0xe0, 0xd6, 0x22, 0x2d, 0x24, 0x65, 0xf3, 0x34, - 0x9a, 0x71, 0x41, 0xa3, 0x94, 0x49, 0x2a, 0x48, 0xba, 0x1a, 0xe6, 0x82, 0x4b, 0x8e, 0xba, 0x2e, - 0x3a, 0x54, 0xd1, 0xde, 0x17, 0x09, 0xe7, 0x49, 0x4a, 0x23, 0x1d, 0x8c, 0xd7, 0x8b, 0x48, 0xb2, - 0x25, 0x5d, 0x49, 0xb2, 0xcc, 0x0d, 0xbe, 0x77, 0x7b, 0x1f, 0x30, 0x5f, 0x0b, 0x22, 0x19, 0xcf, - 0x6c, 0xfc, 0xd6, 0x7e, 0x7c, 0x25, 0xc5, 0x7a, 0x26, 0x6d, 0xf4, 0xe6, 0x2e, 0x17, 0x59, 0xe4, - 0xd4, 0x12, 0x09, 0xff, 0x38, 0x81, 0xf6, 0x73, 0xc1, 0x96, 0x4c, 0xb2, 0x6b, 0x8a, 0x7a, 0xe0, - 0xb3, 0x4c, 0xd2, 0x84, 0x8a, 0xc0, 0xeb, 0x7b, 0x83, 0xfa, 0xa4, 0x86, 0xdd, 0x06, 0xfa, 0x12, - 0x3a, 0x8b, 0x94, 0x13, 0xf9, 0xfa, 0x9a, 0xa4, 0x6b, 0x1a, 0x9c, 0xf4, 0xbd, 0x81, 0x37, 0xa9, - 0x61, 0xd0, 0x9b, 0xaf, 0xd4, 0x1e, 0xfa, 0x0a, 0xce, 0x56, 0x52, 0xb0, 0x2c, 0xb1, 0x98, 0x7a, - 0xdf, 0x1b, 0xb4, 0x27, 0x35, 0xdc, 0x31, 0xbb, 0x06, 0xd4, 0x03, 0x3f, 0xe6, 0x3c, 0xa5, 0x24, - 0x0b, 0x1a, 0x7d, 0x6f, 0xd0, 0x52, 0x67, 0xd8, 0x0d, 0x74, 0x05, 0xad, 0x39, 0x91, 0x54, 0x75, - 0x1f, 0x9c, 0xf6, 0xbd, 0x41, 0x67, 0xd4, 0x1b, 0x9a, 0xce, 0x86, 0xae, 0xb3, 0xe1, 0x4b, 0x27, - 0xcd, 0xa4, 0x86, 0x4b, 0x34, 0xfa, 0x01, 0x5a, 0x4e, 0x92, 0xa0, 0xa9, 0x33, 0x6f, 0x56, 0x32, - 0x1f, 0x59, 0x80, 0x4e, 0xb4, 0xeb, 0xb1, 0x0f, 0xa7, 0x9a, 0x6c, 0xd8, 0x84, 0xc6, 0x2b, 0xce, - 0xe6, 0xe1, 0x0b, 0x68, 0x8c, 0x53, 0x1e, 0xab, 0x8a, 0x4b, 0x2a, 0xc9, 0x9c, 0x48, 0xa2, 0xc5, - 0xe8, 0x8c, 0x3e, 0x1b, 0xee, 0x4c, 0x6d, 0xa8, 0x60, 0x4f, 0x2d, 0x04, 0x97, 0x60, 0xf4, 0x21, - 0xd4, 0xd7, 0x82, 0x99, 0xe6, 0xb1, 0x5a, 0x86, 0x3f, 0xc2, 0xd9, 0x36, 0x16, 0xdd, 0x85, 0x86, - 0x9a, 0x81, 0x2d, 0xfb, 0xe9, 0x81, 0xb2, 0x2f, 0x8b, 0x9c, 0x62, 0x0d, 0x0a, 0x2f, 0xa1, 0x39, - 0x66, 0x19, 0x11, 0x05, 0x3a, 0xb7, 0x54, 0x75, 0xde, 0x19, 0x36, 0x1f, 0xea, 0x38, 0x49, 0x12, - 0x3d, 0x8f, 0x36, 0x56, 0xcb, 0xf0, 0x67, 0x68, 0x4e, 0x67, 0x6f, 0xe8, 0xb2, 0xa4, 0xe2, 0x95, - 0x54, 0xd0, 0x85, 0x3d, 0xba, 0x6e, 0x35, 0xda, 0x3d, 0xda, 0xa4, 0x6d, 0x1d, 0xfe, 0xcf, 0x89, - 0xaa, 0x45, 0x52, 0x22, 0xd0, 0x15, 0xb4, 0x73, 0x67, 0x14, 0xcb, 0x3c, 0xd8, 0x4b, 0x2f, 0x8d, - 0x34, 0xa9, 0xe1, 0x0d, 0x18, 0xdd, 0x81, 0x46, 0x9c, 0xf2, 0x58, 0x53, 0xec, 0x8c, 0x3e, 0x3e, - 0xd0, 0xee, 0xa4, 0x86, 0x35, 0x04, 0x45, 0xd0, 0x8c, 0x75, 0xb3, 0x96, 0xe0, 0x8d, 0x7d, 0xb0, - 0x0e, 0x4e, 0x6a, 0xd8, 0xc2, 0x54, 0xc2, 0x4a, 0x93, 0xd6, 0x66, 0xaa, 0x26, 0x98, 0x8e, 0x54, - 0x82, 0x81, 0xa1, 0x11, 0xb4, 0x33, 0x9e, 0xd1, 0xd7, 0x5a, 0x85, 0xd3, 0x83, 0x8c, 0x94, 0x0d, - 0x94, 0x47, 0x14, 0x4e, 0x69, 0x81, 0xbe, 0x85, 0x53, 0x2a, 0x04, 0x17, 0xd6, 0x59, 0xe7, 0x7b, - 0xf8, 0xc7, 0x2a, 0x36, 0xa9, 0x61, 0x03, 0x42, 0xf7, 0xc0, 0x4f, 0x68, 0x46, 0x05, 0x9b, 0x05, - 0xbe, 0x1d, 0xf0, 0xbe, 0x13, 0xa7, 0xfa, 0x76, 0x2a, 0xe7, 0x5b, 0xe4, 0xc6, 0x86, 0x7f, 0x7b, - 0xe0, 0xff, 0x6a, 0x1e, 0x0b, 0xd3, 0x9c, 0x12, 0xdf, 0xea, 0x5d, 0x6d, 0x4e, 0x05, 0x4d, 0x73, - 0x7a, 0x46, 0x63, 0x80, 0x19, 0x4f, 0x53, 0x3a, 0xd3, 0xf7, 0xc0, 0xe8, 0xdd, 0xdf, 0x4b, 0xb2, - 0xc5, 0x1f, 0x96, 0x38, 0x75, 0x89, 0x37, 0x59, 0xe8, 0x02, 0xea, 0x4b, 0x92, 0x1f, 0x31, 0x88, - 0x4d, 0x7e, 0x4a, 0xd4, 0xed, 0x53, 0xb8, 0x0d, 0xf1, 0x27, 0xf0, 0x51, 0xa5, 0x34, 0x1a, 0x41, - 0xcb, 0xbd, 0x7c, 0x81, 0xd7, 0xaf, 0x0f, 0x3a, 0xa3, 0x4f, 0x0e, 0x57, 0xc4, 0x25, 0x2e, 0xfc, - 0xd3, 0x03, 0xd8, 0x9c, 0x83, 0x1e, 0x56, 0x4a, 0x7c, 0x73, 0x94, 0x94, 0x5b, 0xae, 0x1e, 0x67, - 0x52, 0x14, 0x9b, 0x9a, 0xbd, 0x29, 0x74, 0x77, 0x42, 0xea, 0x66, 0xbc, 0xa5, 0x85, 0xbb, 0x19, - 0x6f, 0x69, 0xa1, 0x86, 0xbc, 0x79, 0xd9, 0x8e, 0xf3, 0x34, 0xa0, 0x07, 0x27, 0x57, 0x5e, 0xf8, - 0x0c, 0x6e, 0x8c, 0x59, 0x36, 0x67, 0x59, 0xf2, 0x88, 0x48, 0xb2, 0xd5, 0xf5, 0x7d, 0x68, 0xc5, - 0x26, 0xe0, 0x28, 0xf7, 0xaa, 0x3e, 0x76, 0x79, 0xb8, 0xc4, 0x86, 0x7f, 0x79, 0xf0, 0xc1, 0x56, - 0x44, 0x75, 0xff, 0xa4, 0x52, 0xea, 0xee, 0xf1, 0x52, 0x4a, 0x01, 0xfb, 0xe9, 0x14, 0x70, 0xc9, - 0xbd, 0xdf, 0xa0, 0xbb, 0x13, 0x3a, 0xa0, 0xc0, 0xe5, 0xae, 0x02, 0xef, 0xe2, 0xbc, 0xa5, 0xc2, - 0xbf, 0x1e, 0x74, 0xb6, 0x42, 0xef, 0x6f, 0xda, 0x9f, 0x0e, 0x98, 0xf6, 0xeb, 0xe3, 0x67, 0x1f, - 0x35, 0xee, 0x03, 0xf0, 0x73, 0xc1, 0x97, 0x6c, 0xe5, 0x5e, 0xb7, 0xdb, 0x7b, 0x45, 0x9e, 0xad, - 0x65, 0xbe, 0x96, 0x98, 0x2e, 0xa8, 0xa0, 0xd9, 0x4c, 0x3d, 0x52, 0x2e, 0x01, 0x7d, 0x67, 0x4c, - 0x6f, 0xde, 0x90, 0xcf, 0xdf, 0xa9, 0x70, 0xc5, 0xf8, 0x2f, 0xc0, 0xb7, 0x08, 0xa5, 0xe9, 0xb5, - 0x6d, 0xbc, 0x8d, 0xd5, 0x12, 0x7d, 0x0f, 0xbe, 0x1d, 0xc1, 0xff, 0x50, 0xd5, 0x41, 0xc3, 0xfb, - 0x70, 0xf6, 0x0b, 0x2d, 0xf4, 0xef, 0xe5, 0x73, 0xc2, 0xc4, 0x81, 0x59, 0x9d, 0x6f, 0xcf, 0xaa, - 0x6d, 0xe7, 0x11, 0xde, 0x81, 0x2e, 0xa6, 0x52, 0x14, 0x53, 0x29, 0x88, 0xa4, 0x49, 0x81, 0x02, - 0xf0, 0x05, 0x95, 0x82, 0xd1, 0x95, 0x7e, 0xeb, 0xba, 0xd8, 0x7d, 0x8e, 0x47, 0xbf, 0x5f, 0x26, - 0x4c, 0xbe, 0x59, 0xc7, 0xc3, 0x19, 0x5f, 0x46, 0x69, 0xb1, 0x90, 0x51, 0xf9, 0x2f, 0x21, 0xa1, - 0x59, 0x94, 0xc7, 0x17, 0x09, 0x8f, 0x76, 0xfe, 0x38, 0xc4, 0x4d, 0xfd, 0x80, 0xdd, 0xfb, 0x2f, - 0x00, 0x00, 0xff, 0xff, 0x4b, 0x7b, 0x8a, 0xb2, 0xdc, 0x08, 0x00, 0x00, + 0x55, 0xd9, 0xb8, 0xa4, 0xd5, 0xb2, 0x2a, 0x77, 0x69, 0x4b, 0x83, 0xa0, 0x6a, 0x3b, 0x5b, 0x15, + 0x89, 0x9b, 0x6a, 0x9c, 0xcc, 0xba, 0xa3, 0x3a, 0x1e, 0x6b, 0x32, 0x59, 0xc9, 0x4f, 0xc0, 0x9b, + 0xf0, 0x00, 0x5c, 0xf0, 0x5a, 0xbc, 0x01, 0x42, 0xf3, 0xe7, 0x24, 0x76, 0x52, 0xc1, 0xdd, 0x78, + 0xce, 0x77, 0xce, 0x7c, 0xe7, 0x3b, 0xdf, 0x4c, 0x02, 0xb7, 0xae, 0xd2, 0x42, 0x52, 0xb6, 0x48, + 0xa3, 0x39, 0x17, 0x34, 0x4a, 0x99, 0xa4, 0x82, 0xa4, 0xab, 0x71, 0x2e, 0xb8, 0xe4, 0xa8, 0xef, + 0xa2, 0x63, 0x15, 0x1d, 0x7c, 0x91, 0x70, 0x9e, 0xa4, 0x34, 0xd2, 0xc1, 0x78, 0x7d, 0x15, 0x49, + 0xb6, 0xa4, 0x2b, 0x49, 0x96, 0xb9, 0xc1, 0x0f, 0x6e, 0x57, 0x01, 0x8b, 0xb5, 0x20, 0x92, 0xf1, + 0xcc, 0xc6, 0x6f, 0x55, 0xe3, 0x2b, 0x29, 0xd6, 0x73, 0x69, 0xa3, 0x37, 0x77, 0xb9, 0xc8, 0x22, + 0xa7, 0x96, 0x48, 0xf8, 0xfb, 0x11, 0x74, 0x5f, 0x08, 0xb6, 0x64, 0x92, 0x5d, 0x53, 0x34, 0x00, + 0x9f, 0x65, 0x92, 0x26, 0x54, 0x04, 0xde, 0xd0, 0x1b, 0x35, 0x67, 0x0d, 0xec, 0x36, 0xd0, 0x97, + 0xd0, 0xbb, 0x4a, 0x39, 0x91, 0x6f, 0xae, 0x49, 0xba, 0xa6, 0xc1, 0xd1, 0xd0, 0x1b, 0x79, 0xb3, + 0x06, 0x06, 0xbd, 0xf9, 0x5a, 0xed, 0xa1, 0xaf, 0xe0, 0x64, 0x25, 0x05, 0xcb, 0x12, 0x8b, 0x69, + 0x0e, 0xbd, 0x51, 0x77, 0xd6, 0xc0, 0x3d, 0xb3, 0x6b, 0x40, 0x03, 0xf0, 0x63, 0xce, 0x53, 0x4a, + 0xb2, 0xa0, 0x35, 0xf4, 0x46, 0x1d, 0x75, 0x86, 0xdd, 0x40, 0x17, 0xd0, 0x59, 0x10, 0x49, 0x55, + 0xf7, 0xc1, 0xf1, 0xd0, 0x1b, 0xf5, 0x26, 0x83, 0xb1, 0xe9, 0x6c, 0xec, 0x3a, 0x1b, 0xbf, 0x72, + 0xd2, 0xcc, 0x1a, 0xb8, 0x44, 0xa3, 0xef, 0xa1, 0xe3, 0x24, 0x09, 0xda, 0x3a, 0xf3, 0x66, 0x2d, + 0xf3, 0xb1, 0x05, 0xe8, 0x44, 0xbb, 0x9e, 0xfa, 0x70, 0xac, 0xc9, 0x86, 0x6d, 0x68, 0xbd, 0xe6, + 0x6c, 0x11, 0xbe, 0x84, 0xd6, 0x34, 0xe5, 0xb1, 0xaa, 0xb8, 0xa4, 0x92, 0x2c, 0x88, 0x24, 0x5a, + 0x8c, 0xde, 0xe4, 0xb3, 0xf1, 0xce, 0xd4, 0xc6, 0x0a, 0xf6, 0xcc, 0x42, 0x70, 0x09, 0x46, 0x1f, + 0x42, 0x73, 0x2d, 0x98, 0x69, 0x1e, 0xab, 0x65, 0xf8, 0x03, 0x9c, 0x6c, 0x63, 0xd1, 0x5d, 0x68, + 0xa9, 0x19, 0xd8, 0xb2, 0x9f, 0xee, 0x29, 0xfb, 0xaa, 0xc8, 0x29, 0xd6, 0xa0, 0xf0, 0x1e, 0xb4, + 0xa7, 0x2c, 0x23, 0xa2, 0x40, 0xa7, 0x96, 0xaa, 0xce, 0x3b, 0xc1, 0xe6, 0x43, 0x1d, 0x27, 0x49, + 0xa2, 0xe7, 0xd1, 0xc5, 0x6a, 0x19, 0xfe, 0x04, 0xed, 0xcb, 0xf9, 0x5b, 0xba, 0x2c, 0xa9, 0x78, + 0x25, 0x15, 0x74, 0x66, 0x8f, 0x6e, 0x5a, 0x8d, 0x76, 0x8f, 0x36, 0x69, 0x5b, 0x87, 0xff, 0x7d, + 0xa4, 0x6a, 0x91, 0x94, 0x08, 0x74, 0x01, 0xdd, 0xdc, 0x19, 0xc5, 0x32, 0x0f, 0x2a, 0xe9, 0xa5, + 0x91, 0x66, 0x0d, 0xbc, 0x01, 0xa3, 0x3b, 0xd0, 0x8a, 0x53, 0x1e, 0x6b, 0x8a, 0xbd, 0xc9, 0xc7, + 0x7b, 0xda, 0x9d, 0x35, 0xb0, 0x86, 0xa0, 0x08, 0xda, 0xb1, 0x6e, 0xd6, 0x12, 0xbc, 0x51, 0x05, + 0xeb, 0xe0, 0xac, 0x81, 0x2d, 0x4c, 0x25, 0xac, 0x34, 0x69, 0x6d, 0xa6, 0x7a, 0x82, 0xe9, 0x48, + 0x25, 0x18, 0x18, 0x9a, 0x40, 0x37, 0xe3, 0x19, 0x7d, 0xa3, 0x55, 0x38, 0xde, 0xcb, 0x48, 0xd9, + 0x40, 0x79, 0x44, 0xe1, 0x94, 0x16, 0xe8, 0x5b, 0x38, 0xa6, 0x42, 0x70, 0x61, 0x9d, 0x75, 0x5a, + 0xc1, 0x3f, 0x51, 0xb1, 0x59, 0x03, 0x1b, 0x10, 0xba, 0x0f, 0x7e, 0x42, 0x33, 0x2a, 0xd8, 0x3c, + 0xf0, 0xed, 0x80, 0xab, 0x4e, 0xbc, 0xd4, 0xb7, 0x53, 0x39, 0xdf, 0x22, 0x37, 0x36, 0xfc, 0xcb, + 0x03, 0xff, 0x17, 0xf3, 0x58, 0x98, 0xe6, 0x94, 0xf8, 0x56, 0xef, 0x7a, 0x73, 0x2a, 0x68, 0x9a, + 0xd3, 0x33, 0x9a, 0x02, 0xcc, 0x79, 0x9a, 0xd2, 0xb9, 0xbe, 0x07, 0x46, 0xef, 0x61, 0x25, 0xc9, + 0x16, 0x7f, 0x54, 0xe2, 0xd4, 0x25, 0xde, 0x64, 0xa1, 0x33, 0x68, 0x2e, 0x49, 0x7e, 0xc0, 0x20, + 0x36, 0xf9, 0x19, 0x51, 0xb7, 0x4f, 0xe1, 0x36, 0xc4, 0x9f, 0xc2, 0x47, 0xb5, 0xd2, 0x68, 0x02, + 0x1d, 0xf7, 0xf2, 0x05, 0xde, 0xb0, 0x39, 0xea, 0x4d, 0x3e, 0xd9, 0x5f, 0x11, 0x97, 0xb8, 0xf0, + 0x0f, 0x0f, 0x60, 0x73, 0x0e, 0x7a, 0x54, 0x2b, 0xf1, 0xcd, 0x41, 0x52, 0x6e, 0xb9, 0x7a, 0x92, + 0x49, 0x51, 0x6c, 0x6a, 0x0e, 0x2e, 0xa1, 0xbf, 0x13, 0x52, 0x37, 0xe3, 0x1d, 0x2d, 0xdc, 0xcd, + 0x78, 0x47, 0x0b, 0x35, 0xe4, 0xcd, 0xcb, 0x76, 0x98, 0xa7, 0x01, 0x3d, 0x3c, 0xba, 0xf0, 0xc2, + 0xe7, 0x70, 0x63, 0xca, 0xb2, 0x05, 0xcb, 0x92, 0xc7, 0x44, 0x92, 0xad, 0xae, 0xcf, 0xa1, 0x13, + 0x9b, 0x80, 0xa3, 0x3c, 0xa8, 0xfb, 0xd8, 0xe5, 0xe1, 0x12, 0x1b, 0xfe, 0xe9, 0xc1, 0x07, 0x5b, + 0x11, 0xd5, 0xfd, 0xd3, 0x5a, 0xa9, 0xbb, 0x87, 0x4b, 0x29, 0x05, 0xec, 0xa7, 0x53, 0xc0, 0x25, + 0x0f, 0x7e, 0x85, 0xfe, 0x4e, 0x68, 0x8f, 0x02, 0xf7, 0x76, 0x15, 0x78, 0x1f, 0xe7, 0x2d, 0x15, + 0xfe, 0xf1, 0xa0, 0xb7, 0x15, 0xfa, 0xff, 0xa6, 0xfd, 0x71, 0x8f, 0x69, 0xbf, 0x3e, 0x7c, 0xf6, + 0x41, 0xe3, 0x3e, 0x04, 0x3f, 0x17, 0x7c, 0xc9, 0x56, 0xee, 0x75, 0xbb, 0x5d, 0x29, 0xf2, 0x7c, + 0x2d, 0xf3, 0xb5, 0xc4, 0xf4, 0x8a, 0x0a, 0x9a, 0xcd, 0xd5, 0x23, 0xe5, 0x12, 0xd0, 0x77, 0xc6, + 0xf4, 0xe6, 0x0d, 0xf9, 0xfc, 0xbd, 0x0a, 0xd7, 0x8c, 0xff, 0x12, 0x7c, 0x8b, 0x50, 0x9a, 0x5e, + 0xdb, 0xc6, 0xbb, 0x58, 0x2d, 0xd1, 0x03, 0xf0, 0xed, 0x08, 0xfe, 0x83, 0xaa, 0x0e, 0x1a, 0x9e, + 0xc3, 0xc9, 0xcf, 0xb4, 0xd0, 0xbf, 0x97, 0x2f, 0x08, 0x13, 0x7b, 0x66, 0x75, 0xba, 0x3d, 0xab, + 0xae, 0x9d, 0x47, 0x78, 0x07, 0xfa, 0x98, 0x4a, 0x51, 0x5c, 0x4a, 0x41, 0x24, 0x4d, 0x0a, 0x14, + 0x80, 0x2f, 0xa8, 0x14, 0x8c, 0xae, 0xf4, 0x5b, 0xd7, 0xc7, 0xee, 0x73, 0x7a, 0xfe, 0xdb, 0x83, + 0x84, 0xc9, 0xb7, 0xeb, 0x78, 0x3c, 0xe7, 0xcb, 0x48, 0x73, 0xe2, 0x22, 0x89, 0xca, 0x7f, 0x0a, + 0x09, 0xcd, 0xa2, 0x3c, 0x3e, 0x4b, 0x78, 0xb4, 0xf3, 0xe7, 0x21, 0x6e, 0xeb, 0x47, 0xec, 0xfe, + 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x88, 0xd3, 0x23, 0xe0, 0x08, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/tasks.pb.go b/gen/pb-go/flyteidl/core/tasks.pb.go index 76586ed89..569c8219c 100644 --- a/gen/pb-go/flyteidl/core/tasks.pb.go +++ b/gen/pb-go/flyteidl/core/tasks.pb.go @@ -905,78 +905,78 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/tasks.proto", fileDescriptor_bd8423ba58d6ed80) } var fileDescriptor_bd8423ba58d6ed80 = []byte{ - // 1167 bytes of a gzipped FileDescriptorProto + // 1168 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x56, 0x6d, 0x6f, 0xdb, 0x36, 0x10, 0x8e, 0x95, 0xc4, 0x2f, 0xe7, 0x38, 0x55, 0xd8, 0xad, 0x53, 0xb3, 0xb6, 0x0b, 0x84, 0xb5, - 0xeb, 0x3a, 0xd4, 0x5e, 0x5d, 0xa0, 0xeb, 0x36, 0xa0, 0x40, 0xd2, 0xb8, 0x6d, 0x96, 0xf8, 0x05, - 0x8c, 0xd3, 0xae, 0xfb, 0xa2, 0x31, 0x12, 0xed, 0x12, 0x95, 0x44, 0x8d, 0xa2, 0x32, 0xf8, 0x17, + 0xeb, 0x3a, 0xd4, 0x46, 0xdd, 0x21, 0xeb, 0x36, 0xa0, 0x40, 0xd2, 0xb8, 0x6d, 0x96, 0xf8, 0x05, + 0x8c, 0xd3, 0xae, 0xfb, 0xa2, 0x31, 0x12, 0xad, 0x12, 0xb5, 0x44, 0x8d, 0xa2, 0x32, 0xf8, 0x17, 0xed, 0xcb, 0xbe, 0xee, 0xc3, 0xfe, 0xce, 0xb0, 0xff, 0xb1, 0x81, 0x14, 0x25, 0xbf, 0x14, 0x59, - 0xb0, 0x4f, 0xe6, 0xdd, 0xf3, 0xdc, 0x91, 0xbc, 0x3b, 0x3f, 0x14, 0xdc, 0x9c, 0x84, 0x33, 0x49, - 0x59, 0x10, 0x76, 0x7c, 0x2e, 0x68, 0x47, 0x92, 0xf4, 0x7d, 0xda, 0x4e, 0x04, 0x97, 0x1c, 0xb5, - 0x0a, 0xa8, 0xad, 0xa0, 0xdd, 0x3b, 0xcb, 0x4c, 0x16, 0xd0, 0x58, 0xb2, 0x09, 0xa3, 0x22, 0xa7, - 0xef, 0xde, 0x5e, 0xc1, 0x63, 0x49, 0xc5, 0x84, 0xf8, 0xd4, 0xc0, 0xb7, 0x96, 0xe1, 0x90, 0x49, - 0x2a, 0x48, 0x68, 0xf6, 0xda, 0xbd, 0x33, 0xe5, 0x7c, 0x1a, 0xd2, 0x8e, 0xb6, 0xce, 0xb3, 0x49, - 0x27, 0xc8, 0x04, 0x91, 0x8c, 0xc7, 0x45, 0xf4, 0x2a, 0x9e, 0x4a, 0x91, 0xf9, 0x32, 0x47, 0xdd, - 0x3f, 0x2d, 0x68, 0x60, 0x9a, 0xf2, 0x4c, 0xf8, 0x34, 0x45, 0x07, 0x50, 0x17, 0xf4, 0x97, 0x8c, - 0xa6, 0x32, 0x75, 0x2a, 0x7b, 0xeb, 0xf7, 0x9b, 0xdd, 0x7b, 0xed, 0xa5, 0xab, 0xb4, 0x4b, 0x6e, - 0xb9, 0xea, 0xc5, 0x52, 0xcc, 0x70, 0x19, 0x87, 0x9e, 0x41, 0x35, 0x64, 0x11, 0x93, 0xa9, 0x63, - 0xfd, 0xaf, 0x0c, 0x26, 0x6a, 0xf7, 0x67, 0x68, 0x2d, 0x01, 0xe8, 0x5b, 0xd8, 0x88, 0x49, 0x44, - 0x9d, 0xca, 0x5e, 0xe5, 0xfe, 0x76, 0xf7, 0xee, 0x95, 0xe9, 0x06, 0x24, 0xa2, 0x58, 0x87, 0xa0, - 0x8f, 0x60, 0xf3, 0x82, 0x84, 0x19, 0x75, 0xac, 0xbd, 0xca, 0xfd, 0x06, 0xce, 0x0d, 0xf7, 0x05, - 0x6c, 0x2d, 0x72, 0x51, 0x13, 0x6a, 0x67, 0x83, 0xe3, 0xc1, 0xf0, 0xcd, 0xc0, 0x5e, 0x43, 0x35, - 0x58, 0x7f, 0x3e, 0x3a, 0xb3, 0x2b, 0x6a, 0xf1, 0x72, 0x74, 0x66, 0x5b, 0x08, 0xa0, 0xda, 0xef, - 0xf5, 0x87, 0xf8, 0xad, 0xbd, 0xae, 0xa8, 0xa7, 0xe3, 0x21, 0xde, 0x7f, 0xd9, 0xb3, 0x37, 0xdc, - 0xdf, 0x2b, 0x70, 0x0d, 0x67, 0xb1, 0x64, 0x11, 0xed, 0x53, 0x49, 0x02, 0x22, 0x09, 0x7a, 0x06, - 0x1b, 0x72, 0x96, 0x14, 0x87, 0x7d, 0xb0, 0x7a, 0xd8, 0x65, 0x76, 0x61, 0x8f, 0x67, 0x09, 0xc5, - 0x3a, 0x0e, 0x39, 0x50, 0xbb, 0xa0, 0x22, 0x65, 0x3c, 0x36, 0x67, 0x2e, 0x4c, 0x74, 0x03, 0xaa, - 0x93, 0x90, 0x5c, 0x70, 0xe1, 0xac, 0x6b, 0xc0, 0x58, 0xee, 0x17, 0xd0, 0x5c, 0x48, 0x83, 0x1a, - 0xb0, 0x39, 0x1c, 0xbf, 0xea, 0x61, 0x7b, 0x0d, 0xb5, 0xa0, 0xf1, 0xe2, 0xe4, 0xed, 0xb8, 0xe7, - 0x9d, 0x1e, 0x1e, 0xdb, 0x15, 0xf7, 0x1f, 0x0b, 0xb6, 0xc6, 0x24, 0x7d, 0x5f, 0x9e, 0xd5, 0x85, - 0xad, 0x80, 0xa5, 0x3e, 0xbf, 0xa0, 0x82, 0x9c, 0x87, 0xf9, 0x99, 0xeb, 0x78, 0xc9, 0x87, 0x9e, - 0x42, 0x4d, 0xe4, 0xd9, 0xf5, 0x79, 0x9a, 0xdd, 0x3b, 0xff, 0x7d, 0x25, 0x5c, 0xd0, 0xd1, 0x63, - 0xa8, 0xa9, 0x5f, 0x9e, 0x49, 0x67, 0x43, 0x47, 0xde, 0x6c, 0xe7, 0x93, 0xd8, 0x2e, 0x26, 0xb1, - 0x7d, 0x68, 0x26, 0x15, 0x17, 0x4c, 0xf4, 0x04, 0x6a, 0x82, 0x4a, 0xc1, 0x68, 0xea, 0x6c, 0xea, - 0xa0, 0x5b, 0x1f, 0xb4, 0x5b, 0x8a, 0xd9, 0xa9, 0x14, 0x44, 0xd2, 0xe9, 0x0c, 0x17, 0x64, 0xf4, - 0x15, 0xec, 0x14, 0xc7, 0x9e, 0x79, 0x45, 0x01, 0xab, 0xba, 0x4e, 0x76, 0x09, 0xbc, 0x36, 0x95, - 0x7c, 0x0a, 0x4e, 0x40, 0x13, 0x41, 0x7d, 0x22, 0x69, 0xe0, 0x51, 0x21, 0xb8, 0xf0, 0x22, 0x9a, - 0xa6, 0x64, 0x4a, 0x9d, 0x9a, 0x8e, 0xb9, 0x31, 0xc7, 0x7b, 0x0a, 0xee, 0xe7, 0x28, 0xba, 0x07, - 0x2d, 0xfd, 0xe7, 0x14, 0x59, 0x22, 0x99, 0x2a, 0x59, 0x5d, 0x95, 0xec, 0xd5, 0x1a, 0x5e, 0x76, - 0x1f, 0x7c, 0x0c, 0xd7, 0x97, 0x1c, 0x5e, 0x3e, 0x78, 0x7f, 0x9b, 0x0e, 0x8c, 0x69, 0x94, 0x84, - 0x44, 0x52, 0xf4, 0x25, 0x58, 0x2c, 0xd0, 0x75, 0x57, 0xe5, 0x59, 0xbe, 0xe9, 0x51, 0xa9, 0x12, - 0xd8, 0x62, 0x01, 0x42, 0x66, 0xb0, 0xf2, 0xa9, 0xc8, 0x87, 0xe5, 0x1b, 0xa8, 0x47, 0xa6, 0xee, - 0x7a, 0x28, 0x9a, 0xdd, 0x4f, 0x57, 0x92, 0x2c, 0xf6, 0x1b, 0x97, 0x64, 0xf4, 0x3d, 0x34, 0x4a, - 0x91, 0x31, 0xdd, 0xb9, 0xbd, 0x1a, 0x39, 0x4b, 0x68, 0x70, 0x54, 0x90, 0xf0, 0x9c, 0x8f, 0x3a, - 0x50, 0xf5, 0xb3, 0x54, 0xf2, 0xc8, 0xb4, 0xe8, 0x93, 0x0f, 0xfa, 0x7a, 0xaa, 0x15, 0x06, 0x1b, - 0x1a, 0x7a, 0x0a, 0x0d, 0x9f, 0xc7, 0x92, 0xb0, 0x98, 0x0a, 0xdd, 0x94, 0x66, 0xd7, 0x59, 0xd9, - 0xed, 0x79, 0x81, 0xbf, 0x5a, 0xc3, 0x73, 0x32, 0x7a, 0x00, 0x3b, 0x4a, 0x56, 0x3d, 0x75, 0xdb, - 0xb2, 0xad, 0xaa, 0x45, 0x9b, 0xf8, 0x9a, 0x02, 0xd4, 0x21, 0x4d, 0x57, 0x0f, 0xea, 0x50, 0x95, - 0x44, 0x4c, 0xa9, 0x74, 0x9f, 0x40, 0xab, 0xcc, 0x37, 0xe2, 0x42, 0xa2, 0xbb, 0xb0, 0x5d, 0xe6, - 0xf4, 0x12, 0x2e, 0xa4, 0x2e, 0x79, 0x0b, 0xb7, 0xfc, 0x45, 0x9a, 0xfb, 0x97, 0x05, 0x8d, 0x32, - 0x50, 0x69, 0x07, 0x8b, 0xd4, 0x48, 0x54, 0x72, 0xed, 0xd0, 0x86, 0xfa, 0x7f, 0xfa, 0x3c, 0x8a, - 0x48, 0x1c, 0x68, 0x79, 0x6b, 0xe0, 0xc2, 0x54, 0x0d, 0x22, 0x62, 0x9a, 0x3a, 0xeb, 0xda, 0xad, - 0xd7, 0xe8, 0x09, 0x34, 0x44, 0xa1, 0x4f, 0xa6, 0xce, 0xce, 0x65, 0xfa, 0x85, 0xe7, 0x54, 0xf4, - 0x10, 0xd6, 0x69, 0x7c, 0xe1, 0x6c, 0x6a, 0x01, 0x5d, 0xed, 0xe9, 0x31, 0x9d, 0xbd, 0x56, 0xe3, - 0x34, 0x22, 0x4c, 0x60, 0xc5, 0x43, 0x8f, 0xa1, 0xea, 0xf3, 0x78, 0xc2, 0xa6, 0x4e, 0xf5, 0xea, - 0x08, 0x43, 0x45, 0x5d, 0xd8, 0x54, 0xa5, 0x48, 0x9d, 0x9a, 0x8e, 0xb9, 0x75, 0x59, 0x47, 0x54, - 0x69, 0x70, 0x4e, 0x45, 0xfb, 0xd0, 0x54, 0xf3, 0xe3, 0x99, 0xdd, 0x1a, 0xfa, 0x46, 0x7b, 0x2b, - 0x91, 0x87, 0x44, 0x92, 0x13, 0x4e, 0x02, 0x16, 0x4f, 0x9f, 0x6b, 0x1e, 0x06, 0x15, 0x94, 0xaf, - 0xdd, 0x3f, 0x2c, 0x80, 0xa3, 0x61, 0xf1, 0x0f, 0x46, 0xc7, 0xd0, 0x0a, 0xf8, 0xaf, 0x71, 0xc8, - 0x49, 0xe0, 0x45, 0x3c, 0x28, 0x84, 0x73, 0xf5, 0xd1, 0x98, 0x47, 0xb4, 0x0f, 0x0d, 0xbd, 0xcf, - 0x03, 0x8a, 0xb7, 0x82, 0x05, 0x0b, 0xf5, 0xa0, 0x99, 0x25, 0xf3, 0x54, 0x96, 0x4e, 0xf5, 0xf9, - 0xe5, 0xa9, 0xce, 0x92, 0x32, 0x11, 0x64, 0xe5, 0xda, 0x3d, 0x81, 0xad, 0xc5, 0x4d, 0x10, 0x82, - 0xed, 0xc3, 0xe1, 0x9b, 0xc1, 0xc9, 0x70, 0xff, 0xd0, 0xeb, 0xed, 0xbf, 0xd4, 0xda, 0x7a, 0x1d, - 0xae, 0x95, 0xbe, 0xd3, 0x31, 0xee, 0xed, 0xf7, 0xed, 0x4a, 0xee, 0xf4, 0x06, 0xc3, 0xb1, 0x57, - 0x60, 0xb6, 0xe5, 0xf6, 0x00, 0xe6, 0xfb, 0xa8, 0x5c, 0x67, 0x23, 0x1d, 0x35, 0x1c, 0x78, 0xbd, - 0x1f, 0x8f, 0xc6, 0xf6, 0x1a, 0xb2, 0x61, 0xcb, 0xf8, 0xf2, 0xec, 0x15, 0xb4, 0x03, 0x2d, 0x93, - 0x28, 0x07, 0x6c, 0xcb, 0xfd, 0xcd, 0x82, 0x9d, 0x0f, 0x2a, 0xab, 0xc6, 0x91, 0xc6, 0x4a, 0xa8, - 0x03, 0xa3, 0xde, 0x85, 0x89, 0x6e, 0x03, 0xb0, 0x38, 0xc9, 0xa4, 0x97, 0x10, 0xf9, 0xce, 0xa8, - 0x46, 0x43, 0x7b, 0x46, 0x44, 0xbe, 0x43, 0x9f, 0x41, 0x93, 0x67, 0xb2, 0xc4, 0xf3, 0x27, 0x05, - 0x72, 0x97, 0x26, 0x1c, 0x41, 0x75, 0xc2, 0x45, 0x44, 0x72, 0xf5, 0xde, 0xee, 0x3e, 0xba, 0xaa, - 0xcb, 0xed, 0x93, 0xfc, 0xbb, 0xa4, 0x4f, 0x92, 0x17, 0x3a, 0x10, 0x9b, 0x04, 0xe8, 0x3b, 0x68, - 0x32, 0xee, 0xa5, 0xa6, 0xea, 0x46, 0x35, 0x6e, 0x5e, 0xda, 0x16, 0x0c, 0x8c, 0x17, 0x6b, 0xf7, - 0x11, 0xd8, 0xab, 0x79, 0x51, 0x1d, 0x36, 0x7e, 0x38, 0x1d, 0xaa, 0xc7, 0xba, 0x0e, 0x1b, 0x6f, - 0xf7, 0xfb, 0x27, 0x76, 0x45, 0x3d, 0x7b, 0x23, 0x3c, 0x1c, 0x0f, 0x6d, 0xeb, 0xa0, 0xfb, 0xd3, - 0xd7, 0x53, 0x26, 0xdf, 0x65, 0xe7, 0x6d, 0x9f, 0x47, 0x9d, 0x70, 0x36, 0x91, 0x9d, 0xf2, 0x03, - 0x6a, 0x4a, 0xe3, 0x4e, 0x72, 0xfe, 0x70, 0xca, 0x3b, 0x4b, 0xdf, 0x54, 0xe7, 0x55, 0xad, 0x5d, - 0x8f, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x98, 0x64, 0xd6, 0x40, 0xd4, 0x09, 0x00, 0x00, + 0xb1, 0x4f, 0xe6, 0xdd, 0xf3, 0xdc, 0x91, 0xbc, 0x3b, 0x3f, 0x14, 0xdc, 0x9c, 0x4c, 0x67, 0x92, + 0xb2, 0x60, 0xda, 0xf1, 0xb9, 0xa0, 0x1d, 0x49, 0xd2, 0x77, 0x69, 0x3b, 0x11, 0x5c, 0x72, 0xd4, + 0x2a, 0xa0, 0xb6, 0x82, 0x76, 0xef, 0x2c, 0x33, 0x59, 0x40, 0x63, 0xc9, 0x26, 0x8c, 0x8a, 0x9c, + 0xbe, 0x7b, 0x7b, 0x05, 0x8f, 0x25, 0x15, 0x13, 0xe2, 0x53, 0x03, 0xdf, 0x5a, 0x86, 0xa7, 0x4c, + 0x52, 0x41, 0xa6, 0x66, 0xaf, 0xdd, 0x3b, 0x21, 0xe7, 0xe1, 0x94, 0x76, 0xb4, 0x75, 0x91, 0x4d, + 0x3a, 0x41, 0x26, 0x88, 0x64, 0x3c, 0x2e, 0xa2, 0x57, 0xf1, 0x54, 0x8a, 0xcc, 0x97, 0x39, 0xea, + 0xfe, 0x69, 0x41, 0x03, 0xd3, 0x94, 0x67, 0xc2, 0xa7, 0x29, 0x3a, 0x84, 0xba, 0xa0, 0xbf, 0x64, + 0x34, 0x95, 0xa9, 0x53, 0xd9, 0x5b, 0xbf, 0xdf, 0xec, 0xde, 0x6b, 0x2f, 0x5d, 0xa5, 0x5d, 0x72, + 0xcb, 0x55, 0x2f, 0x96, 0x62, 0x86, 0xcb, 0x38, 0xf4, 0x14, 0xaa, 0x53, 0x16, 0x31, 0x99, 0x3a, + 0xd6, 0xff, 0xca, 0x60, 0xa2, 0x76, 0x7f, 0x86, 0xd6, 0x12, 0x80, 0xbe, 0x85, 0x8d, 0x98, 0x44, + 0xd4, 0xa9, 0xec, 0x55, 0xee, 0x6f, 0x77, 0xef, 0x7e, 0x30, 0xdd, 0x80, 0x44, 0x14, 0xeb, 0x10, + 0xf4, 0x11, 0x6c, 0x5e, 0x92, 0x69, 0x46, 0x1d, 0x6b, 0xaf, 0x72, 0xbf, 0x81, 0x73, 0xc3, 0x7d, + 0x0e, 0x5b, 0x8b, 0x5c, 0xd4, 0x84, 0xda, 0xf9, 0xe0, 0x64, 0x30, 0x7c, 0x3d, 0xb0, 0xd7, 0x50, + 0x0d, 0xd6, 0x9f, 0x8d, 0xce, 0xed, 0x8a, 0x5a, 0xbc, 0x18, 0x9d, 0xdb, 0x16, 0x02, 0xa8, 0xf6, + 0x7b, 0xfd, 0x21, 0x7e, 0x63, 0xaf, 0x2b, 0xea, 0xd9, 0x78, 0x88, 0x0f, 0x5e, 0xf4, 0xec, 0x0d, + 0xf7, 0xf7, 0x0a, 0x5c, 0xc3, 0x59, 0x2c, 0x59, 0x44, 0xfb, 0x54, 0x92, 0x80, 0x48, 0x82, 0x9e, + 0xc2, 0x86, 0x9c, 0x25, 0xc5, 0x61, 0x1f, 0xac, 0x1e, 0x76, 0x99, 0x5d, 0xd8, 0xe3, 0x59, 0x42, + 0xb1, 0x8e, 0x43, 0x0e, 0xd4, 0x2e, 0xa9, 0x48, 0x19, 0x8f, 0xcd, 0x99, 0x0b, 0x13, 0xdd, 0x80, + 0xea, 0x64, 0x4a, 0x2e, 0xb9, 0x70, 0xd6, 0x35, 0x60, 0x2c, 0xf7, 0x0b, 0x68, 0x2e, 0xa4, 0x41, + 0x0d, 0xd8, 0x1c, 0x8e, 0x5f, 0xf6, 0xb0, 0xbd, 0x86, 0x5a, 0xd0, 0x78, 0x7e, 0xfa, 0x66, 0xdc, + 0xf3, 0xce, 0x8e, 0x4e, 0xec, 0x8a, 0xfb, 0x8f, 0x05, 0x5b, 0x63, 0x92, 0xbe, 0x2b, 0xcf, 0xea, + 0xc2, 0x56, 0xc0, 0x52, 0x9f, 0x5f, 0x52, 0x41, 0x2e, 0xa6, 0xf9, 0x99, 0xeb, 0x78, 0xc9, 0x87, + 0x9e, 0x40, 0x4d, 0xe4, 0xd9, 0xf5, 0x79, 0x9a, 0xdd, 0x3b, 0xff, 0x7d, 0x25, 0x5c, 0xd0, 0xd1, + 0x63, 0xa8, 0xa9, 0x5f, 0x9e, 0x49, 0x67, 0x43, 0x47, 0xde, 0x6c, 0xe7, 0x93, 0xd8, 0x2e, 0x26, + 0xb1, 0x7d, 0x64, 0x26, 0x15, 0x17, 0x4c, 0xb4, 0x0f, 0x35, 0x41, 0xa5, 0x60, 0x34, 0x75, 0x36, + 0x75, 0xd0, 0xad, 0xf7, 0xda, 0x2d, 0xc5, 0xec, 0x4c, 0x0a, 0x22, 0x69, 0x38, 0xc3, 0x05, 0x19, + 0x7d, 0x05, 0x3b, 0xc5, 0xb1, 0x67, 0x5e, 0x51, 0xc0, 0xaa, 0xae, 0x93, 0x5d, 0x02, 0xaf, 0x4c, + 0x25, 0x9f, 0x80, 0x13, 0xd0, 0x44, 0x50, 0x9f, 0x48, 0x1a, 0x78, 0x54, 0x08, 0x2e, 0xbc, 0x88, + 0xa6, 0x29, 0x09, 0xa9, 0x53, 0xd3, 0x31, 0x37, 0xe6, 0x78, 0x4f, 0xc1, 0xfd, 0x1c, 0x45, 0xf7, + 0xa0, 0xa5, 0xff, 0x9c, 0x22, 0x4b, 0x24, 0x53, 0x25, 0xab, 0xab, 0x92, 0xbd, 0x5c, 0xc3, 0xcb, + 0xee, 0xc3, 0x8f, 0xe1, 0xfa, 0x92, 0xc3, 0xcb, 0x07, 0xef, 0x6f, 0xd3, 0x81, 0x31, 0x8d, 0x92, + 0x29, 0x91, 0x14, 0x7d, 0x09, 0x16, 0x0b, 0x74, 0xdd, 0x55, 0x79, 0x96, 0x6f, 0x7a, 0x5c, 0xaa, + 0x04, 0xb6, 0x58, 0x80, 0x90, 0x19, 0xac, 0x7c, 0x2a, 0xf2, 0x61, 0xf9, 0x06, 0xea, 0x91, 0xa9, + 0xbb, 0x1e, 0x8a, 0x66, 0xf7, 0xd3, 0x95, 0x24, 0x8b, 0xfd, 0xc6, 0x25, 0x19, 0x7d, 0x0f, 0x8d, + 0x52, 0x64, 0x4c, 0x77, 0x6e, 0xaf, 0x46, 0xce, 0x12, 0x1a, 0x1c, 0x17, 0x24, 0x3c, 0xe7, 0xa3, + 0x0e, 0x54, 0xfd, 0x2c, 0x95, 0x3c, 0x32, 0x2d, 0xfa, 0xe4, 0xbd, 0xbe, 0x9e, 0x69, 0x85, 0xc1, + 0x86, 0x86, 0x9e, 0x40, 0xc3, 0xe7, 0xb1, 0x24, 0x2c, 0xa6, 0x42, 0x37, 0xa5, 0xd9, 0x75, 0x56, + 0x76, 0x7b, 0x56, 0xe0, 0x2f, 0xd7, 0xf0, 0x9c, 0x8c, 0x1e, 0xc0, 0x8e, 0x92, 0x55, 0x4f, 0xdd, + 0xb6, 0x6c, 0xab, 0x6a, 0xd1, 0x26, 0xbe, 0xa6, 0x00, 0x75, 0x48, 0xd3, 0xd5, 0xc3, 0x3a, 0x54, + 0x25, 0x11, 0x21, 0x95, 0xee, 0x3e, 0xb4, 0xca, 0x7c, 0x23, 0x2e, 0x24, 0xba, 0x0b, 0xdb, 0x65, + 0x4e, 0x2f, 0xe1, 0x42, 0xea, 0x92, 0xb7, 0x70, 0xcb, 0x5f, 0xa4, 0xb9, 0x7f, 0x59, 0xd0, 0x28, + 0x03, 0x95, 0x76, 0xb0, 0x48, 0x8d, 0x44, 0x25, 0xd7, 0x0e, 0x6d, 0xa8, 0xff, 0xa7, 0xcf, 0xa3, + 0x88, 0xc4, 0x81, 0x96, 0xb7, 0x06, 0x2e, 0x4c, 0xd5, 0x20, 0x22, 0xc2, 0xd4, 0x59, 0xd7, 0x6e, + 0xbd, 0x46, 0xfb, 0xd0, 0x10, 0x85, 0x3e, 0x99, 0x3a, 0x3b, 0x57, 0xe9, 0x17, 0x9e, 0x53, 0xd1, + 0x43, 0x58, 0xa7, 0xf1, 0xa5, 0xb3, 0xa9, 0x05, 0x74, 0xb5, 0xa7, 0x27, 0x74, 0xf6, 0x4a, 0x8d, + 0xd3, 0x88, 0x30, 0x81, 0x15, 0x0f, 0x3d, 0x86, 0xaa, 0xcf, 0xe3, 0x09, 0x0b, 0x9d, 0xea, 0x87, + 0x23, 0x0c, 0x15, 0x75, 0x61, 0x53, 0x95, 0x22, 0x75, 0x6a, 0x3a, 0xe6, 0xd6, 0x55, 0x1d, 0x51, + 0xa5, 0xc1, 0x39, 0x15, 0x1d, 0x40, 0x53, 0xcd, 0x8f, 0x67, 0x76, 0x6b, 0xe8, 0x1b, 0xed, 0xad, + 0x44, 0x1e, 0x11, 0x49, 0x4e, 0x39, 0x09, 0x58, 0x1c, 0x3e, 0xd3, 0x3c, 0x0c, 0x2a, 0x28, 0x5f, + 0xbb, 0x7f, 0x58, 0x00, 0xc7, 0xc3, 0xe2, 0x1f, 0x8c, 0x4e, 0xa0, 0x15, 0xf0, 0x5f, 0xe3, 0x29, + 0x27, 0x81, 0x17, 0xf1, 0xa0, 0x10, 0xce, 0xd5, 0x47, 0x63, 0x1e, 0xd1, 0x3e, 0x32, 0xf4, 0x3e, + 0x0f, 0x28, 0xde, 0x0a, 0x16, 0x2c, 0xd4, 0x83, 0x66, 0x96, 0xcc, 0x53, 0x59, 0x3a, 0xd5, 0xe7, + 0x57, 0xa7, 0x3a, 0x4f, 0xca, 0x44, 0x90, 0x95, 0x6b, 0xf7, 0x14, 0xb6, 0x16, 0x37, 0x41, 0x08, + 0xb6, 0x8f, 0x86, 0xaf, 0x07, 0xa7, 0xc3, 0x83, 0x23, 0xaf, 0x77, 0xf0, 0x42, 0x6b, 0xeb, 0x75, + 0xb8, 0x56, 0xfa, 0xce, 0xc6, 0xb8, 0x77, 0xd0, 0xb7, 0x2b, 0xb9, 0xd3, 0x1b, 0x0c, 0xc7, 0x5e, + 0x81, 0xd9, 0x96, 0xdb, 0x03, 0x98, 0xef, 0xa3, 0x72, 0x9d, 0x8f, 0x74, 0xd4, 0x70, 0xe0, 0xf5, + 0x7e, 0x3c, 0x1e, 0xdb, 0x6b, 0xc8, 0x86, 0x2d, 0xe3, 0xcb, 0xb3, 0x57, 0xd0, 0x0e, 0xb4, 0x4c, + 0xa2, 0x1c, 0xb0, 0x2d, 0xf7, 0x37, 0x0b, 0x76, 0xde, 0xab, 0xac, 0x1a, 0x47, 0x1a, 0x2b, 0xa1, + 0x0e, 0x8c, 0x7a, 0x17, 0x26, 0xba, 0x0d, 0xc0, 0xe2, 0x24, 0x93, 0x5e, 0x42, 0xe4, 0x5b, 0xa3, + 0x1a, 0x0d, 0xed, 0x19, 0x11, 0xf9, 0x16, 0x7d, 0x06, 0x4d, 0x9e, 0xc9, 0x12, 0xcf, 0x9f, 0x14, + 0xc8, 0x5d, 0x9a, 0x70, 0x0c, 0xd5, 0x09, 0x17, 0x11, 0xc9, 0xd5, 0x7b, 0xbb, 0xfb, 0xe8, 0x43, + 0x5d, 0x6e, 0x9f, 0xe6, 0xdf, 0x25, 0x7d, 0x92, 0x3c, 0xd7, 0x81, 0xd8, 0x24, 0x40, 0xdf, 0x41, + 0x93, 0x71, 0x2f, 0x35, 0x55, 0x37, 0xaa, 0x71, 0xf3, 0xca, 0xb6, 0x60, 0x60, 0xbc, 0x58, 0xbb, + 0x8f, 0xc0, 0x5e, 0xcd, 0x8b, 0xea, 0xb0, 0xf1, 0xc3, 0xd9, 0x50, 0x3d, 0xd6, 0x75, 0xd8, 0x78, + 0x73, 0xd0, 0x3f, 0xb5, 0x2b, 0xea, 0xd9, 0x1b, 0xe1, 0xe1, 0x78, 0x68, 0x5b, 0x87, 0xfb, 0x3f, + 0x7d, 0x1d, 0x32, 0xf9, 0x36, 0xbb, 0x68, 0xfb, 0x3c, 0xea, 0xe8, 0x5d, 0xb8, 0x08, 0x3b, 0xe5, + 0x47, 0x54, 0x48, 0xe3, 0x4e, 0x72, 0xf1, 0x30, 0xe4, 0x9d, 0xa5, 0xef, 0xaa, 0x8b, 0xaa, 0xd6, + 0xaf, 0xc7, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x3c, 0xfb, 0xf5, 0x45, 0xd8, 0x09, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/types.pb.go b/gen/pb-go/flyteidl/core/types.pb.go index 31f6e7b72..bddd1bda9 100644 --- a/gen/pb-go/flyteidl/core/types.pb.go +++ b/gen/pb-go/flyteidl/core/types.pb.go @@ -525,46 +525,46 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/types.proto", fileDescriptor_51e8add38f4caaed) } var fileDescriptor_51e8add38f4caaed = []byte{ - // 647 bytes of a gzipped FileDescriptorProto + // 648 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xcd, 0x6e, 0x9b, 0x4a, - 0x14, 0x36, 0xfe, 0xf7, 0xb1, 0xe3, 0xa0, 0x59, 0xdc, 0x38, 0xd1, 0x5d, 0x44, 0xd6, 0xd5, 0x55, - 0x14, 0x29, 0x70, 0xe5, 0x2c, 0xee, 0xa6, 0x8b, 0xda, 0x09, 0x75, 0x50, 0x1d, 0xa8, 0x26, 0xa4, - 0x52, 0xbb, 0xb1, 0x06, 0x18, 0x3b, 0x48, 0x03, 0x83, 0x60, 0x88, 0xe4, 0x17, 0xe8, 0x7b, 0x74, - 0xd5, 0xd7, 0xe9, 0x93, 0xf4, 0x19, 0x2a, 0x06, 0x1c, 0x1b, 0x47, 0x95, 0xb2, 0x3b, 0x87, 0xf3, - 0x7d, 0x1f, 0xe7, 0x9c, 0x99, 0x6f, 0xe0, 0x74, 0xc5, 0x36, 0x82, 0x06, 0x3e, 0xd3, 0x3d, 0x9e, - 0x50, 0x5d, 0x6c, 0x62, 0x9a, 0x6a, 0x71, 0xc2, 0x05, 0x47, 0x47, 0xdb, 0x92, 0x96, 0x97, 0xce, - 0xfe, 0x5e, 0x73, 0xbe, 0x66, 0x54, 0x97, 0x45, 0x37, 0x5b, 0xe9, 0xa9, 0x48, 0x32, 0x4f, 0x14, - 0xe0, 0xf1, 0xf7, 0x3a, 0xc0, 0x83, 0xf7, 0x44, 0x43, 0xe2, 0x6c, 0x62, 0x8a, 0xde, 0x43, 0xc7, - 0xe3, 0x2c, 0x0b, 0xa3, 0x74, 0xd4, 0x38, 0x6f, 0x5c, 0xf4, 0x27, 0xff, 0x6a, 0x15, 0x35, 0x6d, - 0x87, 0x2d, 0xc3, 0x1b, 0x09, 0xc7, 0x5b, 0xda, 0xd9, 0x4f, 0x05, 0x06, 0xfb, 0x15, 0x84, 0xa0, - 0x19, 0x91, 0x90, 0x8e, 0x94, 0x73, 0xe5, 0xa2, 0x87, 0x65, 0x8c, 0x3e, 0x42, 0x33, 0xef, 0x78, - 0x54, 0x3f, 0x57, 0x2e, 0x86, 0x93, 0xff, 0xdf, 0xf6, 0x8f, 0x4a, 0x92, 0x57, 0xb1, 0x14, 0x19, - 0x2f, 0x41, 0x3d, 0xac, 0xa0, 0x3e, 0x74, 0x4c, 0xcb, 0x31, 0xe6, 0x06, 0x56, 0x6b, 0xa8, 0x07, - 0xad, 0x0f, 0x0b, 0x7b, 0xea, 0xa8, 0x0a, 0x02, 0x68, 0x3f, 0x38, 0xd8, 0xb4, 0xe6, 0x6a, 0x3d, - 0xc7, 0xcc, 0x6c, 0x7b, 0x61, 0x4c, 0x2d, 0xb5, 0x81, 0x06, 0xd0, 0xbd, 0x9d, 0x3a, 0x86, 0x63, - 0xde, 0x1b, 0x6a, 0x53, 0x66, 0x8f, 0x78, 0xea, 0x98, 0xb6, 0xa5, 0xb6, 0xc6, 0x3f, 0x14, 0xe8, - 0xce, 0x18, 0x77, 0xa5, 0xf2, 0x5f, 0xd0, 0x5e, 0xf1, 0x24, 0x24, 0xa2, 0x1c, 0xa8, 0xcc, 0x10, - 0x86, 0xa1, 0x1f, 0x84, 0x34, 0x4a, 0x03, 0x1e, 0x11, 0x16, 0x88, 0x4d, 0x39, 0xdc, 0xe5, 0xc1, - 0x70, 0x5b, 0x21, 0x19, 0xdc, 0x56, 0x18, 0xf8, 0x40, 0x61, 0xac, 0x03, 0x7a, 0x8d, 0x92, 0x33, - 0x98, 0xd6, 0x7c, 0x61, 0xa8, 0x35, 0x74, 0x04, 0xbd, 0xfb, 0xc7, 0x85, 0x63, 0x7e, 0x9a, 0x62, - 0x47, 0x55, 0xc6, 0xbf, 0xea, 0xd0, 0x5f, 0x04, 0x82, 0x26, 0x84, 0xc9, 0x66, 0xaf, 0xa1, 0x9d, - 0x06, 0x61, 0xcc, 0x8a, 0xed, 0x0f, 0x27, 0xa7, 0x87, 0x9b, 0x96, 0xc5, 0x1c, 0x7a, 0x57, 0xc3, - 0x25, 0x54, 0x92, 0xe4, 0x3e, 0xe5, 0x04, 0xfd, 0xd7, 0xa4, 0x97, 0xe3, 0x91, 0x24, 0x99, 0x21, - 0x03, 0x8e, 0x3d, 0xce, 0x18, 0xf5, 0x44, 0xc0, 0xa3, 0xa5, 0x3c, 0xdc, 0x86, 0x64, 0x9f, 0x1d, - 0xb0, 0xf7, 0xda, 0xbb, 0xab, 0xe1, 0xe1, 0x8e, 0x24, 0x1b, 0x9e, 0xc1, 0x30, 0x24, 0xf1, 0xf2, - 0x99, 0xb0, 0x8c, 0x16, 0x2a, 0xcd, 0x37, 0xa8, 0x0c, 0x42, 0x12, 0x7f, 0xce, 0x29, 0x52, 0xe3, - 0x0a, 0x9a, 0x2e, 0xe3, 0xee, 0xa8, 0x25, 0x99, 0x27, 0x7f, 0xd8, 0xff, 0x5d, 0x0d, 0x4b, 0x18, - 0xba, 0x86, 0x6e, 0x48, 0x05, 0xf1, 0x89, 0x20, 0xa3, 0x76, 0x49, 0x29, 0x2c, 0xa3, 0x6d, 0x2d, - 0xa3, 0x3d, 0x48, 0xcb, 0xe0, 0x17, 0xe0, 0xac, 0x5d, 0x5c, 0xe0, 0xf1, 0x3b, 0x38, 0xb6, 0x33, - 0x11, 0x67, 0x02, 0xd3, 0x15, 0x4d, 0x68, 0xe4, 0x51, 0x74, 0x02, 0x9d, 0x88, 0xfb, 0x74, 0x19, - 0xf8, 0xdb, 0x1b, 0x92, 0xa7, 0xa6, 0x8f, 0x54, 0x68, 0x3c, 0x93, 0x44, 0x2e, 0xb5, 0x87, 0xf3, - 0x70, 0x3c, 0x87, 0x96, 0x91, 0x24, 0x3c, 0x41, 0xff, 0xc0, 0x70, 0x45, 0x02, 0x46, 0xfd, 0x65, - 0x95, 0x3a, 0x28, 0xbe, 0x5a, 0x85, 0xc0, 0x08, 0x3a, 0x21, 0x4d, 0x53, 0xb2, 0xa6, 0xa5, 0xc8, - 0x36, 0xbd, 0xfc, 0xa6, 0x00, 0xec, 0xce, 0x12, 0x75, 0xa1, 0x69, 0xd9, 0x56, 0x7e, 0x3f, 0xf6, - 0x7c, 0xa0, 0xec, 0x7c, 0x50, 0xdf, 0xf3, 0x41, 0x63, 0xdf, 0x07, 0xcd, 0x8a, 0x0f, 0x5a, 0x15, - 0x1f, 0xb4, 0x73, 0xd2, 0xcc, 0xb4, 0xa6, 0xf8, 0x8b, 0xda, 0xc9, 0xb5, 0x0c, 0x8c, 0x6d, 0xac, - 0x76, 0x4b, 0xad, 0xc7, 0x1b, 0x47, 0xed, 0xcd, 0x26, 0x5f, 0xff, 0x5b, 0x07, 0xe2, 0x29, 0x73, - 0x35, 0x8f, 0x87, 0x3a, 0xdb, 0xac, 0x84, 0xfe, 0xf2, 0x50, 0xad, 0x69, 0xa4, 0xc7, 0xee, 0xd5, - 0x9a, 0xeb, 0x95, 0xb7, 0xcb, 0x6d, 0xcb, 0x35, 0x5f, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x05, - 0x73, 0xe4, 0xc4, 0xd3, 0x04, 0x00, 0x00, + 0x14, 0x36, 0xfe, 0xf7, 0xb1, 0xe3, 0xa0, 0x59, 0xdc, 0x38, 0xd1, 0x5d, 0x44, 0xe8, 0xea, 0x2a, + 0x8a, 0x14, 0x90, 0x92, 0xaa, 0xdd, 0x74, 0x51, 0x3b, 0xa1, 0x0e, 0xaa, 0x03, 0xd5, 0x84, 0x54, + 0x6a, 0x37, 0xd6, 0x00, 0x63, 0x82, 0x04, 0x0c, 0x82, 0x21, 0x92, 0x5f, 0xa0, 0xef, 0xd1, 0x55, + 0x5f, 0xa7, 0x4f, 0xd2, 0x67, 0xa8, 0x18, 0x70, 0x6c, 0x1c, 0x55, 0xca, 0xee, 0x1c, 0xce, 0xf7, + 0x7d, 0x9c, 0x73, 0x66, 0xbe, 0x81, 0xe3, 0x55, 0xb8, 0xe6, 0x34, 0xf0, 0x42, 0xcd, 0x65, 0x29, + 0xd5, 0xf8, 0x3a, 0xa1, 0x99, 0x9a, 0xa4, 0x8c, 0x33, 0x74, 0xb0, 0x29, 0xa9, 0x45, 0xe9, 0xe4, + 0x5f, 0x9f, 0x31, 0x3f, 0xa4, 0x9a, 0x28, 0x3a, 0xf9, 0x4a, 0xcb, 0x78, 0x9a, 0xbb, 0xbc, 0x04, + 0x2b, 0x3f, 0x9a, 0x00, 0xf7, 0xee, 0x23, 0x8d, 0x88, 0xbd, 0x4e, 0x28, 0xfa, 0x00, 0x3d, 0x97, + 0x85, 0x79, 0x14, 0x67, 0x93, 0xd6, 0x69, 0xeb, 0x6c, 0x78, 0xf9, 0xbf, 0x5a, 0x53, 0x53, 0xb7, + 0xd8, 0x2a, 0xbc, 0x16, 0x70, 0xbc, 0xa1, 0x9d, 0xfc, 0x92, 0x60, 0xb4, 0x5b, 0x41, 0x08, 0xda, + 0x31, 0x89, 0xe8, 0x44, 0x3a, 0x95, 0xce, 0x06, 0x58, 0xc4, 0xe8, 0x13, 0xb4, 0x8b, 0x8e, 0x27, + 0xcd, 0x53, 0xe9, 0x6c, 0x7c, 0xf9, 0xee, 0x75, 0xff, 0xa8, 0x25, 0x45, 0x15, 0x0b, 0x11, 0x65, + 0x09, 0xf2, 0x7e, 0x05, 0x0d, 0xa1, 0x67, 0x98, 0xb6, 0x3e, 0xd7, 0xb1, 0xdc, 0x40, 0x03, 0xe8, + 0x7c, 0x5c, 0x58, 0x53, 0x5b, 0x96, 0x10, 0x40, 0xf7, 0xde, 0xc6, 0x86, 0x39, 0x97, 0x9b, 0x05, + 0x66, 0x66, 0x59, 0x0b, 0x7d, 0x6a, 0xca, 0x2d, 0x34, 0x82, 0xfe, 0xcd, 0xd4, 0xd6, 0x6d, 0xe3, + 0x4e, 0x97, 0xdb, 0x22, 0x7b, 0xc0, 0x53, 0xdb, 0xb0, 0x4c, 0xb9, 0xa3, 0xfc, 0x94, 0xa0, 0x3f, + 0x0b, 0x99, 0x23, 0x94, 0xff, 0x81, 0xee, 0x8a, 0xa5, 0x11, 0xe1, 0xd5, 0x40, 0x55, 0x86, 0x30, + 0x8c, 0xbd, 0x20, 0xa2, 0x71, 0x16, 0xb0, 0x98, 0x84, 0x01, 0x5f, 0x57, 0xc3, 0x9d, 0xef, 0x0d, + 0xb7, 0x11, 0x12, 0xc1, 0x4d, 0x8d, 0x81, 0xf7, 0x14, 0x14, 0x0d, 0xd0, 0x4b, 0x94, 0x98, 0xc1, + 0x30, 0xe7, 0x0b, 0x5d, 0x6e, 0xa0, 0x03, 0x18, 0xdc, 0x3d, 0x2c, 0x6c, 0xe3, 0xf3, 0x14, 0xdb, + 0xb2, 0xa4, 0xfc, 0x6e, 0xc2, 0x70, 0x11, 0x70, 0x9a, 0x92, 0x50, 0x34, 0x7b, 0x05, 0xdd, 0x2c, + 0x88, 0x92, 0xb0, 0xdc, 0xfe, 0xf8, 0xf2, 0x78, 0x7f, 0xd3, 0xa2, 0x58, 0x40, 0x6f, 0x1b, 0xb8, + 0x82, 0x0a, 0x92, 0xd8, 0xa7, 0x98, 0x60, 0xf8, 0x92, 0xf4, 0x7c, 0x3c, 0x82, 0x24, 0x32, 0xa4, + 0xc3, 0xa1, 0xcb, 0xc2, 0x90, 0xba, 0x3c, 0x60, 0xf1, 0x52, 0x1c, 0x6e, 0x4b, 0xb0, 0x4f, 0xf6, + 0xd8, 0x3b, 0xed, 0xdd, 0x36, 0xf0, 0x78, 0x4b, 0x12, 0x0d, 0xcf, 0x60, 0x1c, 0x91, 0x64, 0xf9, + 0x44, 0xc2, 0x9c, 0x96, 0x2a, 0xed, 0x57, 0xa8, 0x8c, 0x22, 0x92, 0x7c, 0x29, 0x28, 0x42, 0xe3, + 0x02, 0xda, 0x4e, 0xc8, 0x9c, 0x49, 0x47, 0x30, 0x8f, 0xfe, 0xb2, 0xff, 0xdb, 0x06, 0x16, 0x30, + 0x74, 0x05, 0xfd, 0x88, 0x72, 0xe2, 0x11, 0x4e, 0x26, 0xdd, 0x8a, 0x52, 0x5a, 0x46, 0xdd, 0x58, + 0x46, 0xbd, 0x17, 0x96, 0xc1, 0xcf, 0xc0, 0x59, 0xb7, 0xbc, 0xc0, 0xca, 0x7b, 0x38, 0xb4, 0x72, + 0x9e, 0xe4, 0x1c, 0xd3, 0x15, 0x4d, 0x69, 0xec, 0x52, 0x74, 0x04, 0xbd, 0x98, 0x79, 0x74, 0x19, + 0x78, 0x9b, 0x1b, 0x52, 0xa4, 0x86, 0x87, 0x64, 0x68, 0x3d, 0x91, 0x54, 0x2c, 0x75, 0x80, 0x8b, + 0x50, 0x99, 0x43, 0x47, 0x4f, 0x53, 0x96, 0xa2, 0xff, 0x60, 0xbc, 0x22, 0x41, 0x48, 0xbd, 0x65, + 0x9d, 0x3a, 0x2a, 0xbf, 0x9a, 0xa5, 0xc0, 0x04, 0x7a, 0x11, 0xcd, 0x32, 0xe2, 0xd3, 0x4a, 0x64, + 0x93, 0x9e, 0x7f, 0x97, 0x00, 0xb6, 0x67, 0x89, 0xfa, 0xd0, 0x36, 0x2d, 0xb3, 0xb8, 0x1f, 0x3b, + 0x3e, 0x90, 0xb6, 0x3e, 0x68, 0xee, 0xf8, 0xa0, 0xb5, 0xeb, 0x83, 0x76, 0xcd, 0x07, 0x9d, 0x9a, + 0x0f, 0xba, 0x05, 0x69, 0x66, 0x98, 0x53, 0xfc, 0x55, 0xee, 0x15, 0x5a, 0x3a, 0xc6, 0x16, 0x96, + 0xfb, 0x95, 0xd6, 0xc3, 0xb5, 0x2d, 0x0f, 0x66, 0x6f, 0xbf, 0xbd, 0xf1, 0x03, 0xfe, 0x98, 0x3b, + 0xaa, 0xcb, 0x22, 0x4d, 0x6c, 0x9e, 0xa5, 0xbe, 0xf6, 0xfc, 0x58, 0xf9, 0x34, 0xd6, 0x12, 0xe7, + 0xc2, 0x67, 0x5a, 0xed, 0xfd, 0x72, 0xba, 0x62, 0xd5, 0x57, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, + 0xf8, 0x64, 0x13, 0x14, 0xd7, 0x04, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/workflow.pb.go b/gen/pb-go/flyteidl/core/workflow.pb.go index 999c39f4b..521967ee3 100644 --- a/gen/pb-go/flyteidl/core/workflow.pb.go +++ b/gen/pb-go/flyteidl/core/workflow.pb.go @@ -907,71 +907,71 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/workflow.proto", fileDescriptor_fccede37486c456e) } var fileDescriptor_fccede37486c456e = []byte{ - // 1050 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0x5b, 0x6f, 0xdb, 0x36, - 0x14, 0xf6, 0x25, 0xb1, 0xad, 0xe3, 0x24, 0x75, 0xd9, 0x6e, 0x73, 0xba, 0x5e, 0x02, 0xa3, 0xd8, - 0xd2, 0x62, 0xb3, 0x83, 0x14, 0xc8, 0x1e, 0x32, 0x14, 0xb3, 0x1a, 0x05, 0x31, 0x90, 0x4b, 0xcb, - 0x78, 0xe8, 0xb6, 0x17, 0x81, 0x96, 0x8e, 0x1c, 0x22, 0xb2, 0xe8, 0x52, 0x54, 0x52, 0x63, 0xaf, - 0xfb, 0x25, 0x7b, 0xd8, 0xd3, 0x7e, 0xcb, 0x9e, 0xf6, 0x83, 0x06, 0x51, 0x17, 0xc7, 0xaa, 0xd3, - 0xec, 0x4d, 0xe4, 0xf9, 0xce, 0xe1, 0xc7, 0x8f, 0xe7, 0x23, 0x05, 0x8f, 0x3d, 0x7f, 0xa6, 0x90, - 0xbb, 0x7e, 0xcf, 0x11, 0x12, 0x7b, 0xd7, 0x42, 0x5e, 0x7a, 0xbe, 0xb8, 0xee, 0x4e, 0xa5, 0x50, - 0x82, 0xac, 0x67, 0xd1, 0x6e, 0x1c, 0x7d, 0xf4, 0x64, 0x11, 0xec, 0x88, 0xc0, 0xe5, 0x8a, 0x8b, - 0x20, 0x41, 0x17, 0xc3, 0xf8, 0x11, 0x9d, 0xe8, 0x46, 0xf8, 0xe9, 0x62, 0x98, 0xbb, 0x18, 0x28, - 0xee, 0x71, 0x94, 0xcb, 0xd3, 0x79, 0xa0, 0x50, 0x7a, 0xcc, 0xc1, 0x34, 0x5c, 0x60, 0xea, 0x73, - 0x85, 0x92, 0xf9, 0x61, 0x1a, 0xdd, 0x5c, 0x8c, 0xaa, 0xd9, 0x14, 0xb3, 0xd0, 0xd3, 0xb1, 0x10, - 0x63, 0x1f, 0x7b, 0x7a, 0x34, 0x8a, 0xbc, 0x9e, 0x1b, 0x49, 0x36, 0xe7, 0xd5, 0xf9, 0x1d, 0xea, - 0x03, 0xcf, 0xf4, 0x85, 0x73, 0x49, 0x5e, 0x83, 0x91, 0x6f, 0xaa, 0x5d, 0xde, 0x2a, 0x6f, 0x37, - 0x77, 0xb7, 0xba, 0x0b, 0x1a, 0x74, 0x4d, 0x21, 0x7c, 0x64, 0x81, 0xf5, 0x71, 0x2a, 0x31, 0x0c, - 0xb9, 0x08, 0xe8, 0x3c, 0x85, 0xec, 0x80, 0xa1, 0x2e, 0x30, 0xb0, 0x03, 0xe1, 0x62, 0xbb, 0xa2, - 0xf3, 0x1f, 0x14, 0xf2, 0x4f, 0x85, 0x8b, 0xb4, 0x11, 0xa3, 0xe2, 0xaf, 0xce, 0xbf, 0x65, 0x68, - 0x0e, 0x3c, 0xcb, 0x0f, 0x31, 0x61, 0xf0, 0x12, 0x56, 0x1c, 0x16, 0x62, 0xba, 0xf8, 0x97, 0x85, - 0xe4, 0x94, 0x27, 0xd5, 0x18, 0xf2, 0x1d, 0xac, 0x0a, 0x75, 0x81, 0xb2, 0x5d, 0xd9, 0xaa, 0x7e, - 0x06, 0x9c, 0x80, 0xc8, 0x2e, 0x18, 0xe8, 0x87, 0x98, 0x70, 0xab, 0xde, 0xca, 0xed, 0xa8, 0x44, - 0x1b, 0x31, 0x2e, 0xfe, 0x8e, 0x57, 0x40, 0x29, 0x85, 0x6c, 0xaf, 0x68, 0xfc, 0xc3, 0x02, 0xde, - 0x8a, 0x63, 0x47, 0x25, 0x9a, 0x80, 0x4c, 0x03, 0xea, 0x2e, 0x7a, 0x2c, 0xf2, 0x55, 0xa7, 0x0f, - 0x60, 0x4a, 0x16, 0x38, 0x17, 0xba, 0xcc, 0x2b, 0xa8, 0x73, 0xcf, 0x8e, 0xab, 0xa6, 0xfb, 0x7a, - 0xf4, 0x09, 0xd5, 0x5c, 0x01, 0x5a, 0xe3, 0x7a, 0xd0, 0x79, 0x0f, 0x8d, 0x21, 0x0b, 0x2f, 0x75, - 0x81, 0xd7, 0xb0, 0x26, 0xd1, 0x43, 0x89, 0x81, 0x83, 0x36, 0x77, 0xd3, 0x2a, 0x9b, 0xc5, 0x2a, - 0x79, 0x47, 0x1d, 0x95, 0x68, 0x33, 0x4f, 0x18, 0xb8, 0x66, 0x13, 0x8c, 0x7c, 0xd8, 0xf9, 0xab, - 0x0c, 0x6b, 0xef, 0xd3, 0x3e, 0xd7, 0xd5, 0x4d, 0xd8, 0xf0, 0x59, 0x14, 0x38, 0x17, 0x53, 0x9f, - 0x05, 0xb6, 0x44, 0xef, 0xff, 0xd4, 0x5f, 0x9f, 0xa7, 0x50, 0xf4, 0x88, 0x05, 0xad, 0x30, 0x1a, - 0xd9, 0x99, 0x7f, 0x74, 0x95, 0xca, 0xdd, 0x55, 0x36, 0xc2, 0x68, 0x94, 0x71, 0xa1, 0xe8, 0x2d, - 0x12, 0xfd, 0xa7, 0x0c, 0x6b, 0x31, 0xc1, 0x13, 0x54, 0xcc, 0x65, 0x8a, 0x11, 0x02, 0x2b, 0x01, - 0x9b, 0x24, 0x22, 0x1a, 0x54, 0x7f, 0xc7, 0xda, 0x2a, 0x3e, 0x41, 0x11, 0xa9, 0xf4, 0x90, 0x36, - 0xbb, 0x49, 0xbf, 0x77, 0xb3, 0x7e, 0xef, 0x1e, 0xa4, 0xfd, 0x4e, 0x33, 0x24, 0xd9, 0x83, 0xba, - 0x44, 0x25, 0x39, 0x86, 0xed, 0x55, 0x9d, 0xf4, 0xb8, 0x40, 0x92, 0xa2, 0x92, 0xb3, 0x73, 0x25, - 0x99, 0xc2, 0xf1, 0x8c, 0x66, 0x60, 0xf2, 0x0d, 0xac, 0x6b, 0x5b, 0xca, 0x68, 0xaa, 0xf8, 0xc8, - 0xc7, 0x76, 0x6d, 0xab, 0xbc, 0xdd, 0x88, 0xd5, 0x58, 0x98, 0x36, 0xbf, 0x80, 0x07, 0x0b, 0x13, - 0xf6, 0x15, 0xf3, 0x23, 0xec, 0xf4, 0x60, 0xb5, 0xef, 0x73, 0x16, 0x92, 0x16, 0x54, 0xaf, 0x98, - 0x4c, 0xf7, 0x11, 0x7f, 0x92, 0x87, 0xb0, 0xca, 0xe2, 0x90, 0x16, 0xcd, 0xa0, 0xc9, 0xa0, 0xf3, - 0x77, 0x15, 0x56, 0xf4, 0x11, 0x6d, 0x40, 0x25, 0x3d, 0x76, 0x83, 0x56, 0xb8, 0x4b, 0x7e, 0x80, - 0xc6, 0x24, 0x55, 0x25, 0x95, 0xf9, 0xeb, 0x25, 0xbd, 0x9c, 0x09, 0x47, 0x73, 0x30, 0xe9, 0x42, - 0x8d, 0x07, 0xd3, 0x48, 0x85, 0xed, 0xea, 0x52, 0xd3, 0x98, 0x3c, 0x70, 0x79, 0x30, 0xa6, 0x29, - 0x8a, 0xbc, 0x84, 0xfb, 0xd1, 0x34, 0x54, 0x12, 0xd9, 0x44, 0x3b, 0xc7, 0xe6, 0x6e, 0xd8, 0x5e, - 0xd9, 0xaa, 0x6e, 0x1b, 0xf4, 0x5e, 0x16, 0x88, 0x97, 0x1a, 0xb8, 0x21, 0xd9, 0x87, 0x0d, 0x11, - 0xa9, 0x69, 0xa4, 0x6c, 0xcd, 0x5e, 0x8b, 0x5b, 0x5d, 0x62, 0x1b, 0xad, 0x01, 0x5d, 0x4f, 0xb0, - 0xfd, 0x04, 0x4a, 0xf6, 0xc0, 0x50, 0x2c, 0xbc, 0x4c, 0xec, 0x59, 0xd3, 0x5b, 0xfa, 0xaa, 0x90, - 0x97, 0xd9, 0x21, 0xb6, 0xa8, 0xca, 0xac, 0x61, 0xc2, 0x7a, 0xde, 0x74, 0x3a, 0xb7, 0xbe, 0x54, - 0x8e, 0x9b, 0x0d, 0x7f, 0x54, 0xa2, 0x6b, 0xd7, 0x37, 0x0d, 0xf0, 0x23, 0x34, 0x47, 0xda, 0xad, - 0x49, 0x85, 0xc6, 0xd2, 0xbe, 0x9d, 0xfb, 0xf9, 0xa8, 0x44, 0x61, 0x94, 0x8f, 0xcc, 0x06, 0xd4, - 0x14, 0x93, 0x63, 0x54, 0x9d, 0x3f, 0x2a, 0xd0, 0xca, 0x16, 0xca, 0x9b, 0xf6, 0x04, 0xc8, 0x87, - 0x88, 0xf9, 0x5c, 0xcd, 0x6c, 0xe1, 0xd9, 0x21, 0xca, 0x2b, 0xee, 0x64, 0xf7, 0xc0, 0xb3, 0xc2, - 0x1a, 0xef, 0x12, 0xe0, 0x99, 0x77, 0x9e, 0xc0, 0x68, 0xeb, 0x43, 0x61, 0x86, 0x9c, 0x02, 0x88, - 0xc0, 0xf6, 0x18, 0xf7, 0x23, 0x99, 0xdc, 0xb1, 0x1b, 0xbb, 0xbd, 0x5b, 0x36, 0x9b, 0x71, 0xe8, - 0x9e, 0x05, 0x87, 0x49, 0xc2, 0x5b, 0xe1, 0x73, 0x67, 0x46, 0x0d, 0x91, 0x4d, 0x74, 0xde, 0xc1, - 0xbd, 0x42, 0x94, 0x3c, 0x84, 0xd6, 0x61, 0x7f, 0x70, 0x6c, 0x0f, 0x4e, 0x4e, 0xac, 0x83, 0x41, - 0x7f, 0x68, 0x1d, 0xff, 0xda, 0x2a, 0x91, 0x6d, 0x78, 0xae, 0x67, 0xfb, 0x87, 0x43, 0x8b, 0xda, - 0xd6, 0x2f, 0xd6, 0x9b, 0x9f, 0x87, 0x7d, 0xf3, 0xd8, 0xb2, 0x4f, 0xcf, 0x0e, 0xac, 0x73, 0xfb, - 0xcd, 0xd9, 0xc9, 0xdb, 0x63, 0x6b, 0x68, 0xb5, 0xca, 0x9d, 0x9f, 0xa0, 0x5d, 0x64, 0x70, 0x90, - 0xdc, 0x8b, 0x21, 0x79, 0x5e, 0x74, 0x50, 0x2c, 0x44, 0xa3, 0xe0, 0x9f, 0xce, 0x9f, 0xd5, 0xb9, - 0x90, 0x43, 0x9c, 0x4c, 0x7d, 0xa6, 0x90, 0xbc, 0xc8, 0x3d, 0xf0, 0xb9, 0x4b, 0x45, 0xdb, 0x63, - 0xff, 0x13, 0x7b, 0x3c, 0xbb, 0x43, 0xa2, 0x1b, 0x16, 0xd9, 0x07, 0x23, 0x7f, 0x7b, 0xd3, 0x87, - 0xe2, 0x49, 0xb1, 0x13, 0x67, 0x53, 0x74, 0x07, 0x19, 0x88, 0xce, 0xf1, 0xe4, 0x05, 0xac, 0xc6, - 0x3d, 0x94, 0x78, 0xe4, 0x96, 0xd7, 0x2f, 0x41, 0x90, 0x1d, 0xa8, 0x27, 0x16, 0xc8, 0x7c, 0x72, - 0x9b, 0x17, 0x33, 0x18, 0xd9, 0x83, 0xb5, 0xf4, 0xe0, 0x6f, 0xda, 0x64, 0xe9, 0x1a, 0xcd, 0x14, - 0xa8, 0xfb, 0x7b, 0x08, 0xf7, 0xb3, 0xdd, 0xd9, 0xe9, 0x0b, 0x15, 0xa6, 0x3e, 0xf9, 0xf6, 0x0e, - 0x5d, 0xb2, 0x83, 0xa3, 0xad, 0x49, 0x61, 0xc6, 0xdc, 0xfd, 0x6d, 0x67, 0xcc, 0xd5, 0x45, 0x34, - 0xea, 0x3a, 0x62, 0xd2, 0xf3, 0x67, 0x9e, 0xea, 0xe5, 0x3f, 0x21, 0x63, 0x0c, 0x7a, 0xd3, 0xd1, - 0xf7, 0x63, 0xd1, 0x5b, 0xf8, 0x2f, 0x19, 0xd5, 0xf4, 0xa5, 0xfc, 0xea, 0xbf, 0x00, 0x00, 0x00, - 0xff, 0xff, 0x29, 0x6b, 0x27, 0xdf, 0x77, 0x09, 0x00, 0x00, + // 1052 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0x5d, 0x6f, 0xdb, 0x36, + 0x17, 0xf6, 0x47, 0x62, 0x5b, 0xc7, 0x49, 0xea, 0xb2, 0x79, 0xdf, 0x39, 0x5d, 0x3f, 0x02, 0xa3, + 0xd8, 0xd2, 0x62, 0xb3, 0x8b, 0x74, 0xc8, 0x2e, 0x32, 0x14, 0xb3, 0x1a, 0x05, 0x31, 0x90, 0x8f, + 0x96, 0xf1, 0xd0, 0x6d, 0x37, 0x02, 0x2d, 0x1d, 0x39, 0x44, 0x64, 0xd1, 0xa5, 0xa8, 0xa4, 0xc6, + 0x6e, 0xf7, 0x4b, 0x76, 0xb1, 0xab, 0xfd, 0x96, 0x5d, 0xed, 0x07, 0x0d, 0xa2, 0x3e, 0x1c, 0xab, + 0x4e, 0xb3, 0x3b, 0x91, 0xe7, 0x39, 0x87, 0x0f, 0x1f, 0x9e, 0x87, 0x14, 0x3c, 0xf2, 0xfc, 0x99, + 0x42, 0xee, 0xfa, 0x3d, 0x47, 0x48, 0xec, 0x5d, 0x0b, 0x79, 0xe9, 0xf9, 0xe2, 0xba, 0x3b, 0x95, + 0x42, 0x09, 0xb2, 0x9e, 0x45, 0xbb, 0x71, 0xf4, 0xe1, 0xe3, 0x45, 0xb0, 0x23, 0x02, 0x97, 0x2b, + 0x2e, 0x82, 0x04, 0x5d, 0x0c, 0xe3, 0x47, 0x74, 0xa2, 0x1b, 0xe1, 0x27, 0x8b, 0x61, 0xee, 0x62, + 0xa0, 0xb8, 0xc7, 0x51, 0x2e, 0x4f, 0xe7, 0x81, 0x42, 0xe9, 0x31, 0x07, 0xd3, 0x70, 0x81, 0xa9, + 0xcf, 0x15, 0x4a, 0xe6, 0x87, 0x69, 0x74, 0x6b, 0x31, 0xaa, 0x66, 0x53, 0xcc, 0x42, 0x4f, 0xc6, + 0x42, 0x8c, 0x7d, 0xec, 0xe9, 0xd1, 0x28, 0xf2, 0x7a, 0x6e, 0x24, 0xd9, 0x9c, 0x57, 0xe7, 0x37, + 0xa8, 0x0f, 0x3c, 0xd3, 0x17, 0xce, 0x25, 0x79, 0x0d, 0x46, 0xbe, 0xa9, 0x76, 0x79, 0xbb, 0xbc, + 0xd3, 0xdc, 0xdd, 0xee, 0x2e, 0x68, 0xd0, 0x35, 0x85, 0xf0, 0x91, 0x05, 0xd6, 0xc7, 0xa9, 0xc4, + 0x30, 0xe4, 0x22, 0xa0, 0xf3, 0x14, 0xf2, 0x12, 0x0c, 0x75, 0x81, 0x81, 0x1d, 0x08, 0x17, 0xdb, + 0x15, 0x9d, 0xff, 0xa0, 0x90, 0x7f, 0x2a, 0x5c, 0xa4, 0x8d, 0x18, 0x15, 0x7f, 0x75, 0xfe, 0x29, + 0x43, 0x73, 0xe0, 0x59, 0x7e, 0x88, 0x09, 0x83, 0x17, 0xb0, 0xe2, 0xb0, 0x10, 0xd3, 0xc5, 0xff, + 0x5f, 0x48, 0x4e, 0x79, 0x52, 0x8d, 0x21, 0xdf, 0xc0, 0xaa, 0x50, 0x17, 0x28, 0xdb, 0x95, 0xed, + 0xea, 0x67, 0xc0, 0x09, 0x88, 0xec, 0x82, 0x81, 0x7e, 0x88, 0x09, 0xb7, 0xea, 0xad, 0xdc, 0x8e, + 0x4a, 0xb4, 0x11, 0xe3, 0xe2, 0xef, 0x78, 0x05, 0x94, 0x52, 0xc8, 0xf6, 0x8a, 0xc6, 0x6f, 0x16, + 0xf0, 0x56, 0x1c, 0x3b, 0x2a, 0xd1, 0x04, 0x64, 0x1a, 0x50, 0x77, 0xd1, 0x63, 0x91, 0xaf, 0x3a, + 0x7d, 0x00, 0x53, 0xb2, 0xc0, 0xb9, 0xd0, 0x65, 0x5e, 0x41, 0x9d, 0x7b, 0x76, 0x5c, 0x35, 0xdd, + 0xd7, 0xc3, 0x4f, 0xa8, 0xe6, 0x0a, 0xd0, 0x1a, 0xd7, 0x83, 0xce, 0x7b, 0x68, 0x0c, 0x59, 0x78, + 0xa9, 0x0b, 0xbc, 0x86, 0x35, 0x89, 0x1e, 0x4a, 0x0c, 0x1c, 0xb4, 0xb9, 0x9b, 0x56, 0xd9, 0x2a, + 0x56, 0xc9, 0x3b, 0xea, 0xa8, 0x44, 0x9b, 0x79, 0xc2, 0xc0, 0x35, 0x9b, 0x60, 0xe4, 0xc3, 0xce, + 0x9f, 0x65, 0x58, 0x7b, 0x9f, 0xf6, 0xb9, 0xae, 0x6e, 0xc2, 0x86, 0xcf, 0xa2, 0xc0, 0xb9, 0x98, + 0xfa, 0x2c, 0xb0, 0x25, 0x7a, 0xff, 0xa5, 0xfe, 0xfa, 0x3c, 0x85, 0xa2, 0x47, 0x2c, 0x68, 0x85, + 0xd1, 0xc8, 0xce, 0xfc, 0xa3, 0xab, 0x54, 0xee, 0xae, 0xb2, 0x11, 0x46, 0xa3, 0x8c, 0x0b, 0x45, + 0x6f, 0x91, 0xe8, 0xdf, 0x65, 0x58, 0x8b, 0x09, 0x9e, 0xa0, 0x62, 0x2e, 0x53, 0x8c, 0x10, 0x58, + 0x09, 0xd8, 0x24, 0x11, 0xd1, 0xa0, 0xfa, 0x3b, 0xd6, 0x56, 0xf1, 0x09, 0x8a, 0x48, 0xa5, 0x87, + 0xb4, 0xd5, 0x4d, 0xfa, 0xbd, 0x9b, 0xf5, 0x7b, 0xf7, 0x20, 0xed, 0x77, 0x9a, 0x21, 0xc9, 0x1e, + 0xd4, 0x25, 0x2a, 0xc9, 0x31, 0x6c, 0xaf, 0xea, 0xa4, 0x47, 0x05, 0x92, 0x14, 0x95, 0x9c, 0x9d, + 0x2b, 0xc9, 0x14, 0x8e, 0x67, 0x34, 0x03, 0x93, 0xaf, 0x60, 0x5d, 0xdb, 0x52, 0x46, 0x53, 0xc5, + 0x47, 0x3e, 0xb6, 0x6b, 0xdb, 0xe5, 0x9d, 0x46, 0xac, 0xc6, 0xc2, 0xb4, 0xf9, 0x3f, 0x78, 0xb0, + 0x30, 0x61, 0x5f, 0x31, 0x3f, 0xc2, 0x4e, 0x0f, 0x56, 0xfb, 0x3e, 0x67, 0x21, 0x69, 0x41, 0xf5, + 0x8a, 0xc9, 0x74, 0x1f, 0xf1, 0x27, 0xd9, 0x84, 0x55, 0x16, 0x87, 0xb4, 0x68, 0x06, 0x4d, 0x06, + 0x9d, 0xbf, 0xaa, 0xb0, 0xa2, 0x8f, 0x68, 0x03, 0x2a, 0xe9, 0xb1, 0x1b, 0xb4, 0xc2, 0x5d, 0xf2, + 0x3d, 0x34, 0x26, 0xa9, 0x2a, 0xa9, 0xcc, 0x5f, 0x2e, 0xe9, 0xe5, 0x4c, 0x38, 0x9a, 0x83, 0x49, + 0x17, 0x6a, 0x3c, 0x98, 0x46, 0x2a, 0x6c, 0x57, 0x97, 0x9a, 0xc6, 0xe4, 0x81, 0xcb, 0x83, 0x31, + 0x4d, 0x51, 0xe4, 0x05, 0xdc, 0x8f, 0xa6, 0xa1, 0x92, 0xc8, 0x26, 0xda, 0x39, 0x36, 0x77, 0xc3, + 0xf6, 0xca, 0x76, 0x75, 0xc7, 0xa0, 0xf7, 0xb2, 0x40, 0xbc, 0xd4, 0xc0, 0x0d, 0xc9, 0x3e, 0x6c, + 0x88, 0x48, 0x4d, 0x23, 0x65, 0x6b, 0xf6, 0x5a, 0xdc, 0xea, 0x12, 0xdb, 0x68, 0x0d, 0xe8, 0x7a, + 0x82, 0xed, 0x27, 0x50, 0xb2, 0x07, 0x86, 0x62, 0xe1, 0x65, 0x62, 0xcf, 0x9a, 0xde, 0xd2, 0x17, + 0x85, 0xbc, 0xcc, 0x0e, 0xb1, 0x45, 0x55, 0x66, 0x0d, 0x13, 0xd6, 0xf3, 0xa6, 0xd3, 0xb9, 0xf5, + 0xa5, 0x72, 0xdc, 0x6c, 0xf8, 0xa3, 0x12, 0x5d, 0xbb, 0xbe, 0x69, 0x80, 0x1f, 0xa0, 0x39, 0xd2, + 0x6e, 0x4d, 0x2a, 0x34, 0x96, 0xf6, 0xed, 0xdc, 0xcf, 0x47, 0x25, 0x0a, 0xa3, 0x7c, 0x64, 0x36, + 0xa0, 0xa6, 0x98, 0x1c, 0xa3, 0xea, 0xfc, 0x5e, 0x81, 0x56, 0xb6, 0x50, 0xde, 0xb4, 0x27, 0x40, + 0x3e, 0x44, 0xcc, 0xe7, 0x6a, 0x66, 0x0b, 0xcf, 0x0e, 0x51, 0x5e, 0x71, 0x27, 0xbb, 0x07, 0x9e, + 0x16, 0xd6, 0x78, 0x97, 0x00, 0xcf, 0xbc, 0xf3, 0x04, 0x46, 0x5b, 0x1f, 0x0a, 0x33, 0xe4, 0x14, + 0x40, 0x04, 0xb6, 0xc7, 0xb8, 0x1f, 0xc9, 0xe4, 0x8e, 0xdd, 0xd8, 0xed, 0xdd, 0xb2, 0xd9, 0x8c, + 0x43, 0xf7, 0x2c, 0x38, 0x4c, 0x12, 0xde, 0x0a, 0x9f, 0x3b, 0x33, 0x6a, 0x88, 0x6c, 0xa2, 0xf3, + 0x0e, 0xee, 0x15, 0xa2, 0x64, 0x13, 0x5a, 0x87, 0xfd, 0xc1, 0xb1, 0x3d, 0x38, 0x39, 0xb1, 0x0e, + 0x06, 0xfd, 0xa1, 0x75, 0xfc, 0x4b, 0xab, 0x44, 0x76, 0xe0, 0x99, 0x9e, 0xed, 0x1f, 0x0e, 0x2d, + 0x6a, 0x5b, 0x3f, 0x5b, 0x6f, 0x7e, 0x1a, 0xf6, 0xcd, 0x63, 0xcb, 0x3e, 0x3d, 0x3b, 0xb0, 0xce, + 0xed, 0x37, 0x67, 0x27, 0x6f, 0x8f, 0xad, 0xa1, 0xd5, 0x2a, 0x77, 0x7e, 0x84, 0x76, 0x91, 0xc1, + 0x41, 0x72, 0x2f, 0x86, 0xe4, 0x59, 0xd1, 0x41, 0xb1, 0x10, 0x8d, 0x82, 0x7f, 0x3a, 0x7f, 0x54, + 0xe7, 0x42, 0x0e, 0x71, 0x32, 0xf5, 0x99, 0x42, 0xf2, 0x3c, 0xf7, 0xc0, 0xe7, 0x2e, 0x15, 0x6d, + 0x8f, 0xfd, 0x4f, 0xec, 0xf1, 0xf4, 0x0e, 0x89, 0x6e, 0x58, 0x64, 0x1f, 0x8c, 0xfc, 0xed, 0x4d, + 0x1f, 0x8a, 0xc7, 0xc5, 0x4e, 0x9c, 0x4d, 0xd1, 0x1d, 0x64, 0x20, 0x3a, 0xc7, 0x93, 0xe7, 0xb0, + 0x1a, 0xf7, 0x50, 0xe2, 0x91, 0x5b, 0x5e, 0xbf, 0x04, 0x41, 0x5e, 0x42, 0x3d, 0xb1, 0x40, 0xe6, + 0x93, 0xdb, 0xbc, 0x98, 0xc1, 0xc8, 0x1e, 0xac, 0xa5, 0x07, 0x7f, 0xd3, 0x26, 0x4b, 0xd7, 0x68, + 0xa6, 0x40, 0xdd, 0xdf, 0x43, 0xb8, 0x9f, 0xed, 0xce, 0x4e, 0x5f, 0xa8, 0x30, 0xf5, 0xc9, 0xd7, + 0x77, 0xe8, 0x92, 0x1d, 0x1c, 0x6d, 0x4d, 0x0a, 0x33, 0xe6, 0xde, 0xaf, 0xdf, 0x8d, 0xb9, 0xba, + 0x88, 0x46, 0x5d, 0x47, 0x4c, 0x7a, 0xba, 0x8c, 0x90, 0xe3, 0x5e, 0xfe, 0x23, 0x32, 0xc6, 0xa0, + 0x37, 0x1d, 0x7d, 0x3b, 0x16, 0xbd, 0x85, 0x7f, 0x93, 0x51, 0x4d, 0x5f, 0xcc, 0xaf, 0xfe, 0x0d, + 0x00, 0x00, 0xff, 0xff, 0xd7, 0xcb, 0x70, 0x86, 0x7b, 0x09, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/core/workflow_closure.pb.go b/gen/pb-go/flyteidl/core/workflow_closure.pb.go index 30ec37e36..136a5bad0 100644 --- a/gen/pb-go/flyteidl/core/workflow_closure.pb.go +++ b/gen/pb-go/flyteidl/core/workflow_closure.pb.go @@ -80,7 +80,7 @@ func init() { } var fileDescriptor_76071051330050c4 = []byte{ - // 193 bytes of a gzipped FileDescriptorProto + // 194 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x49, 0xcb, 0xa9, 0x2c, 0x49, 0xcd, 0x4c, 0xc9, 0xd1, 0x4f, 0xce, 0x2f, 0x4a, 0xd5, 0x2f, 0xcf, 0x2f, 0xca, 0x4e, 0xcb, 0xc9, 0x2f, 0x8f, 0x4f, 0xce, 0xc9, 0x2f, 0x2e, 0x2d, 0x4a, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, @@ -89,9 +89,9 @@ var fileDescriptor_76071051330050c4 = []byte{ 0xed, 0x0c, 0xb1, 0x41, 0xc8, 0x9a, 0x8b, 0x03, 0x66, 0x80, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0xbc, 0x1e, 0x8a, 0x75, 0x7a, 0x30, 0x1d, 0x21, 0xa9, 0xb9, 0x05, 0x39, 0x89, 0x25, 0xa9, 0x41, 0x70, 0x0d, 0x42, 0x86, 0x5c, 0xac, 0x60, 0xf3, 0x25, 0x98, 0x14, 0x98, 0x35, 0xb8, 0x8d, - 0xa4, 0xd1, 0x74, 0x86, 0x24, 0x16, 0x67, 0xc3, 0x75, 0x41, 0x54, 0x3a, 0x19, 0x45, 0x19, 0xa4, - 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xe7, 0x54, 0xa6, 0x95, 0xe8, 0xc3, - 0x1d, 0x9c, 0x9e, 0x9a, 0xa7, 0x5f, 0x90, 0xa4, 0x9b, 0x9e, 0xaf, 0x8f, 0xe2, 0x87, 0x24, 0x36, - 0xb0, 0xf3, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe0, 0x43, 0x98, 0x0a, 0x2e, 0x01, 0x00, - 0x00, + 0xa4, 0xd1, 0x74, 0x86, 0x24, 0x16, 0x67, 0xc3, 0x75, 0x41, 0x54, 0x3a, 0x99, 0x45, 0x99, 0xa4, + 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x83, 0xd5, 0xe7, 0x17, 0xa5, 0xeb, + 0xc3, 0x1d, 0x9d, 0x9e, 0x9a, 0xa7, 0x5f, 0x90, 0xa4, 0x9b, 0x9e, 0xaf, 0x8f, 0xe2, 0x8f, 0x24, + 0x36, 0xb0, 0x17, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x2f, 0xe9, 0x8f, 0x2e, 0x32, 0x01, + 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/event/event.pb.go b/gen/pb-go/flyteidl/event/event.pb.go index 98e59feae..64127addc 100644 --- a/gen/pb-go/flyteidl/event/event.pb.go +++ b/gen/pb-go/flyteidl/event/event.pb.go @@ -5,10 +5,10 @@ package event import ( fmt "fmt" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" _struct "github.com/golang/protobuf/ptypes/struct" timestamp "github.com/golang/protobuf/ptypes/timestamp" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" math "math" ) @@ -794,65 +794,66 @@ func init() { func init() { proto.RegisterFile("flyteidl/event/event.proto", fileDescriptor_4b035d24120b1b12) } var fileDescriptor_4b035d24120b1b12 = []byte{ - // 960 bytes of a gzipped FileDescriptorProto + // 961 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xed, 0x6e, 0xdb, 0x36, - 0x14, 0x8d, 0xd3, 0xd8, 0x8e, 0xaf, 0x6c, 0xd7, 0x25, 0xd2, 0x54, 0x4b, 0xd6, 0xc6, 0xf3, 0x3e, - 0x10, 0x74, 0x98, 0x84, 0x39, 0x58, 0x51, 0x60, 0x03, 0x86, 0x24, 0xf5, 0x16, 0x61, 0x69, 0x10, - 0xa8, 0xce, 0x06, 0x14, 0x1b, 0x04, 0x46, 0xa2, 0x15, 0x21, 0xb2, 0x28, 0x50, 0x54, 0x33, 0x3f, + 0x14, 0x8d, 0xdd, 0xd8, 0x8e, 0xaf, 0x6c, 0xd7, 0x25, 0xd2, 0x54, 0x4b, 0xd6, 0xc6, 0xd3, 0x3e, + 0x10, 0x74, 0x98, 0x04, 0xb8, 0x68, 0x57, 0x60, 0x03, 0x86, 0x24, 0xf5, 0x16, 0x61, 0x69, 0x10, + 0xa8, 0xce, 0x06, 0x14, 0x1b, 0x04, 0x46, 0xa2, 0x15, 0x21, 0xb6, 0x28, 0x50, 0x54, 0xb3, 0x3c, 0xca, 0xfe, 0xef, 0x29, 0xf6, 0x0a, 0x7b, 0x95, 0x3d, 0xc4, 0x40, 0xea, 0x23, 0xa1, 0x2c, 0x78, - 0xcd, 0xd0, 0x3f, 0x06, 0x74, 0x78, 0x78, 0x78, 0x79, 0xee, 0xd5, 0xb1, 0x60, 0x67, 0x16, 0x2e, - 0x38, 0x09, 0xbc, 0xd0, 0x24, 0xef, 0x48, 0xc4, 0xb3, 0x5f, 0x23, 0x66, 0x94, 0x53, 0xd4, 0x2f, - 0xd6, 0x0c, 0x89, 0xee, 0x3c, 0x2d, 0xb9, 0x2e, 0x65, 0xc4, 0x24, 0xbf, 0x13, 0x37, 0xe5, 0x01, - 0x8d, 0x32, 0xfa, 0xce, 0x33, 0x75, 0x39, 0xf0, 0x48, 0xc4, 0x83, 0x59, 0x40, 0x58, 0xbe, 0xbe, - 0xab, 0xae, 0xbb, 0x98, 0xe3, 0x90, 0xfa, 0xf9, 0xe2, 0x9e, 0x4f, 0xa9, 0x1f, 0x12, 0x53, 0x3e, - 0x5d, 0xa6, 0x33, 0x93, 0x07, 0x73, 0x92, 0x70, 0x3c, 0x8f, 0x73, 0xc2, 0xc7, 0x55, 0x42, 0xc2, - 0x59, 0xea, 0xe6, 0xa5, 0x8e, 0xfe, 0x59, 0x87, 0xed, 0x5f, 0x28, 0xbb, 0x9e, 0x85, 0xf4, 0x66, - 0x52, 0xd4, 0x35, 0x11, 0x55, 0xa3, 0xd7, 0xd0, 0x2d, 0x2b, 0x75, 0x02, 0x4f, 0x6f, 0x0c, 0x1b, - 0xfb, 0xda, 0xf8, 0xb9, 0x51, 0x5e, 0x4e, 0x54, 0x63, 0x2c, 0x6d, 0xb6, 0xca, 0xf2, 0x6d, 0x8d, - 0xdc, 0x82, 0x68, 0x0f, 0xb4, 0x98, 0x51, 0x2f, 0x75, 0x09, 0x13, 0x6a, 0xeb, 0xc3, 0xc6, 0x7e, - 0xc7, 0x86, 0x02, 0xb2, 0x3c, 0xf4, 0x1d, 0x34, 0xe3, 0x2b, 0x9c, 0x10, 0xfd, 0xc1, 0xb0, 0xb1, - 0xdf, 0x1f, 0x7f, 0xf1, 0x5f, 0x07, 0x19, 0xe7, 0x82, 0x6d, 0x67, 0x9b, 0xd0, 0xb7, 0xa0, 0x51, - 0xd7, 0x4d, 0x19, 0x23, 0x9e, 0x83, 0xb9, 0xbe, 0x21, 0x8b, 0xdd, 0x31, 0xb2, 0xcb, 0x1b, 0xc5, - 0xe5, 0x8d, 0x69, 0xe1, 0x8e, 0x0d, 0x05, 0xfd, 0x90, 0xa3, 0x3d, 0x00, 0x9a, 0xf2, 0x38, 0xe5, - 0x4e, 0xca, 0x02, 0xbd, 0x29, 0x4a, 0x3b, 0x59, 0xb3, 0x3b, 0x19, 0x76, 0xc1, 0x02, 0xf4, 0x0d, - 0x34, 0x09, 0x63, 0x94, 0xe9, 0x2d, 0xa9, 0xfb, 0xb4, 0x52, 0xdb, 0xad, 0x73, 0x82, 0x74, 0xb2, - 0x66, 0x67, 0xec, 0xa3, 0x87, 0xd0, 0xcb, 0x75, 0x19, 0x49, 0xd2, 0x90, 0x8f, 0xfe, 0x6e, 0x01, - 0x3a, 0xa3, 0x1e, 0xa9, 0x58, 0xfd, 0x02, 0xd6, 0x4b, 0x83, 0xab, 0xf7, 0x56, 0xe8, 0x77, 0xcc, - 0x5d, 0x0f, 0xde, 0xc3, 0xd3, 0x97, 0xaa, 0xa7, 0xa3, 0x55, 0xda, 0x1f, 0xd0, 0xcf, 0x5d, 0xe8, - 0x04, 0x91, 0x62, 0xa7, 0xbd, 0x29, 0x01, 0xe1, 0xa5, 0x6a, 0x76, 0x6b, 0x85, 0xd9, 0xed, 0xfb, - 0x98, 0x8d, 0x7e, 0x85, 0xed, 0x9b, 0x7c, 0x46, 0x9c, 0x88, 0x7a, 0xc4, 0x99, 0x13, 0x8e, 0x3d, - 0xcc, 0xb1, 0xbe, 0x29, 0x75, 0x3e, 0x33, 0xd4, 0xd7, 0xb2, 0x9c, 0x28, 0xe1, 0xc2, 0xeb, 0x9c, - 0x7b, 0xd2, 0xb0, 0xb7, 0x6e, 0x6a, 0x70, 0x74, 0x0e, 0x88, 0xe3, 0xe4, 0xba, 0xa2, 0xdc, 0x97, - 0xca, 0xc3, 0xaa, 0xf2, 0x14, 0x27, 0xd7, 0x15, 0xd5, 0x01, 0xaf, 0x60, 0xe8, 0x37, 0xd8, 0x8a, - 0x31, 0x23, 0x11, 0x77, 0xa4, 0x70, 0xa9, 0xd9, 0x91, 0x9a, 0x5f, 0x56, 0x35, 0xcf, 0x25, 0x57, - 0x28, 0x97, 0x06, 0x14, 0x52, 0x36, 0x8a, 0xcb, 0xc5, 0x1a, 0x79, 0xb5, 0x64, 0x58, 0x25, 0xaf, - 0x0c, 0x44, 0x55, 0x5e, 0xa9, 0x7e, 0x0f, 0x34, 0x46, 0x38, 0x5b, 0x38, 0x3e, 0xa3, 0x69, 0xac, - 0x6b, 0xd9, 0xe8, 0x49, 0xe8, 0x47, 0x81, 0xa0, 0x21, 0x74, 0x93, 0x98, 0xb8, 0xd9, 0xe9, 0x81, - 0xa7, 0x77, 0x33, 0x86, 0xc0, 0x84, 0x90, 0xe5, 0x89, 0x29, 0x91, 0x8b, 0x11, 0x9e, 0x13, 0xbd, - 0x97, 0x4d, 0x89, 0x00, 0xce, 0xf0, 0x9c, 0x2c, 0xbd, 0x3a, 0x47, 0x8f, 0xe0, 0x21, 0xc7, 0xcc, - 0x27, 0xbc, 0xbc, 0xca, 0x88, 0xc0, 0x56, 0x5d, 0x0f, 0x3f, 0x70, 0x72, 0x8d, 0xfe, 0x68, 0xc0, - 0xa0, 0xda, 0x51, 0xf4, 0x0a, 0xba, 0x2e, 0x76, 0xaf, 0x88, 0x93, 0x70, 0xcc, 0xd3, 0x44, 0x9e, - 0xd1, 0x1f, 0x7f, 0x52, 0x39, 0xe3, 0x38, 0xcb, 0xea, 0x63, 0xc1, 0x7c, 0x23, 0x89, 0xb6, 0xe6, - 0xde, 0x3e, 0xa0, 0xef, 0x41, 0xcb, 0xe3, 0xdc, 0xb9, 0x26, 0x0b, 0xf9, 0x02, 0x6b, 0xe3, 0x67, - 0xf5, 0x22, 0x65, 0x3b, 0x20, 0xdf, 0xf2, 0x13, 0x59, 0x8c, 0x2e, 0x60, 0x77, 0xc5, 0x60, 0xac, - 0x0c, 0x16, 0x65, 0x87, 0x1a, 0x2c, 0xa3, 0x17, 0x85, 0x6c, 0xed, 0x40, 0xa0, 0x27, 0xd0, 0x2e, - 0xda, 0xda, 0x90, 0x7d, 0x6b, 0x45, 0xb2, 0xa5, 0xa3, 0xbf, 0x9a, 0x80, 0x14, 0xdd, 0x2c, 0xdf, - 0xc6, 0xd0, 0x96, 0x33, 0x5e, 0xd6, 0xf2, 0x51, 0xa5, 0x96, 0x3b, 0xc7, 0xb7, 0x04, 0xd3, 0xf2, - 0x90, 0x03, 0xfa, 0xdd, 0xf9, 0x55, 0x1a, 0xba, 0x7e, 0xaf, 0xa4, 0x7c, 0x1c, 0x2f, 0x5f, 0xc5, - 0xf2, 0xd0, 0xa7, 0xd0, 0xcb, 0x26, 0x18, 0x73, 0x4e, 0xe6, 0x31, 0x97, 0x19, 0xd9, 0xb3, 0xbb, - 0x12, 0x3c, 0xcc, 0xb0, 0xdb, 0x00, 0xdd, 0xa8, 0x0d, 0x50, 0xe5, 0xae, 0x6a, 0x80, 0x56, 0xb2, - 0xb9, 0xb9, 0x94, 0xcd, 0xcf, 0x61, 0x23, 0xa4, 0x7e, 0xa2, 0xb7, 0x86, 0x0f, 0xf6, 0xb5, 0xf1, - 0x76, 0x8d, 0xf2, 0x29, 0xf5, 0x6d, 0xc9, 0xa9, 0xa6, 0x71, 0xfb, 0xff, 0xa7, 0xf1, 0xe6, 0xca, - 0x34, 0xee, 0xac, 0x48, 0x63, 0xb8, 0x57, 0x1a, 0xbf, 0x04, 0xcd, 0x4d, 0x13, 0x4e, 0xe7, 0x4e, - 0x10, 0xcd, 0xa8, 0xcc, 0x07, 0x6d, 0xfc, 0x64, 0xa9, 0xe2, 0x37, 0xf2, 0x63, 0xc4, 0x86, 0x8c, - 0x6b, 0x45, 0x33, 0x2a, 0xfa, 0x22, 0x1d, 0x74, 0xde, 0x11, 0x96, 0x04, 0x34, 0x92, 0xc9, 0xd1, - 0xb3, 0xbb, 0x12, 0xfc, 0x39, 0xc3, 0xd0, 0x21, 0x6c, 0x96, 0x89, 0x36, 0x90, 0xda, 0x9f, 0xd7, - 0x85, 0xf0, 0x72, 0x96, 0x95, 0xdb, 0x96, 0xff, 0x9c, 0xff, 0x6c, 0xc0, 0xe3, 0xfa, 0xd7, 0xe8, - 0x2d, 0xf4, 0x83, 0x28, 0xe1, 0x38, 0x72, 0x89, 0xe3, 0x86, 0x38, 0x49, 0xe4, 0x99, 0xfd, 0xf1, - 0xc1, 0x7b, 0x9d, 0x69, 0x58, 0xf9, 0xde, 0x63, 0xb1, 0xd5, 0xee, 0x05, 0x77, 0x1f, 0x47, 0x26, - 0xf4, 0x94, 0x75, 0xa4, 0x41, 0xfb, 0xd5, 0xe4, 0x87, 0xc3, 0x8b, 0xd3, 0xe9, 0x60, 0x0d, 0x3d, - 0x82, 0x9e, 0x75, 0x36, 0x9d, 0xd8, 0xf6, 0xc5, 0xf9, 0xd4, 0x3a, 0x3a, 0x9d, 0x0c, 0x1a, 0x47, - 0x07, 0x6f, 0xbf, 0xf6, 0x03, 0x7e, 0x95, 0x5e, 0x1a, 0x2e, 0x9d, 0x9b, 0xe1, 0x62, 0xc6, 0xcd, - 0xf2, 0x03, 0xd1, 0x27, 0x91, 0x19, 0x5f, 0x7e, 0xe5, 0x53, 0x53, 0xfd, 0x3c, 0xbd, 0x6c, 0x49, - 0xc7, 0x0f, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x31, 0xc1, 0xc3, 0xaa, 0xb7, 0x0a, 0x00, 0x00, + 0x4d, 0xd1, 0x3f, 0x06, 0x74, 0x79, 0x78, 0x78, 0x78, 0xee, 0xd5, 0xb1, 0x60, 0x7b, 0x36, 0xbf, + 0xe6, 0x24, 0xf4, 0xe7, 0x16, 0x79, 0x47, 0x22, 0x9e, 0xfd, 0x9a, 0x31, 0xa3, 0x9c, 0xa2, 0x41, + 0xb1, 0x66, 0xca, 0xea, 0xf6, 0xe3, 0x12, 0xeb, 0x51, 0x46, 0x2c, 0xf2, 0x07, 0xf1, 0x52, 0x1e, + 0xd2, 0x28, 0x83, 0x6f, 0x3f, 0x51, 0x97, 0x43, 0x9f, 0x44, 0x3c, 0x9c, 0x85, 0x84, 0xe5, 0xeb, + 0x3b, 0xea, 0xba, 0x87, 0x39, 0x9e, 0xd3, 0x20, 0x5f, 0xdc, 0x0d, 0x28, 0x0d, 0xe6, 0xc4, 0x92, + 0x4f, 0xe7, 0xe9, 0xcc, 0xe2, 0xe1, 0x82, 0x24, 0x1c, 0x2f, 0xe2, 0x1c, 0xf0, 0x69, 0x15, 0x90, + 0x70, 0x96, 0x7a, 0xb9, 0x54, 0xe3, 0xdf, 0x26, 0x6c, 0xfd, 0x4a, 0xd9, 0xe5, 0x6c, 0x4e, 0xaf, + 0x26, 0x85, 0xae, 0x89, 0x50, 0x8d, 0x5e, 0x43, 0xaf, 0x54, 0xea, 0x86, 0xbe, 0xde, 0x18, 0x35, + 0xf6, 0xb4, 0xf1, 0x53, 0xb3, 0xbc, 0x9c, 0x50, 0x63, 0x2e, 0x6d, 0xb6, 0x4b, 0xf9, 0x8e, 0x46, + 0x6e, 0x8a, 0x68, 0x17, 0xb4, 0x98, 0x51, 0x3f, 0xf5, 0x08, 0x13, 0x6c, 0xcd, 0x51, 0x63, 0xaf, + 0xeb, 0x40, 0x51, 0xb2, 0x7d, 0xf4, 0x3d, 0xb4, 0xe2, 0x0b, 0x9c, 0x10, 0xfd, 0xde, 0xa8, 0xb1, + 0x37, 0x18, 0x7f, 0xf5, 0x7f, 0x07, 0x99, 0xa7, 0x02, 0xed, 0x64, 0x9b, 0xd0, 0x77, 0xa0, 0x51, + 0xcf, 0x4b, 0x19, 0x23, 0xbe, 0x8b, 0xb9, 0xbe, 0x2e, 0xc5, 0x6e, 0x9b, 0xd9, 0xe5, 0xcd, 0xe2, + 0xf2, 0xe6, 0xb4, 0x70, 0xc7, 0x81, 0x02, 0xbe, 0xcf, 0xd1, 0x2e, 0x00, 0x4d, 0x79, 0x9c, 0x72, + 0x37, 0x65, 0xa1, 0xde, 0x12, 0xd2, 0x8e, 0xd6, 0x9c, 0x6e, 0x56, 0x3b, 0x63, 0x21, 0x7a, 0x0e, + 0x2d, 0xc2, 0x18, 0x65, 0x7a, 0x5b, 0xf2, 0x3e, 0xae, 0x68, 0xbb, 0x71, 0x4e, 0x80, 0x8e, 0xd6, + 0x9c, 0x0c, 0x7d, 0x70, 0x1f, 0xfa, 0x39, 0x2f, 0x23, 0x49, 0x3a, 0xe7, 0xc6, 0x3f, 0x6d, 0x40, + 0x27, 0xd4, 0x27, 0x15, 0xab, 0x5f, 0x40, 0xb3, 0x34, 0xb8, 0x7a, 0x6f, 0x05, 0x7e, 0xcb, 0xdc, + 0x66, 0xf8, 0x1e, 0x9e, 0xbe, 0x54, 0x3d, 0x35, 0x56, 0x71, 0x7f, 0x44, 0x3f, 0x77, 0xa0, 0x1b, + 0x46, 0x8a, 0x9d, 0xce, 0x86, 0x2c, 0x08, 0x2f, 0x55, 0xb3, 0xdb, 0x2b, 0xcc, 0xee, 0xdc, 0xc5, + 0x6c, 0xf4, 0x1b, 0x6c, 0x5d, 0xe5, 0x33, 0xe2, 0x46, 0xd4, 0x27, 0xee, 0x82, 0x70, 0xec, 0x63, + 0x8e, 0xf5, 0x0d, 0xc9, 0xf3, 0x85, 0xa9, 0xbe, 0x96, 0xe5, 0x44, 0x09, 0x17, 0x5e, 0xe7, 0xd8, + 0xa3, 0x86, 0xb3, 0x79, 0x55, 0x53, 0x47, 0xa7, 0x80, 0x38, 0x4e, 0x2e, 0x2b, 0xcc, 0x03, 0xc9, + 0x3c, 0xaa, 0x32, 0x4f, 0x71, 0x72, 0x59, 0x61, 0x1d, 0xf2, 0x4a, 0x0d, 0xfd, 0x0e, 0x9b, 0x31, + 0x66, 0x24, 0xe2, 0xae, 0x24, 0x2e, 0x39, 0xbb, 0x92, 0xf3, 0xeb, 0x2a, 0xe7, 0xa9, 0xc4, 0x0a, + 0xe6, 0xd2, 0x80, 0x82, 0xca, 0x41, 0x71, 0xb9, 0x58, 0x43, 0xaf, 0x4a, 0x86, 0x55, 0xf4, 0xca, + 0x40, 0x54, 0xe9, 0x15, 0xf5, 0xbb, 0xa0, 0x31, 0xc2, 0xd9, 0xb5, 0x1b, 0x30, 0x9a, 0xc6, 0xba, + 0x96, 0x8d, 0x9e, 0x2c, 0xfd, 0x24, 0x2a, 0x68, 0x04, 0xbd, 0x24, 0x26, 0x5e, 0x76, 0x7a, 0xe8, + 0xeb, 0xbd, 0x0c, 0x21, 0x6a, 0x82, 0xc8, 0xf6, 0xc5, 0x94, 0xc8, 0xc5, 0x08, 0x2f, 0x88, 0xde, + 0xcf, 0xa6, 0x44, 0x14, 0x4e, 0xf0, 0x82, 0x2c, 0xbd, 0x3a, 0x07, 0x0f, 0xe0, 0x3e, 0xc7, 0x2c, + 0x20, 0xbc, 0xbc, 0x8a, 0x41, 0x60, 0xb3, 0xae, 0x87, 0x1f, 0x39, 0xb9, 0x8c, 0x3f, 0x1b, 0x30, + 0xac, 0x76, 0x14, 0xbd, 0x82, 0x9e, 0x87, 0xbd, 0x0b, 0xe2, 0x26, 0x1c, 0xf3, 0x34, 0x91, 0x67, + 0x0c, 0xc6, 0x9f, 0x55, 0xce, 0x38, 0xcc, 0xb2, 0xfa, 0x50, 0x20, 0xdf, 0x48, 0xa0, 0xa3, 0x79, + 0x37, 0x0f, 0xe8, 0x07, 0xd0, 0xf2, 0x38, 0x77, 0x2f, 0xc9, 0xb5, 0x7c, 0x81, 0xb5, 0xf1, 0x93, + 0x7a, 0x92, 0xb2, 0x1d, 0x90, 0x6f, 0xf9, 0x99, 0x5c, 0x1b, 0x67, 0xb0, 0xb3, 0x62, 0x30, 0x56, + 0x06, 0x8b, 0xb2, 0x43, 0x0d, 0x16, 0xe3, 0x45, 0x41, 0x5b, 0x3b, 0x10, 0xe8, 0x11, 0x74, 0x8a, + 0xb6, 0x36, 0x64, 0xdf, 0xda, 0x91, 0x6c, 0xa9, 0xf1, 0x77, 0x0b, 0x90, 0xc2, 0x9b, 0xe5, 0xdb, + 0x18, 0x3a, 0x72, 0xc6, 0x4b, 0x2d, 0x9f, 0x54, 0xb4, 0xdc, 0x3a, 0xbe, 0x2d, 0x90, 0xb6, 0x8f, + 0x5c, 0xd0, 0x6f, 0xcf, 0xaf, 0xd2, 0xd0, 0xe6, 0x9d, 0x92, 0xf2, 0x61, 0xbc, 0x7c, 0x15, 0xdb, + 0x47, 0x9f, 0x43, 0x3f, 0x9b, 0x60, 0xcc, 0x39, 0x59, 0xc4, 0x5c, 0x66, 0x64, 0xdf, 0xe9, 0xc9, + 0xe2, 0x7e, 0x56, 0xbb, 0x09, 0xd0, 0xf5, 0xda, 0x00, 0x55, 0xee, 0xaa, 0x06, 0x68, 0x25, 0x9b, + 0x5b, 0x4b, 0xd9, 0xfc, 0x14, 0xd6, 0xe7, 0x34, 0x48, 0xf4, 0xf6, 0xe8, 0xde, 0x9e, 0x36, 0xde, + 0xaa, 0x61, 0x3e, 0xa6, 0x81, 0x23, 0x31, 0xd5, 0x34, 0xee, 0x7c, 0x78, 0x1a, 0x6f, 0xac, 0x4c, + 0xe3, 0xee, 0x8a, 0x34, 0x86, 0x3b, 0xa5, 0xf1, 0x4b, 0xd0, 0xbc, 0x34, 0xe1, 0x74, 0xe1, 0x86, + 0xd1, 0x8c, 0xca, 0x7c, 0xd0, 0xc6, 0x8f, 0x96, 0x14, 0xbf, 0x91, 0x1f, 0x23, 0x0e, 0x64, 0x58, + 0x3b, 0x9a, 0x51, 0xd1, 0x17, 0xe9, 0xa0, 0xfb, 0x8e, 0xb0, 0x24, 0xa4, 0x91, 0x4c, 0x8e, 0xbe, + 0xd3, 0x93, 0xc5, 0x5f, 0xb2, 0x1a, 0xda, 0x87, 0x8d, 0x32, 0xd1, 0x86, 0x92, 0xfb, 0xcb, 0xba, + 0x10, 0x5e, 0xce, 0xb2, 0x72, 0xdb, 0xf2, 0x9f, 0xf3, 0x5f, 0x0d, 0x78, 0x58, 0xff, 0x1a, 0xbd, + 0x85, 0x41, 0x18, 0x25, 0x1c, 0x47, 0x1e, 0x71, 0xbd, 0x39, 0x4e, 0x12, 0x79, 0xe6, 0x60, 0xfc, + 0xec, 0xbd, 0xce, 0x34, 0xed, 0x7c, 0xef, 0xa1, 0xd8, 0xea, 0xf4, 0xc3, 0xdb, 0x8f, 0x86, 0x05, + 0x7d, 0x65, 0x1d, 0x69, 0xd0, 0x79, 0x35, 0xf9, 0x71, 0xff, 0xec, 0x78, 0x3a, 0x5c, 0x43, 0x0f, + 0xa0, 0x6f, 0x9f, 0x4c, 0x27, 0x8e, 0x73, 0x76, 0x3a, 0xb5, 0x0f, 0x8e, 0x27, 0xc3, 0xc6, 0xc1, + 0xb7, 0x6f, 0x9f, 0x07, 0x21, 0xbf, 0x48, 0xcf, 0x4d, 0x8f, 0x2e, 0x2c, 0x29, 0x80, 0xb2, 0xc0, + 0x2a, 0x3f, 0x12, 0x03, 0x12, 0x59, 0xf1, 0xf9, 0x37, 0x01, 0xb5, 0xd4, 0x4f, 0xd4, 0xf3, 0xb6, + 0x74, 0xfd, 0xd9, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x5f, 0xa6, 0x35, 0x3c, 0xbb, 0x0a, 0x00, + 0x00, } diff --git a/gen/pb-go/flyteidl/event/event.pb.validate.go b/gen/pb-go/flyteidl/event/event.pb.validate.go index 5d6cb3e40..861e3e6b6 100644 --- a/gen/pb-go/flyteidl/event/event.pb.validate.go +++ b/gen/pb-go/flyteidl/event/event.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/gen/pb-go/flyteidl/plugins/array_job.pb.go b/gen/pb-go/flyteidl/plugins/array_job.pb.go index 27153d8b9..9c24351dc 100644 --- a/gen/pb-go/flyteidl/plugins/array_job.pb.go +++ b/gen/pb-go/flyteidl/plugins/array_job.pb.go @@ -131,19 +131,19 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/array_job.proto", fileDescriptor_794211c91ec6cd2b) } var fileDescriptor_794211c91ec6cd2b = []byte{ - // 221 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0xd0, 0xbd, 0x4a, 0x04, 0x31, - 0x14, 0x05, 0xe0, 0xcd, 0xee, 0x22, 0x12, 0x15, 0xd7, 0x54, 0x29, 0x83, 0x20, 0x6c, 0xa1, 0x93, - 0x62, 0xf1, 0x01, 0xdc, 0x6a, 0xb1, 0x8c, 0x9d, 0xcd, 0x90, 0xc4, 0x4c, 0xbc, 0x92, 0x3f, 0x92, - 0x4c, 0x31, 0xbe, 0x91, 0x6f, 0x29, 0x33, 0x38, 0x3a, 0xd8, 0x5d, 0xce, 0xf9, 0x9a, 0x73, 0x31, - 0xeb, 0xdc, 0x50, 0x0d, 0xbc, 0x39, 0x9e, 0x5c, 0x6f, 0x21, 0x14, 0x2e, 0x73, 0x96, 0x43, 0xfb, - 0x11, 0x55, 0x93, 0x72, 0xac, 0x91, 0xec, 0x66, 0xd1, 0xfc, 0x88, 0xdb, 0x2f, 0x84, 0xcf, 0x9f, - 0x46, 0xf5, 0x1c, 0x15, 0x61, 0xf8, 0x22, 0xc9, 0x2c, 0x9d, 0x33, 0x0e, 0x8a, 0xa7, 0x88, 0xa1, - 0xfd, 0x46, 0x2c, 0x23, 0x42, 0xf0, 0xb6, 0xc0, 0xa7, 0xa1, 0xeb, 0xa9, 0x9a, 0x6e, 0x72, 0x87, - 0xaf, 0x3c, 0x84, 0xb6, 0xf4, 0x5a, 0x9b, 0x52, 0x4c, 0xa1, 0x9b, 0xb1, 0x3c, 0xad, 0xc4, 0xa5, - 0x87, 0xf0, 0x32, 0xa7, 0xe4, 0x1e, 0xdf, 0x2c, 0x58, 0x9b, 0x65, 0x85, 0x48, 0xb7, 0x0c, 0xed, - 0xd7, 0xa7, 0x95, 0xb8, 0xfe, 0xa3, 0x62, 0x2c, 0x8e, 0x04, 0xef, 0x66, 0xa9, 0x33, 0x54, 0x93, - 0x41, 0x1e, 0x1f, 0x5f, 0x0f, 0x16, 0xea, 0x7b, 0xaf, 0x1a, 0x1d, 0x3d, 0x77, 0x43, 0x57, 0xf9, - 0xef, 0x62, 0x6b, 0x02, 0x4f, 0xea, 0xc1, 0x46, 0xfe, 0xff, 0x09, 0xea, 0x6c, 0xda, 0x7e, 0xf8, - 0x0e, 0x00, 0x00, 0xff, 0xff, 0x63, 0x45, 0x75, 0xde, 0x1f, 0x01, 0x00, 0x00, + // 223 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0xd0, 0x31, 0x4f, 0xc3, 0x30, + 0x10, 0x05, 0xe0, 0xa6, 0xad, 0x10, 0x32, 0x20, 0x8a, 0xa7, 0x8c, 0x11, 0x12, 0x52, 0x07, 0x88, + 0x07, 0x06, 0xc4, 0x48, 0xa7, 0x8a, 0x31, 0x6c, 0x2c, 0x91, 0x6d, 0x8c, 0x39, 0x64, 0xfb, 0xac, + 0xb3, 0x33, 0x94, 0x7f, 0xc4, 0xbf, 0x44, 0xb1, 0x08, 0x44, 0xdd, 0x4e, 0xef, 0x7d, 0xcb, 0x3b, + 0xd6, 0xbc, 0xbb, 0x43, 0x36, 0xf0, 0xe6, 0x44, 0x74, 0x83, 0x85, 0x90, 0x84, 0x24, 0x92, 0x87, + 0xfe, 0x13, 0x55, 0x1b, 0x09, 0x33, 0xf2, 0xcd, 0x24, 0xda, 0x5f, 0x71, 0xfd, 0x5d, 0xb1, 0xd3, + 0xa7, 0x51, 0x3d, 0xa3, 0xe2, 0x0d, 0x3b, 0x8b, 0x92, 0xa4, 0x73, 0xc6, 0x41, 0xf2, 0x75, 0xd5, + 0x54, 0xdb, 0x55, 0x37, 0x8f, 0x38, 0x67, 0xeb, 0x04, 0x5f, 0xa6, 0x5e, 0x96, 0xaa, 0xdc, 0xfc, + 0x86, 0x5d, 0x78, 0x08, 0x7d, 0x1a, 0xb4, 0x36, 0x29, 0x99, 0x54, 0xaf, 0xc6, 0x72, 0xbf, 0xe8, + 0xce, 0x3d, 0x84, 0x97, 0x29, 0xe5, 0xb7, 0xec, 0x6a, 0xc6, 0x7a, 0x92, 0x19, 0xb0, 0x5e, 0x37, + 0xd5, 0x76, 0xb9, 0x5f, 0x74, 0x97, 0xff, 0xb4, 0x1b, 0x8b, 0x1d, 0x67, 0x9b, 0x49, 0x6a, 0x82, + 0x6c, 0x08, 0xe4, 0xee, 0xf1, 0xf5, 0xc1, 0x42, 0xfe, 0x18, 0x54, 0xab, 0xd1, 0x8b, 0x32, 0x05, + 0xc9, 0x8a, 0xbf, 0xd5, 0xd6, 0x04, 0x11, 0xd5, 0x9d, 0x45, 0x71, 0xfc, 0x08, 0x75, 0x52, 0xf6, + 0xdf, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x26, 0xec, 0x61, 0x11, 0x23, 0x01, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/plugins/presto.pb.go b/gen/pb-go/flyteidl/plugins/presto.pb.go index fcb442aaa..69d84d7fd 100644 --- a/gen/pb-go/flyteidl/plugins/presto.pb.go +++ b/gen/pb-go/flyteidl/plugins/presto.pb.go @@ -5,8 +5,8 @@ package plugins import ( fmt "fmt" + _ "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" - _ "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" math "math" ) @@ -93,18 +93,18 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/presto.proto", fileDescriptor_881edc23a44f4737) } var fileDescriptor_881edc23a44f4737 = []byte{ - // 207 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x8f, 0x31, 0x4b, 0xc6, 0x30, - 0x10, 0x86, 0xa9, 0x4a, 0xa5, 0x51, 0x41, 0x32, 0x48, 0x14, 0x05, 0xd1, 0xc5, 0xc5, 0x66, 0x28, - 0xfe, 0x01, 0x17, 0x57, 0x75, 0x74, 0x91, 0x34, 0x5e, 0xd3, 0x60, 0x9a, 0x0b, 0xc9, 0x65, 0xe8, - 0xea, 0x2f, 0x17, 0x63, 0xdb, 0x0f, 0xbe, 0xf1, 0x7d, 0x9e, 0x7b, 0xe1, 0x5e, 0x76, 0x33, 0xb8, - 0x99, 0xc0, 0x7e, 0x39, 0x19, 0x5c, 0x36, 0xd6, 0x27, 0x19, 0x22, 0x24, 0xc2, 0x36, 0x44, 0x24, - 0xe4, 0xe7, 0xab, 0x6e, 0x17, 0x7d, 0x75, 0xb9, 0x15, 0x34, 0x46, 0x90, 0xa4, 0xd2, 0x77, 0xfa, - 0x3f, 0xbe, 0xfb, 0xa9, 0xd8, 0xc9, 0x6b, 0x69, 0xbf, 0x65, 0x88, 0x33, 0xbf, 0x67, 0x67, 0x11, - 0x33, 0x59, 0x6f, 0x3e, 0x4d, 0xc4, 0x1c, 0x44, 0x75, 0x5b, 0x3d, 0x34, 0xef, 0xa7, 0x0b, 0x7c, - 0xf9, 0x63, 0x5c, 0xb0, 0x63, 0xad, 0x48, 0x39, 0x34, 0xe2, 0xa0, 0xe8, 0x35, 0xf2, 0x0b, 0x56, - 0x27, 0x3d, 0xc2, 0xa4, 0xc4, 0x61, 0x11, 0x4b, 0xe2, 0xd7, 0xac, 0x49, 0xa4, 0x08, 0x26, 0xf0, - 0x24, 0x8e, 0x8a, 0xda, 0x81, 0xe7, 0xa7, 0x8f, 0xce, 0x58, 0x1a, 0x73, 0xdf, 0x6a, 0x9c, 0xa4, - 0x9b, 0x07, 0x92, 0xdb, 0xc7, 0x06, 0xbc, 0x0c, 0xfd, 0xa3, 0x41, 0xb9, 0xbf, 0xba, 0xaf, 0xcb, - 0x84, 0xee, 0x37, 0x00, 0x00, 0xff, 0xff, 0x97, 0x6e, 0x8d, 0x5f, 0x10, 0x01, 0x00, 0x00, + // 208 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x8f, 0xb1, 0x4b, 0xc6, 0x30, + 0x10, 0xc5, 0xa9, 0xca, 0x27, 0x8d, 0x0a, 0x92, 0x41, 0xa2, 0x28, 0x88, 0x2e, 0x2e, 0x36, 0x83, + 0x83, 0xb8, 0xba, 0xb8, 0xaa, 0xa3, 0x8b, 0xa4, 0xf1, 0xbc, 0x06, 0xd3, 0x5c, 0x48, 0x2e, 0x43, + 0x57, 0xff, 0x72, 0x31, 0xb6, 0x15, 0xbe, 0xf1, 0x7e, 0xbf, 0x7b, 0xf0, 0x9e, 0xb8, 0xf8, 0xf4, + 0x13, 0x83, 0xfb, 0xf0, 0x3a, 0xfa, 0x82, 0x2e, 0x64, 0x1d, 0x13, 0x64, 0xa6, 0x2e, 0x26, 0x62, + 0x92, 0xc7, 0x8b, 0xee, 0x66, 0x7d, 0x76, 0xba, 0x06, 0x2c, 0x25, 0xd0, 0x6c, 0xf2, 0x57, 0xfe, + 0x7b, 0xbe, 0xfa, 0x6e, 0xc4, 0xc1, 0x73, 0x4d, 0xbf, 0x14, 0x48, 0x93, 0xbc, 0x16, 0x47, 0x89, + 0x0a, 0xbb, 0x80, 0xef, 0x98, 0xa8, 0x44, 0xd5, 0x5c, 0x36, 0x37, 0xed, 0xeb, 0xe1, 0x0c, 0x9f, + 0x7e, 0x99, 0x54, 0x62, 0xdf, 0x1a, 0x36, 0x9e, 0x50, 0xed, 0x54, 0xbd, 0x9c, 0xf2, 0x44, 0x6c, + 0xb2, 0x1d, 0x60, 0x34, 0x6a, 0xb7, 0x8a, 0xf9, 0x92, 0xe7, 0xa2, 0xcd, 0x6c, 0x18, 0x46, 0x08, + 0xac, 0xf6, 0xaa, 0xfa, 0x07, 0x8f, 0x0f, 0x6f, 0xf7, 0xe8, 0x78, 0x28, 0x7d, 0x67, 0x69, 0xd4, + 0xb5, 0x2c, 0x25, 0xd4, 0x6b, 0x6b, 0x84, 0xa0, 0x63, 0x7f, 0x8b, 0xa4, 0xb7, 0x97, 0xf7, 0x9b, + 0x3a, 0xe3, 0xee, 0x27, 0x00, 0x00, 0xff, 0xff, 0xd4, 0x1c, 0xa7, 0x6a, 0x14, 0x01, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/plugins/pytorch.pb.go b/gen/pb-go/flyteidl/plugins/pytorch.pb.go index 7f7cf958b..79138e568 100644 --- a/gen/pb-go/flyteidl/plugins/pytorch.pb.go +++ b/gen/pb-go/flyteidl/plugins/pytorch.pb.go @@ -68,15 +68,15 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/pytorch.proto", fileDescriptor_4df8a9374b28b766) } var fileDescriptor_4df8a9374b28b766 = []byte{ - // 154 bytes of a gzipped FileDescriptorProto + // 156 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xcb, 0xa9, 0x2c, 0x49, 0xcd, 0x4c, 0xc9, 0xd1, 0x2f, 0xc8, 0x29, 0x4d, 0xcf, 0xcc, 0x2b, 0xd6, 0x2f, 0xa8, 0x2c, 0xc9, 0x2f, 0x4a, 0xce, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x80, 0xc9, 0xeb, 0x41, 0xe5, 0x95, 0xac, 0xb8, 0xe4, 0x5c, 0x32, 0x8b, 0x4b, 0x8a, 0x32, 0x93, 0x4a, 0x4b, 0x52, 0x53, 0x02, 0x2a, 0x43, 0x40, 0xaa, 0x43, 0x8a, 0x12, 0x33, 0xf3, 0x32, 0xf3, 0xd2, 0x43, 0x12, 0x8b, 0xb3, 0x85, 0x24, 0xb8, 0xd8, 0xcb, 0xf3, 0x8b, 0xb2, 0x53, 0x8b, 0x8a, 0x25, 0x18, 0x15, 0x18, - 0x35, 0x58, 0x83, 0x60, 0x5c, 0x27, 0xd3, 0x28, 0xe3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, - 0xe4, 0xfc, 0x5c, 0xfd, 0x9c, 0xca, 0xb4, 0x12, 0x7d, 0xb8, 0xfd, 0xe9, 0xa9, 0x79, 0xfa, 0x05, - 0x49, 0xba, 0xe9, 0xf9, 0xfa, 0xe8, 0x4e, 0x4a, 0x62, 0x03, 0xbb, 0xc5, 0x18, 0x10, 0x00, 0x00, - 0xff, 0xff, 0x90, 0xe0, 0x36, 0xab, 0xad, 0x00, 0x00, 0x00, + 0x35, 0x58, 0x83, 0x60, 0x5c, 0x27, 0xcb, 0x28, 0xf3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, + 0xe4, 0xfc, 0x5c, 0x7d, 0xb0, 0xd1, 0xf9, 0x45, 0xe9, 0xfa, 0x70, 0x37, 0xa4, 0xa7, 0xe6, 0xe9, + 0x17, 0x24, 0xe9, 0xa6, 0xe7, 0xeb, 0xa3, 0x3b, 0x2b, 0x89, 0x0d, 0xec, 0x1e, 0x63, 0x40, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x91, 0x53, 0x3a, 0xa1, 0xb1, 0x00, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/plugins/qubole.pb.go b/gen/pb-go/flyteidl/plugins/qubole.pb.go index fdf4f149d..64f566b27 100644 --- a/gen/pb-go/flyteidl/plugins/qubole.pb.go +++ b/gen/pb-go/flyteidl/plugins/qubole.pb.go @@ -5,8 +5,8 @@ package plugins import ( fmt "fmt" + _ "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" - _ "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" math "math" ) @@ -192,25 +192,25 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/qubole.proto", fileDescriptor_7cb86d766c12ee2e) } var fileDescriptor_7cb86d766c12ee2e = []byte{ - // 316 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x51, 0xc1, 0x4e, 0xc2, 0x40, - 0x14, 0x4c, 0x29, 0x6a, 0x78, 0x48, 0x24, 0xab, 0x87, 0xaa, 0x51, 0x1b, 0x8c, 0x49, 0x2f, 0x76, - 0x23, 0x84, 0x1f, 0x80, 0x8b, 0x31, 0x5c, 0xa8, 0x9e, 0xbc, 0x10, 0x76, 0x7d, 0xd4, 0x8d, 0x4b, - 0x17, 0xba, 0xbb, 0x26, 0xfd, 0x4c, 0xff, 0xc8, 0x74, 0x5b, 0x4a, 0xc2, 0x81, 0xdb, 0xeb, 0xcc, - 0x7b, 0x9d, 0x99, 0x1d, 0xb8, 0x5b, 0xc9, 0xc2, 0xa0, 0xf8, 0x92, 0x74, 0x23, 0x6d, 0x2a, 0x32, - 0x4d, 0xb7, 0x96, 0x29, 0x89, 0xf1, 0x26, 0x57, 0x46, 0x91, 0xfe, 0x8e, 0x8e, 0x6b, 0xfa, 0xe6, - 0xba, 0x39, 0xe0, 0x2a, 0x47, 0x6a, 0x96, 0xfa, 0x47, 0x57, 0xcb, 0x03, 0x06, 0x9d, 0x57, 0xf1, - 0x8b, 0x73, 0x8b, 0x79, 0x41, 0xae, 0xe0, 0x64, 0x5b, 0x0e, 0x81, 0x17, 0x7a, 0x51, 0x27, 0xa9, - 0x3e, 0xc8, 0x03, 0x74, 0x8d, 0x58, 0xa3, 0xb2, 0x66, 0xa1, 0x91, 0x07, 0xad, 0xd0, 0x8b, 0x7a, - 0x09, 0xd4, 0xd0, 0x3b, 0x72, 0x72, 0x0f, 0x90, 0xa3, 0xc9, 0x8b, 0xa9, 0xb2, 0x99, 0x09, 0xfc, - 0x8a, 0xdf, 0x23, 0x83, 0x19, 0x5c, 0x36, 0x1a, 0x53, 0x25, 0x25, 0x72, 0x23, 0x54, 0x46, 0xc6, - 0x70, 0x56, 0x0a, 0x08, 0xd4, 0x41, 0x2b, 0xf4, 0xa3, 0xee, 0xf0, 0x36, 0x3e, 0x74, 0x1e, 0x37, - 0x77, 0xc9, 0x6e, 0x77, 0xf0, 0xe7, 0x41, 0x6f, 0xee, 0xf2, 0x96, 0xe4, 0x9b, 0x62, 0xe4, 0x11, - 0x7a, 0x5c, 0x5a, 0x6d, 0x30, 0x5f, 0xc8, 0x25, 0x43, 0x59, 0xdb, 0x3f, 0xaf, 0xc1, 0x59, 0x89, - 0x91, 0x0f, 0xe8, 0xbb, 0x38, 0x0b, 0xde, 0x38, 0x70, 0x51, 0xba, 0xc3, 0xa7, 0x23, 0xb2, 0x7b, - 0xbb, 0x93, 0x56, 0xe0, 0x25, 0x17, 0xdb, 0x83, 0x0c, 0x04, 0xda, 0x66, 0x99, 0xea, 0xc0, 0x0f, - 0xfd, 0xa8, 0x93, 0xb8, 0x99, 0xbc, 0xec, 0x5e, 0xb1, 0xed, 0x7e, 0x7f, 0x34, 0x55, 0xb5, 0x39, - 0x19, 0x7f, 0x8e, 0x52, 0x61, 0xbe, 0x2d, 0x8b, 0xb9, 0x5a, 0x53, 0x59, 0xac, 0x0c, 0x6d, 0x2a, - 0x4b, 0x31, 0xa3, 0x1b, 0xf6, 0x9c, 0x2a, 0x7a, 0x58, 0x3b, 0x3b, 0x75, 0x1d, 0x8e, 0xfe, 0x03, - 0x00, 0x00, 0xff, 0xff, 0x63, 0xd9, 0xa0, 0x6e, 0x11, 0x02, 0x00, 0x00, + // 319 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x51, 0x4f, 0x4f, 0xfa, 0x40, + 0x14, 0x4c, 0x29, 0xbf, 0x9f, 0xe1, 0x21, 0x91, 0xac, 0x1e, 0xaa, 0x46, 0x6d, 0x30, 0x26, 0xbd, + 0xd8, 0x8d, 0x18, 0x63, 0xbc, 0xc2, 0xc5, 0x18, 0x2e, 0x54, 0x4f, 0x5e, 0x08, 0xbb, 0x3e, 0xeb, + 0xc6, 0xa5, 0x0b, 0xfb, 0xc7, 0x84, 0x8f, 0xe9, 0x37, 0x32, 0xdd, 0x96, 0x92, 0x70, 0xe0, 0xf6, + 0x3a, 0x33, 0xaf, 0x6f, 0x66, 0x07, 0x2e, 0x3e, 0xe5, 0xda, 0xa2, 0xf8, 0x90, 0x74, 0x29, 0x5d, + 0x2e, 0x0a, 0x43, 0x57, 0x8e, 0x29, 0x89, 0xe9, 0x52, 0x2b, 0xab, 0x48, 0x7f, 0x43, 0xa7, 0x35, + 0x7d, 0x76, 0xda, 0x2c, 0x70, 0xa5, 0x91, 0xda, 0xb9, 0xf9, 0x36, 0x95, 0x78, 0xc0, 0xa0, 0xf3, + 0x2c, 0x7e, 0x70, 0xea, 0x50, 0xaf, 0xc9, 0x09, 0xfc, 0x5b, 0x95, 0x43, 0x14, 0xc4, 0x41, 0xd2, + 0xc9, 0xaa, 0x0f, 0x72, 0x05, 0x5d, 0x2b, 0x16, 0xa8, 0x9c, 0x9d, 0x19, 0xe4, 0x51, 0x2b, 0x0e, + 0x92, 0x5e, 0x06, 0x35, 0xf4, 0x8a, 0x9c, 0x5c, 0x02, 0x68, 0xb4, 0x7a, 0x3d, 0x56, 0xae, 0xb0, + 0x51, 0x58, 0xf1, 0x5b, 0x64, 0x30, 0x81, 0xe3, 0xe6, 0xc6, 0x58, 0x49, 0x89, 0xdc, 0x0a, 0x55, + 0x90, 0x07, 0x38, 0x28, 0x0f, 0x08, 0x34, 0x51, 0x2b, 0x0e, 0x93, 0xee, 0xf0, 0x3c, 0xdd, 0x75, + 0x9e, 0x36, 0x7b, 0xd9, 0x46, 0x3b, 0xf8, 0x0d, 0xa0, 0x37, 0xf5, 0x79, 0x4b, 0xf2, 0x45, 0x31, + 0x72, 0x0d, 0x3d, 0x2e, 0x9d, 0xb1, 0xa8, 0x67, 0x72, 0xce, 0x50, 0xd6, 0xf6, 0x0f, 0x6b, 0x70, + 0x52, 0x62, 0xe4, 0x0d, 0xfa, 0x3e, 0xce, 0x8c, 0x37, 0x0e, 0x7c, 0x94, 0xee, 0xf0, 0x66, 0xcf, + 0xd9, 0xad, 0xdd, 0x51, 0x2b, 0x0a, 0xb2, 0xa3, 0xd5, 0x4e, 0x06, 0x02, 0x6d, 0x3b, 0xcf, 0x4d, + 0x14, 0xc6, 0x61, 0xd2, 0xc9, 0xfc, 0x4c, 0xee, 0x36, 0xaf, 0xd8, 0xf6, 0xbf, 0xdf, 0x9b, 0xaa, + 0x52, 0x8e, 0x9e, 0xde, 0x1f, 0x73, 0x61, 0xbf, 0x1c, 0x4b, 0xb9, 0x5a, 0x50, 0xaf, 0x57, 0x3a, + 0xa7, 0x4d, 0x6d, 0x39, 0x16, 0x74, 0xc9, 0x6e, 0x73, 0x45, 0x77, 0xab, 0x67, 0xff, 0x7d, 0x8f, + 0xf7, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x64, 0x2f, 0x46, 0xd2, 0x15, 0x02, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.pb.go b/gen/pb-go/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.pb.go index f990f056d..c1021f689 100644 --- a/gen/pb-go/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.pb.go +++ b/gen/pb-go/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.pb.go @@ -399,39 +399,39 @@ func init() { var fileDescriptor_84374f4d1322c4ba = []byte{ // 554 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xc1, 0x6e, 0xd3, 0x40, - 0x10, 0xad, 0x49, 0x29, 0x65, 0x52, 0x82, 0xb5, 0x02, 0xb5, 0x0a, 0x41, 0xa4, 0xe6, 0x40, 0x25, - 0x54, 0x5b, 0xa4, 0xe2, 0x40, 0x41, 0x48, 0x6e, 0x49, 0xd5, 0x44, 0x4a, 0x52, 0x39, 0x01, 0x41, - 0x2f, 0x66, 0x9d, 0x6e, 0xb6, 0x0e, 0xb6, 0xd7, 0x5a, 0x6f, 0x50, 0xfd, 0x03, 0x7c, 0x0d, 0x3f, - 0xc4, 0x8d, 0x4f, 0x41, 0x59, 0x6f, 0x12, 0x27, 0x0a, 0xae, 0xe0, 0x38, 0xa3, 0x79, 0xcf, 0x6f, - 0xde, 0x1b, 0x2f, 0x1c, 0x8f, 0x82, 0x54, 0x10, 0xff, 0x2a, 0xb0, 0xe2, 0x60, 0x42, 0xfd, 0x28, - 0xb1, 0x12, 0x4c, 0x49, 0x88, 0xbf, 0x11, 0x6e, 0x5d, 0xa7, 0x31, 0xe1, 0x31, 0xe6, 0x38, 0x24, - 0x82, 0x70, 0x57, 0x4c, 0x22, 0x3f, 0xa2, 0xee, 0x98, 0x79, 0x66, 0xcc, 0x99, 0x60, 0xa8, 0x3a, - 0xc3, 0x9a, 0x0a, 0x6b, 0xce, 0xb1, 0xd5, 0x57, 0x05, 0xbc, 0x0b, 0x4a, 0x8e, 0x23, 0x4a, 0x92, - 0x8c, 0xae, 0x7a, 0x58, 0x00, 0x11, 0x1c, 0xfb, 0xcb, 0x5f, 0x37, 0x7e, 0x6b, 0xb0, 0x7b, 0xbe, - 0xa4, 0x70, 0x20, 0x05, 0xb6, 0x99, 0x87, 0xda, 0xb0, 0x93, 0x47, 0xec, 0x69, 0x75, 0xed, 0xa0, - 0xdc, 0x78, 0x61, 0xfe, 0x5d, 0xb0, 0x39, 0x50, 0xf3, 0x6d, 0xe6, 0x39, 0x65, 0xb1, 0x28, 0xd0, - 0x3b, 0x78, 0x12, 0xe2, 0x1b, 0x37, 0x9a, 0x84, 0x1e, 0xe1, 0x2e, 0x1b, 0xb9, 0x79, 0xe6, 0x64, - 0xef, 0x4e, 0x5d, 0x3b, 0x28, 0x39, 0xbb, 0x21, 0xbe, 0xe9, 0xca, 0x89, 0xde, 0x28, 0xc7, 0x94, - 0xa0, 0xb7, 0x50, 0x9d, 0xa2, 0xa7, 0x1a, 0x83, 0x80, 0x04, 0x2b, 0xe0, 0xd2, 0x1c, 0x7c, 0xa1, - 0x06, 0xf2, 0x60, 0xe3, 0x1c, 0xf6, 0xd7, 0x6d, 0xd8, 0xf3, 0xc6, 0x64, 0x28, 0xfc, 0xef, 0x64, - 0x90, 0xc6, 0xc4, 0x78, 0x0e, 0x77, 0x3f, 0xe1, 0x60, 0x42, 0xd0, 0x0e, 0x6c, 0x77, 0x5a, 0xdd, - 0x56, 0xa7, 0x75, 0xd9, 0xd4, 0x37, 0x64, 0x65, 0x7f, 0xce, 0x2a, 0xcd, 0xf8, 0xa9, 0xc1, 0xd3, - 0x42, 0x2a, 0x34, 0x86, 0x0a, 0x9b, 0x15, 0xae, 0x48, 0x63, 0x22, 0x4d, 0xab, 0x34, 0x4e, 0x8b, - 0x4c, 0xbb, 0x55, 0x9d, 0x29, 0xa5, 0x39, 0x0f, 0x58, 0xbe, 0x89, 0x9e, 0x41, 0x39, 0x24, 0x82, - 0xfb, 0x43, 0x37, 0xc2, 0x21, 0x91, 0x16, 0xde, 0x77, 0x20, 0x6b, 0x75, 0x71, 0x48, 0x0c, 0x1b, - 0x6a, 0xeb, 0xa8, 0xfb, 0x82, 0x63, 0x41, 0x68, 0x6a, 0xec, 0xe7, 0x76, 0x3e, 0xb1, 0xbf, 0x34, - 0xfb, 0x2d, 0xbb, 0xab, 0x6f, 0x20, 0x80, 0x2d, 0xc7, 0xee, 0x7e, 0xe8, 0x75, 0x74, 0xcd, 0x38, - 0x86, 0x5a, 0xce, 0xcb, 0x26, 0xe6, 0x41, 0xda, 0x17, 0x2c, 0x8e, 0xfd, 0x88, 0x4a, 0xdb, 0xaa, - 0x33, 0x8a, 0x7b, 0x50, 0xea, 0x9d, 0x9d, 0xe9, 0x1b, 0x68, 0x1b, 0x36, 0xed, 0x8f, 0x83, 0x9e, - 0xae, 0x19, 0xbf, 0x4a, 0xeb, 0xdd, 0x6a, 0x33, 0xef, 0x94, 0x45, 0x23, 0x9f, 0xa2, 0xaf, 0xf0, - 0x78, 0xe5, 0xef, 0xc8, 0x4e, 0x59, 0x5d, 0xda, 0xcb, 0x22, 0xd3, 0x2e, 0x66, 0x18, 0x47, 0x42, - 0x9c, 0x47, 0xcb, 0x4c, 0x59, 0x17, 0x51, 0x78, 0xa8, 0x7e, 0xb8, 0x44, 0x6d, 0x2d, 0x7d, 0xaa, - 0x34, 0xde, 0xff, 0x6b, 0x20, 0x33, 0xd7, 0x54, 0x16, 0x15, 0xb1, 0xd4, 0x45, 0x57, 0xa0, 0xab, - 0x0f, 0xcd, 0x43, 0x92, 0x77, 0x59, 0x6e, 0xbc, 0xf9, 0xef, 0xe8, 0x1d, 0xa5, 0x7d, 0x71, 0x5e, - 0x3f, 0x34, 0xa8, 0xe7, 0x6f, 0xdf, 0x25, 0xd3, 0x44, 0xdc, 0x44, 0x45, 0x92, 0x5d, 0xdc, 0xe6, - 0xed, 0x0b, 0x16, 0x65, 0xaa, 0x16, 0xac, 0x89, 0x82, 0x99, 0x93, 0xd7, 0x97, 0x47, 0xd4, 0x17, - 0xd7, 0x13, 0xcf, 0x1c, 0xb2, 0xd0, 0x0a, 0xd2, 0x91, 0xb0, 0xe6, 0xef, 0x0e, 0x25, 0x91, 0x15, - 0x7b, 0x87, 0x94, 0x59, 0xab, 0x4f, 0x91, 0xb7, 0x25, 0x1f, 0x9d, 0xa3, 0x3f, 0x01, 0x00, 0x00, - 0xff, 0xff, 0x80, 0x43, 0xe0, 0x75, 0x30, 0x05, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xd1, 0x6e, 0xd3, 0x30, + 0x14, 0x5d, 0xe8, 0x18, 0xe3, 0x76, 0x94, 0xc8, 0x02, 0x6d, 0x2a, 0x45, 0x74, 0xe1, 0x81, 0x49, + 0x68, 0x89, 0x28, 0x0f, 0x68, 0x03, 0x21, 0x65, 0xa3, 0xd3, 0x5a, 0xa9, 0xed, 0x94, 0x16, 0x04, + 0x7b, 0x09, 0x4e, 0xe7, 0x7a, 0x29, 0x49, 0x1c, 0x39, 0x2e, 0x5a, 0x7e, 0x80, 0xaf, 0xe1, 0x87, + 0x78, 0xe3, 0x53, 0x50, 0x1d, 0xb7, 0x4d, 0xab, 0x92, 0x09, 0x1e, 0x7d, 0x75, 0xcf, 0xf1, 0xb9, + 0xe7, 0x5c, 0x1b, 0x8e, 0x47, 0x41, 0x2a, 0x88, 0x7f, 0x15, 0x58, 0x71, 0x30, 0xa1, 0x7e, 0x94, + 0x58, 0x09, 0xa6, 0x24, 0xc4, 0xdf, 0x08, 0xb7, 0xae, 0xd3, 0x98, 0xf0, 0x18, 0x73, 0x1c, 0x12, + 0x41, 0xb8, 0x2b, 0x26, 0x91, 0x1f, 0x51, 0x77, 0xcc, 0x3c, 0x33, 0xe6, 0x4c, 0x30, 0x54, 0x9d, + 0x61, 0x4d, 0x85, 0x35, 0xe7, 0xd8, 0xea, 0xab, 0x02, 0xde, 0x05, 0x25, 0xc7, 0x11, 0x25, 0x49, + 0x46, 0x57, 0x3d, 0x2c, 0x80, 0x08, 0x8e, 0xfd, 0xe5, 0xdb, 0x8d, 0xdf, 0x1a, 0xec, 0x9e, 0x2f, + 0x29, 0x1c, 0x48, 0x81, 0x6d, 0xe6, 0xa1, 0x36, 0xec, 0xe4, 0x11, 0x7b, 0x5a, 0x5d, 0x3b, 0x28, + 0x37, 0x5e, 0x98, 0x7f, 0x17, 0x6c, 0x0e, 0x54, 0x7f, 0x9b, 0x79, 0x4e, 0x59, 0x2c, 0x0e, 0xe8, + 0x1d, 0x3c, 0x09, 0xf1, 0x8d, 0x1b, 0x4d, 0x42, 0x8f, 0x70, 0x97, 0x8d, 0xdc, 0x3c, 0x73, 0xb2, + 0x77, 0xa7, 0xae, 0x1d, 0x94, 0x9c, 0xdd, 0x10, 0xdf, 0x74, 0x65, 0x47, 0x6f, 0x94, 0x63, 0x4a, + 0xd0, 0x5b, 0xa8, 0x4e, 0xd1, 0x53, 0x8d, 0x41, 0x40, 0x82, 0x15, 0x70, 0x69, 0x0e, 0xbe, 0x50, + 0x0d, 0x79, 0xb0, 0x71, 0x0e, 0xfb, 0xeb, 0x26, 0xec, 0x79, 0x63, 0x32, 0x14, 0xfe, 0x77, 0x32, + 0x48, 0x63, 0x62, 0x3c, 0x87, 0xbb, 0x9f, 0x70, 0x30, 0x21, 0x68, 0x07, 0xb6, 0x3b, 0xad, 0x6e, + 0xab, 0xd3, 0xba, 0x6c, 0xea, 0x1b, 0xf2, 0x64, 0x7f, 0xce, 0x4e, 0x9a, 0xf1, 0x53, 0x83, 0xa7, + 0x85, 0x54, 0x68, 0x0c, 0x15, 0x36, 0x3b, 0xb8, 0x22, 0x8d, 0x89, 0x34, 0xad, 0xd2, 0x38, 0x2d, + 0x32, 0xed, 0x56, 0x75, 0xa6, 0x94, 0xe6, 0x3c, 0x60, 0xf9, 0x22, 0x7a, 0x06, 0xe5, 0x90, 0x08, + 0xee, 0x0f, 0xdd, 0x08, 0x87, 0x44, 0x5a, 0x78, 0xdf, 0x81, 0xac, 0xd4, 0xc5, 0x21, 0x31, 0x6c, + 0xa8, 0xad, 0xa3, 0xee, 0x0b, 0x8e, 0x05, 0xa1, 0xa9, 0xb1, 0x9f, 0x9b, 0xf9, 0xc4, 0xfe, 0xd2, + 0xec, 0xb7, 0xec, 0xae, 0xbe, 0x81, 0x00, 0xb6, 0x1c, 0xbb, 0xfb, 0xa1, 0xd7, 0xd1, 0x35, 0xe3, + 0x18, 0x6a, 0x39, 0x2f, 0x9b, 0x98, 0x07, 0x69, 0x5f, 0xb0, 0x38, 0xf6, 0x23, 0x2a, 0x6d, 0xab, + 0xce, 0x28, 0xee, 0x41, 0xa9, 0x77, 0x76, 0xa6, 0x6f, 0xa0, 0x6d, 0xd8, 0xb4, 0x3f, 0x0e, 0x7a, + 0xba, 0x66, 0xfc, 0x2a, 0xad, 0x77, 0xab, 0xcd, 0xbc, 0x53, 0x16, 0x8d, 0x7c, 0x8a, 0xbe, 0xc2, + 0xe3, 0x95, 0xd7, 0x91, 0xad, 0xb2, 0xda, 0xb4, 0x97, 0x45, 0xa6, 0x5d, 0xcc, 0x30, 0x8e, 0x84, + 0x38, 0x8f, 0x96, 0x99, 0xb2, 0x2a, 0xa2, 0xf0, 0x50, 0x3d, 0xb8, 0x44, 0x4d, 0x2d, 0x7d, 0xaa, + 0x34, 0xde, 0xff, 0x6b, 0x20, 0x33, 0xd7, 0x54, 0x16, 0x15, 0xb1, 0x54, 0x45, 0x57, 0xa0, 0xab, + 0x8b, 0xe6, 0x21, 0xc9, 0xbd, 0x2c, 0x37, 0x8e, 0xfe, 0x3b, 0x7a, 0x47, 0x69, 0x5f, 0xac, 0xd7, + 0x0f, 0x0d, 0xea, 0xf9, 0xdd, 0x77, 0xc9, 0x34, 0x11, 0x37, 0x51, 0x91, 0x64, 0x1b, 0xb7, 0x79, + 0xfb, 0x80, 0x45, 0x99, 0xaa, 0x01, 0x6b, 0xa2, 0xa0, 0xe7, 0xe4, 0xe8, 0xf2, 0x0d, 0xf5, 0xc5, + 0xf5, 0xc4, 0x33, 0x87, 0x2c, 0xb4, 0xe4, 0x4d, 0x8c, 0x53, 0x6b, 0xfe, 0xf7, 0x50, 0x12, 0x59, + 0xb1, 0x77, 0x48, 0x99, 0xb5, 0xfa, 0x1d, 0x79, 0x5b, 0xf2, 0xe3, 0x79, 0xfd, 0x27, 0x00, 0x00, + 0xff, 0xff, 0x7d, 0x7a, 0x14, 0x9c, 0x34, 0x05, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/plugins/sagemaker/parameter_ranges.pb.go b/gen/pb-go/flyteidl/plugins/sagemaker/parameter_ranges.pb.go index 2c61347b0..dbf8dedd9 100644 --- a/gen/pb-go/flyteidl/plugins/sagemaker/parameter_ranges.pb.go +++ b/gen/pb-go/flyteidl/plugins/sagemaker/parameter_ranges.pb.go @@ -399,37 +399,37 @@ func init() { } var fileDescriptor_5f31fcc87eba0a70 = []byte{ - // 511 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x54, 0x41, 0x6f, 0x12, 0x41, - 0x14, 0x66, 0x58, 0xdb, 0x94, 0x87, 0xb1, 0x38, 0xb5, 0x08, 0xf4, 0x42, 0x38, 0x71, 0x71, 0x37, - 0x05, 0x9b, 0x18, 0x3d, 0x01, 0x59, 0x85, 0xa4, 0x15, 0x33, 0xc5, 0x1e, 0x3c, 0x48, 0x86, 0x75, - 0x58, 0x27, 0xec, 0xce, 0x4e, 0x66, 0x67, 0xb5, 0xfb, 0x13, 0xfc, 0x39, 0x26, 0xfe, 0x3c, 0x0f, - 0x86, 0x81, 0xd2, 0x76, 0xcb, 0xa2, 0x27, 0x6f, 0x33, 0xf3, 0xde, 0x9b, 0xef, 0x7b, 0xef, 0xfb, - 0xf2, 0xe0, 0x74, 0x1e, 0xa4, 0x9a, 0xf1, 0x2f, 0x81, 0x23, 0x83, 0xc4, 0xe7, 0x22, 0x76, 0x62, - 0xea, 0xb3, 0x90, 0x2e, 0x98, 0x72, 0x24, 0x55, 0x34, 0x64, 0x9a, 0xa9, 0xa9, 0xa2, 0xc2, 0x67, - 0xb1, 0x2d, 0x55, 0xa4, 0x23, 0xdc, 0xb8, 0x29, 0xb1, 0xd7, 0x25, 0xf6, 0xa6, 0xa4, 0xe5, 0x41, - 0x7d, 0x98, 0x4a, 0xa6, 0x36, 0xa5, 0x97, 0x1e, 0x0d, 0xb8, 0xf0, 0x27, 0xa9, 0x64, 0xad, 0xb7, - 0xb0, 0x77, 0x45, 0x83, 0x84, 0xe1, 0x03, 0x78, 0xd4, 0xfb, 0x38, 0x19, 0x57, 0x0a, 0x18, 0x60, - 0xff, 0x7c, 0xf4, 0xde, 0xed, 0x91, 0x0a, 0xc2, 0x87, 0x50, 0x3e, 0x1f, 0xbf, 0xeb, 0x91, 0xd1, - 0x64, 0x78, 0x31, 0x1a, 0x54, 0x8a, 0xb8, 0x0a, 0x98, 0xb8, 0x57, 0x2e, 0xb9, 0x74, 0xef, 0xbe, - 0x5b, 0xad, 0x5f, 0x08, 0x6a, 0x83, 0x48, 0x68, 0x2e, 0x92, 0x28, 0x89, 0x3f, 0xdc, 0x40, 0x91, - 0x25, 0x49, 0x7c, 0x02, 0xa5, 0x90, 0x5e, 0x4f, 0xbf, 0x2d, 0x81, 0x6a, 0xa8, 0x89, 0xda, 0x88, - 0x1c, 0x84, 0xf4, 0x7a, 0x05, 0xbc, 0x0c, 0x72, 0xb1, 0x0e, 0x16, 0xd7, 0x41, 0x2e, 0x56, 0xc1, - 0xcf, 0xf0, 0x38, 0x5e, 0xb1, 0x9d, 0xea, 0x54, 0xb2, 0x9a, 0xd5, 0x44, 0xed, 0x27, 0x9d, 0x37, - 0x76, 0x7e, 0xbb, 0x76, 0x6e, 0xaf, 0xb6, 0xf9, 0x92, 0x94, 0xe3, 0x3b, 0xed, 0xff, 0x44, 0x70, - 0x3c, 0x12, 0x9a, 0xf9, 0x4c, 0xfd, 0x8d, 0xb3, 0xb5, 0x8b, 0xb3, 0xf5, 0x1f, 0x39, 0x77, 0xa1, - 0x3e, 0xa0, 0x9a, 0xf9, 0x91, 0xe2, 0x1e, 0x0d, 0x32, 0xb4, 0xab, 0xb0, 0x6f, 0x58, 0xc5, 0x35, - 0xd4, 0xb4, 0xda, 0x25, 0xb2, 0xbe, 0xb5, 0x7e, 0x58, 0x70, 0x74, 0x3f, 0x75, 0x2c, 0xd8, 0x78, - 0x8e, 0x35, 0x34, 0xbc, 0x8d, 0x6c, 0xd3, 0x8c, 0xbb, 0x4c, 0xdf, 0xe5, 0xce, 0xcb, 0x5d, 0xd4, - 0xf3, 0x44, 0x1f, 0x16, 0x48, 0xcd, 0xcb, 0x33, 0xc4, 0x02, 0x9e, 0xf3, 0xd5, 0xd4, 0x1f, 0x40, - 0x16, 0x0d, 0xe4, 0xe9, 0x2e, 0xc8, 0xad, 0x82, 0x0d, 0x0b, 0xe4, 0x98, 0x6f, 0x55, 0xf2, 0x3b, - 0x9c, 0x78, 0xb7, 0xf3, 0x7a, 0x00, 0x68, 0x19, 0xc0, 0xb3, 0x9d, 0x3d, 0xe6, 0x8d, 0x7b, 0x58, - 0x20, 0x75, 0x2f, 0x2f, 0xd8, 0xaf, 0xc2, 0xb3, 0x0c, 0x98, 0x31, 0x44, 0xeb, 0x37, 0x82, 0xc3, - 0xfb, 0xa9, 0x31, 0x56, 0x70, 0x94, 0xcd, 0x0d, 0xa9, 0x34, 0x22, 0x96, 0x3b, 0xfd, 0x5d, 0xe4, - 0x32, 0x3f, 0x65, 0xee, 0x17, 0x54, 0xba, 0x42, 0xab, 0x94, 0x3c, 0x95, 0xd9, 0xf7, 0x46, 0x02, - 0xd5, 0xed, 0xc9, 0xb8, 0x02, 0xd6, 0x82, 0xa5, 0x46, 0xfe, 0x12, 0x59, 0x1e, 0xb1, 0x0b, 0x7b, - 0xb7, 0x6e, 0x2f, 0x77, 0x9c, 0x7f, 0x67, 0x64, 0x7c, 0x46, 0x56, 0xd5, 0xaf, 0x8b, 0xaf, 0x50, - 0xff, 0xec, 0x53, 0xd7, 0xe7, 0xfa, 0x6b, 0x32, 0xb3, 0xbd, 0x28, 0x74, 0x82, 0x74, 0xae, 0x9d, - 0xcd, 0xc2, 0xf3, 0x99, 0x70, 0xe4, 0xec, 0x85, 0x1f, 0x39, 0xd9, 0x1d, 0x38, 0xdb, 0x37, 0x9b, - 0xae, 0xfb, 0x27, 0x00, 0x00, 0xff, 0xff, 0xdc, 0x29, 0x92, 0xb6, 0x1e, 0x05, 0x00, 0x00, + // 512 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x54, 0x4d, 0x6f, 0xda, 0x40, + 0x10, 0xc5, 0xb8, 0x41, 0x61, 0xa8, 0x1a, 0xba, 0x69, 0x28, 0x90, 0x0b, 0xe2, 0xc4, 0xa5, 0xb6, + 0x42, 0x5a, 0xf5, 0xeb, 0x04, 0xc8, 0x2d, 0x48, 0x49, 0xa9, 0x36, 0x34, 0x87, 0x1e, 0x8a, 0x16, + 0x77, 0xb3, 0x5d, 0x61, 0xaf, 0x57, 0xeb, 0x75, 0x1b, 0xff, 0x84, 0xfe, 0x9c, 0x4a, 0xfd, 0x79, + 0x3d, 0x54, 0x2c, 0x84, 0x24, 0x0e, 0xa6, 0x3d, 0xe5, 0x66, 0xef, 0x7c, 0xbc, 0x37, 0xf3, 0x9e, + 0x06, 0x8e, 0x2e, 0x82, 0x54, 0x53, 0xfe, 0x35, 0x70, 0x65, 0x90, 0x30, 0x2e, 0x62, 0x37, 0x26, + 0x8c, 0x86, 0x64, 0x4e, 0x95, 0x2b, 0x89, 0x22, 0x21, 0xd5, 0x54, 0x4d, 0x15, 0x11, 0x8c, 0xc6, + 0x8e, 0x54, 0x91, 0x8e, 0x50, 0xf3, 0xaa, 0xc4, 0x59, 0x95, 0x38, 0xeb, 0x92, 0xb6, 0x0f, 0x8d, + 0x61, 0x2a, 0xa9, 0x5a, 0x97, 0x9e, 0xf9, 0x24, 0xe0, 0x82, 0x4d, 0x52, 0x49, 0xdb, 0xef, 0x60, + 0xe7, 0x9c, 0x04, 0x09, 0x45, 0xbb, 0xf0, 0xa0, 0xf7, 0x69, 0x32, 0xae, 0x16, 0x10, 0x40, 0xe9, + 0x64, 0xf4, 0xc1, 0xeb, 0xe1, 0xaa, 0x85, 0xf6, 0xa0, 0x72, 0x32, 0x7e, 0xdf, 0xc3, 0xa3, 0xc9, + 0xf0, 0x74, 0x34, 0xa8, 0x16, 0x51, 0x0d, 0x10, 0xf6, 0xce, 0x3d, 0x7c, 0xe6, 0xdd, 0x7c, 0xb7, + 0xdb, 0xbf, 0x2d, 0xa8, 0x0f, 0x22, 0xa1, 0xb9, 0x48, 0xa2, 0x24, 0xfe, 0x78, 0x05, 0x85, 0x17, + 0x24, 0xd1, 0x21, 0x94, 0x43, 0x72, 0x39, 0xfd, 0xbe, 0x00, 0xaa, 0x5b, 0x2d, 0xab, 0x63, 0xe1, + 0xdd, 0x90, 0x5c, 0x2e, 0x81, 0x17, 0x41, 0x2e, 0x56, 0xc1, 0xe2, 0x2a, 0xc8, 0xc5, 0x32, 0xf8, + 0x05, 0x1e, 0xc6, 0x4b, 0xb6, 0x53, 0x9d, 0x4a, 0x5a, 0xb7, 0x5b, 0x56, 0xe7, 0x51, 0xf7, 0xad, + 0x93, 0x3f, 0xae, 0x93, 0x3b, 0xab, 0x63, 0x5a, 0xe2, 0x4a, 0x7c, 0x63, 0xfc, 0x5f, 0x16, 0x1c, + 0x8c, 0x84, 0xa6, 0x8c, 0xaa, 0x7f, 0x71, 0xb6, 0xb7, 0x71, 0xb6, 0xef, 0x91, 0xf3, 0x31, 0x34, + 0x06, 0x44, 0x53, 0x16, 0x29, 0xee, 0x93, 0x20, 0x43, 0xbb, 0x06, 0x25, 0xc3, 0x2a, 0xae, 0x5b, + 0x2d, 0xbb, 0x53, 0xc6, 0xab, 0xbf, 0xf6, 0x4f, 0x1b, 0xf6, 0x6f, 0xa7, 0x8e, 0x05, 0x1d, 0x5f, + 0x20, 0x0d, 0x4d, 0x7f, 0x2d, 0xdb, 0x34, 0xe3, 0x2e, 0x33, 0x77, 0xa5, 0xfb, 0x7c, 0x1b, 0xf5, + 0x3c, 0xd1, 0x87, 0x05, 0x5c, 0xf7, 0xf3, 0x0c, 0x31, 0x87, 0xa7, 0x7c, 0xb9, 0xf5, 0x3b, 0x90, + 0x45, 0x03, 0x79, 0xb4, 0x0d, 0x72, 0xa3, 0x60, 0xc3, 0x02, 0x3e, 0xe0, 0x1b, 0x95, 0xfc, 0x01, + 0x87, 0xfe, 0xf5, 0xbe, 0xee, 0x00, 0xda, 0x06, 0xf0, 0xc5, 0xd6, 0x19, 0xf3, 0xd6, 0x3d, 0x2c, + 0xe0, 0x86, 0x9f, 0x17, 0xec, 0xd7, 0xe0, 0x49, 0x06, 0xcc, 0x18, 0xa2, 0xfd, 0xc7, 0x82, 0xbd, + 0xdb, 0xa9, 0x31, 0x52, 0xb0, 0x9f, 0xcd, 0x0d, 0x89, 0x34, 0x22, 0x56, 0xba, 0xfd, 0x6d, 0xe4, + 0x32, 0x9d, 0x32, 0xff, 0xa7, 0x44, 0x7a, 0x42, 0xab, 0x14, 0x3f, 0x96, 0xd9, 0xf7, 0x66, 0x02, + 0xb5, 0xcd, 0xc9, 0xa8, 0x0a, 0xf6, 0x9c, 0xa6, 0x46, 0xfe, 0x32, 0x5e, 0x7c, 0x22, 0x0f, 0x76, + 0xae, 0xdd, 0x5e, 0xe9, 0xba, 0xff, 0xcf, 0xc8, 0xf8, 0x0c, 0x2f, 0xab, 0xdf, 0x14, 0x5f, 0x59, + 0xfd, 0xd7, 0x9f, 0x5f, 0x32, 0xae, 0xbf, 0x25, 0x33, 0xc7, 0x8f, 0x42, 0xd7, 0xf4, 0x89, 0x14, + 0x73, 0xd7, 0x47, 0x8f, 0x51, 0xe1, 0xca, 0xd9, 0x33, 0x16, 0xb9, 0xd9, 0x3b, 0x38, 0x2b, 0x99, + 0x6b, 0x77, 0xfc, 0x37, 0x00, 0x00, 0xff, 0xff, 0xef, 0x0c, 0xeb, 0x47, 0x22, 0x05, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/plugins/sagemaker/training_job.pb.go b/gen/pb-go/flyteidl/plugins/sagemaker/training_job.pb.go index 3643de78d..58a6213ae 100644 --- a/gen/pb-go/flyteidl/plugins/sagemaker/training_job.pb.go +++ b/gen/pb-go/flyteidl/plugins/sagemaker/training_job.pb.go @@ -545,46 +545,47 @@ func init() { } var fileDescriptor_6a68f64d8fd9fe30 = []byte{ - // 656 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x94, 0x4b, 0x4f, 0xdb, 0x40, - 0x14, 0x85, 0x13, 0x12, 0x5e, 0x37, 0x90, 0x9a, 0x81, 0xd2, 0x40, 0xab, 0x8a, 0xba, 0xaa, 0x04, - 0xa2, 0xd8, 0x2a, 0x08, 0xa9, 0x8b, 0x6e, 0x4a, 0x08, 0xc8, 0xa8, 0x81, 0xc8, 0x09, 0x11, 0x6a, - 0x17, 0xae, 0x1f, 0x63, 0x33, 0xc5, 0x9e, 0xb1, 0xec, 0x31, 0x6a, 0xf8, 0x45, 0xfd, 0x7d, 0x5d, - 0x77, 0x51, 0x79, 0xfc, 0x20, 0x8d, 0x42, 0xba, 0x73, 0xce, 0x5c, 0xdf, 0xdc, 0xf3, 0x9d, 0xeb, - 0x81, 0x03, 0xd7, 0x1f, 0x71, 0x4c, 0x1c, 0x5f, 0x0d, 0xfd, 0xc4, 0x23, 0x34, 0x56, 0x63, 0xd3, - 0xc3, 0x81, 0x79, 0x87, 0x23, 0x95, 0x47, 0x26, 0xa1, 0x84, 0x7a, 0xc6, 0x0f, 0x66, 0x29, 0x61, - 0xc4, 0x38, 0x43, 0xdb, 0x45, 0xb9, 0x92, 0x97, 0x2b, 0x65, 0xf9, 0xf6, 0x6b, 0x8f, 0x31, 0xcf, - 0xc7, 0xaa, 0xa8, 0xb4, 0x12, 0x57, 0x75, 0x92, 0xc8, 0xe4, 0x84, 0xd1, 0xec, 0x5d, 0x79, 0x17, - 0x96, 0x35, 0x1a, 0x26, 0xbc, 0xcb, 0x1c, 0x2c, 0xbf, 0x84, 0xf9, 0xa1, 0xe9, 0x27, 0x18, 0x2d, - 0x41, 0xfd, 0x4c, 0xfb, 0xd2, 0x91, 0x2a, 0xe9, 0x53, 0x4f, 0xeb, 0x75, 0xa4, 0xaa, 0xfc, 0x01, - 0x56, 0x3f, 0xfb, 0x1e, 0x8b, 0x08, 0xbf, 0x0d, 0x2e, 0xcd, 0x00, 0xcb, 0x3b, 0x45, 0x35, 0xc0, - 0x42, 0xfb, 0xba, 0x3f, 0xb8, 0xea, 0x4a, 0x15, 0xd4, 0x80, 0xc5, 0x9b, 0xf3, 0x93, 0xab, 0xab, - 0xfe, 0x40, 0xaa, 0xca, 0x7b, 0x20, 0x89, 0xe6, 0x6d, 0x46, 0x39, 0xa6, 0x7c, 0x30, 0x0a, 0xb1, - 0xfc, 0xbc, 0x78, 0x6b, 0x05, 0x96, 0x06, 0x9d, 0x9b, 0x81, 0xd1, 0xee, 0x0f, 0xa5, 0x8a, 0xfc, - 0x09, 0xa4, 0x2e, 0xe6, 0x11, 0xb1, 0x4f, 0xb1, 0x4b, 0x28, 0x49, 0x27, 0x44, 0x08, 0xea, 0xd4, - 0x0c, 0x70, 0xab, 0xba, 0x53, 0xdd, 0x5d, 0xd6, 0xc5, 0x33, 0xda, 0x80, 0xf9, 0x08, 0x7b, 0xf8, - 0x67, 0x6b, 0x4e, 0x88, 0xd9, 0x0f, 0xf9, 0x57, 0x0d, 0x36, 0xcb, 0xe1, 0xfa, 0x21, 0xb6, 0x89, - 0x4b, 0x6c, 0x61, 0x13, 0x5d, 0x00, 0x90, 0x74, 0x06, 0x23, 0x60, 0x4e, 0xd6, 0xaa, 0x79, 0xb8, - 0xaf, 0x3c, 0x4d, 0x4c, 0x29, 0x71, 0x28, 0x62, 0x4e, 0x7d, 0x99, 0x14, 0x02, 0x1a, 0x42, 0xd3, - 0x2c, 0xfe, 0xc5, 0x10, 0xa3, 0xcd, 0x89, 0x7e, 0xea, 0xac, 0x7e, 0xff, 0x40, 0xcb, 0x7b, 0xae, - 0x9a, 0xe3, 0x22, 0xda, 0x87, 0xb5, 0xc7, 0xbe, 0xf7, 0x38, 0x8a, 0x09, 0xa3, 0xad, 0x9a, 0x30, - 0x28, 0x95, 0x07, 0xc3, 0x4c, 0x47, 0xdf, 0x00, 0x05, 0x82, 0x94, 0xe1, 0x94, 0xa8, 0xe2, 0x56, - 0x7d, 0xa7, 0xb6, 0xdb, 0x38, 0x7c, 0x3f, 0x6b, 0x90, 0x49, 0xbe, 0xfa, 0x5a, 0x30, 0xa1, 0xc4, - 0xe8, 0x3b, 0xa0, 0x8c, 0x96, 0x9d, 0x45, 0x66, 0xf0, 0x51, 0x88, 0x5b, 0xf3, 0xc2, 0xe5, 0xe1, - 0x7f, 0xa9, 0x8d, 0xe5, 0x9c, 0x1b, 0x95, 0xc8, 0x64, 0xfe, 0x1f, 0x61, 0xfd, 0x94, 0xc4, 0x3c, - 0x22, 0x56, 0xc2, 0xb1, 0xd3, 0x4b, 0x97, 0xd0, 0x66, 0xbe, 0xfc, 0xa6, 0x58, 0x8b, 0x67, 0xd0, - 0xb8, 0xbe, 0xec, 0xf7, 0x3a, 0x6d, 0xed, 0x4c, 0xeb, 0x9c, 0x4a, 0x15, 0xb4, 0x08, 0xb5, 0x6e, - 0x4f, 0x93, 0xaa, 0xf2, 0x9f, 0x2a, 0x6c, 0x0d, 0xf2, 0xed, 0xbf, 0x60, 0x96, 0x8e, 0x63, 0x96, - 0x44, 0x36, 0x6e, 0x33, 0xea, 0x12, 0x0f, 0xbd, 0x83, 0x26, 0xa1, 0x31, 0x37, 0xa9, 0x8d, 0x0d, - 0x9b, 0x25, 0x94, 0x8b, 0xac, 0x6b, 0xfa, 0x6a, 0xa1, 0xb6, 0x53, 0x11, 0xbd, 0x85, 0x52, 0xc8, - 0xbc, 0x65, 0x7b, 0xb4, 0x52, 0x88, 0xe9, 0x8c, 0x68, 0x0f, 0xd6, 0xee, 0x99, 0x9f, 0x04, 0xd8, - 0x88, 0xc9, 0x03, 0x36, 0x08, 0x35, 0x3c, 0x4b, 0xe4, 0x51, 0xd3, 0x9b, 0xd9, 0x41, 0x9f, 0x3c, - 0x60, 0x8d, 0x9e, 0x5b, 0xe8, 0x16, 0x36, 0x9c, 0x47, 0x3b, 0x46, 0x98, 0xfb, 0x69, 0xd5, 0x05, - 0xb2, 0xe3, 0x59, 0xc8, 0xa6, 0x60, 0xc8, 0xa9, 0xad, 0x3b, 0x53, 0x08, 0xfd, 0xae, 0x42, 0x63, - 0xcc, 0x3e, 0xba, 0x83, 0x17, 0x8f, 0x4b, 0x13, 0x8f, 0xef, 0xbc, 0x70, 0xde, 0x98, 0x9d, 0xd7, - 0xf4, 0xaf, 0x45, 0xdf, 0x34, 0xa7, 0x7f, 0x45, 0xf7, 0xf0, 0x6a, 0xfc, 0xe2, 0x31, 0xa2, 0x1c, - 0x7e, 0xba, 0x27, 0x2e, 0xf1, 0x04, 0xc5, 0xc6, 0x6c, 0xbb, 0x4f, 0x46, 0xa7, 0x6f, 0xf1, 0xa7, - 0x8e, 0x4e, 0x8e, 0xbf, 0x1e, 0x79, 0x84, 0xdf, 0x26, 0x96, 0x62, 0xb3, 0x40, 0xf5, 0x47, 0x2e, - 0x57, 0xcb, 0xbb, 0xd1, 0xc3, 0x54, 0x0d, 0xad, 0x03, 0x8f, 0xa9, 0x93, 0xd7, 0xa5, 0xb5, 0x20, - 0x72, 0x38, 0xfa, 0x1b, 0x00, 0x00, 0xff, 0xff, 0xec, 0xce, 0x1b, 0x58, 0x49, 0x05, 0x00, 0x00, + // 660 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x94, 0x5b, 0x4f, 0xdb, 0x4a, + 0x14, 0x85, 0x13, 0x12, 0x6e, 0x3b, 0x90, 0x63, 0x06, 0x0e, 0x27, 0x70, 0xaa, 0x8a, 0xba, 0xaa, + 0x04, 0xa2, 0xd8, 0x2a, 0x55, 0xd5, 0x56, 0xea, 0x4b, 0x09, 0x01, 0x19, 0x35, 0x10, 0x39, 0x21, + 0x42, 0xed, 0x83, 0xeb, 0xcb, 0x64, 0x98, 0x62, 0xcf, 0x58, 0xf6, 0x18, 0x15, 0x7e, 0x51, 0x7f, + 0x5f, 0x9f, 0xfb, 0x50, 0x79, 0x7c, 0x21, 0x8d, 0x42, 0xfa, 0xe6, 0xac, 0xd9, 0xde, 0xd9, 0xeb, + 0x5b, 0xdb, 0x03, 0x07, 0x23, 0xff, 0x4e, 0x60, 0xea, 0xf9, 0x7a, 0xe8, 0x27, 0x84, 0xb2, 0x58, + 0x8f, 0x6d, 0x82, 0x03, 0xfb, 0x06, 0x47, 0xba, 0x88, 0x6c, 0xca, 0x28, 0x23, 0xd6, 0x37, 0xee, + 0x68, 0x61, 0xc4, 0x05, 0x47, 0xdb, 0x45, 0xb9, 0x96, 0x97, 0x6b, 0x65, 0xf9, 0xf6, 0x53, 0xc2, + 0x39, 0xf1, 0xb1, 0x2e, 0x2b, 0x9d, 0x64, 0xa4, 0x7b, 0x49, 0x64, 0x0b, 0xca, 0x59, 0xf6, 0xae, + 0xba, 0x0b, 0xcb, 0x06, 0x0b, 0x13, 0xd1, 0xe5, 0x1e, 0x56, 0xff, 0x87, 0xf9, 0xa1, 0xed, 0x27, + 0x18, 0x2d, 0x41, 0xfd, 0xc4, 0xf8, 0xd4, 0x51, 0x2a, 0xe9, 0x53, 0xcf, 0xe8, 0x75, 0x94, 0xaa, + 0xfa, 0x0a, 0x56, 0x3f, 0xfa, 0x84, 0x47, 0x54, 0x5c, 0x07, 0xe7, 0x76, 0x80, 0xd5, 0x9d, 0xa2, + 0x1a, 0x60, 0xa1, 0x7d, 0xd9, 0x1f, 0x5c, 0x74, 0x95, 0x0a, 0x6a, 0xc0, 0xe2, 0xd5, 0xe9, 0xd1, + 0xc5, 0x45, 0x7f, 0xa0, 0x54, 0xd5, 0x3d, 0x50, 0x64, 0xf3, 0x36, 0x67, 0x02, 0x33, 0x31, 0xb8, + 0x0b, 0xb1, 0xfa, 0x6f, 0xf1, 0xd6, 0x0a, 0x2c, 0x0d, 0x3a, 0x57, 0x03, 0xab, 0xdd, 0x1f, 0x2a, + 0x15, 0xf5, 0x03, 0x28, 0x5d, 0x2c, 0x22, 0xea, 0x1e, 0xe3, 0x11, 0x65, 0x34, 0x9d, 0x10, 0x21, + 0xa8, 0x33, 0x3b, 0xc0, 0xad, 0xea, 0x4e, 0x75, 0x77, 0xd9, 0x94, 0xcf, 0x68, 0x03, 0xe6, 0x23, + 0x4c, 0xf0, 0xf7, 0xd6, 0x9c, 0x14, 0xb3, 0x1f, 0xea, 0x8f, 0x1a, 0x6c, 0x96, 0xc3, 0xf5, 0x43, + 0xec, 0xd2, 0x11, 0x75, 0xa5, 0x4d, 0x74, 0x06, 0x40, 0xd3, 0x19, 0xac, 0x80, 0x7b, 0x59, 0xab, + 0xe6, 0xe1, 0xbe, 0xf6, 0x38, 0x31, 0xad, 0xc4, 0xa1, 0xc9, 0x39, 0xcd, 0x65, 0x5a, 0x08, 0x68, + 0x08, 0x4d, 0xbb, 0xf8, 0x17, 0x4b, 0x8e, 0x36, 0x27, 0xfb, 0xe9, 0xb3, 0xfa, 0xfd, 0x01, 0x2d, + 0xef, 0xb9, 0x6a, 0x8f, 0x8b, 0x68, 0x1f, 0xd6, 0x1e, 0xfa, 0xde, 0xe2, 0x28, 0xa6, 0x9c, 0xb5, + 0x6a, 0xd2, 0xa0, 0x52, 0x1e, 0x0c, 0x33, 0x1d, 0x7d, 0x01, 0x14, 0x48, 0x52, 0x96, 0x57, 0xa2, + 0x8a, 0x5b, 0xf5, 0x9d, 0xda, 0x6e, 0xe3, 0xf0, 0xe5, 0xac, 0x41, 0x26, 0xf9, 0x9a, 0x6b, 0xc1, + 0x84, 0x12, 0xa3, 0xaf, 0x80, 0x32, 0x5a, 0x6e, 0x16, 0x99, 0x25, 0xee, 0x42, 0xdc, 0x9a, 0x97, + 0x2e, 0x0f, 0xff, 0x4a, 0x6d, 0x2c, 0xe7, 0xdc, 0xa8, 0x42, 0x27, 0xf3, 0x7f, 0x07, 0xeb, 0xc7, + 0x34, 0x16, 0x11, 0x75, 0x12, 0x81, 0xbd, 0x5e, 0xba, 0x84, 0x2e, 0xf7, 0xd5, 0x67, 0xc5, 0x5a, + 0xfc, 0x03, 0x8d, 0xcb, 0xf3, 0x7e, 0xaf, 0xd3, 0x36, 0x4e, 0x8c, 0xce, 0xb1, 0x52, 0x41, 0x8b, + 0x50, 0xeb, 0xf6, 0x0c, 0xa5, 0xaa, 0xfe, 0xaa, 0xc2, 0xd6, 0x20, 0xdf, 0xfe, 0x33, 0xee, 0x98, + 0x38, 0xe6, 0x49, 0xe4, 0xe2, 0x36, 0x67, 0x23, 0x4a, 0xd0, 0x0b, 0x68, 0x52, 0x16, 0x0b, 0x9b, + 0xb9, 0xd8, 0x72, 0x79, 0xc2, 0x84, 0xcc, 0xba, 0x66, 0xae, 0x16, 0x6a, 0x3b, 0x15, 0xd1, 0x73, + 0x28, 0x85, 0xcc, 0x5b, 0xb6, 0x47, 0x2b, 0x85, 0x98, 0xce, 0x88, 0xf6, 0x60, 0xed, 0x96, 0xfb, + 0x49, 0x80, 0xad, 0x98, 0xde, 0x63, 0x8b, 0x32, 0x8b, 0x38, 0x32, 0x8f, 0x9a, 0xd9, 0xcc, 0x0e, + 0xfa, 0xf4, 0x1e, 0x1b, 0xec, 0xd4, 0x41, 0xd7, 0xb0, 0xe1, 0x3d, 0xd8, 0xb1, 0xc2, 0xdc, 0x4f, + 0xab, 0x2e, 0x91, 0xbd, 0x99, 0x85, 0x6c, 0x0a, 0x86, 0x9c, 0xda, 0xba, 0x37, 0x85, 0xd0, 0xcf, + 0x2a, 0x34, 0xc6, 0xec, 0xa3, 0x1b, 0xf8, 0xef, 0x61, 0x69, 0xe2, 0xf1, 0x9d, 0x97, 0xce, 0x1b, + 0xb3, 0xf3, 0x9a, 0xfe, 0xb5, 0x98, 0x9b, 0xf6, 0xf4, 0xaf, 0xe8, 0x16, 0x9e, 0x8c, 0x5f, 0x3c, + 0x56, 0x94, 0xc3, 0x4f, 0xf7, 0x64, 0x44, 0x89, 0xa4, 0xd8, 0x98, 0x6d, 0xf7, 0xd1, 0xe8, 0xcc, + 0x2d, 0xf1, 0xd8, 0xd1, 0xd1, 0xfb, 0xcf, 0x6f, 0x09, 0x15, 0xd7, 0x89, 0xa3, 0xb9, 0x3c, 0xd0, + 0x65, 0x77, 0x1e, 0x11, 0xbd, 0xbc, 0x1f, 0x09, 0x66, 0x7a, 0xe8, 0x1c, 0x10, 0xae, 0x4f, 0x5e, + 0x99, 0xce, 0x82, 0xcc, 0xe2, 0xf5, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x16, 0xde, 0x9e, 0xb6, + 0x4d, 0x05, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/plugins/sidecar.pb.go b/gen/pb-go/flyteidl/plugins/sidecar.pb.go index 618e8a3fe..2f2a483a4 100644 --- a/gen/pb-go/flyteidl/plugins/sidecar.pb.go +++ b/gen/pb-go/flyteidl/plugins/sidecar.pb.go @@ -78,19 +78,20 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/sidecar.proto", fileDescriptor_b34ccf0cecf5c059) } var fileDescriptor_b34ccf0cecf5c059 = []byte{ - // 224 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x8f, 0x3f, 0x4b, 0x03, 0x41, - 0x10, 0x47, 0x39, 0x0b, 0xff, 0xac, 0x8d, 0x1c, 0x22, 0x41, 0x41, 0x42, 0xaa, 0x34, 0xce, 0x10, - 0xa3, 0x62, 0xad, 0x9d, 0x85, 0x48, 0xd2, 0xd9, 0x1c, 0x7b, 0xbb, 0x93, 0x75, 0xf0, 0x6e, 0x67, - 0xd8, 0xdb, 0x04, 0xce, 0x4f, 0x2f, 0x7a, 0x39, 0x0b, 0xbb, 0x81, 0xc7, 0x3c, 0x7e, 0xcf, 0x5c, - 0x6f, 0x9a, 0x3e, 0x13, 0xfb, 0x06, 0xb5, 0xd9, 0x06, 0x8e, 0x1d, 0x76, 0xec, 0xc9, 0xd9, 0x04, - 0x9a, 0x24, 0x4b, 0x79, 0x36, 0x72, 0xd8, 0xf3, 0xcb, 0xd9, 0xe7, 0x63, 0x07, 0x2c, 0x68, 0x95, - 0xd1, 0x49, 0x22, 0xdc, 0x2d, 0x30, 0x50, 0xa4, 0x64, 0x33, 0xf9, 0xe1, 0x6b, 0xf6, 0x65, 0xcc, - 0x7a, 0xd0, 0xbc, 0x48, 0x5d, 0x3e, 0x98, 0x63, 0x15, 0x5f, 0x75, 0x4a, 0x6e, 0x52, 0x4c, 0x8b, - 0xf9, 0xe9, 0xed, 0x15, 0x0c, 0x12, 0xb0, 0xca, 0xf0, 0x23, 0x81, 0xdd, 0x02, 0xde, 0xc4, 0xaf, - 0x95, 0xdc, 0xea, 0x48, 0x87, 0xa3, 0xbc, 0x33, 0x17, 0x9a, 0xb8, 0xb5, 0xa9, 0xaf, 0x9c, 0xc4, - 0x6c, 0x39, 0x52, 0xaa, 0xa2, 0x6d, 0x69, 0x72, 0x30, 0x2d, 0xe6, 0x27, 0xab, 0xf3, 0x3d, 0x7d, - 0x1e, 0xe1, 0xab, 0x6d, 0xe9, 0xe9, 0xfe, 0x7d, 0x19, 0x38, 0x7f, 0x6c, 0x6b, 0x70, 0xd2, 0x62, - 0xd3, 0x6f, 0x32, 0xfe, 0x35, 0x06, 0x8a, 0xa8, 0xf5, 0x4d, 0x10, 0xfc, 0x9f, 0x5d, 0x1f, 0xfe, - 0x2e, 0x5f, 0x7e, 0x07, 0x00, 0x00, 0xff, 0xff, 0x71, 0x89, 0x82, 0x45, 0x11, 0x01, 0x00, 0x00, + // 225 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x8f, 0xbd, 0x4b, 0x03, 0x41, + 0x10, 0x47, 0x39, 0x0b, 0x3f, 0xd6, 0x46, 0x0e, 0x91, 0xa0, 0x20, 0x21, 0x55, 0x1a, 0x67, 0x88, + 0x8a, 0x1f, 0xad, 0x76, 0x16, 0x22, 0x49, 0x67, 0x73, 0xec, 0xed, 0x8e, 0xeb, 0xe0, 0xdd, 0xce, + 0xb0, 0xb7, 0x09, 0xc4, 0xbf, 0x5e, 0xcc, 0x26, 0x16, 0x76, 0x03, 0x8f, 0x79, 0xfc, 0x9e, 0xb9, + 0xfc, 0xe8, 0xd6, 0x99, 0xd8, 0x77, 0xa8, 0xdd, 0x32, 0x70, 0x1c, 0x70, 0x60, 0x4f, 0xce, 0x26, + 0xd0, 0x24, 0x59, 0xea, 0x93, 0x1d, 0x87, 0x2d, 0x3f, 0x9f, 0x7c, 0x3d, 0x0c, 0xc0, 0x82, 0x56, + 0x19, 0x9d, 0x24, 0xc2, 0xd5, 0x0c, 0x03, 0x45, 0x4a, 0x36, 0x93, 0x2f, 0x5f, 0x93, 0x6f, 0x63, + 0x16, 0x45, 0xf3, 0x22, 0x6d, 0x7d, 0x67, 0x0e, 0x55, 0x7c, 0x33, 0x28, 0xb9, 0x51, 0x35, 0xae, + 0xa6, 0xc7, 0xd7, 0x17, 0x50, 0x24, 0x60, 0x95, 0xe1, 0x57, 0x02, 0xab, 0x19, 0xbc, 0x89, 0x5f, + 0x28, 0xb9, 0xf9, 0x81, 0x96, 0xa3, 0xbe, 0x35, 0x67, 0x9a, 0xb8, 0xb7, 0x69, 0xdd, 0x38, 0x89, + 0xd9, 0x72, 0xa4, 0xd4, 0x44, 0xdb, 0xd3, 0x68, 0x6f, 0x5c, 0x4d, 0x8f, 0xe6, 0xa7, 0x5b, 0xfa, + 0xbc, 0x83, 0xaf, 0xb6, 0xa7, 0xa7, 0xc7, 0xf7, 0xfb, 0xc0, 0xf9, 0x73, 0xd9, 0x82, 0x93, 0x1e, + 0x37, 0xf3, 0x25, 0x05, 0xfc, 0xeb, 0x0c, 0x14, 0x51, 0xdb, 0xab, 0x20, 0xf8, 0x3f, 0xbd, 0xdd, + 0xdf, 0xac, 0xbf, 0xf9, 0x09, 0x00, 0x00, 0xff, 0xff, 0xa0, 0x21, 0xe4, 0x4f, 0x15, 0x01, 0x00, + 0x00, } diff --git a/gen/pb-go/flyteidl/plugins/spark.pb.go b/gen/pb-go/flyteidl/plugins/spark.pb.go index 01cbe384e..4eb696e83 100644 --- a/gen/pb-go/flyteidl/plugins/spark.pb.go +++ b/gen/pb-go/flyteidl/plugins/spark.pb.go @@ -173,28 +173,28 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/spark.proto", fileDescriptor_ca8a069b9820144a) } var fileDescriptor_ca8a069b9820144a = []byte{ - // 364 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x4f, 0x4b, 0xeb, 0x40, - 0x14, 0xc5, 0x5f, 0x9a, 0xa6, 0x34, 0xf7, 0x3d, 0xda, 0x30, 0xcf, 0x45, 0x28, 0x5d, 0x94, 0x6c, - 0xac, 0x82, 0x89, 0xb4, 0x08, 0x22, 0xba, 0x48, 0x8b, 0x5a, 0x82, 0x68, 0x4d, 0x8b, 0xa0, 0xbb, - 0x49, 0x9b, 0xa6, 0xa1, 0xd3, 0xcc, 0x90, 0x4c, 0xc4, 0x7c, 0x5e, 0xbf, 0x88, 0x64, 0x6a, 0xff, - 0x05, 0x15, 0xdc, 0xcd, 0xdc, 0x7b, 0xce, 0xef, 0x1e, 0x2e, 0x17, 0x9a, 0x33, 0x92, 0x71, 0x3f, - 0x9c, 0x12, 0x8b, 0x91, 0x34, 0x08, 0xa3, 0xc4, 0x4a, 0x18, 0x8e, 0x17, 0x26, 0x8b, 0x29, 0xa7, - 0x48, 0x5b, 0x77, 0xcd, 0xcf, 0xae, 0xd1, 0x03, 0x6d, 0x94, 0x0b, 0x6c, 0xc6, 0x48, 0x38, 0xc1, - 0x3c, 0xa4, 0x91, 0x61, 0x42, 0x79, 0x9c, 0x31, 0x1f, 0x01, 0x54, 0x86, 0xcf, 0xe3, 0xc1, 0xc3, - 0xbd, 0xf6, 0x07, 0x55, 0xa1, 0xec, 0xd8, 0x4f, 0xb6, 0x26, 0x21, 0x15, 0x94, 0x51, 0xdf, 0xbe, - 0xb3, 0xb5, 0x12, 0x52, 0x40, 0x72, 0x35, 0xd9, 0x78, 0x97, 0xa1, 0x2a, 0x20, 0x0e, 0xf5, 0xd0, - 0x23, 0xd4, 0xf1, 0x96, 0x95, 0x73, 0x74, 0xa9, 0x25, 0xb5, 0x6b, 0x9d, 0x43, 0xb3, 0x38, 0xdc, - 0x2c, 0x4e, 0x36, 0x73, 0xb9, 0x5b, 0xf4, 0xa3, 0x53, 0xf8, 0xbf, 0xc4, 0x61, 0xb4, 0x23, 0xbc, - 0x09, 0x89, 0xaf, 0x97, 0x5a, 0x52, 0x5b, 0x75, 0xbf, 0x6a, 0xa1, 0x26, 0xa8, 0x79, 0xb9, 0x4f, - 0x70, 0x92, 0xe8, 0xb2, 0xd0, 0x6d, 0x0b, 0xe8, 0x16, 0x54, 0xb1, 0x94, 0x3e, 0x8d, 0x66, 0x7a, - 0xb9, 0x25, 0xb7, 0xff, 0x76, 0x8e, 0xbe, 0x09, 0xe7, 0x50, 0x6f, 0xf5, 0xc8, 0xb5, 0xd7, 0x11, - 0x8f, 0x33, 0x77, 0xeb, 0x45, 0x0e, 0xc0, 0x1c, 0x4f, 0x29, 0x65, 0x82, 0xa4, 0x08, 0xd2, 0xf1, - 0x0f, 0xa4, 0xc1, 0x46, 0xbc, 0x42, 0xed, 0xb8, 0x91, 0x01, 0xff, 0xfc, 0x37, 0x7f, 0x92, 0x72, - 0x1a, 0x0f, 0x31, 0x9f, 0xeb, 0x15, 0x91, 0x7a, 0xaf, 0xd6, 0xb8, 0x84, 0xda, 0x7e, 0x18, 0xa4, - 0x81, 0xbc, 0xf0, 0x33, 0xb1, 0x61, 0xd5, 0xcd, 0x9f, 0xe8, 0x00, 0x94, 0x57, 0x4c, 0xd2, 0xf5, - 0x7a, 0x56, 0x9f, 0x8b, 0xd2, 0xb9, 0xd4, 0xb8, 0x82, 0x7a, 0x21, 0xc0, 0x6f, 0xec, 0xbd, 0xb3, - 0x97, 0x6e, 0x10, 0xf2, 0x79, 0xea, 0x99, 0x13, 0xba, 0xb4, 0x48, 0x36, 0xe3, 0xd6, 0xe6, 0xd6, - 0x02, 0x3f, 0xb2, 0x98, 0x77, 0x12, 0x50, 0xab, 0x78, 0x7e, 0x5e, 0x45, 0x5c, 0x5e, 0xf7, 0x23, - 0x00, 0x00, 0xff, 0xff, 0xaa, 0x2b, 0x1f, 0x5a, 0x99, 0x02, 0x00, 0x00, + // 367 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x4f, 0x4f, 0xea, 0x40, + 0x14, 0xc5, 0x5f, 0x29, 0x25, 0xf4, 0xbe, 0x17, 0x68, 0xe6, 0xb9, 0x68, 0x08, 0x0b, 0xd2, 0x8d, + 0x68, 0x62, 0x6b, 0x70, 0xe1, 0x9f, 0xe8, 0xa2, 0x10, 0x95, 0x34, 0x46, 0xb1, 0x10, 0x13, 0xdd, + 0x4d, 0xa1, 0x94, 0x86, 0xa1, 0x33, 0x69, 0xa7, 0xc6, 0x7e, 0x5e, 0xbf, 0x88, 0xe9, 0x20, 0xff, + 0x1a, 0x35, 0x71, 0x37, 0xbd, 0xf7, 0x9c, 0xdf, 0x3d, 0xbd, 0xb9, 0xd0, 0x9c, 0x92, 0x8c, 0xfb, + 0xe1, 0x84, 0x58, 0x8c, 0xa4, 0x41, 0x18, 0x25, 0x56, 0xc2, 0x70, 0x3c, 0x37, 0x59, 0x4c, 0x39, + 0x45, 0xda, 0xaa, 0x6b, 0x7e, 0x76, 0x8d, 0x2e, 0x68, 0xc3, 0x5c, 0x60, 0x33, 0x46, 0xc2, 0x31, + 0xe6, 0x21, 0x8d, 0x0c, 0x13, 0xca, 0xa3, 0x8c, 0xf9, 0x08, 0xa0, 0x32, 0x78, 0x1e, 0xf5, 0x1f, + 0xee, 0xb5, 0x3f, 0xa8, 0x0a, 0x65, 0xc7, 0x7e, 0xb2, 0x35, 0x09, 0xa9, 0xa0, 0x0c, 0x7b, 0xf6, + 0x9d, 0xad, 0x95, 0x90, 0x02, 0x92, 0xab, 0xc9, 0xc6, 0xbb, 0x0c, 0x55, 0x01, 0x71, 0xa8, 0x87, + 0x1e, 0xa1, 0x8e, 0x37, 0xac, 0x9c, 0xa3, 0x4b, 0x2d, 0xa9, 0x5d, 0xeb, 0xec, 0x9b, 0xc5, 0xe1, + 0x66, 0x71, 0xb2, 0x99, 0xcb, 0xdd, 0xa2, 0x1f, 0x1d, 0xc3, 0xff, 0x05, 0x0e, 0xa3, 0x2d, 0xe1, + 0x4d, 0x48, 0x7c, 0xbd, 0xd4, 0x92, 0xda, 0xaa, 0xfb, 0x55, 0x0b, 0x35, 0x41, 0xcd, 0xcb, 0x3d, + 0x82, 0x93, 0x44, 0x97, 0x85, 0x6e, 0x53, 0x40, 0xb7, 0xa0, 0x8a, 0xa5, 0xf4, 0x68, 0x34, 0xd5, + 0xcb, 0x2d, 0xb9, 0xfd, 0xb7, 0x73, 0xf0, 0x4d, 0x38, 0x87, 0x7a, 0xcb, 0x47, 0xae, 0xbd, 0x8e, + 0x78, 0x9c, 0xb9, 0x1b, 0x2f, 0x72, 0x00, 0x66, 0x78, 0x42, 0x29, 0x13, 0x24, 0x45, 0x90, 0x0e, + 0x7f, 0x20, 0xf5, 0xd7, 0xe2, 0x25, 0x6a, 0xcb, 0x8d, 0x0c, 0xf8, 0xe7, 0xbf, 0xf9, 0xe3, 0x94, + 0xd3, 0x78, 0x80, 0xf9, 0x4c, 0xaf, 0x88, 0xd4, 0x3b, 0xb5, 0xc6, 0x25, 0xd4, 0x76, 0xc3, 0x20, + 0x0d, 0xe4, 0xb9, 0x9f, 0x89, 0x0d, 0xab, 0x6e, 0xfe, 0x44, 0x7b, 0xa0, 0xbc, 0x62, 0x92, 0xae, + 0xd6, 0xb3, 0xfc, 0xb8, 0x28, 0x9d, 0x49, 0x8d, 0x2b, 0xa8, 0x17, 0x02, 0xfc, 0xc6, 0xde, 0x3d, + 0x7f, 0x39, 0x0d, 0x42, 0x3e, 0x4b, 0x3d, 0x73, 0x4c, 0x17, 0x96, 0xf8, 0x49, 0x1a, 0x07, 0xd6, + 0xfa, 0xde, 0x02, 0x3f, 0xb2, 0x98, 0x77, 0x14, 0x50, 0xab, 0x78, 0x82, 0x5e, 0x45, 0x5c, 0xdf, + 0xc9, 0x47, 0x00, 0x00, 0x00, 0xff, 0xff, 0x94, 0x6f, 0xaa, 0x2d, 0x9d, 0x02, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/plugins/tensorflow.pb.go b/gen/pb-go/flyteidl/plugins/tensorflow.pb.go index a7fa17ca9..f466c1c97 100644 --- a/gen/pb-go/flyteidl/plugins/tensorflow.pb.go +++ b/gen/pb-go/flyteidl/plugins/tensorflow.pb.go @@ -85,18 +85,18 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/tensorflow.proto", fileDescriptor_8da02783614e1bcc) } var fileDescriptor_8da02783614e1bcc = []byte{ - // 200 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0xcf, 0x41, 0x8a, 0x83, 0x30, - 0x14, 0xc6, 0x71, 0x9c, 0x61, 0x66, 0x20, 0xc3, 0x0c, 0x43, 0x56, 0xee, 0xa6, 0x16, 0x0a, 0xdd, - 0xd4, 0x2c, 0xa4, 0x17, 0x28, 0x3d, 0x81, 0xb8, 0xea, 0xa6, 0x18, 0x4d, 0xe2, 0xc3, 0x34, 0x09, - 0x79, 0x11, 0xf1, 0x00, 0xbd, 0x77, 0x21, 0xa8, 0x85, 0x2e, 0xf3, 0xe5, 0xf7, 0x16, 0x7f, 0x92, - 0x49, 0x3d, 0x05, 0x01, 0xad, 0x66, 0x4e, 0x0f, 0x0a, 0x0c, 0xb2, 0x20, 0x0c, 0x5a, 0x2f, 0xb5, - 0x1d, 0x73, 0xe7, 0x6d, 0xb0, 0xf4, 0x6f, 0x21, 0xf9, 0x4c, 0xb6, 0xf7, 0x84, 0x64, 0x67, 0xc0, - 0xe0, 0x81, 0x0f, 0x41, 0xb4, 0xd5, 0x7a, 0x51, 0xf9, 0x1a, 0x0c, 0x18, 0x55, 0xd5, 0xd8, 0xd3, - 0x94, 0x7c, 0x8d, 0xd6, 0xf7, 0xc2, 0x63, 0x9a, 0x6c, 0x92, 0xfd, 0x47, 0xb9, 0x3c, 0xe9, 0x3f, - 0xf9, 0x76, 0x78, 0xf5, 0xc2, 0x69, 0x68, 0x6a, 0x4c, 0xdf, 0xe2, 0x2f, 0x71, 0x58, 0xce, 0x0b, - 0xdd, 0x91, 0xdf, 0xa6, 0x03, 0x21, 0x9f, 0xe6, 0x3d, 0x9a, 0x9f, 0xb8, 0x2e, 0xec, 0x74, 0xbc, - 0x14, 0x0a, 0x42, 0x37, 0xf0, 0xbc, 0xb1, 0x37, 0xa6, 0x27, 0x19, 0xd8, 0x9a, 0xa3, 0x84, 0x61, - 0x8e, 0x1f, 0x94, 0x65, 0xaf, 0x85, 0xfc, 0x33, 0x76, 0x15, 0x8f, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x8f, 0x56, 0x52, 0x81, 0xfc, 0x00, 0x00, 0x00, + // 202 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4c, 0xcb, 0xa9, 0x2c, + 0x49, 0xcd, 0x4c, 0xc9, 0xd1, 0x2f, 0xc8, 0x29, 0x4d, 0xcf, 0xcc, 0x2b, 0xd6, 0x2f, 0x49, 0xcd, + 0x2b, 0xce, 0x2f, 0x4a, 0xcb, 0xc9, 0x2f, 0xd7, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x80, + 0x29, 0xd1, 0x83, 0x2a, 0x51, 0x6a, 0x65, 0xe4, 0x52, 0x74, 0xc9, 0x2c, 0x2e, 0x29, 0xca, 0x4c, + 0x2a, 0x2d, 0x49, 0x4d, 0x09, 0x81, 0xeb, 0x08, 0x29, 0x4a, 0xcc, 0xcc, 0xcb, 0xcc, 0x4b, 0x0f, + 0x49, 0x2c, 0xce, 0x16, 0x92, 0xe0, 0x62, 0x2f, 0xcf, 0x2f, 0xca, 0x4e, 0x2d, 0x2a, 0x96, 0x60, + 0x54, 0x60, 0xd4, 0x60, 0x0d, 0x82, 0x71, 0x85, 0xe4, 0xb9, 0xb8, 0x0b, 0x8a, 0xe3, 0x8b, 0x52, + 0x0b, 0x72, 0x32, 0x93, 0x13, 0x8b, 0x25, 0x98, 0xc0, 0xb2, 0x5c, 0x05, 0xc5, 0x41, 0x50, 0x11, + 0x21, 0x55, 0x2e, 0xbe, 0xe4, 0x8c, 0xcc, 0xd4, 0x34, 0x84, 0x1a, 0x66, 0xb0, 0x1a, 0x5e, 0xb0, + 0x28, 0x4c, 0x99, 0x93, 0x65, 0x94, 0x79, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, + 0xae, 0x3e, 0xd8, 0x99, 0xf9, 0x45, 0xe9, 0xfa, 0x70, 0x2f, 0xa5, 0xa7, 0xe6, 0xe9, 0x17, 0x24, + 0xe9, 0xa6, 0xe7, 0xeb, 0xa3, 0xfb, 0x32, 0x89, 0x0d, 0xec, 0x37, 0x63, 0x40, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x8f, 0xf1, 0xb9, 0xb2, 0x00, 0x01, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/plugins/waitable.pb.go b/gen/pb-go/flyteidl/plugins/waitable.pb.go index 04df3aa3d..56f80c861 100644 --- a/gen/pb-go/flyteidl/plugins/waitable.pb.go +++ b/gen/pb-go/flyteidl/plugins/waitable.pb.go @@ -5,8 +5,8 @@ package plugins import ( fmt "fmt" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" math "math" ) @@ -84,7 +84,7 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/waitable.proto", fileDescriptor_6ff9364c45e52921) } var fileDescriptor_6ff9364c45e52921 = []byte{ - // 243 bytes of a gzipped FileDescriptorProto + // 244 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4f, 0xcb, 0xa9, 0x2c, 0x49, 0xcd, 0x4c, 0xc9, 0xd1, 0x2f, 0xc8, 0x29, 0x4d, 0xcf, 0xcc, 0x2b, 0xd6, 0x2f, 0x4f, 0xcc, 0x2c, 0x49, 0x4c, 0xca, 0x49, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x80, 0x29, 0xd0, @@ -96,9 +96,9 @@ var fileDescriptor_6ff9364c45e52921 = []byte{ 0x72, 0x57, 0x98, 0x45, 0x9e, 0x70, 0x23, 0x83, 0x38, 0xca, 0xd3, 0x40, 0xc2, 0x9e, 0x29, 0x42, 0x36, 0x5c, 0xac, 0x05, 0x19, 0x89, 0xc5, 0xa9, 0x12, 0x4c, 0x0a, 0x8c, 0x1a, 0x7c, 0x46, 0x6a, 0x84, 0x0c, 0xd1, 0x0b, 0x00, 0xa9, 0x0e, 0x82, 0x68, 0x12, 0x92, 0xe7, 0xe2, 0x2e, 0x87, 0xaa, - 0x00, 0x39, 0x84, 0x59, 0x81, 0x51, 0x83, 0x33, 0x88, 0x0b, 0x26, 0xe4, 0x99, 0xe2, 0x64, 0x1a, - 0x65, 0x9c, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x9f, 0x53, 0x99, 0x56, - 0xa2, 0x0f, 0xf7, 0x67, 0x7a, 0x6a, 0x9e, 0x7e, 0x41, 0x92, 0x6e, 0x7a, 0xbe, 0x3e, 0x7a, 0x60, - 0x26, 0xb1, 0x81, 0xfd, 0x6c, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xc2, 0x5c, 0xb0, 0x1d, 0x67, - 0x01, 0x00, 0x00, + 0x00, 0x39, 0x84, 0x59, 0x81, 0x51, 0x83, 0x33, 0x88, 0x0b, 0x26, 0xe4, 0x99, 0xe2, 0x64, 0x19, + 0x65, 0x9e, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, 0x36, 0x3b, 0xbf, + 0x28, 0x5d, 0x1f, 0xee, 0xd7, 0xf4, 0xd4, 0x3c, 0xfd, 0x82, 0x24, 0xdd, 0xf4, 0x7c, 0x7d, 0xf4, + 0x00, 0x4d, 0x62, 0x03, 0xfb, 0xdb, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xb8, 0xba, 0xa1, 0x43, + 0x6b, 0x01, 0x00, 0x00, } diff --git a/gen/pb-go/flyteidl/plugins/waitable.pb.validate.go b/gen/pb-go/flyteidl/plugins/waitable.pb.validate.go index ab451ea24..cd52b41c6 100644 --- a/gen/pb-go/flyteidl/plugins/waitable.pb.validate.go +++ b/gen/pb-go/flyteidl/plugins/waitable.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/gen/pb-go/flyteidl/service/admin.pb.go b/gen/pb-go/flyteidl/service/admin.pb.go index e7b80b203..266dffd87 100644 --- a/gen/pb-go/flyteidl/service/admin.pb.go +++ b/gen/pb-go/flyteidl/service/admin.pb.go @@ -6,9 +6,9 @@ package service import ( context "context" fmt "fmt" + admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" proto "github.com/golang/protobuf/proto" _ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger/options" - admin "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -30,10 +30,10 @@ const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package func init() { proto.RegisterFile("flyteidl/service/admin.proto", fileDescriptor_5cfa31da1d67295d) } var fileDescriptor_5cfa31da1d67295d = []byte{ - // 2851 bytes of a gzipped FileDescriptorProto + // 2852 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5b, 0x6d, 0x8c, 0x24, 0x45, - 0xf9, 0x4f, 0xcf, 0xfd, 0xe1, 0x1f, 0x1b, 0x0e, 0xee, 0xea, 0x38, 0xb9, 0x2b, 0x6e, 0xcf, 0x62, - 0xce, 0xbb, 0xdb, 0xdd, 0xdb, 0x9d, 0x59, 0x5e, 0xcf, 0x3b, 0xe0, 0xa0, 0xb9, 0x3b, 0x36, 0xcb, + 0xf9, 0x4f, 0xcf, 0xfd, 0xe1, 0x1f, 0x1b, 0x0e, 0xee, 0xea, 0x38, 0xb9, 0x2b, 0xee, 0xce, 0x62, + 0xce, 0xbb, 0xdb, 0xdd, 0xdb, 0x9d, 0x59, 0x5e, 0xcf, 0x3d, 0xe0, 0xa0, 0xb9, 0x3b, 0x36, 0xcb, 0x7b, 0x56, 0x54, 0xb2, 0xa2, 0x93, 0x9a, 0xe9, 0x9a, 0x99, 0x82, 0x9e, 0xee, 0xb1, 0xab, 0x66, 0x8f, 0xf5, 0xb2, 0x09, 0x21, 0xa2, 0xc6, 0xf8, 0xa9, 0x4d, 0x34, 0x10, 0x03, 0x41, 0x3f, 0x41, 0x20, 0x51, 0x49, 0xfc, 0x8a, 0x31, 0x31, 0x51, 0x43, 0xf8, 0xc2, 0x07, 0x5f, 0x12, 0x8d, 0x46, @@ -44,97 +44,97 @@ var fileDescriptor_5cfa31da1d67295d = []byte{ 0x0d, 0x1c, 0xd2, 0xc6, 0x63, 0xda, 0xc6, 0xae, 0xeb, 0x71, 0xcc, 0xa9, 0xe7, 0x32, 0xa9, 0x0f, 0xe3, 0xd9, 0xc4, 0x2c, 0xed, 0xb1, 0xef, 0x3d, 0x49, 0x7a, 0x5c, 0x49, 0x5b, 0xc5, 0xd2, 0x8e, 0xed, 0x8d, 0x30, 0x75, 0x3b, 0x98, 0x73, 0x9f, 0x76, 0x27, 0x9c, 0xe8, 0xd9, 0x0e, 0x67, 0xf4, - 0x39, 0x66, 0x4f, 0x29, 0xd1, 0x5c, 0x46, 0x74, 0xc9, 0xf3, 0x9f, 0xea, 0x3b, 0xde, 0x25, 0x25, - 0x9e, 0x2f, 0x11, 0xe7, 0xdf, 0x81, 0x32, 0x9a, 0x0e, 0x9e, 0xb8, 0xbd, 0x61, 0x67, 0xec, 0x60, - 0xc5, 0x01, 0x84, 0x19, 0x0d, 0xb2, 0x49, 0x5c, 0x8d, 0xe8, 0x68, 0x56, 0xf6, 0x34, 0xe9, 0x4d, - 0x42, 0x42, 0x94, 0xfc, 0x64, 0x46, 0x3e, 0xc2, 0xbc, 0x37, 0xc4, 0x5d, 0x87, 0x74, 0x7c, 0xc2, - 0xbc, 0x89, 0xdf, 0x23, 0x4a, 0xf1, 0x58, 0x46, 0xd1, 0xf5, 0x6c, 0xd2, 0xc9, 0xce, 0x76, 0xac, - 0x80, 0x8f, 0x9c, 0xd2, 0x0d, 0x19, 0xa5, 0x9e, 0x37, 0x1a, 0x45, 0xc2, 0x25, 0xf1, 0xa3, 0xb7, - 0x3c, 0x20, 0xee, 0x32, 0xbb, 0x84, 0x07, 0x03, 0xe2, 0xb7, 0xbd, 0xb1, 0x58, 0xc1, 0xfc, 0x6a, - 0xde, 0xfc, 0xa7, 0x8e, 0x79, 0xb5, 0x15, 0x4e, 0xf2, 0x69, 0xb9, 0xf8, 0xe0, 0x67, 0x0d, 0xd3, - 0x3c, 0xef, 0x13, 0xcc, 0xc9, 0x63, 0x98, 0x3d, 0x05, 0x6e, 0x8c, 0x16, 0xb4, 0x25, 0x9d, 0x26, - 0x7c, 0x2a, 0xe5, 0xeb, 0xe4, 0x4b, 0x13, 0xc2, 0x38, 0x6c, 0x56, 0xa9, 0xb0, 0xb1, 0xe7, 0x32, - 0xd2, 0x7c, 0xd7, 0x08, 0xac, 0x77, 0x0c, 0x78, 0x42, 0x3e, 0x46, 0xd8, 0xb5, 0x91, 0x4f, 0x06, - 0x94, 0x71, 0xe2, 0x23, 0x8c, 0x42, 0x90, 0xc8, 0x26, 0x7d, 0xea, 0x52, 0x81, 0xf2, 0xfe, 0x7b, - 0xcd, 0x3d, 0xb7, 0xae, 0xac, 0x80, 0x3b, 0xcc, 0x33, 0xeb, 0x84, 0x4f, 0x7c, 0x97, 0xd8, 0xa8, + 0x39, 0x66, 0x4f, 0x29, 0xd1, 0xd1, 0x8c, 0xe8, 0x92, 0xe7, 0x3f, 0xd5, 0x77, 0xbc, 0x4b, 0x4a, + 0x3c, 0x57, 0x22, 0xce, 0xbf, 0x03, 0x65, 0x34, 0x1d, 0x3c, 0x71, 0x7b, 0xc3, 0xce, 0xd8, 0xc1, + 0x8a, 0x03, 0x08, 0x33, 0x1a, 0x64, 0x93, 0xb8, 0x1a, 0xd1, 0xb1, 0xac, 0xec, 0x69, 0xd2, 0x9b, + 0x84, 0x84, 0x28, 0xf9, 0xa9, 0x8c, 0x7c, 0x84, 0x79, 0x6f, 0x88, 0xbb, 0x0e, 0xe9, 0xf8, 0x84, + 0x79, 0x13, 0xbf, 0x47, 0x94, 0xe2, 0xf1, 0x8c, 0xa2, 0xeb, 0xd9, 0xa4, 0x93, 0x9d, 0xed, 0x78, + 0x01, 0x1f, 0x39, 0xa5, 0x1b, 0x32, 0x4a, 0x3d, 0x6f, 0x34, 0x8a, 0x84, 0x8b, 0xe2, 0x47, 0x6f, + 0x69, 0x40, 0xdc, 0x25, 0x76, 0x09, 0x0f, 0x06, 0xc4, 0x6f, 0x7b, 0x63, 0xb1, 0x82, 0xf9, 0xd5, + 0xbc, 0xf9, 0x4f, 0x1d, 0xf3, 0x6a, 0x2b, 0x9c, 0xe4, 0xd3, 0x72, 0xf1, 0xc1, 0xcf, 0x1a, 0xa6, + 0x79, 0xde, 0x27, 0x98, 0x93, 0xc7, 0x30, 0x7b, 0x0a, 0xdc, 0x18, 0x2d, 0x68, 0x4b, 0x3a, 0x4d, + 0xf8, 0x54, 0xca, 0xd7, 0xc9, 0x97, 0x26, 0x84, 0x71, 0xd8, 0xac, 0x52, 0x61, 0x63, 0xcf, 0x65, + 0xa4, 0xf9, 0xae, 0x11, 0x58, 0xef, 0x18, 0xf0, 0xa4, 0x7c, 0x8c, 0xb0, 0x6b, 0x23, 0x9f, 0x0c, + 0x28, 0xe3, 0xc4, 0x47, 0x18, 0x85, 0x20, 0x91, 0x4d, 0xfa, 0xd4, 0xa5, 0x02, 0xe5, 0xfd, 0xf7, + 0x9a, 0x7b, 0x6e, 0x5d, 0x5e, 0x06, 0x77, 0x98, 0x2b, 0xeb, 0x84, 0x4f, 0x7c, 0x97, 0xd8, 0xa8, 0xef, 0xf9, 0xa8, 0x8b, 0xc3, 0x61, 0xe2, 0xad, 0x88, 0x0f, 0x31, 0x47, 0x23, 0xbc, 0x85, 0x86, 0x78, 0x93, 0xa0, 0x3e, 0xa6, 0x0e, 0xb1, 0xd1, 0x26, 0x76, 0xa8, 0x8d, 0xe5, 0x1c, 0x24, 0x9c, - 0xe3, 0x0c, 0xf8, 0xa2, 0xf9, 0x44, 0x6a, 0x0e, 0x9c, 0x9e, 0xc1, 0x27, 0x7d, 0xe2, 0x13, 0xb7, - 0x47, 0x18, 0xc2, 0x2e, 0xa2, 0x36, 0x71, 0x39, 0xed, 0x61, 0x07, 0x85, 0x3f, 0xf9, 0x96, 0xd4, - 0x19, 0x62, 0x86, 0xb0, 0xe3, 0x13, 0x6c, 0x6f, 0xa1, 0x2e, 0x21, 0x6e, 0x64, 0x3a, 0xb1, 0x5b, - 0xcf, 0xbe, 0xf3, 0xe7, 0x6f, 0x35, 0x40, 0x73, 0xaf, 0x08, 0x96, 0xcd, 0x9b, 0xc4, 0x7a, 0xb1, - 0xb3, 0xc6, 0x22, 0xf8, 0x91, 0x61, 0xfe, 0xff, 0x2a, 0xe1, 0x82, 0x44, 0x94, 0x65, 0xe8, 0x91, - 0x6e, 0x18, 0x14, 0xab, 0x84, 0x6b, 0x0e, 0xaf, 0x2b, 0xe2, 0xb0, 0xe9, 0x05, 0xd6, 0x49, 0x78, - 0x7c, 0x9d, 0x70, 0x9f, 0x92, 0xcd, 0x90, 0x35, 0x44, 0x9e, 0xa6, 0x8c, 0x53, 0x77, 0x90, 0xa3, - 0x4c, 0xd8, 0x71, 0x37, 0xb8, 0x2b, 0x65, 0x47, 0xfb, 0x32, 0xb5, 0x5b, 0x2a, 0x02, 0xb7, 0xc5, - 0x1f, 0x32, 0x0c, 0xe5, 0xef, 0x2e, 0x1e, 0x11, 0xf9, 0xdb, 0x26, 0xf1, 0x19, 0xf5, 0xdc, 0x6d, - 0xf0, 0x7b, 0xc3, 0xbc, 0xea, 0x41, 0xca, 0x84, 0xd5, 0x6b, 0x36, 0x03, 0x2b, 0x59, 0xb3, 0x1e, - 0xc6, 0x23, 0x62, 0x5f, 0x14, 0xdc, 0xac, 0x09, 0xae, 0xfa, 0x94, 0xf8, 0xe1, 0x08, 0x0d, 0x64, - 0xa1, 0xf6, 0x88, 0xa6, 0x1f, 0x58, 0x17, 0xe0, 0xbd, 0xf7, 0x11, 0xde, 0x1b, 0x96, 0xe2, 0x52, - 0x2b, 0x12, 0x8e, 0x61, 0x48, 0x44, 0x56, 0xa8, 0x44, 0xdd, 0xf1, 0x84, 0xa3, 0x3e, 0x75, 0x38, - 0xf1, 0x99, 0x84, 0x7e, 0x1c, 0x1c, 0x4b, 0x42, 0xef, 0x50, 0x9b, 0xb5, 0x2f, 0xc7, 0xd0, 0x15, - 0x6e, 0xf0, 0x57, 0xc3, 0xfc, 0x98, 0x06, 0xc8, 0xc0, 0xb1, 0xac, 0xb1, 0xeb, 0x2a, 0x62, 0x93, - 0x88, 0x0e, 0x15, 0x2d, 0x8d, 0x00, 0xf0, 0xa2, 0x11, 0x58, 0x67, 0xe0, 0xe9, 0x6a, 0x04, 0xd5, - 0x66, 0x3f, 0x01, 0x56, 0x66, 0x5d, 0xb1, 0x8d, 0x79, 0x70, 0xa2, 0xde, 0x18, 0xf0, 0x9b, 0x86, - 0x79, 0x8d, 0x8c, 0xb8, 0xcf, 0xa9, 0xe4, 0x08, 0x8e, 0x67, 0xd1, 0x68, 0x49, 0x3a, 0xa6, 0x4f, - 0x4c, 0x53, 0x53, 0x71, 0xfd, 0x4f, 0x23, 0xb0, 0x7e, 0x65, 0xc0, 0xc5, 0xe2, 0xb8, 0xd6, 0x29, - 0xf9, 0xa3, 0x1c, 0xdb, 0x1f, 0x6f, 0xee, 0xd7, 0x6c, 0x6b, 0x38, 0x22, 0xbe, 0x7f, 0x6a, 0x98, - 0x57, 0xad, 0x12, 0x1e, 0x11, 0x3b, 0x3d, 0xc6, 0x0f, 0x95, 0x71, 0xda, 0xbc, 0x14, 0x58, 0xa7, - 0xe0, 0x42, 0x61, 0x9c, 0x17, 0x51, 0x28, 0xec, 0x3a, 0x0f, 0xac, 0x9c, 0x5d, 0x33, 0xc7, 0xfb, - 0xdf, 0x0d, 0xf3, 0xda, 0xd0, 0x95, 0xb5, 0x25, 0x1f, 0x7a, 0xcc, 0x6f, 0x07, 0xd6, 0x03, 0x70, - 0x4d, 0x46, 0xcc, 0x14, 0x98, 0xb5, 0x43, 0x7f, 0x01, 0x9c, 0xcc, 0x32, 0x51, 0x16, 0xfe, 0xff, - 0x36, 0xcc, 0xbd, 0x49, 0xbc, 0x35, 0x53, 0xc0, 0x91, 0xb2, 0x95, 0x13, 0x98, 0x5e, 0x35, 0x02, - 0xeb, 0x2e, 0x78, 0x47, 0x26, 0x0d, 0x14, 0x20, 0xaa, 0x86, 0x61, 0x83, 0x5b, 0x77, 0xb2, 0xa0, - 0x1b, 0x4b, 0x60, 0xb1, 0xfe, 0x38, 0xf0, 0x97, 0x86, 0xb9, 0x4f, 0x06, 0xeb, 0x83, 0xa2, 0x0b, - 0x7a, 0xd4, 0xc1, 0x2e, 0x38, 0x99, 0xc5, 0x17, 0xcb, 0xd2, 0x69, 0x61, 0x7e, 0xba, 0xa2, 0x4a, - 0x0c, 0xef, 0x1b, 0x81, 0xf5, 0x5b, 0x03, 0x2e, 0x17, 0x27, 0x06, 0xd9, 0x81, 0xa1, 0xb0, 0x03, - 0xfb, 0x28, 0xe7, 0x86, 0xc3, 0xcd, 0xeb, 0x34, 0xf5, 0x89, 0x9e, 0x52, 0xa4, 0x87, 0xb7, 0x0c, - 0x73, 0xef, 0x2a, 0xe1, 0x09, 0x92, 0xa7, 0x27, 0x08, 0x58, 0xce, 0x6e, 0x18, 0x38, 0x2d, 0xb8, - 0x54, 0x98, 0x22, 0x4a, 0xc8, 0x14, 0x16, 0xde, 0x07, 0x2e, 0x14, 0x59, 0x38, 0x73, 0xa2, 0x78, - 0xcf, 0x30, 0x0f, 0xac, 0x12, 0x6e, 0xf5, 0x38, 0xdd, 0xac, 0xf4, 0x9c, 0xac, 0x46, 0x1d, 0x6c, - 0xdf, 0x36, 0x02, 0xeb, 0x21, 0xf8, 0x40, 0x04, 0x8e, 0x0f, 0x09, 0xc2, 0x62, 0x9e, 0x14, 0x36, - 0x65, 0x0c, 0x62, 0x63, 0xd2, 0x0b, 0xd3, 0x82, 0x8d, 0xba, 0x5b, 0x2a, 0x90, 0xf4, 0xd2, 0xa6, - 0x02, 0xea, 0x1e, 0x70, 0x4e, 0x63, 0x97, 0xb3, 0x75, 0x66, 0xa4, 0x20, 0xec, 0x16, 0x0e, 0x86, - 0x21, 0x9e, 0x05, 0xc5, 0xc0, 0xa9, 0x69, 0xb8, 0x93, 0xe9, 0xe3, 0x68, 0x39, 0x76, 0x91, 0x40, - 0xbe, 0x62, 0x24, 0xb2, 0x62, 0x35, 0x78, 0x56, 0x1b, 0xfd, 0x0a, 0x68, 0x55, 0xa2, 0xcf, 0x27, - 0xc7, 0xf7, 0x0c, 0x73, 0x7f, 0x68, 0x4f, 0x6c, 0xdd, 0x87, 0x5e, 0x0e, 0x9e, 0x49, 0x22, 0x9f, - 0xe2, 0xd0, 0xb5, 0xeb, 0x41, 0x22, 0x21, 0x26, 0x20, 0x97, 0x95, 0x84, 0x6f, 0x36, 0x64, 0x09, - 0x4c, 0xae, 0x6e, 0xad, 0xa2, 0x30, 0x6d, 0x55, 0xdf, 0x30, 0x02, 0xeb, 0x1e, 0x78, 0xae, 0x16, - 0xb6, 0x6a, 0x40, 0x4f, 0x82, 0xd3, 0x3b, 0x0c, 0xe2, 0x8d, 0x36, 0x58, 0x9e, 0x69, 0x28, 0xf8, - 0xc9, 0x95, 0xe6, 0xbe, 0xcf, 0x8c, 0xed, 0xda, 0xf5, 0x41, 0xea, 0xd6, 0xa8, 0x0f, 0x5a, 0x51, - 0xd5, 0x87, 0x5f, 0x5f, 0x11, 0x58, 0xcf, 0x5d, 0x01, 0x9f, 0xbd, 0x42, 0x3e, 0x17, 0x6e, 0xcf, - 0x38, 0xe6, 0x13, 0x86, 0xbc, 0x7e, 0x9d, 0xf4, 0x86, 0x2c, 0x8e, 0x46, 0x1e, 0xe3, 0xc8, 0x73, - 0x8b, 0xd3, 0x84, 0x4c, 0xfa, 0x03, 0xba, 0x49, 0x5c, 0xa4, 0xd7, 0x7d, 0x09, 0x49, 0x9c, 0x4b, - 0x48, 0xd0, 0x83, 0x7a, 0xd8, 0x45, 0xdd, 0x28, 0xde, 0x30, 0x0f, 0xf7, 0xa2, 0x74, 0x44, 0x5a, - 0x68, 0xad, 0x8f, 0xf8, 0x90, 0x32, 0xd4, 0xc3, 0x8e, 0x83, 0x18, 0xe1, 0x2c, 0x53, 0xb4, 0xb8, - 0x17, 0x0d, 0x72, 0xed, 0xd8, 0x56, 0xfd, 0x6e, 0x1a, 0x17, 0x0e, 0xa9, 0xb6, 0x24, 0x00, 0xfa, - 0x84, 0x4d, 0x1c, 0x1e, 0x02, 0x8c, 0x27, 0xbf, 0x44, 0x1d, 0x27, 0xb4, 0x41, 0x54, 0x9c, 0x50, - 0xa9, 0xef, 0xf9, 0x23, 0xe2, 0x3b, 0x5b, 0x45, 0x59, 0x40, 0x2b, 0x8f, 0xb0, 0x4d, 0x10, 0x75, - 0x13, 0x26, 0xc4, 0x69, 0x21, 0xa9, 0x4f, 0x5d, 0xf9, 0x26, 0x9d, 0x21, 0x52, 0xe3, 0xe5, 0xe8, - 0x16, 0x5a, 0x73, 0xc5, 0x7b, 0xc5, 0x99, 0x47, 0x3d, 0x33, 0x86, 0xd8, 0x46, 0x18, 0xb1, 0xde, - 0x90, 0xd8, 0x13, 0x87, 0x20, 0xcc, 0x98, 0xd7, 0xa3, 0x98, 0x13, 0x1b, 0xd1, 0xf0, 0x1d, 0x7c, - 0x88, 0x28, 0x5f, 0x92, 0x6f, 0x8e, 0x94, 0xf4, 0xab, 0x6d, 0xca, 0x70, 0xd7, 0x21, 0xb6, 0xe2, - 0x98, 0xc4, 0x95, 0xb8, 0xd2, 0x72, 0xca, 0x50, 0x97, 0x84, 0x14, 0x33, 0xc2, 0x33, 0xec, 0x8b, - 0x32, 0x5d, 0x68, 0x4d, 0xc2, 0x14, 0x92, 0xb7, 0x84, 0xb8, 0xd2, 0x10, 0x11, 0x63, 0x6b, 0x70, - 0x57, 0x0a, 0x65, 0x58, 0xfa, 0xbf, 0x67, 0x98, 0xd7, 0xca, 0xb6, 0xe7, 0xa2, 0x3e, 0xb7, 0x01, - 0xb9, 0xfd, 0x54, 0x24, 0x4a, 0x37, 0x58, 0x27, 0xa7, 0xea, 0xa9, 0xf8, 0x39, 0x17, 0x58, 0x47, - 0xe1, 0x11, 0xdd, 0x5d, 0xc5, 0xdd, 0x66, 0x7c, 0x54, 0x24, 0x60, 0x5d, 0xdf, 0x04, 0x1a, 0x56, - 0x24, 0x11, 0xfd, 0xc9, 0x0f, 0x0d, 0x73, 0xff, 0x3a, 0x91, 0x50, 0x63, 0x33, 0xe7, 0x4b, 0x5f, - 0xaf, 0x75, 0x67, 0x36, 0x74, 0x2d, 0xb0, 0x10, 0x3c, 0xaa, 0x87, 0x57, 0x98, 0x8a, 0x9a, 0x37, - 0xe4, 0x4d, 0x6d, 0xfb, 0x6a, 0xa0, 0xda, 0x72, 0x5d, 0xbd, 0x4a, 0x78, 0x6c, 0xee, 0xa9, 0xb2, - 0xbe, 0x3c, 0x52, 0x49, 0x74, 0x57, 0x87, 0x4b, 0x2d, 0x6e, 0x3e, 0x19, 0x58, 0x8b, 0x70, 0xbe, - 0x7a, 0xff, 0x95, 0xb1, 0xf6, 0x34, 0xb8, 0xad, 0xc0, 0xda, 0x1a, 0x3d, 0xc5, 0xb3, 0x0d, 0x73, - 0x5f, 0x12, 0xc4, 0x05, 0xcc, 0x31, 0x68, 0xd7, 0x01, 0x12, 0x6a, 0x6a, 0x30, 0x2b, 0xf5, 0x07, - 0xa8, 0x75, 0xf8, 0x86, 0x11, 0x58, 0x17, 0xe1, 0xf9, 0x08, 0xa4, 0xac, 0x33, 0x61, 0xfc, 0x78, - 0x13, 0x1e, 0xfe, 0x6a, 0x63, 0x8e, 0x51, 0xdf, 0xf7, 0x46, 0xb5, 0xf0, 0xdf, 0x09, 0xce, 0x6a, - 0xfc, 0xe1, 0xc0, 0x19, 0x49, 0xf8, 0xb9, 0x61, 0x5e, 0x13, 0x16, 0xc9, 0xc8, 0xda, 0x9a, 0x35, - 0x77, 0xae, 0x74, 0x0d, 0xf5, 0x89, 0xd2, 0x9d, 0xf0, 0x6c, 0xd9, 0x46, 0x2c, 0x36, 0xb1, 0xb2, - 0xda, 0x2e, 0x83, 0x53, 0x33, 0xac, 0x2c, 0xf8, 0x87, 0x61, 0x82, 0xc7, 0x88, 0x3f, 0xa2, 0x6e, - 0x2a, 0xe0, 0x17, 0x4a, 0x2d, 0x8d, 0x94, 0x35, 0xa8, 0xc5, 0x3a, 0xaa, 0x6a, 0x15, 0xbf, 0x6a, - 0x04, 0xd6, 0x79, 0x68, 0x45, 0x82, 0x64, 0xbb, 0x98, 0x07, 0x9a, 0xa8, 0x0a, 0xd4, 0x55, 0xc9, - 0x56, 0xbc, 0x53, 0x22, 0x3d, 0xbb, 0xb8, 0x33, 0x1f, 0x0e, 0x63, 0xf1, 0x5f, 0x86, 0x70, 0xe3, - 0x87, 0x3d, 0x3b, 0x01, 0x3a, 0x97, 0x14, 0x52, 0xe2, 0x44, 0x2c, 0xce, 0x55, 0x2a, 0x36, 0x5f, - 0x32, 0x02, 0xeb, 0x04, 0xfc, 0x64, 0x61, 0x40, 0xba, 0x9e, 0x4d, 0xb2, 0xce, 0x38, 0x06, 0xae, + 0x63, 0x05, 0x7c, 0xd1, 0x7c, 0x22, 0x35, 0x07, 0x4e, 0xcf, 0xe0, 0x93, 0x3e, 0xf1, 0x89, 0xdb, + 0x23, 0x0c, 0x61, 0x17, 0x51, 0x9b, 0xb8, 0x9c, 0xf6, 0xb0, 0x83, 0xc2, 0x9f, 0x7c, 0x4b, 0xea, + 0x0c, 0x31, 0x43, 0xd8, 0xf1, 0x09, 0xb6, 0xb7, 0x50, 0x97, 0x10, 0x37, 0x32, 0x9d, 0xd8, 0xad, + 0x67, 0xdf, 0xf9, 0xf3, 0xb7, 0x1a, 0xa0, 0xb9, 0x57, 0x04, 0xcb, 0xe6, 0x4d, 0x62, 0xbd, 0xd8, + 0x59, 0x63, 0x01, 0xfc, 0xc8, 0x30, 0xff, 0x7f, 0x95, 0x70, 0x41, 0x22, 0xca, 0x32, 0xf4, 0x48, + 0x37, 0x0c, 0x8a, 0x55, 0xc2, 0x35, 0x87, 0xd7, 0x15, 0x71, 0xd8, 0xf4, 0x02, 0xeb, 0x14, 0x3c, + 0xb1, 0x4e, 0xb8, 0x4f, 0xc9, 0x66, 0xc8, 0x1a, 0x22, 0x4f, 0x53, 0xc6, 0xa9, 0x3b, 0xc8, 0x51, + 0x26, 0xec, 0xb8, 0x1b, 0xdc, 0x95, 0xb2, 0xa3, 0x7d, 0x99, 0xda, 0x2d, 0x15, 0x81, 0xdb, 0xe2, + 0x0f, 0x19, 0x86, 0xf2, 0x77, 0x17, 0x8f, 0x88, 0xfc, 0x6d, 0x93, 0xf8, 0x8c, 0x7a, 0xee, 0x36, + 0xf8, 0xbd, 0x61, 0x5e, 0xf5, 0x20, 0x65, 0xc2, 0xea, 0x35, 0x9b, 0x81, 0xe5, 0xac, 0x59, 0x0f, + 0xe3, 0x11, 0xb1, 0x2f, 0x0a, 0x6e, 0xd6, 0x04, 0x57, 0x7d, 0x4a, 0xfc, 0x70, 0x84, 0x06, 0x32, + 0x5f, 0x7b, 0x44, 0xd3, 0x0f, 0xac, 0x0b, 0xf0, 0xde, 0xfb, 0x08, 0xef, 0x0d, 0x4b, 0x71, 0xa9, + 0x15, 0x09, 0xc7, 0x30, 0x24, 0x22, 0x2b, 0x54, 0xa2, 0xee, 0x78, 0xc2, 0x51, 0x9f, 0x3a, 0x9c, + 0xf8, 0x4c, 0x42, 0x3f, 0x01, 0x8e, 0x27, 0xa1, 0x77, 0xa8, 0xcd, 0xda, 0x97, 0x63, 0xe8, 0x0a, + 0x37, 0xf8, 0xab, 0x61, 0x7e, 0x4c, 0x03, 0x64, 0xe0, 0x78, 0xd6, 0xd8, 0x75, 0x15, 0xb1, 0x49, + 0x44, 0x87, 0x8a, 0x96, 0x46, 0x00, 0x78, 0xd1, 0x08, 0xac, 0x15, 0x78, 0xa6, 0x1a, 0x41, 0xb5, + 0xd9, 0x4f, 0x80, 0xe5, 0x59, 0x57, 0x6c, 0x63, 0x0e, 0x9c, 0xac, 0x37, 0x06, 0xfc, 0xa6, 0x61, + 0x5e, 0x23, 0x23, 0xee, 0x73, 0x2a, 0x39, 0x82, 0x13, 0x59, 0x34, 0x5a, 0x92, 0x8e, 0xe9, 0x93, + 0xd3, 0xd4, 0x54, 0x5c, 0xff, 0xd3, 0x08, 0xac, 0x5f, 0x19, 0x70, 0xa1, 0x38, 0xae, 0x75, 0x4a, + 0xfe, 0x28, 0xc7, 0xf6, 0xc7, 0x9b, 0xfb, 0x35, 0xdb, 0x1a, 0x8e, 0x88, 0xef, 0x9f, 0x1a, 0xe6, + 0x55, 0xab, 0x84, 0x47, 0xc4, 0x4e, 0x8f, 0xf1, 0x43, 0x65, 0x9c, 0x36, 0x2f, 0x05, 0xd6, 0x69, + 0x38, 0x5f, 0x18, 0xe7, 0x45, 0x14, 0x0a, 0xbb, 0xce, 0x03, 0x2b, 0x67, 0xd7, 0xcc, 0xf1, 0xfe, + 0x77, 0xc3, 0xbc, 0x36, 0x74, 0x65, 0x6d, 0xc9, 0x87, 0x1e, 0xf3, 0xdb, 0x81, 0xf5, 0x00, 0x5c, + 0x93, 0x11, 0x33, 0x05, 0x66, 0xed, 0xd0, 0x9f, 0x07, 0xa7, 0xb2, 0x4c, 0x94, 0x85, 0xff, 0xbf, + 0x0d, 0x73, 0x6f, 0x12, 0x6f, 0xcd, 0x14, 0x70, 0xa4, 0x6c, 0xe5, 0x04, 0xa6, 0x57, 0x8d, 0xc0, + 0xba, 0x0b, 0xde, 0x91, 0x49, 0x03, 0x05, 0x88, 0xaa, 0x61, 0xd8, 0xe0, 0xd6, 0x9d, 0x2c, 0xe8, + 0xc6, 0x22, 0x58, 0xa8, 0x3f, 0x0e, 0xfc, 0xa5, 0x61, 0xee, 0x93, 0xc1, 0xfa, 0xa0, 0xe8, 0x82, + 0x1e, 0x75, 0xb0, 0x0b, 0x4e, 0x65, 0xf1, 0xc5, 0xb2, 0x74, 0x5a, 0x98, 0x9b, 0xae, 0xa8, 0x12, + 0xc3, 0xfb, 0x46, 0x60, 0xfd, 0xd6, 0x80, 0x4b, 0xc5, 0x89, 0x41, 0x76, 0x60, 0x28, 0xec, 0xc0, + 0x3e, 0xca, 0xb9, 0xe1, 0x70, 0xf3, 0x3a, 0x4d, 0x7d, 0xa2, 0xa7, 0x14, 0xe9, 0xe1, 0x2d, 0xc3, + 0xdc, 0xbb, 0x4a, 0x78, 0x82, 0xe4, 0xe9, 0x09, 0x02, 0x96, 0xb3, 0x1b, 0x06, 0x4e, 0x0b, 0x2e, + 0x16, 0xa6, 0x88, 0x12, 0x32, 0x85, 0x85, 0xf7, 0x81, 0x0b, 0x45, 0x16, 0xce, 0x9c, 0x28, 0xde, + 0x33, 0xcc, 0x03, 0xab, 0x84, 0x5b, 0x3d, 0x4e, 0x37, 0x2b, 0x3d, 0x27, 0xab, 0x51, 0x07, 0xdb, + 0xb7, 0x8d, 0xc0, 0x7a, 0x08, 0x3e, 0x10, 0x81, 0xe3, 0x43, 0x82, 0xb0, 0x98, 0x27, 0x85, 0x4d, + 0x19, 0x83, 0xd8, 0x98, 0xf4, 0xc2, 0xb4, 0x60, 0xa3, 0xee, 0x96, 0x0a, 0x24, 0xbd, 0xb4, 0xa9, + 0x80, 0xba, 0x07, 0x9c, 0xd3, 0xd8, 0xe5, 0x6c, 0x9d, 0x19, 0x29, 0x08, 0xbb, 0x85, 0x83, 0x61, + 0x88, 0x67, 0x41, 0x31, 0x70, 0x7a, 0x1a, 0xee, 0x64, 0xfa, 0x38, 0x56, 0x8e, 0x5d, 0x24, 0x90, + 0xaf, 0x18, 0x89, 0xac, 0x58, 0x0d, 0x9e, 0xd5, 0x46, 0xbf, 0x0c, 0x5a, 0x95, 0xe8, 0xf3, 0xc9, + 0xf1, 0x3d, 0xc3, 0xdc, 0x1f, 0xda, 0x13, 0x5b, 0xf7, 0xa1, 0x97, 0x83, 0x67, 0x92, 0xc8, 0xa7, + 0x38, 0x74, 0xed, 0x7a, 0x90, 0x48, 0x88, 0x09, 0xc8, 0x65, 0x25, 0xe1, 0x9b, 0x0d, 0x59, 0x02, + 0x93, 0xab, 0x5b, 0xab, 0x28, 0x4c, 0x5b, 0xd5, 0x37, 0x8c, 0xc0, 0xba, 0x07, 0x9e, 0xab, 0x85, + 0xad, 0x1a, 0xd0, 0x93, 0xe0, 0xcc, 0x0e, 0x83, 0x78, 0xa3, 0x0d, 0x96, 0x66, 0x1a, 0x0a, 0x7e, + 0x72, 0xa5, 0xb9, 0xef, 0x33, 0x63, 0xbb, 0x76, 0x7d, 0x90, 0xba, 0x35, 0xea, 0x83, 0x56, 0x54, + 0xf5, 0xe1, 0xd7, 0x57, 0x04, 0xd6, 0x73, 0x57, 0xc0, 0x67, 0xaf, 0x90, 0xcf, 0x85, 0xdb, 0x33, + 0x8e, 0xf9, 0x84, 0x21, 0xaf, 0x5f, 0x27, 0xbd, 0x21, 0x8b, 0xa3, 0x91, 0xc7, 0x38, 0xf2, 0xdc, + 0xe2, 0x34, 0x21, 0x93, 0xfe, 0x80, 0x6e, 0x12, 0x17, 0xe9, 0x75, 0x5f, 0x44, 0x12, 0xe7, 0x22, + 0x12, 0xf4, 0xa0, 0x1e, 0x76, 0x51, 0x37, 0x8a, 0x37, 0xcc, 0xc3, 0xbd, 0x28, 0x1d, 0x91, 0x16, + 0x5a, 0xeb, 0x23, 0x3e, 0xa4, 0x0c, 0xf5, 0xb0, 0xe3, 0x20, 0x46, 0x38, 0xcb, 0x14, 0x2d, 0xee, + 0x45, 0x83, 0x5c, 0x3b, 0xb6, 0x55, 0xbf, 0x9b, 0xc6, 0x85, 0x43, 0xaa, 0x2d, 0x0a, 0x80, 0x3e, + 0x61, 0x13, 0x87, 0x87, 0x00, 0xe3, 0xc9, 0x2f, 0x51, 0xc7, 0x09, 0x6d, 0x10, 0x15, 0x27, 0x54, + 0xea, 0x7b, 0xfe, 0x88, 0xf8, 0xce, 0x56, 0x51, 0x16, 0xd0, 0xca, 0x23, 0x6c, 0x13, 0x44, 0xdd, + 0x84, 0x09, 0x71, 0x5a, 0x48, 0xea, 0x53, 0x57, 0xbe, 0x49, 0x67, 0x88, 0xd4, 0x78, 0x39, 0xba, + 0x85, 0xd6, 0x5c, 0xf1, 0x5e, 0x71, 0xe6, 0x51, 0xcf, 0x8c, 0x21, 0xb6, 0x11, 0x46, 0xac, 0x37, + 0x24, 0xf6, 0xc4, 0x21, 0x08, 0x33, 0xe6, 0xf5, 0x28, 0xe6, 0xc4, 0x46, 0x34, 0x7c, 0x07, 0x1f, + 0x22, 0xca, 0x17, 0xe5, 0x9b, 0x23, 0x25, 0xfd, 0x6a, 0x9b, 0x32, 0xdc, 0x75, 0x88, 0xad, 0x38, + 0x26, 0x71, 0x25, 0xae, 0xb4, 0x9c, 0x32, 0xd4, 0x25, 0x21, 0xc5, 0x8c, 0xf0, 0x0c, 0xfb, 0xa2, + 0x4c, 0x17, 0x5a, 0x93, 0x30, 0x85, 0xe4, 0x2d, 0x21, 0xae, 0x34, 0x44, 0xc4, 0xd8, 0x1a, 0xdc, + 0x95, 0x42, 0x19, 0x96, 0xfe, 0xef, 0x19, 0xe6, 0xb5, 0xb2, 0xed, 0xb9, 0xa8, 0xcf, 0x6d, 0x40, + 0x6e, 0x3f, 0x15, 0x89, 0xd2, 0x0d, 0xd6, 0xa9, 0xa9, 0x7a, 0x2a, 0x7e, 0xce, 0x05, 0xd6, 0x31, + 0x78, 0x44, 0x77, 0x57, 0x71, 0xb7, 0x19, 0x1f, 0x15, 0x09, 0x58, 0xd7, 0x37, 0x81, 0x86, 0x15, + 0x49, 0x44, 0x7f, 0xf2, 0x43, 0xc3, 0xdc, 0xbf, 0x4e, 0x24, 0xd4, 0xd8, 0xcc, 0xb9, 0xd2, 0xd7, + 0x6b, 0xdd, 0x99, 0x0d, 0x5d, 0x0b, 0x2c, 0x04, 0x8f, 0xe9, 0xe1, 0x15, 0xa6, 0xa2, 0xe6, 0x0d, + 0x79, 0x53, 0xdb, 0xbe, 0x1a, 0xa8, 0xb6, 0x5c, 0x57, 0xaf, 0x12, 0x1e, 0x9b, 0x7b, 0xba, 0xac, + 0x2f, 0x8f, 0x54, 0x12, 0xdd, 0xd5, 0xe1, 0x52, 0x8b, 0x9b, 0x4f, 0x06, 0xd6, 0x02, 0x9c, 0xab, + 0xde, 0x7f, 0x65, 0xac, 0x3d, 0x03, 0x6e, 0x2b, 0xb0, 0xb6, 0x46, 0x4f, 0xf1, 0x6c, 0xc3, 0xdc, + 0x97, 0x04, 0x71, 0x01, 0x73, 0x0c, 0xda, 0x75, 0x80, 0x84, 0x9a, 0x1a, 0xcc, 0x72, 0xfd, 0x01, + 0x6a, 0x1d, 0xbe, 0x61, 0x04, 0xd6, 0x45, 0x78, 0x3e, 0x02, 0x29, 0xeb, 0x4c, 0x18, 0x3f, 0xde, + 0x84, 0x87, 0xbf, 0xda, 0x98, 0x63, 0xd4, 0xf7, 0xbd, 0x51, 0x2d, 0xfc, 0x77, 0x82, 0xb3, 0x1a, + 0x7f, 0x38, 0x70, 0x46, 0x12, 0x7e, 0x6e, 0x98, 0xd7, 0x84, 0x45, 0x32, 0xb2, 0xb6, 0x66, 0xcd, + 0x3d, 0x5a, 0xba, 0x86, 0xfa, 0x44, 0xe9, 0x4e, 0x78, 0xb6, 0x6c, 0x23, 0x16, 0x9b, 0x58, 0x59, + 0x6d, 0x97, 0xc0, 0xe9, 0x19, 0x56, 0x16, 0xfc, 0xc3, 0x30, 0xc1, 0x63, 0xc4, 0x1f, 0x51, 0x37, + 0x15, 0xf0, 0xf3, 0xa5, 0x96, 0x46, 0xca, 0x1a, 0xd4, 0x42, 0x1d, 0x55, 0xb5, 0x8a, 0x5f, 0x35, + 0x02, 0xeb, 0x3c, 0xb4, 0x22, 0x41, 0xb2, 0x5d, 0xcc, 0x03, 0x4d, 0x54, 0x05, 0xea, 0xaa, 0x64, + 0x2b, 0xde, 0x29, 0x91, 0x9e, 0x5d, 0xd8, 0x99, 0x0f, 0x87, 0xb1, 0xf8, 0x2f, 0x43, 0xb8, 0xf1, + 0xc3, 0x9e, 0x9d, 0x00, 0x9d, 0x4b, 0x0a, 0x29, 0x71, 0x22, 0x16, 0x8f, 0x56, 0x2a, 0x36, 0x5f, + 0x32, 0x02, 0xeb, 0x24, 0xfc, 0x64, 0x61, 0x40, 0xba, 0x9e, 0x4d, 0xb2, 0xce, 0x38, 0x06, 0xae, 0x06, 0x92, 0x3e, 0x54, 0x97, 0x68, 0xa2, 0x3f, 0x3b, 0x59, 0x68, 0x29, 0x49, 0x12, 0x67, 0x4a, 0x10, 0xa7, 0x79, 0x31, 0x3b, 0xb5, 0xb7, 0xc1, 0x0b, 0x0d, 0x13, 0x84, 0x2e, 0x97, 0xb2, 0x9b, 0xe5, 0xf3, 0x67, 0x4a, 0x9e, 0xf4, 0xe4, 0x1b, 0xa7, 0x6a, 0x36, 0x7f, 0x6c, 0x04, 0xd6, 0xa7, @@ -147,69 +147,69 @@ var fileDescriptor_5cfa31da1d67295d = []byte{ 0x3d, 0x29, 0xe1, 0x77, 0xe6, 0xa1, 0x11, 0xf5, 0x33, 0x8f, 0x54, 0xfe, 0x5b, 0x67, 0x9c, 0x76, 0xf0, 0x22, 0x6d, 0x75, 0xae, 0x5e, 0x89, 0x41, 0xeb, 0x54, 0x18, 0xab, 0x55, 0x4a, 0xad, 0xd2, 0x0a, 0xba, 0xa7, 0x2a, 0xd2, 0xf1, 0x09, 0xf7, 0xb7, 0x3a, 0x98, 0x73, 0x32, 0x1a, 0xf3, 0x6d, - 0xf0, 0x46, 0xc3, 0xbc, 0x2e, 0x9b, 0x8d, 0x44, 0x61, 0x3d, 0x35, 0x2d, 0x23, 0x25, 0x8b, 0xea, - 0x52, 0x3d, 0x65, 0x95, 0x8a, 0xdf, 0x34, 0x02, 0xcb, 0x82, 0x77, 0xcf, 0x5a, 0x50, 0x8b, 0xf2, + 0xf0, 0x46, 0xc3, 0xbc, 0x2e, 0x9b, 0x8d, 0x44, 0x61, 0x3d, 0x3d, 0x2d, 0x23, 0x25, 0x8b, 0xea, + 0x62, 0x3d, 0x65, 0x95, 0x8a, 0xdf, 0x34, 0x02, 0xcb, 0x82, 0x77, 0xcf, 0x5a, 0x50, 0x8b, 0xf2, 0x57, 0x22, 0x4e, 0x45, 0x31, 0xfd, 0x2f, 0x25, 0xb1, 0xef, 0x18, 0xe6, 0xb5, 0xeb, 0xea, 0x48, 0xeb, 0x51, 0x39, 0x63, 0xbe, 0x51, 0x55, 0x02, 0xad, 0x57, 0xda, 0xff, 0xe5, 0xf4, 0x14, 0x4d, 0xb7, 0x04, 0xd6, 0x41, 0x78, 0x60, 0x3d, 0x3e, 0xfb, 0xd3, 0xdf, 0x8b, 0x05, 0xf2, 0x83, 0xcd, 0x7d, 0x1a, 0xb9, 0x7a, 0x2e, 0xba, 0xd3, 0xaf, 0x19, 0xe6, 0x5e, 0xb9, 0x31, 0xd4, 0x76, 0x5d, - 0x5f, 0xf2, 0x3e, 0x78, 0xbc, 0x44, 0x90, 0xd9, 0x6f, 0xde, 0x1e, 0x58, 0x07, 0xe0, 0x7e, 0xb5, + 0x5f, 0xf2, 0x3e, 0x78, 0xa2, 0x44, 0x90, 0xd9, 0x6f, 0xde, 0x1e, 0x58, 0x07, 0xe0, 0x7e, 0xb5, 0xd9, 0xcc, 0x18, 0x01, 0xe1, 0xc1, 0xac, 0x11, 0x21, 0x51, 0xa2, 0xce, 0x3d, 0x67, 0x98, 0x57, - 0x87, 0x29, 0x46, 0xcd, 0xca, 0x40, 0xb3, 0xe4, 0x7d, 0x95, 0x9f, 0x8c, 0xf4, 0xe8, 0xe6, 0xe9, + 0x87, 0x29, 0x46, 0xcd, 0xca, 0x40, 0xb3, 0xe4, 0x7d, 0x95, 0x9f, 0x8c, 0xf4, 0xe8, 0xe6, 0x99, 0xc0, 0x3a, 0x02, 0xa1, 0xcc, 0x53, 0xf1, 0x69, 0xa2, 0x36, 0x47, 0xa5, 0x6d, 0x00, 0x72, 0xa4, - 0x80, 0xdf, 0x19, 0xe6, 0x81, 0xf4, 0xa7, 0x9c, 0x8b, 0xe1, 0x7e, 0x0d, 0x2c, 0x4f, 0x6d, 0x04, + 0x80, 0xdf, 0x19, 0xe6, 0x81, 0xf4, 0xa7, 0x9c, 0x8b, 0xe1, 0x7e, 0x0d, 0x2c, 0x4d, 0x6d, 0x04, 0x85, 0x9e, 0xb6, 0xac, 0x55, 0x57, 0x5d, 0xd1, 0x36, 0x10, 0x3e, 0x5e, 0xb1, 0xcd, 0x50, 0xdb, 0x46, 0x9f, 0xf4, 0x3c, 0xdf, 0x0e, 0xfd, 0x1b, 0xa3, 0xf1, 0x10, 0x33, 0x82, 0xb8, 0x8f, 0x5d, - 0x96, 0x38, 0x89, 0x9c, 0x6b, 0x1e, 0x8a, 0x9a, 0x8d, 0x70, 0x08, 0x4b, 0x7f, 0x4e, 0xf9, 0x45, - 0xb4, 0x69, 0x12, 0x41, 0x27, 0xb0, 0x2d, 0x54, 0xc6, 0x63, 0x0a, 0xd7, 0x62, 0x1d, 0x55, 0x85, - 0xa9, 0x23, 0x8e, 0xeb, 0x23, 0x4c, 0xe9, 0x80, 0xac, 0x8d, 0x27, 0x71, 0xf6, 0xab, 0xf0, 0x84, - 0x13, 0x65, 0xb0, 0x84, 0xa5, 0xac, 0x04, 0x8b, 0x10, 0xd5, 0xc3, 0x52, 0xa4, 0x5a, 0x8c, 0x25, - 0x5d, 0xca, 0x3e, 0x00, 0x96, 0xe8, 0x33, 0xf6, 0x2b, 0x7b, 0x44, 0x9f, 0x97, 0x32, 0x21, 0xdf, - 0xe7, 0xa5, 0xc4, 0x55, 0x7d, 0x5e, 0x4a, 0xb1, 0xf9, 0x56, 0xa3, 0xbc, 0xcf, 0x2b, 0xaa, 0xca, - 0xdf, 0x6d, 0x80, 0xe7, 0x1b, 0xa9, 0xcf, 0xbc, 0x99, 0x24, 0x59, 0xbb, 0xfa, 0xce, 0x50, 0x6e, - 0x6b, 0xd7, 0xd7, 0x29, 0x05, 0xb5, 0xb0, 0x82, 0x16, 0x95, 0xcc, 0x7c, 0x8d, 0x2c, 0x2c, 0x8a, - 0xf9, 0x2a, 0xf8, 0x8e, 0x6a, 0x4a, 0x53, 0x24, 0x17, 0x34, 0xa5, 0x29, 0x79, 0x65, 0xa7, 0x95, - 0xd3, 0x14, 0x17, 0x39, 0xf2, 0x4d, 0x69, 0x7a, 0xb1, 0xaa, 0x9b, 0xd2, 0xd7, 0x0d, 0xf0, 0xaa, - 0x51, 0xba, 0x88, 0xb5, 0x57, 0xb0, 0xee, 0xf2, 0xd5, 0x5b, 0xbb, 0xf2, 0x85, 0x03, 0x7f, 0xd8, - 0x23, 0x7a, 0x8b, 0x14, 0x15, 0xc5, 0xbd, 0x45, 0x36, 0x0a, 0x2a, 0x7b, 0x8b, 0x62, 0x65, 0x15, - 0xd6, 0x7f, 0x6b, 0xec, 0xa8, 0xb7, 0x28, 0x8a, 0x99, 0x97, 0x1b, 0xe0, 0xc5, 0x46, 0xaa, 0xbb, - 0xf8, 0x5f, 0xe0, 0x64, 0x03, 0xe7, 0xcd, 0x86, 0x39, 0x97, 0x6a, 0x37, 0x2e, 0x88, 0x29, 0xad, - 0xe8, 0x22, 0x19, 0xb8, 0xb5, 0xa4, 0xa2, 0x67, 0x15, 0xd3, 0xc7, 0xe1, 0xb7, 0xcd, 0x38, 0x4a, - 0xad, 0xfe, 0x0f, 0x8c, 0xc0, 0x7a, 0x1c, 0x7e, 0x36, 0x71, 0x32, 0xde, 0x9b, 0x30, 0xee, 0x8d, - 0xe8, 0x97, 0x89, 0x8d, 0xf4, 0xa5, 0x32, 0x14, 0x5f, 0x73, 0xcb, 0x1d, 0x79, 0x46, 0xfd, 0xcd, - 0xb2, 0xe4, 0x06, 0xf5, 0xbc, 0x51, 0x97, 0xba, 0xe2, 0x03, 0xa9, 0x70, 0x8a, 0x47, 0xe0, 0xfd, - 0x99, 0x0e, 0x23, 0x7f, 0x41, 0xaf, 0x7d, 0x39, 0x7d, 0x91, 0x4e, 0x11, 0x9f, 0x78, 0xa8, 0x88, - 0x0f, 0xcb, 0xc4, 0x4b, 0x0d, 0x13, 0xae, 0x12, 0x5e, 0x46, 0xdf, 0x4d, 0x35, 0x89, 0x48, 0x94, - 0x8e, 0x9b, 0x67, 0x19, 0xa2, 0x88, 0x7b, 0xde, 0x08, 0xac, 0x0d, 0xf8, 0x78, 0xea, 0x43, 0xe2, - 0x6e, 0x53, 0x77, 0x7b, 0xfc, 0x99, 0xbe, 0x82, 0xba, 0xfc, 0x77, 0xa6, 0x57, 0x1a, 0xe6, 0xdc, - 0x05, 0xe2, 0x90, 0x0f, 0xee, 0x63, 0x72, 0x96, 0x59, 0x7d, 0x4c, 0x8f, 0x52, 0x54, 0xbd, 0x20, - 0x7d, 0x4c, 0x3e, 0xfd, 0x50, 0x88, 0x3a, 0xb3, 0xb8, 0x23, 0xa2, 0x42, 0x6f, 0x7a, 0xbb, 0x61, - 0x1e, 0x92, 0xde, 0xaf, 0xdb, 0xd3, 0x04, 0x4d, 0xa5, 0x67, 0xa5, 0x65, 0x51, 0xb8, 0x52, 0x7f, - 0x80, 0x22, 0xe7, 0x6d, 0x23, 0xb0, 0xfa, 0xd0, 0xde, 0x85, 0x00, 0xd4, 0x1f, 0x9c, 0x44, 0xee, - 0x8e, 0xba, 0xe7, 0x2c, 0x55, 0x1d, 0xb8, 0x91, 0xbb, 0xc1, 0xb2, 0x83, 0x40, 0x4c, 0x3d, 0xd3, - 0x13, 0x09, 0x42, 0xbf, 0xdf, 0x30, 0x0f, 0x26, 0x2e, 0x2b, 0x25, 0xd8, 0x5c, 0x9a, 0x4e, 0x4e, - 0x22, 0x28, 0x97, 0x6b, 0x6a, 0x2b, 0x1e, 0x5f, 0x33, 0x02, 0x6b, 0x08, 0xfb, 0xbb, 0x12, 0x8f, - 0xf5, 0x98, 0xbc, 0x03, 0x9c, 0xa9, 0x64, 0x32, 0xe7, 0x6e, 0xf1, 0x49, 0xd6, 0x36, 0x78, 0xbd, - 0x61, 0x1e, 0x92, 0x01, 0xb1, 0x33, 0xb7, 0x4b, 0x07, 0xe6, 0x4a, 0xfd, 0x01, 0x8a, 0xae, 0xd7, - 0xa5, 0xdb, 0xed, 0x42, 0x4c, 0xd6, 0x23, 0xeb, 0xdc, 0xe2, 0xce, 0xc9, 0x0a, 0xbd, 0xea, 0x8f, - 0x86, 0x79, 0x7d, 0xd8, 0x14, 0x3e, 0xa4, 0x6f, 0x3c, 0x27, 0xe8, 0xca, 0x6d, 0x34, 0x4b, 0x14, - 0x35, 0x5b, 0xed, 0xda, 0xfa, 0x8a, 0x2c, 0x12, 0x58, 0xe7, 0xe0, 0x9d, 0xf1, 0xd6, 0x01, 0x39, - 0x94, 0x89, 0x4f, 0xab, 0x05, 0x83, 0xce, 0x7b, 0x6e, 0x9f, 0x0e, 0x26, 0xbe, 0x80, 0x8e, 0xbc, - 0x6e, 0x62, 0xaf, 0x7d, 0x14, 0x1c, 0xd1, 0x1c, 0xc4, 0x17, 0xb7, 0x63, 0x12, 0xc0, 0x33, 0x0d, - 0x79, 0x29, 0x22, 0xbe, 0xc3, 0x40, 0x09, 0xcb, 0x9f, 0x92, 0x24, 0xae, 0x38, 0x24, 0x1b, 0xea, - 0x4f, 0x4c, 0xd1, 0x6b, 0xbe, 0x6c, 0x04, 0xd6, 0x17, 0xe0, 0xe7, 0x0b, 0x60, 0x24, 0x34, 0xb5, - 0xc5, 0x88, 0x0d, 0xb1, 0x2f, 0xf7, 0x71, 0xf2, 0xc6, 0x77, 0xec, 0x14, 0x7c, 0x6b, 0x4c, 0x96, - 0xe2, 0xd5, 0x0f, 0x97, 0x5d, 0xae, 0x59, 0x2b, 0x1b, 0x16, 0x61, 0x67, 0x64, 0x77, 0x88, 0x42, - 0xd2, 0xbe, 0xac, 0xa7, 0xe8, 0x84, 0x53, 0x6c, 0x17, 0x55, 0xae, 0x5f, 0x1a, 0xe6, 0x35, 0xab, - 0x24, 0xc1, 0xc0, 0x56, 0xfe, 0x16, 0x69, 0x42, 0x98, 0x48, 0x17, 0x37, 0x54, 0xa8, 0x35, 0xb9, - 0xfa, 0x30, 0x18, 0x21, 0xcf, 0x23, 0x96, 0xc6, 0x3f, 0x00, 0xd6, 0xea, 0x1a, 0x3f, 0xfd, 0xcb, - 0xd3, 0x7b, 0x86, 0xa9, 0x4e, 0x81, 0x92, 0x78, 0xe6, 0x2b, 0x0c, 0x4d, 0x17, 0x93, 0x85, 0x1a, - 0x9a, 0xca, 0x43, 0xbf, 0x6e, 0x04, 0xd6, 0x4d, 0xb0, 0x9d, 0xa8, 0x22, 0x7d, 0x4a, 0x1c, 0xbb, - 0x28, 0x6c, 0x13, 0x93, 0x08, 0xc8, 0x0f, 0xc3, 0xdd, 0x83, 0x7c, 0xd6, 0x58, 0xbc, 0xf7, 0xb6, - 0x8d, 0x5b, 0x06, 0x94, 0x0f, 0x27, 0xdd, 0x56, 0xcf, 0x1b, 0xb5, 0x9d, 0xad, 0x3e, 0x6f, 0x47, - 0xff, 0x42, 0x30, 0x20, 0x6e, 0x7b, 0xdc, 0x5d, 0x1e, 0x78, 0xed, 0xec, 0xbf, 0x89, 0x74, 0xaf, - 0x14, 0xff, 0x23, 0x70, 0xcb, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xd8, 0x6a, 0x74, 0x52, 0x41, - 0x32, 0x00, 0x00, + 0x96, 0x38, 0x89, 0x3c, 0xda, 0x3c, 0x14, 0x35, 0x1b, 0xe1, 0x10, 0x96, 0xfe, 0x9c, 0xf2, 0x8b, + 0x68, 0xd3, 0x24, 0x82, 0x4e, 0x60, 0x9b, 0xaf, 0x8c, 0xc7, 0x14, 0xae, 0x85, 0x3a, 0xaa, 0x0a, + 0x53, 0x47, 0x1c, 0xd7, 0x47, 0x98, 0xd2, 0x01, 0x59, 0x1b, 0x4f, 0xe2, 0xec, 0x57, 0xe1, 0x09, + 0x27, 0xca, 0x60, 0x09, 0x4b, 0x59, 0x09, 0x16, 0x21, 0xaa, 0x87, 0xa5, 0x48, 0xb5, 0x18, 0x4b, + 0xba, 0x94, 0x7d, 0x00, 0x2c, 0xd1, 0x67, 0xec, 0x57, 0xf6, 0x88, 0x3e, 0x2f, 0x65, 0x42, 0xbe, + 0xcf, 0x4b, 0x89, 0xab, 0xfa, 0xbc, 0x94, 0x62, 0xf3, 0xad, 0x46, 0x79, 0x9f, 0x57, 0x54, 0x95, + 0xbf, 0xdb, 0x00, 0xcf, 0x37, 0x52, 0x9f, 0x79, 0x33, 0x49, 0xb2, 0x76, 0xf5, 0x9d, 0xa1, 0xdc, + 0xd6, 0xae, 0xaf, 0x53, 0x0a, 0x6a, 0x61, 0x05, 0x2d, 0x2a, 0x99, 0xf9, 0x1a, 0x59, 0x58, 0x14, + 0xf3, 0x55, 0xf0, 0x1d, 0xd5, 0x94, 0xa6, 0x48, 0x2e, 0x68, 0x4a, 0x53, 0xf2, 0xca, 0x4e, 0x2b, + 0xa7, 0x29, 0x2e, 0x72, 0xe4, 0x9b, 0xd2, 0xf4, 0x62, 0x55, 0x37, 0xa5, 0xaf, 0x1b, 0xe0, 0x55, + 0xa3, 0x74, 0x11, 0x6b, 0xaf, 0x60, 0xdd, 0xe5, 0xab, 0xb7, 0x76, 0xe5, 0x0b, 0x07, 0xfe, 0xb0, + 0x47, 0xf4, 0x16, 0x29, 0x2a, 0x8a, 0x7b, 0x8b, 0x6c, 0x14, 0x54, 0xf6, 0x16, 0xc5, 0xca, 0x2a, + 0xac, 0xff, 0xd6, 0xd8, 0x51, 0x6f, 0x51, 0x14, 0x33, 0x2f, 0x37, 0xc0, 0x8b, 0x8d, 0x54, 0x77, + 0xf1, 0xbf, 0xc0, 0xc9, 0x06, 0xce, 0x9b, 0x0d, 0xf3, 0x68, 0xaa, 0xdd, 0xb8, 0x20, 0xa6, 0xb4, + 0xa2, 0x8b, 0x64, 0xe0, 0xd6, 0x92, 0x8a, 0x9e, 0x55, 0x4c, 0x1f, 0x87, 0xdf, 0x36, 0xe3, 0x28, + 0xb5, 0xfa, 0x3f, 0x30, 0x02, 0xeb, 0x71, 0xf8, 0xd9, 0xc4, 0xc9, 0x78, 0x6f, 0xc2, 0xb8, 0x37, + 0xa2, 0x5f, 0x26, 0x36, 0xd2, 0x97, 0xca, 0x50, 0x7c, 0xcd, 0x2d, 0x77, 0xe4, 0x19, 0xf5, 0x37, + 0x4b, 0x92, 0x1b, 0xd4, 0xf3, 0x46, 0x5d, 0xea, 0x8a, 0x0f, 0xa4, 0xc2, 0x29, 0x1e, 0x81, 0xf7, + 0x67, 0x3a, 0x8c, 0xfc, 0x05, 0xbd, 0xf6, 0xe5, 0xf4, 0x45, 0x3a, 0x45, 0x7c, 0xe2, 0xa1, 0x22, + 0x3e, 0x2c, 0x13, 0x2f, 0x35, 0x4c, 0xb8, 0x4a, 0x78, 0x19, 0x7d, 0x37, 0xd5, 0x24, 0x22, 0x51, + 0x3a, 0x6e, 0x9e, 0x65, 0x88, 0x22, 0xee, 0x79, 0x23, 0xb0, 0x36, 0xe0, 0xe3, 0xa9, 0x0f, 0x89, + 0xbb, 0x4d, 0xdd, 0xed, 0xf1, 0x67, 0xfa, 0x0a, 0xea, 0xf2, 0xdf, 0x99, 0x5e, 0x69, 0x98, 0x47, + 0x2f, 0x10, 0x87, 0x7c, 0x70, 0x1f, 0x93, 0xb3, 0xcc, 0xea, 0x63, 0x7a, 0x94, 0xa2, 0xea, 0x05, + 0xe9, 0x63, 0xf2, 0xe9, 0x87, 0x42, 0xd4, 0xca, 0xc2, 0x8e, 0x88, 0x0a, 0xbd, 0xe9, 0xed, 0x86, + 0x79, 0x48, 0x7a, 0xbf, 0x6e, 0x4f, 0x13, 0x34, 0x95, 0x9e, 0x95, 0x96, 0x45, 0xe1, 0x72, 0xfd, + 0x01, 0x8a, 0x9c, 0xb7, 0x8d, 0xc0, 0xea, 0x43, 0x7b, 0x17, 0x02, 0x50, 0x7f, 0x70, 0x12, 0xb9, + 0x3b, 0xea, 0x9e, 0xb3, 0x54, 0x75, 0xe0, 0x46, 0xee, 0x06, 0xcb, 0x0e, 0x02, 0x31, 0xf5, 0x4c, + 0x4f, 0x24, 0x08, 0xfd, 0x7e, 0xc3, 0x3c, 0x98, 0xb8, 0xac, 0x94, 0x60, 0x73, 0x71, 0x3a, 0x39, + 0x89, 0xa0, 0x5c, 0xaa, 0xa9, 0xad, 0x78, 0x7c, 0xcd, 0x08, 0xac, 0x21, 0xec, 0xef, 0x4a, 0x3c, + 0xd6, 0x63, 0xf2, 0x0e, 0xb0, 0x52, 0xc9, 0x64, 0xce, 0xdd, 0xe2, 0x93, 0xac, 0x6d, 0xf0, 0x7a, + 0xc3, 0x3c, 0x24, 0x03, 0x62, 0x67, 0x6e, 0x97, 0x0e, 0xcc, 0xe5, 0xfa, 0x03, 0x14, 0x5d, 0xaf, + 0x4b, 0xb7, 0xdb, 0x85, 0x98, 0xac, 0x47, 0xd6, 0xb9, 0x85, 0x9d, 0x93, 0x15, 0x7a, 0xd5, 0x1f, + 0x0d, 0xf3, 0xfa, 0xb0, 0x29, 0x7c, 0x48, 0xdf, 0x78, 0x4e, 0xd0, 0x95, 0xdb, 0x68, 0x96, 0x28, + 0x6a, 0xb6, 0xda, 0xb5, 0xf5, 0x15, 0x59, 0x24, 0xb0, 0xce, 0xc1, 0x3b, 0xe3, 0xad, 0x03, 0x72, + 0x28, 0x13, 0x9f, 0x56, 0x0b, 0x06, 0x9d, 0xf7, 0xdc, 0x3e, 0x1d, 0x4c, 0x7c, 0x01, 0x1d, 0x79, + 0xdd, 0xc4, 0x5e, 0xfb, 0x18, 0x38, 0xa2, 0x39, 0x88, 0x2f, 0x6e, 0xc7, 0x24, 0x80, 0x67, 0x1a, + 0xf2, 0x52, 0x44, 0x7c, 0x87, 0x81, 0x12, 0x96, 0x3f, 0x25, 0x49, 0x5c, 0x71, 0x48, 0x36, 0xd4, + 0x9f, 0x98, 0xa2, 0xd7, 0x7c, 0xd9, 0x08, 0xac, 0x2f, 0xc0, 0xcf, 0x17, 0xc0, 0x48, 0x68, 0x6a, + 0x8b, 0x11, 0x1b, 0x62, 0x5f, 0xee, 0xe3, 0xe4, 0x8d, 0xef, 0xd8, 0x29, 0xf8, 0xd6, 0x98, 0x2c, + 0xc6, 0xab, 0x1f, 0x2e, 0xbb, 0x5c, 0xb3, 0x56, 0x36, 0x2c, 0xc2, 0xce, 0xc8, 0xee, 0x10, 0x85, + 0xa4, 0x7d, 0x59, 0x4f, 0xd1, 0x09, 0xa7, 0xd8, 0x2e, 0xaa, 0x5c, 0xbf, 0x34, 0xcc, 0x6b, 0x56, + 0x49, 0x82, 0x81, 0xad, 0xfc, 0x2d, 0xd2, 0x84, 0x30, 0x91, 0x2e, 0x6e, 0xa8, 0x50, 0x6b, 0x72, + 0xf5, 0x61, 0x30, 0x42, 0x9e, 0x47, 0x2c, 0x8d, 0x7f, 0x00, 0xac, 0xd5, 0x35, 0x7e, 0xfa, 0x97, + 0xa7, 0xf7, 0x0c, 0x53, 0x9d, 0x02, 0x25, 0xf1, 0xcc, 0x55, 0x18, 0x9a, 0x2e, 0x26, 0xf3, 0x35, + 0x34, 0x95, 0x87, 0x7e, 0xdd, 0x08, 0xac, 0x9b, 0x60, 0x3b, 0x51, 0x45, 0xfa, 0x94, 0x38, 0x76, + 0x51, 0xd8, 0x26, 0x26, 0x11, 0x90, 0x1f, 0x86, 0xbb, 0x07, 0xf9, 0xac, 0xb1, 0x70, 0xef, 0xca, + 0xc6, 0x99, 0x01, 0xe5, 0xc3, 0x49, 0xb7, 0xd5, 0xf3, 0x46, 0x6d, 0x81, 0xc0, 0xf3, 0x07, 0xed, + 0xe8, 0xdf, 0x08, 0x06, 0xc4, 0x6d, 0x8f, 0xbb, 0x4b, 0x03, 0xaf, 0x9d, 0xfd, 0x57, 0x91, 0xee, + 0x95, 0xe2, 0xff, 0x04, 0x6e, 0xf9, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xcf, 0x1c, 0x47, 0xfa, + 0x45, 0x32, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/gen/pb-go/flyteidl/service/admin.pb.gw.go b/gen/pb-go/flyteidl/service/admin.pb.gw.go index 7bad2e9ae..efd456cad 100644 --- a/gen/pb-go/flyteidl/service/admin.pb.gw.go +++ b/gen/pb-go/flyteidl/service/admin.pb.gw.go @@ -13,11 +13,11 @@ import ( "io" "net/http" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/grpc-ecosystem/grpc-gateway/utilities" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc" "google.golang.org/grpc/codes" "google.golang.org/grpc/grpclog" diff --git a/gen/pb-java/flyteidl/admin/Common.java b/gen/pb-java/flyteidl/admin/Common.java index 27efb039b..6b03e3300 100644 --- a/gen/pb-java/flyteidl/admin/Common.java +++ b/gen/pb-java/flyteidl/admin/Common.java @@ -21366,8 +21366,8 @@ public flyteidl.admin.Common.RawOutputDataConfig getDefaultInstanceForType() { "g\022\036\n\026output_location_prefix\030\001 \001(\t*\\\n\020Nam" + "edEntityState\022\027\n\023NAMED_ENTITY_ACTIVE\020\000\022\031" + "\n\025NAMED_ENTITY_ARCHIVED\020\001\022\024\n\020SYSTEM_GENE" + - "RATED\020\002B3Z1github.com/lyft/flyteidl/gen/" + - "pb-go/flyteidl/adminb\006proto3" + "RATED\020\002B7Z5github.com/flyteorg/flyteidl/" + + "gen/pb-go/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/Event.java b/gen/pb-java/flyteidl/admin/Event.java index 0d1084c72..8335083f4 100644 --- a/gen/pb-java/flyteidl/admin/Event.java +++ b/gen/pb-java/flyteidl/admin/Event.java @@ -5123,8 +5123,8 @@ public flyteidl.admin.Event.TaskExecutionEventResponse getDefaultInstanceForType "se\"b\n\031TaskExecutionEventRequest\022\022\n\nreque" + "st_id\030\001 \001(\t\0221\n\005event\030\002 \001(\0132\".flyteidl.ev" + "ent.TaskExecutionEvent\"\034\n\032TaskExecutionE" + - "ventResponseB3Z1github.com/lyft/flyteidl" + - "/gen/pb-go/flyteidl/adminb\006proto3" + "ventResponseB7Z5github.com/flyteorg/flyt" + + "eidl/gen/pb-go/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/ExecutionOuterClass.java b/gen/pb-java/flyteidl/admin/ExecutionOuterClass.java index 9bb5234e2..7ab460da2 100644 --- a/gen/pb-java/flyteidl/admin/ExecutionOuterClass.java +++ b/gen/pb-java/flyteidl/admin/ExecutionOuterClass.java @@ -21188,9 +21188,9 @@ public flyteidl.admin.ExecutionOuterClass.WorkflowExecutionGetDataResponse getDe ".UrlBlob\022\'\n\006inputs\030\002 \001(\0132\027.flyteidl.admi" + "n.UrlBlob\022.\n\013full_inputs\030\003 \001(\0132\031.flyteid" + "l.core.LiteralMap\022/\n\014full_outputs\030\004 \001(\0132" + - "\031.flyteidl.core.LiteralMapB3Z1github.com" + - "/lyft/flyteidl/gen/pb-go/flyteidl/adminb" + - "\006proto3" + "\031.flyteidl.core.LiteralMapB7Z5github.com" + + "/flyteorg/flyteidl/gen/pb-go/flyteidl/ad" + + "minb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/LaunchPlanOuterClass.java b/gen/pb-java/flyteidl/admin/LaunchPlanOuterClass.java index 0d8167640..b0c6ec0c9 100644 --- a/gen/pb-java/flyteidl/admin/LaunchPlanOuterClass.java +++ b/gen/pb-java/flyteidl/admin/LaunchPlanOuterClass.java @@ -13535,8 +13535,9 @@ public flyteidl.admin.LaunchPlanOuterClass.ActiveLaunchPlanListRequest getDefaul "\030\001 \001(\t\022\016\n\006domain\030\002 \001(\t\022\r\n\005limit\030\003 \001(\r\022\r\n" + "\005token\030\004 \001(\t\022%\n\007sort_by\030\005 \001(\0132\024.flyteidl" + ".admin.Sort*+\n\017LaunchPlanState\022\014\n\010INACTI" + - "VE\020\000\022\n\n\006ACTIVE\020\001B3Z1github.com/lyft/flyt" + - "eidl/gen/pb-go/flyteidl/adminb\006proto3" + "VE\020\000\022\n\n\006ACTIVE\020\001B7Z5github.com/flyteorg/" + + "flyteidl/gen/pb-go/flyteidl/adminb\006proto" + + "3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java b/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java index d6bcb5aaf..c5b6578ad 100644 --- a/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java +++ b/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java @@ -10282,8 +10282,8 @@ public flyteidl.admin.MatchableResourceOuterClass.ListMatchableAttributesRespons "RESOURCE\020\001\022\023\n\017EXECUTION_QUEUE\020\002\022\033\n\027EXECU" + "TION_CLUSTER_LABEL\020\003\022$\n QUALITY_OF_SERVI" + "CE_SPECIFICATION\020\004\022\023\n\017PLUGIN_OVERRIDE\020\005B" + - "3Z1github.com/lyft/flyteidl/gen/pb-go/fl" + - "yteidl/adminb\006proto3" + "7Z5github.com/flyteorg/flyteidl/gen/pb-g" + + "o/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/NodeExecutionOuterClass.java b/gen/pb-java/flyteidl/admin/NodeExecutionOuterClass.java index bce0788d4..137b465d8 100644 --- a/gen/pb-java/flyteidl/admin/NodeExecutionOuterClass.java +++ b/gen/pb-java/flyteidl/admin/NodeExecutionOuterClass.java @@ -13109,8 +13109,8 @@ public flyteidl.admin.NodeExecutionOuterClass.NodeExecutionGetDataResponse getDe "\027.flyteidl.admin.UrlBlob\022.\n\013full_inputs\030" + "\003 \001(\0132\031.flyteidl.core.LiteralMap\022/\n\014full" + "_outputs\030\004 \001(\0132\031.flyteidl.core.LiteralMa" + - "pB3Z1github.com/lyft/flyteidl/gen/pb-go/" + - "flyteidl/adminb\006proto3" + "pB7Z5github.com/flyteorg/flyteidl/gen/pb" + + "-go/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/Notification.java b/gen/pb-java/flyteidl/admin/Notification.java index 97b698ff0..934af41b8 100644 --- a/gen/pb-java/flyteidl/admin/Notification.java +++ b/gen/pb-java/flyteidl/admin/Notification.java @@ -1297,9 +1297,9 @@ public flyteidl.admin.Notification.EmailMessage getDefaultInstanceForType() { "\n!flyteidl/admin/notification.proto\022\016fly" + "teidl.admin\"b\n\014EmailMessage\022\030\n\020recipient" + "s_email\030\001 \003(\t\022\024\n\014sender_email\030\002 \001(\t\022\024\n\014s" + - "ubject_line\030\003 \001(\t\022\014\n\004body\030\004 \001(\tB3Z1githu" + - "b.com/lyft/flyteidl/gen/pb-go/flyteidl/a" + - "dminb\006proto3" + "ubject_line\030\003 \001(\t\022\014\n\004body\030\004 \001(\tB7Z5githu" + + "b.com/flyteorg/flyteidl/gen/pb-go/flytei" + + "dl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/ProjectDomainAttributesOuterClass.java b/gen/pb-java/flyteidl/admin/ProjectDomainAttributesOuterClass.java index 329aae51e..908645be6 100644 --- a/gen/pb-java/flyteidl/admin/ProjectDomainAttributesOuterClass.java +++ b/gen/pb-java/flyteidl/admin/ProjectDomainAttributesOuterClass.java @@ -4791,8 +4791,8 @@ public flyteidl.admin.ProjectDomainAttributesOuterClass.ProjectDomainAttributesD "\022\017\n\007project\030\001 \001(\t\022\016\n\006domain\030\002 \001(\t\0228\n\rres" + "ource_type\030\003 \001(\0162!.flyteidl.admin.Matcha" + "bleResource\"\'\n%ProjectDomainAttributesDe" + - "leteResponseB3Z1github.com/lyft/flyteidl" + - "/gen/pb-go/flyteidl/adminb\006proto3" + "leteResponseB7Z5github.com/flyteorg/flyt" + + "eidl/gen/pb-go/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/ProjectOuterClass.java b/gen/pb-java/flyteidl/admin/ProjectOuterClass.java index b6870f0d0..cbfe02293 100644 --- a/gen/pb-java/flyteidl/admin/ProjectOuterClass.java +++ b/gen/pb-java/flyteidl/admin/ProjectOuterClass.java @@ -6082,9 +6082,9 @@ public flyteidl.admin.ProjectOuterClass.ProjectUpdateResponse getDefaultInstance " \001(\0132\024.flyteidl.admin.Sort\"B\n\026ProjectReg" + "isterRequest\022(\n\007project\030\001 \001(\0132\027.flyteidl" + ".admin.Project\"\031\n\027ProjectRegisterRespons" + - "e\"\027\n\025ProjectUpdateResponseB3Z1github.com" + - "/lyft/flyteidl/gen/pb-go/flyteidl/adminb" + - "\006proto3" + "e\"\027\n\025ProjectUpdateResponseB7Z5github.com" + + "/flyteorg/flyteidl/gen/pb-go/flyteidl/ad" + + "minb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/ScheduleOuterClass.java b/gen/pb-java/flyteidl/admin/ScheduleOuterClass.java index 805b1b471..1197cddf2 100644 --- a/gen/pb-java/flyteidl/admin/ScheduleOuterClass.java +++ b/gen/pb-java/flyteidl/admin/ScheduleOuterClass.java @@ -2824,8 +2824,8 @@ public flyteidl.admin.ScheduleOuterClass.Schedule getDefaultInstanceForType() { "2\034.flyteidl.admin.CronScheduleH\000\022\036\n\026kick" + "off_time_input_arg\030\003 \001(\tB\024\n\022ScheduleExpr" + "ession*.\n\rFixedRateUnit\022\n\n\006MINUTE\020\000\022\010\n\004H" + - "OUR\020\001\022\007\n\003DAY\020\002B3Z1github.com/lyft/flytei" + - "dl/gen/pb-go/flyteidl/adminb\006proto3" + "OUR\020\001\022\007\n\003DAY\020\002B7Z5github.com/flyteorg/fl" + + "yteidl/gen/pb-go/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/TaskExecutionOuterClass.java b/gen/pb-java/flyteidl/admin/TaskExecutionOuterClass.java index 354285161..3fd7407b8 100644 --- a/gen/pb-java/flyteidl/admin/TaskExecutionOuterClass.java +++ b/gen/pb-java/flyteidl/admin/TaskExecutionOuterClass.java @@ -9297,9 +9297,9 @@ public flyteidl.admin.TaskExecutionOuterClass.TaskExecutionGetDataResponse getDe "teidl.admin.UrlBlob\022(\n\007outputs\030\002 \001(\0132\027.f" + "lyteidl.admin.UrlBlob\022.\n\013full_inputs\030\003 \001" + "(\0132\031.flyteidl.core.LiteralMap\022/\n\014full_ou" + - "tputs\030\004 \001(\0132\031.flyteidl.core.LiteralMapB3" + - "Z1github.com/lyft/flyteidl/gen/pb-go/fly" + - "teidl/adminb\006proto3" + "tputs\030\004 \001(\0132\031.flyteidl.core.LiteralMapB7" + + "Z5github.com/flyteorg/flyteidl/gen/pb-go" + + "/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/TaskOuterClass.java b/gen/pb-java/flyteidl/admin/TaskOuterClass.java index 00cb436f8..7a4b8ff06 100644 --- a/gen/pb-java/flyteidl/admin/TaskOuterClass.java +++ b/gen/pb-java/flyteidl/admin/TaskOuterClass.java @@ -5037,8 +5037,9 @@ public flyteidl.admin.TaskOuterClass.TaskClosure getDefaultInstanceForType() { "teidl.core.TaskTemplate\"q\n\013TaskClosure\0222" + "\n\rcompiled_task\030\001 \001(\0132\033.flyteidl.core.Co" + "mpiledTask\022.\n\ncreated_at\030\002 \001(\0132\032.google." + - "protobuf.TimestampB3Z1github.com/lyft/fl" + - "yteidl/gen/pb-go/flyteidl/adminb\006proto3" + "protobuf.TimestampB7Z5github.com/flyteor" + + "g/flyteidl/gen/pb-go/flyteidl/adminb\006pro" + + "to3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/WorkflowAttributesOuterClass.java b/gen/pb-java/flyteidl/admin/WorkflowAttributesOuterClass.java index 0d6544885..be1af0e78 100644 --- a/gen/pb-java/flyteidl/admin/WorkflowAttributesOuterClass.java +++ b/gen/pb-java/flyteidl/admin/WorkflowAttributesOuterClass.java @@ -5310,8 +5310,9 @@ public flyteidl.admin.WorkflowAttributesOuterClass.WorkflowAttributesDeleteRespo "ect\030\001 \001(\t\022\016\n\006domain\030\002 \001(\t\022\020\n\010workflow\030\003 " + "\001(\t\0228\n\rresource_type\030\004 \001(\0162!.flyteidl.ad" + "min.MatchableResource\"\"\n WorkflowAttribu" + - "tesDeleteResponseB3Z1github.com/lyft/fly" + - "teidl/gen/pb-go/flyteidl/adminb\006proto3" + "tesDeleteResponseB7Z5github.com/flyteorg" + + "/flyteidl/gen/pb-go/flyteidl/adminb\006prot" + + "o3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/admin/WorkflowOuterClass.java b/gen/pb-java/flyteidl/admin/WorkflowOuterClass.java index d52dfb944..fe5758c98 100644 --- a/gen/pb-java/flyteidl/admin/WorkflowOuterClass.java +++ b/gen/pb-java/flyteidl/admin/WorkflowOuterClass.java @@ -5579,8 +5579,8 @@ public flyteidl.admin.WorkflowOuterClass.WorkflowClosure getDefaultInstanceForTy "WorkflowClosure\022A\n\021compiled_workflow\030\001 \001" + "(\0132&.flyteidl.core.CompiledWorkflowClosu" + "re\022.\n\ncreated_at\030\002 \001(\0132\032.google.protobuf" + - ".TimestampB3Z1github.com/lyft/flyteidl/g" + - "en/pb-go/flyteidl/adminb\006proto3" + ".TimestampB7Z5github.com/flyteorg/flytei" + + "dl/gen/pb-go/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/Catalog.java b/gen/pb-java/flyteidl/core/Catalog.java index 5f7201a8e..01796db8d 100644 --- a/gen/pb-java/flyteidl/core/Catalog.java +++ b/gen/pb-java/flyteidl/core/Catalog.java @@ -2262,8 +2262,8 @@ public flyteidl.core.Catalog.CatalogMetadata getDefaultInstanceForType() { "ogCacheStatus\022\022\n\016CACHE_DISABLED\020\000\022\016\n\nCAC" + "HE_MISS\020\001\022\r\n\tCACHE_HIT\020\002\022\023\n\017CACHE_POPULA" + "TED\020\003\022\030\n\024CACHE_LOOKUP_FAILURE\020\004\022\025\n\021CACHE" + - "_PUT_FAILURE\020\005B2Z0github.com/lyft/flytei" + - "dl/gen/pb-go/flyteidl/coreb\006proto3" + "_PUT_FAILURE\020\005B6Z4github.com/flyteorg/fl" + + "yteidl/gen/pb-go/flyteidl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/Compiler.java b/gen/pb-java/flyteidl/core/Compiler.java index 94d5d5990..6038b914e 100644 --- a/gen/pb-java/flyteidl/core/Compiler.java +++ b/gen/pb-java/flyteidl/core/Compiler.java @@ -5176,8 +5176,8 @@ public flyteidl.core.Compiler.CompiledWorkflowClosure getDefaultInstanceForType( "yteidl.core.CompiledWorkflow\0226\n\rsub_work" + "flows\030\002 \003(\0132\037.flyteidl.core.CompiledWork" + "flow\022*\n\005tasks\030\003 \003(\0132\033.flyteidl.core.Comp" + - "iledTaskB2Z0github.com/lyft/flyteidl/gen" + - "/pb-go/flyteidl/coreb\006proto3" + "iledTaskB6Z4github.com/flyteorg/flyteidl" + + "/gen/pb-go/flyteidl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/Condition.java b/gen/pb-java/flyteidl/core/Condition.java index fab054101..e81d1ec36 100644 --- a/gen/pb-java/flyteidl/core/Condition.java +++ b/gen/pb-java/flyteidl/core/Condition.java @@ -4023,8 +4023,8 @@ public flyteidl.core.Condition.ConjunctionExpression getDefaultInstanceForType() "l.core.BooleanExpression\022:\n\020right_expres" + "sion\030\003 \001(\0132 .flyteidl.core.BooleanExpres" + "sion\"\"\n\017LogicalOperator\022\007\n\003AND\020\000\022\006\n\002OR\020\001" + - "B2Z0github.com/lyft/flyteidl/gen/pb-go/f" + - "lyteidl/coreb\006proto3" + "B6Z4github.com/flyteorg/flyteidl/gen/pb-" + + "go/flyteidl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/DynamicJob.java b/gen/pb-java/flyteidl/core/DynamicJob.java index 4b7962408..724f41f3c 100644 --- a/gen/pb-java/flyteidl/core/DynamicJob.java +++ b/gen/pb-java/flyteidl/core/DynamicJob.java @@ -2508,9 +2508,9 @@ public flyteidl.core.DynamicJob.DynamicJobSpec getDefaultInstanceForType() { "ccesses\030\002 \001(\003\022\'\n\007outputs\030\003 \003(\0132\026.flyteid" + "l.core.Binding\022*\n\005tasks\030\004 \003(\0132\033.flyteidl" + ".core.TaskTemplate\0225\n\014subworkflows\030\005 \003(\013" + - "2\037.flyteidl.core.WorkflowTemplateB2Z0git" + - "hub.com/lyft/flyteidl/gen/pb-go/flyteidl" + - "/coreb\006proto3" + "2\037.flyteidl.core.WorkflowTemplateB6Z4git" + + "hub.com/flyteorg/flyteidl/gen/pb-go/flyt" + + "eidl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/Errors.java b/gen/pb-java/flyteidl/core/Errors.java index 077cb58e0..a6ea3a8d5 100644 --- a/gen/pb-java/flyteidl/core/Errors.java +++ b/gen/pb-java/flyteidl/core/Errors.java @@ -1847,8 +1847,9 @@ public flyteidl.core.Errors.ErrorDocument getDefaultInstanceForType() { "l.core.ExecutionError.ErrorKind\",\n\004Kind\022" + "\023\n\017NON_RECOVERABLE\020\000\022\017\n\013RECOVERABLE\020\001\"=\n" + "\rErrorDocument\022,\n\005error\030\001 \001(\0132\035.flyteidl" + - ".core.ContainerErrorB2Z0github.com/lyft/" + - "flyteidl/gen/pb-go/flyteidl/coreb\006proto3" + ".core.ContainerErrorB6Z4github.com/flyte" + + "org/flyteidl/gen/pb-go/flyteidl/coreb\006pr" + + "oto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/Execution.java b/gen/pb-java/flyteidl/core/Execution.java index 35c7a3c95..b1f412dae 100644 --- a/gen/pb-java/flyteidl/core/Execution.java +++ b/gen/pb-java/flyteidl/core/Execution.java @@ -5699,8 +5699,8 @@ public flyteidl.core.Execution.QualityOfService getDefaultInstanceForType() { "ce.TierH\000\0223\n\004spec\030\002 \001(\0132#.flyteidl.core." + "QualityOfServiceSpecH\000\"4\n\004Tier\022\r\n\tUNDEFI" + "NED\020\000\022\010\n\004HIGH\020\001\022\n\n\006MEDIUM\020\002\022\007\n\003LOW\020\003B\r\n\013" + - "designationB2Z0github.com/lyft/flyteidl/" + - "gen/pb-go/flyteidl/coreb\006proto3" + "designationB6Z4github.com/flyteorg/flyte" + + "idl/gen/pb-go/flyteidl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/IdentifierOuterClass.java b/gen/pb-java/flyteidl/core/IdentifierOuterClass.java index b5a534797..69cea9194 100644 --- a/gen/pb-java/flyteidl/core/IdentifierOuterClass.java +++ b/gen/pb-java/flyteidl/core/IdentifierOuterClass.java @@ -4019,8 +4019,8 @@ public flyteidl.core.IdentifierOuterClass.TaskExecutionIdentifier getDefaultInst "e.NodeExecutionIdentifier\022\025\n\rretry_attem" + "pt\030\003 \001(\r*U\n\014ResourceType\022\017\n\013UNSPECIFIED\020" + "\000\022\010\n\004TASK\020\001\022\014\n\010WORKFLOW\020\002\022\017\n\013LAUNCH_PLAN" + - "\020\003\022\013\n\007DATASET\020\004B2Z0github.com/lyft/flyte" + - "idl/gen/pb-go/flyteidl/coreb\006proto3" + "\020\003\022\013\n\007DATASET\020\004B6Z4github.com/flyteorg/f" + + "lyteidl/gen/pb-go/flyteidl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/Interface.java b/gen/pb-java/flyteidl/core/Interface.java index 386586380..6a267174b 100644 --- a/gen/pb-java/flyteidl/core/Interface.java +++ b/gen/pb-java/flyteidl/core/Interface.java @@ -4436,8 +4436,8 @@ public flyteidl.core.Interface.ParameterMap getDefaultInstanceForType() { "\0132+.flyteidl.core.ParameterMap.Parameter" + "sEntry\032K\n\017ParametersEntry\022\013\n\003key\030\001 \001(\t\022\'" + "\n\005value\030\002 \001(\0132\030.flyteidl.core.Parameter:" + - "\0028\001B2Z0github.com/lyft/flyteidl/gen/pb-g" + - "o/flyteidl/coreb\006proto3" + "\0028\001B6Z4github.com/flyteorg/flyteidl/gen/" + + "pb-go/flyteidl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/Literals.java b/gen/pb-java/flyteidl/core/Literals.java index 78b622533..7a32cdfcc 100644 --- a/gen/pb-java/flyteidl/core/Literals.java +++ b/gen/pb-java/flyteidl/core/Literals.java @@ -14722,8 +14722,8 @@ public flyteidl.core.Literals.RetryStrategy getDefaultInstanceForType() { "\t\022+\n\007binding\030\002 \001(\0132\032.flyteidl.core.Bindi" + "ngData\"*\n\014KeyValuePair\022\013\n\003key\030\001 \001(\t\022\r\n\005v" + "alue\030\002 \001(\t\" \n\rRetryStrategy\022\017\n\007retries\030\005" + - " \001(\rB2Z0github.com/lyft/flyteidl/gen/pb-" + - "go/flyteidl/coreb\006proto3" + " \001(\rB6Z4github.com/flyteorg/flyteidl/gen" + + "/pb-go/flyteidl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/Tasks.java b/gen/pb-java/flyteidl/core/Tasks.java index c43a4afe2..bf29c009b 100644 --- a/gen/pb-java/flyteidl/core/Tasks.java +++ b/gen/pb-java/flyteidl/core/Tasks.java @@ -13255,8 +13255,8 @@ public flyteidl.core.Tasks.DataLoadingConfig getDefaultInstanceForType() { "fig.LiteralMapFormat\022.\n\013io_strategy\030\005 \001(" + "\0132\031.flyteidl.core.IOStrategy\"1\n\020LiteralM" + "apFormat\022\010\n\004JSON\020\000\022\010\n\004YAML\020\001\022\t\n\005PROTO\020\002B" + - "2Z0github.com/lyft/flyteidl/gen/pb-go/fl" + - "yteidl/coreb\006proto3" + "6Z4github.com/flyteorg/flyteidl/gen/pb-g" + + "o/flyteidl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/Types.java b/gen/pb-java/flyteidl/core/Types.java index 63ed77fdb..e406390f7 100644 --- a/gen/pb-java/flyteidl/core/Types.java +++ b/gen/pb-java/flyteidl/core/Types.java @@ -6347,9 +6347,9 @@ public flyteidl.core.Types.Error getDefaultInstanceForType() { "\n\007message\030\002 \001(\t*\206\001\n\nSimpleType\022\010\n\004NONE\020\000" + "\022\013\n\007INTEGER\020\001\022\t\n\005FLOAT\020\002\022\n\n\006STRING\020\003\022\013\n\007" + "BOOLEAN\020\004\022\014\n\010DATETIME\020\005\022\014\n\010DURATION\020\006\022\n\n" + - "\006BINARY\020\007\022\t\n\005ERROR\020\010\022\n\n\006STRUCT\020\tB2Z0gith" + - "ub.com/lyft/flyteidl/gen/pb-go/flyteidl/" + - "coreb\006proto3" + "\006BINARY\020\007\022\t\n\005ERROR\020\010\022\n\n\006STRUCT\020\tB6Z4gith" + + "ub.com/flyteorg/flyteidl/gen/pb-go/flyte" + + "idl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/Workflow.java b/gen/pb-java/flyteidl/core/Workflow.java index dd36c6254..e3e56c151 100644 --- a/gen/pb-java/flyteidl/core/Workflow.java +++ b/gen/pb-java/flyteidl/core/Workflow.java @@ -14609,8 +14609,8 @@ public flyteidl.core.Workflow.WorkflowTemplate getDefaultInstanceForType() { "core.Binding\022)\n\014failure_node\030\006 \001(\0132\023.fly" + "teidl.core.Node\022B\n\021metadata_defaults\030\007 \001" + "(\0132\'.flyteidl.core.WorkflowMetadataDefau" + - "ltsB2Z0github.com/lyft/flyteidl/gen/pb-g" + - "o/flyteidl/coreb\006proto3" + "ltsB6Z4github.com/flyteorg/flyteidl/gen/" + + "pb-go/flyteidl/coreb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/core/WorkflowClosureOuterClass.java b/gen/pb-java/flyteidl/core/WorkflowClosureOuterClass.java index d1e0ffbff..688ec45fd 100644 --- a/gen/pb-java/flyteidl/core/WorkflowClosureOuterClass.java +++ b/gen/pb-java/flyteidl/core/WorkflowClosureOuterClass.java @@ -1219,9 +1219,9 @@ public flyteidl.core.WorkflowClosureOuterClass.WorkflowClosure getDefaultInstanc "oto\032\031flyteidl/core/tasks.proto\"p\n\017Workfl" + "owClosure\0221\n\010workflow\030\001 \001(\0132\037.flyteidl.c" + "ore.WorkflowTemplate\022*\n\005tasks\030\002 \003(\0132\033.fl" + - "yteidl.core.TaskTemplateB2Z0github.com/l" + - "yft/flyteidl/gen/pb-go/flyteidl/coreb\006pr" + - "oto3" + "yteidl.core.TaskTemplateB6Z4github.com/f" + + "lyteorg/flyteidl/gen/pb-go/flyteidl/core" + + "b\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/event/Event.java b/gen/pb-java/flyteidl/event/Event.java index b89870213..a27c7cf34 100644 --- a/gen/pb-java/flyteidl/event/Event.java +++ b/gen/pb-java/flyteidl/event/Event.java @@ -11981,9 +11981,9 @@ public flyteidl.event.Event.TaskExecutionMetadata getDefaultInstanceForType() { "\"\225\001\n\025TaskExecutionMetadata\022K\n\016instance_c" + "lass\030\020 \001(\01623.flyteidl.event.TaskExecutio" + "nMetadata.InstanceClass\"/\n\rInstanceClass" + - "\022\013\n\007DEFAULT\020\000\022\021\n\rINTERRUPTIBLE\020\001B3Z1gith" + - "ub.com/lyft/flyteidl/gen/pb-go/flyteidl/" + - "eventb\006proto3" + "\022\013\n\007DEFAULT\020\000\022\021\n\rINTERRUPTIBLE\020\001B7Z5gith" + + "ub.com/flyteorg/flyteidl/gen/pb-go/flyte" + + "idl/eventb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java b/gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java index f94f3683e..be40c26ae 100644 --- a/gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java +++ b/gen/pb-java/flyteidl/plugins/ArrayJobOuterClass.java @@ -920,8 +920,8 @@ public flyteidl.plugins.ArrayJobOuterClass.ArrayJob getDefaultInstanceForType() "eidl.plugins\"w\n\010ArrayJob\022\023\n\013parallelism\030" + "\001 \001(\003\022\014\n\004size\030\002 \001(\003\022\027\n\rmin_successes\030\003 \001" + "(\003H\000\022\033\n\021min_success_ratio\030\004 \001(\002H\000B\022\n\020suc" + - "cess_criteriaB5Z3github.com/lyft/flyteid" + - "l/gen/pb-go/flyteidl/pluginsb\006proto3" + "cess_criteriaB9Z7github.com/flyteorg/fly" + + "teidl/gen/pb-go/flyteidl/pluginsb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/plugins/Presto.java b/gen/pb-java/flyteidl/plugins/Presto.java index 4ebb9a8be..4d32d5e4e 100644 --- a/gen/pb-java/flyteidl/plugins/Presto.java +++ b/gen/pb-java/flyteidl/plugins/Presto.java @@ -1002,8 +1002,8 @@ public flyteidl.plugins.Presto.PrestoQuery getDefaultInstanceForType() { "l.plugins\032\031flyteidl/core/tasks.proto\"X\n\013" + "PrestoQuery\022\025\n\rrouting_group\030\001 \001(\t\022\017\n\007ca" + "talog\030\002 \001(\t\022\016\n\006schema\030\003 \001(\t\022\021\n\tstatement" + - "\030\004 \001(\tB5Z3github.com/lyft/flyteidl/gen/p" + - "b-go/flyteidl/pluginsb\006proto3" + "\030\004 \001(\tB9Z7github.com/flyteorg/flyteidl/g" + + "en/pb-go/flyteidl/pluginsb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/plugins/Pytorch.java b/gen/pb-java/flyteidl/plugins/Pytorch.java index 020941bc0..a7709263f 100644 --- a/gen/pb-java/flyteidl/plugins/Pytorch.java +++ b/gen/pb-java/flyteidl/plugins/Pytorch.java @@ -532,9 +532,9 @@ public flyteidl.plugins.Pytorch.DistributedPyTorchTrainingTask getDefaultInstanc java.lang.String[] descriptorData = { "\n\036flyteidl/plugins/pytorch.proto\022\020flytei" + "dl.plugins\"1\n\036DistributedPyTorchTraining" + - "Task\022\017\n\007workers\030\001 \001(\005B5Z3github.com/lyft" + - "/flyteidl/gen/pb-go/flyteidl/pluginsb\006pr" + - "oto3" + "Task\022\017\n\007workers\030\001 \001(\005B9Z7github.com/flyt" + + "eorg/flyteidl/gen/pb-go/flyteidl/plugins" + + "b\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/plugins/Qubole.java b/gen/pb-java/flyteidl/plugins/Qubole.java index 28cadb493..80f82a100 100644 --- a/gen/pb-java/flyteidl/plugins/Qubole.java +++ b/gen/pb-java/flyteidl/plugins/Qubole.java @@ -2658,9 +2658,9 @@ public flyteidl.plugins.Qubole.QuboleHiveJob getDefaultInstanceForType() { "ter_label\030\001 \001(\t\022C\n\020query_collection\030\002 \001(" + "\0132%.flyteidl.plugins.HiveQueryCollection" + "B\002\030\001\022\014\n\004tags\030\003 \003(\t\022*\n\005query\030\004 \001(\0132\033.flyt" + - "eidl.plugins.HiveQueryB5Z3github.com/lyf" + - "t/flyteidl/gen/pb-go/flyteidl/pluginsb\006p" + - "roto3" + "eidl.plugins.HiveQueryB9Z7github.com/fly" + + "teorg/flyteidl/gen/pb-go/flyteidl/plugin" + + "sb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/plugins/Sidecar.java b/gen/pb-java/flyteidl/plugins/Sidecar.java index ae8690617..f59c08e1c 100644 --- a/gen/pb-java/flyteidl/plugins/Sidecar.java +++ b/gen/pb-java/flyteidl/plugins/Sidecar.java @@ -787,9 +787,9 @@ public flyteidl.plugins.Sidecar.SidecarJob getDefaultInstanceForType() { "dl.plugins\032\"k8s.io/api/core/v1/generated" + ".proto\"[\n\nSidecarJob\022-\n\010pod_spec\030\001 \001(\0132\033" + ".k8s.io.api.core.v1.PodSpec\022\036\n\026primary_c" + - "ontainer_name\030\002 \001(\tB5Z3github.com/lyft/f" + - "lyteidl/gen/pb-go/flyteidl/pluginsb\006prot" + - "o3" + "ontainer_name\030\002 \001(\tB9Z7github.com/flyteo" + + "rg/flyteidl/gen/pb-go/flyteidl/pluginsb\006" + + "proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/plugins/Spark.java b/gen/pb-java/flyteidl/plugins/Spark.java index 692a657e0..20796e690 100644 --- a/gen/pb-java/flyteidl/plugins/Spark.java +++ b/gen/pb-java/flyteidl/plugins/Spark.java @@ -2134,8 +2134,8 @@ public flyteidl.plugins.Spark.SparkJob getDefaultInstanceForType() { "ConfEntry\022\024\n\014executorPath\030\006 \001(\t\0320\n\016Spark" + "ConfEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028" + "\001\0321\n\017HadoopConfEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005val" + - "ue\030\002 \001(\t:\0028\001B5Z3github.com/lyft/flyteidl" + - "/gen/pb-go/flyteidl/pluginsb\006proto3" + "ue\030\002 \001(\t:\0028\001B9Z7github.com/flyteorg/flyt" + + "eidl/gen/pb-go/flyteidl/pluginsb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/plugins/Tensorflow.java b/gen/pb-java/flyteidl/plugins/Tensorflow.java index e8d80be10..b1a1862ae 100644 --- a/gen/pb-java/flyteidl/plugins/Tensorflow.java +++ b/gen/pb-java/flyteidl/plugins/Tensorflow.java @@ -677,9 +677,9 @@ public flyteidl.plugins.Tensorflow.DistributedTensorflowTrainingTask getDefaultI "\n!flyteidl/plugins/tensorflow.proto\022\020fly" + "teidl.plugins\"a\n!DistributedTensorflowTr" + "ainingTask\022\017\n\007workers\030\001 \001(\005\022\023\n\013ps_replic" + - "as\030\002 \001(\005\022\026\n\016chief_replicas\030\003 \001(\005B5Z3gith" + - "ub.com/lyft/flyteidl/gen/pb-go/flyteidl/" + - "pluginsb\006proto3" + "as\030\002 \001(\005\022\026\n\016chief_replicas\030\003 \001(\005B9Z7gith" + + "ub.com/flyteorg/flyteidl/gen/pb-go/flyte" + + "idl/pluginsb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/plugins/WaitableOuterClass.java b/gen/pb-java/flyteidl/plugins/WaitableOuterClass.java index 775bfea76..706ee6660 100644 --- a/gen/pb-java/flyteidl/plugins/WaitableOuterClass.java +++ b/gen/pb-java/flyteidl/plugins/WaitableOuterClass.java @@ -879,9 +879,9 @@ public flyteidl.plugins.WaitableOuterClass.Waitable getDefaultInstanceForType() "aitable\022>\n\nwf_exec_id\030\001 \001(\0132*.flyteidl.c" + "ore.WorkflowExecutionIdentifier\0225\n\005phase" + "\030\002 \001(\0162&.flyteidl.core.WorkflowExecution" + - ".Phase\022\023\n\013workflow_id\030\003 \001(\tB5Z3github.co" + - "m/lyft/flyteidl/gen/pb-go/flyteidl/plugi" + - "nsb\006proto3" + ".Phase\022\023\n\013workflow_id\030\003 \001(\tB9Z7github.co" + + "m/flyteorg/flyteidl/gen/pb-go/flyteidl/p" + + "luginsb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/plugins/sagemaker/HyperparameterTuningJobOuterClass.java b/gen/pb-java/flyteidl/plugins/sagemaker/HyperparameterTuningJobOuterClass.java index 96c23333a..4c30a8614 100644 --- a/gen/pb-java/flyteidl/plugins/sagemaker/HyperparameterTuningJobOuterClass.java +++ b/gen/pb-java/flyteidl/plugins/sagemaker/HyperparameterTuningJobOuterClass.java @@ -4435,8 +4435,8 @@ public flyteidl.plugins.sagemaker.HyperparameterTuningJobOuterClass.Hyperparamet "arameterTuningObjective\022h\n training_job_" + "early_stopping_type\030\004 \001(\0162>.flyteidl.plu" + "gins.sagemaker.TrainingJobEarlyStoppingT" + - "ype.ValueB5Z3github.com/lyft/flyteidl/ge" + - "n/pb-go/flyteidl/pluginsb\006proto3" + "ype.ValueB9Z7github.com/flyteorg/flyteid" + + "l/gen/pb-go/flyteidl/pluginsb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/plugins/sagemaker/ParameterRangesOuterClass.java b/gen/pb-java/flyteidl/plugins/sagemaker/ParameterRangesOuterClass.java index d0ba674bd..5f3d8c59f 100644 --- a/gen/pb-java/flyteidl/plugins/sagemaker/ParameterRangesOuterClass.java +++ b/gen/pb-java/flyteidl/plugins/sagemaker/ParameterRangesOuterClass.java @@ -4404,9 +4404,9 @@ public flyteidl.plugins.sagemaker.ParameterRangesOuterClass.ParameterRanges getD ".ParameterRanges.ParameterRangeMapEntry\032" + "i\n\026ParameterRangeMapEntry\022\013\n\003key\030\001 \001(\t\022>" + "\n\005value\030\002 \001(\0132/.flyteidl.plugins.sagemak" + - "er.ParameterRangeOneOf:\0028\001B5Z3github.com" + - "/lyft/flyteidl/gen/pb-go/flyteidl/plugin" + - "sb\006proto3" + "er.ParameterRangeOneOf:\0028\001B9Z7github.com" + + "/flyteorg/flyteidl/gen/pb-go/flyteidl/pl" + + "uginsb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/plugins/sagemaker/TrainingJobOuterClass.java b/gen/pb-java/flyteidl/plugins/sagemaker/TrainingJobOuterClass.java index ce4b0a8a4..8c335d5ca 100644 --- a/gen/pb-java/flyteidl/plugins/sagemaker/TrainingJobOuterClass.java +++ b/gen/pb-java/flyteidl/plugins/sagemaker/TrainingJobOuterClass.java @@ -6250,8 +6250,8 @@ public flyteidl.plugins.sagemaker.TrainingJobOuterClass.TrainingJob getDefaultIn "ker.AlgorithmSpecification\022[\n\034training_j" + "ob_resource_config\030\002 \001(\01325.flyteidl.plug" + "ins.sagemaker.TrainingJobResourceConfigB" + - "5Z3github.com/lyft/flyteidl/gen/pb-go/fl" + - "yteidl/pluginsb\006proto3" + "9Z7github.com/flyteorg/flyteidl/gen/pb-g" + + "o/flyteidl/pluginsb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-java/flyteidl/service/Admin.java b/gen/pb-java/flyteidl/service/Admin.java index d8137cc5a..ec9e42d51 100644 --- a/gen/pb-java/flyteidl/service/Admin.java +++ b/gen/pb-java/flyteidl/service/Admin.java @@ -343,8 +343,8 @@ public static void registerAllExtensions( "1/named_entities/{resource_type}/{id.pro" + "ject}/{id.domain}/{id.name}:\001*\222A1\032/Updat" + "e the fields associated with a NamedEnti" + - "tyB5Z3github.com/lyft/flyteidl/gen/pb-go" + - "/flyteidl/serviceb\006proto3" + "tyB9Z7github.com/flyteorg/flyteidl/gen/p" + + "b-go/flyteidl/serviceb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/gen/pb-protodoc/flyteidl/admin/index.rst b/gen/pb-protodoc/flyteidl/admin/index.rst index c6aa22fa2..078d23bdc 100644 --- a/gen/pb-protodoc/flyteidl/admin/index.rst +++ b/gen/pb-protodoc/flyteidl/admin/index.rst @@ -3,7 +3,7 @@ Flyte Admin Service entities These are the control plane entities that can be used to communication with the Flyte Admin service over gRPC or REST. The endpoint specification is defined in the -`admin service spec `__. +`admin service spec `__. .. toctree:: :maxdepth: 1 diff --git a/gen/pb_python/flyteidl/admin/common_pb2.py b/gen/pb_python/flyteidl/admin/common_pb2.py index ea2c599cb..6d47fdedb 100644 --- a/gen/pb_python/flyteidl/admin/common_pb2.py +++ b/gen/pb_python/flyteidl/admin/common_pb2.py @@ -22,8 +22,8 @@ name='flyteidl/admin/common.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n\x1b\x66lyteidl/admin/common.proto\x12\x0e\x66lyteidl.admin\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\"F\n\x15NamedEntityIdentifier\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\"[\n\x13NamedEntityMetadata\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t\x12/\n\x05state\x18\x02 \x01(\x0e\x32 .flyteidl.admin.NamedEntityState\"\xab\x01\n\x0bNamedEntity\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x31\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\x35\n\x08metadata\x18\x03 \x01(\x0b\x32#.flyteidl.admin.NamedEntityMetadata\"r\n\x04Sort\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\tdirection\x18\x02 \x01(\x0e\x32\x1e.flyteidl.admin.Sort.Direction\"*\n\tDirection\x12\x0e\n\nDESCENDING\x10\x00\x12\r\n\tASCENDING\x10\x01\"\x99\x01\n NamedEntityIdentifierListRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\r\n\x05limit\x18\x03 \x01(\r\x12\r\n\x05token\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\x12\x0f\n\x07\x66ilters\x18\x06 \x01(\t\"\xc3\x01\n\x16NamedEntityListRequest\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x0f\n\x07project\x18\x02 \x01(\t\x12\x0e\n\x06\x64omain\x18\x03 \x01(\t\x12\r\n\x05limit\x18\x04 \x01(\r\x12\r\n\x05token\x18\x05 \x01(\t\x12%\n\x07sort_by\x18\x06 \x01(\x0b\x32\x14.flyteidl.admin.Sort\x12\x0f\n\x07\x66ilters\x18\x07 \x01(\t\"c\n\x19NamedEntityIdentifierList\x12\x37\n\x08\x65ntities\x18\x01 \x03(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\r\n\x05token\x18\x02 \x01(\t\"O\n\x0fNamedEntityList\x12-\n\x08\x65ntities\x18\x01 \x03(\x0b\x32\x1b.flyteidl.admin.NamedEntity\x12\r\n\x05token\x18\x02 \x01(\t\"~\n\x15NamedEntityGetRequest\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x31\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\"\xb8\x01\n\x18NamedEntityUpdateRequest\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x31\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\x35\n\x08metadata\x18\x03 \x01(\x0b\x32#.flyteidl.admin.NamedEntityMetadata\"\x1b\n\x19NamedEntityUpdateResponse\"9\n\x10ObjectGetRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\"\x9e\x01\n\x13ResourceListRequest\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\r\n\x05limit\x18\x02 \x01(\r\x12\r\n\x05token\x18\x03 \x01(\t\x12\x0f\n\x07\x66ilters\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"-\n\x11\x45mailNotification\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\"1\n\x15PagerDutyNotification\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\"-\n\x11SlackNotification\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\"\xf3\x01\n\x0cNotification\x12\x36\n\x06phases\x18\x01 \x03(\x0e\x32&.flyteidl.core.WorkflowExecution.Phase\x12\x32\n\x05\x65mail\x18\x02 \x01(\x0b\x32!.flyteidl.admin.EmailNotificationH\x00\x12;\n\npager_duty\x18\x03 \x01(\x0b\x32%.flyteidl.admin.PagerDutyNotificationH\x00\x12\x32\n\x05slack\x18\x04 \x01(\x0b\x32!.flyteidl.admin.SlackNotificationH\x00\x42\x06\n\x04type\"%\n\x07UrlBlob\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\r\n\x05\x62ytes\x18\x02 \x01(\x03\"k\n\x06Labels\x12\x32\n\x06values\x18\x01 \x03(\x0b\x32\".flyteidl.admin.Labels.ValuesEntry\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"u\n\x0b\x41nnotations\x12\x37\n\x06values\x18\x01 \x03(\x0b\x32\'.flyteidl.admin.Annotations.ValuesEntry\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"}\n\x0fSecurityContext\x12;\n\x06values\x18\x01 \x03(\x0b\x32+.flyteidl.admin.SecurityContext.ValuesEntry\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"X\n\x08\x41uthRole\x12\x1c\n\x12\x61ssumable_iam_role\x18\x01 \x01(\tH\x00\x12$\n\x1akubernetes_service_account\x18\x02 \x01(\tH\x00\x42\x08\n\x06method\"5\n\x13RawOutputDataConfig\x12\x1e\n\x16output_location_prefix\x18\x01 \x01(\t*\\\n\x10NamedEntityState\x12\x17\n\x13NAMED_ENTITY_ACTIVE\x10\x00\x12\x19\n\x15NAMED_ENTITY_ARCHIVED\x10\x01\x12\x14\n\x10SYSTEM_GENERATED\x10\x02\x42\x33Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n\x1b\x66lyteidl/admin/common.proto\x12\x0e\x66lyteidl.admin\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\"F\n\x15NamedEntityIdentifier\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\"[\n\x13NamedEntityMetadata\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t\x12/\n\x05state\x18\x02 \x01(\x0e\x32 .flyteidl.admin.NamedEntityState\"\xab\x01\n\x0bNamedEntity\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x31\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\x35\n\x08metadata\x18\x03 \x01(\x0b\x32#.flyteidl.admin.NamedEntityMetadata\"r\n\x04Sort\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\tdirection\x18\x02 \x01(\x0e\x32\x1e.flyteidl.admin.Sort.Direction\"*\n\tDirection\x12\x0e\n\nDESCENDING\x10\x00\x12\r\n\tASCENDING\x10\x01\"\x99\x01\n NamedEntityIdentifierListRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\r\n\x05limit\x18\x03 \x01(\r\x12\r\n\x05token\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\x12\x0f\n\x07\x66ilters\x18\x06 \x01(\t\"\xc3\x01\n\x16NamedEntityListRequest\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x0f\n\x07project\x18\x02 \x01(\t\x12\x0e\n\x06\x64omain\x18\x03 \x01(\t\x12\r\n\x05limit\x18\x04 \x01(\r\x12\r\n\x05token\x18\x05 \x01(\t\x12%\n\x07sort_by\x18\x06 \x01(\x0b\x32\x14.flyteidl.admin.Sort\x12\x0f\n\x07\x66ilters\x18\x07 \x01(\t\"c\n\x19NamedEntityIdentifierList\x12\x37\n\x08\x65ntities\x18\x01 \x03(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\r\n\x05token\x18\x02 \x01(\t\"O\n\x0fNamedEntityList\x12-\n\x08\x65ntities\x18\x01 \x03(\x0b\x32\x1b.flyteidl.admin.NamedEntity\x12\r\n\x05token\x18\x02 \x01(\t\"~\n\x15NamedEntityGetRequest\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x31\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\"\xb8\x01\n\x18NamedEntityUpdateRequest\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x31\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\x35\n\x08metadata\x18\x03 \x01(\x0b\x32#.flyteidl.admin.NamedEntityMetadata\"\x1b\n\x19NamedEntityUpdateResponse\"9\n\x10ObjectGetRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\"\x9e\x01\n\x13ResourceListRequest\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\x12\r\n\x05limit\x18\x02 \x01(\r\x12\r\n\x05token\x18\x03 \x01(\t\x12\x0f\n\x07\x66ilters\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"-\n\x11\x45mailNotification\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\"1\n\x15PagerDutyNotification\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\"-\n\x11SlackNotification\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\"\xf3\x01\n\x0cNotification\x12\x36\n\x06phases\x18\x01 \x03(\x0e\x32&.flyteidl.core.WorkflowExecution.Phase\x12\x32\n\x05\x65mail\x18\x02 \x01(\x0b\x32!.flyteidl.admin.EmailNotificationH\x00\x12;\n\npager_duty\x18\x03 \x01(\x0b\x32%.flyteidl.admin.PagerDutyNotificationH\x00\x12\x32\n\x05slack\x18\x04 \x01(\x0b\x32!.flyteidl.admin.SlackNotificationH\x00\x42\x06\n\x04type\"%\n\x07UrlBlob\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\r\n\x05\x62ytes\x18\x02 \x01(\x03\"k\n\x06Labels\x12\x32\n\x06values\x18\x01 \x03(\x0b\x32\".flyteidl.admin.Labels.ValuesEntry\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"u\n\x0b\x41nnotations\x12\x37\n\x06values\x18\x01 \x03(\x0b\x32\'.flyteidl.admin.Annotations.ValuesEntry\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"}\n\x0fSecurityContext\x12;\n\x06values\x18\x01 \x03(\x0b\x32+.flyteidl.admin.SecurityContext.ValuesEntry\x1a-\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"X\n\x08\x41uthRole\x12\x1c\n\x12\x61ssumable_iam_role\x18\x01 \x01(\tH\x00\x12$\n\x1akubernetes_service_account\x18\x02 \x01(\tH\x00\x42\x08\n\x06method\"5\n\x13RawOutputDataConfig\x12\x1e\n\x16output_location_prefix\x18\x01 \x01(\t*\\\n\x10NamedEntityState\x12\x17\n\x13NAMED_ENTITY_ACTIVE\x10\x00\x12\x19\n\x15NAMED_ENTITY_ARCHIVED\x10\x01\x12\x14\n\x10SYSTEM_GENERATED\x10\x02\x42\x37Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/admin/event_pb2.py b/gen/pb_python/flyteidl/admin/event_pb2.py index 40f3522c5..24803018d 100644 --- a/gen/pb_python/flyteidl/admin/event_pb2.py +++ b/gen/pb_python/flyteidl/admin/event_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/admin/event.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n\x1a\x66lyteidl/admin/event.proto\x12\x0e\x66lyteidl.admin\x1a\x1a\x66lyteidl/event/event.proto\"9\n EventErrorAlreadyInTerminalState\x12\x15\n\rcurrent_phase\x18\x01 \x01(\t\"u\n\x12\x45ventFailureReason\x12U\n\x19\x61lready_in_terminal_state\x18\x01 \x01(\x0b\x32\x30.flyteidl.admin.EventErrorAlreadyInTerminalStateH\x00\x42\x08\n\x06reason\"j\n\x1dWorkflowExecutionEventRequest\x12\x12\n\nrequest_id\x18\x01 \x01(\t\x12\x35\n\x05\x65vent\x18\x02 \x01(\x0b\x32&.flyteidl.event.WorkflowExecutionEvent\" \n\x1eWorkflowExecutionEventResponse\"b\n\x19NodeExecutionEventRequest\x12\x12\n\nrequest_id\x18\x01 \x01(\t\x12\x31\n\x05\x65vent\x18\x02 \x01(\x0b\x32\".flyteidl.event.NodeExecutionEvent\"\x1c\n\x1aNodeExecutionEventResponse\"b\n\x19TaskExecutionEventRequest\x12\x12\n\nrequest_id\x18\x01 \x01(\t\x12\x31\n\x05\x65vent\x18\x02 \x01(\x0b\x32\".flyteidl.event.TaskExecutionEvent\"\x1c\n\x1aTaskExecutionEventResponseB3Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n\x1a\x66lyteidl/admin/event.proto\x12\x0e\x66lyteidl.admin\x1a\x1a\x66lyteidl/event/event.proto\"9\n EventErrorAlreadyInTerminalState\x12\x15\n\rcurrent_phase\x18\x01 \x01(\t\"u\n\x12\x45ventFailureReason\x12U\n\x19\x61lready_in_terminal_state\x18\x01 \x01(\x0b\x32\x30.flyteidl.admin.EventErrorAlreadyInTerminalStateH\x00\x42\x08\n\x06reason\"j\n\x1dWorkflowExecutionEventRequest\x12\x12\n\nrequest_id\x18\x01 \x01(\t\x12\x35\n\x05\x65vent\x18\x02 \x01(\x0b\x32&.flyteidl.event.WorkflowExecutionEvent\" \n\x1eWorkflowExecutionEventResponse\"b\n\x19NodeExecutionEventRequest\x12\x12\n\nrequest_id\x18\x01 \x01(\t\x12\x31\n\x05\x65vent\x18\x02 \x01(\x0b\x32\".flyteidl.event.NodeExecutionEvent\"\x1c\n\x1aNodeExecutionEventResponse\"b\n\x19TaskExecutionEventRequest\x12\x12\n\nrequest_id\x18\x01 \x01(\t\x12\x31\n\x05\x65vent\x18\x02 \x01(\x0b\x32\".flyteidl.event.TaskExecutionEvent\"\x1c\n\x1aTaskExecutionEventResponseB7Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_event_dot_event__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/admin/execution_pb2.py b/gen/pb_python/flyteidl/admin/execution_pb2.py index 0dff484eb..2f99a6dfa 100644 --- a/gen/pb_python/flyteidl/admin/execution_pb2.py +++ b/gen/pb_python/flyteidl/admin/execution_pb2.py @@ -25,8 +25,8 @@ name='flyteidl/admin/execution.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n\x1e\x66lyteidl/admin/execution.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x9f\x01\n\x16\x45xecutionCreateRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12+\n\x04spec\x18\x04 \x01(\x0b\x32\x1d.flyteidl.admin.ExecutionSpec\x12)\n\x06inputs\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.LiteralMap\"`\n\x18\x45xecutionRelaunchRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12\x0c\n\x04name\x18\x03 \x01(\t\"Q\n\x17\x45xecutionCreateResponse\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\"U\n\x1bWorkflowExecutionGetRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\"\xa3\x01\n\tExecution\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12+\n\x04spec\x18\x02 \x01(\x0b\x32\x1d.flyteidl.admin.ExecutionSpec\x12\x31\n\x07\x63losure\x18\x03 \x01(\x0b\x32 .flyteidl.admin.ExecutionClosure\"M\n\rExecutionList\x12-\n\nexecutions\x18\x01 \x03(\x0b\x32\x19.flyteidl.admin.Execution\x12\r\n\x05token\x18\x02 \x01(\t\"T\n\x0eLiteralMapBlob\x12+\n\x06values\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00\x12\r\n\x03uri\x18\x02 \x01(\tH\x00\x42\x06\n\x04\x64\x61ta\"1\n\rAbortMetadata\x12\r\n\x05\x63\x61use\x18\x01 \x01(\t\x12\x11\n\tprincipal\x18\x02 \x01(\t\"\xeb\x04\n\x10\x45xecutionClosure\x12\x31\n\x07outputs\x18\x01 \x01(\x0b\x32\x1e.flyteidl.admin.LiteralMapBlobH\x00\x12.\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00\x12\x19\n\x0b\x61\x62ort_cause\x18\n \x01(\tB\x02\x18\x01H\x00\x12\x37\n\x0e\x61\x62ort_metadata\x18\x0c \x01(\x0b\x32\x1d.flyteidl.admin.AbortMetadataH\x00\x12\x36\n\x0f\x63omputed_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01\x12\x35\n\x05phase\x18\x04 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.Phase\x12.\n\nstarted_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12+\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.Duration\x12.\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\rnotifications\x18\t \x03(\x0b\x32\x1c.flyteidl.admin.Notification\x12.\n\x0bworkflow_id\x18\x0b \x01(\x0b\x32\x19.flyteidl.core.IdentifierB\x0f\n\routput_result\"+\n\x0eSystemMetadata\x12\x19\n\x11\x65xecution_cluster\x18\x01 \x01(\t\"\xcb\x03\n\x11\x45xecutionMetadata\x12=\n\x04mode\x18\x01 \x01(\x0e\x32/.flyteidl.admin.ExecutionMetadata.ExecutionMode\x12\x11\n\tprincipal\x18\x02 \x01(\t\x12\x0f\n\x07nesting\x18\x03 \x01(\r\x12\x30\n\x0cscheduled_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x45\n\x15parent_node_execution\x18\x05 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\x12G\n\x13reference_execution\x18\x10 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12\x37\n\x0fsystem_metadata\x18\x11 \x01(\x0b\x32\x1e.flyteidl.admin.SystemMetadata\"X\n\rExecutionMode\x12\n\n\x06MANUAL\x10\x00\x12\r\n\tSCHEDULED\x10\x01\x12\n\n\x06SYSTEM\x10\x02\x12\x0c\n\x08RELAUNCH\x10\x03\x12\x12\n\x0e\x43HILD_WORKFLOW\x10\x04\"G\n\x10NotificationList\x12\x33\n\rnotifications\x18\x01 \x03(\x0b\x32\x1c.flyteidl.admin.Notification\"\x98\x04\n\rExecutionSpec\x12.\n\x0blaunch_plan\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12-\n\x06inputs\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01\x12\x33\n\x08metadata\x18\x03 \x01(\x0b\x32!.flyteidl.admin.ExecutionMetadata\x12\x39\n\rnotifications\x18\x05 \x01(\x0b\x32 .flyteidl.admin.NotificationListH\x00\x12\x15\n\x0b\x64isable_all\x18\x06 \x01(\x08H\x00\x12&\n\x06labels\x18\x07 \x01(\x0b\x32\x16.flyteidl.admin.Labels\x12\x30\n\x0b\x61nnotations\x18\x08 \x01(\x0b\x32\x1b.flyteidl.admin.Annotations\x12/\n\tauth_role\x18\t \x01(\x0b\x32\x18.flyteidl.admin.AuthRoleB\x02\x18\x01\x12\x39\n\x10security_context\x18\n \x01(\x0b\x32\x1f.flyteidl.admin.SecurityContext\x12;\n\x12quality_of_service\x18\x11 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceB\x18\n\x16notification_overridesJ\x04\x08\x04\x10\x05\"b\n\x19\x45xecutionTerminateRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12\r\n\x05\x63\x61use\x18\x02 \x01(\t\"\x1c\n\x1a\x45xecutionTerminateResponse\"Y\n\x1fWorkflowExecutionGetDataRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\"\xd6\x01\n WorkflowExecutionGetDataResponse\x12(\n\x07outputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlob\x12\'\n\x06inputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlob\x12.\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMap\x12/\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB3Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n\x1e\x66lyteidl/admin/execution.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x9f\x01\n\x16\x45xecutionCreateRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12+\n\x04spec\x18\x04 \x01(\x0b\x32\x1d.flyteidl.admin.ExecutionSpec\x12)\n\x06inputs\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.LiteralMap\"`\n\x18\x45xecutionRelaunchRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12\x0c\n\x04name\x18\x03 \x01(\t\"Q\n\x17\x45xecutionCreateResponse\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\"U\n\x1bWorkflowExecutionGetRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\"\xa3\x01\n\tExecution\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12+\n\x04spec\x18\x02 \x01(\x0b\x32\x1d.flyteidl.admin.ExecutionSpec\x12\x31\n\x07\x63losure\x18\x03 \x01(\x0b\x32 .flyteidl.admin.ExecutionClosure\"M\n\rExecutionList\x12-\n\nexecutions\x18\x01 \x03(\x0b\x32\x19.flyteidl.admin.Execution\x12\r\n\x05token\x18\x02 \x01(\t\"T\n\x0eLiteralMapBlob\x12+\n\x06values\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00\x12\r\n\x03uri\x18\x02 \x01(\tH\x00\x42\x06\n\x04\x64\x61ta\"1\n\rAbortMetadata\x12\r\n\x05\x63\x61use\x18\x01 \x01(\t\x12\x11\n\tprincipal\x18\x02 \x01(\t\"\xeb\x04\n\x10\x45xecutionClosure\x12\x31\n\x07outputs\x18\x01 \x01(\x0b\x32\x1e.flyteidl.admin.LiteralMapBlobH\x00\x12.\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00\x12\x19\n\x0b\x61\x62ort_cause\x18\n \x01(\tB\x02\x18\x01H\x00\x12\x37\n\x0e\x61\x62ort_metadata\x18\x0c \x01(\x0b\x32\x1d.flyteidl.admin.AbortMetadataH\x00\x12\x36\n\x0f\x63omputed_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01\x12\x35\n\x05phase\x18\x04 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.Phase\x12.\n\nstarted_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12+\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.Duration\x12.\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\rnotifications\x18\t \x03(\x0b\x32\x1c.flyteidl.admin.Notification\x12.\n\x0bworkflow_id\x18\x0b \x01(\x0b\x32\x19.flyteidl.core.IdentifierB\x0f\n\routput_result\"+\n\x0eSystemMetadata\x12\x19\n\x11\x65xecution_cluster\x18\x01 \x01(\t\"\xcb\x03\n\x11\x45xecutionMetadata\x12=\n\x04mode\x18\x01 \x01(\x0e\x32/.flyteidl.admin.ExecutionMetadata.ExecutionMode\x12\x11\n\tprincipal\x18\x02 \x01(\t\x12\x0f\n\x07nesting\x18\x03 \x01(\r\x12\x30\n\x0cscheduled_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x45\n\x15parent_node_execution\x18\x05 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\x12G\n\x13reference_execution\x18\x10 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12\x37\n\x0fsystem_metadata\x18\x11 \x01(\x0b\x32\x1e.flyteidl.admin.SystemMetadata\"X\n\rExecutionMode\x12\n\n\x06MANUAL\x10\x00\x12\r\n\tSCHEDULED\x10\x01\x12\n\n\x06SYSTEM\x10\x02\x12\x0c\n\x08RELAUNCH\x10\x03\x12\x12\n\x0e\x43HILD_WORKFLOW\x10\x04\"G\n\x10NotificationList\x12\x33\n\rnotifications\x18\x01 \x03(\x0b\x32\x1c.flyteidl.admin.Notification\"\x98\x04\n\rExecutionSpec\x12.\n\x0blaunch_plan\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12-\n\x06inputs\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01\x12\x33\n\x08metadata\x18\x03 \x01(\x0b\x32!.flyteidl.admin.ExecutionMetadata\x12\x39\n\rnotifications\x18\x05 \x01(\x0b\x32 .flyteidl.admin.NotificationListH\x00\x12\x15\n\x0b\x64isable_all\x18\x06 \x01(\x08H\x00\x12&\n\x06labels\x18\x07 \x01(\x0b\x32\x16.flyteidl.admin.Labels\x12\x30\n\x0b\x61nnotations\x18\x08 \x01(\x0b\x32\x1b.flyteidl.admin.Annotations\x12/\n\tauth_role\x18\t \x01(\x0b\x32\x18.flyteidl.admin.AuthRoleB\x02\x18\x01\x12\x39\n\x10security_context\x18\n \x01(\x0b\x32\x1f.flyteidl.admin.SecurityContext\x12;\n\x12quality_of_service\x18\x11 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceB\x18\n\x16notification_overridesJ\x04\x08\x04\x10\x05\"b\n\x19\x45xecutionTerminateRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12\r\n\x05\x63\x61use\x18\x02 \x01(\t\"\x1c\n\x1a\x45xecutionTerminateResponse\"Y\n\x1fWorkflowExecutionGetDataRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\"\xd6\x01\n WorkflowExecutionGetDataResponse\x12(\n\x07outputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlob\x12\'\n\x06inputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlob\x12.\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMap\x12/\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB7Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_admin_dot_common__pb2.DESCRIPTOR,flyteidl_dot_core_dot_literals__pb2.DESCRIPTOR,flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,google_dot_protobuf_dot_duration__pb2.DESCRIPTOR,google_dot_protobuf_dot_timestamp__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/admin/launch_plan_pb2.py b/gen/pb_python/flyteidl/admin/launch_plan_pb2.py index de4eb1bc8..260da95cb 100644 --- a/gen/pb_python/flyteidl/admin/launch_plan_pb2.py +++ b/gen/pb_python/flyteidl/admin/launch_plan_pb2.py @@ -27,8 +27,8 @@ name='flyteidl/admin/launch_plan.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n flyteidl/admin/launch_plan.proto\x12\x0e\x66lyteidl.admin\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1d\x66lyteidl/admin/schedule.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"n\n\x17LaunchPlanCreateRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12,\n\x04spec\x18\x02 \x01(\x0b\x32\x1e.flyteidl.admin.LaunchPlanSpec\"\x1a\n\x18LaunchPlanCreateResponse\"\x95\x01\n\nLaunchPlan\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12,\n\x04spec\x18\x02 \x01(\x0b\x32\x1e.flyteidl.admin.LaunchPlanSpec\x12\x32\n\x07\x63losure\x18\x03 \x01(\x0b\x32!.flyteidl.admin.LaunchPlanClosure\"Q\n\x0eLaunchPlanList\x12\x30\n\x0claunch_plans\x18\x01 \x03(\x0b\x32\x1a.flyteidl.admin.LaunchPlan\x12\r\n\x05token\x18\x02 \x01(\t\"T\n\x04\x41uth\x12\x1c\n\x12\x61ssumable_iam_role\x18\x01 \x01(\tH\x00\x12$\n\x1akubernetes_service_account\x18\x02 \x01(\tH\x00\x42\x08\n\x06method\"\xe5\x04\n\x0eLaunchPlanSpec\x12.\n\x0bworkflow_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12;\n\x0f\x65ntity_metadata\x18\x02 \x01(\x0b\x32\".flyteidl.admin.LaunchPlanMetadata\x12\x33\n\x0e\x64\x65\x66\x61ult_inputs\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.ParameterMap\x12/\n\x0c\x66ixed_inputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMap\x12\x10\n\x04role\x18\x05 \x01(\tB\x02\x18\x01\x12&\n\x06labels\x18\x06 \x01(\x0b\x32\x16.flyteidl.admin.Labels\x12\x30\n\x0b\x61nnotations\x18\x07 \x01(\x0b\x32\x1b.flyteidl.admin.Annotations\x12&\n\x04\x61uth\x18\x08 \x01(\x0b\x32\x14.flyteidl.admin.AuthB\x02\x18\x01\x12/\n\tauth_role\x18\t \x01(\x0b\x32\x18.flyteidl.admin.AuthRoleB\x02\x18\x01\x12\x39\n\x10security_context\x18\n \x01(\x0b\x32\x1f.flyteidl.admin.SecurityContext\x12;\n\x12quality_of_service\x18\x10 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfService\x12\x43\n\x16raw_output_data_config\x18\x11 \x01(\x0b\x32#.flyteidl.admin.RawOutputDataConfig\"\x8f\x02\n\x11LaunchPlanClosure\x12.\n\x05state\x18\x01 \x01(\x0e\x32\x1f.flyteidl.admin.LaunchPlanState\x12\x34\n\x0f\x65xpected_inputs\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.ParameterMap\x12\x34\n\x10\x65xpected_outputs\x18\x03 \x01(\x0b\x32\x1a.flyteidl.core.VariableMap\x12.\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"u\n\x12LaunchPlanMetadata\x12*\n\x08schedule\x18\x01 \x01(\x0b\x32\x18.flyteidl.admin.Schedule\x12\x33\n\rnotifications\x18\x02 \x03(\x0b\x32\x1c.flyteidl.admin.Notification\"p\n\x17LaunchPlanUpdateRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12.\n\x05state\x18\x02 \x01(\x0e\x32\x1f.flyteidl.admin.LaunchPlanState\"\x1a\n\x18LaunchPlanUpdateResponse\"L\n\x17\x41\x63tiveLaunchPlanRequest\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\"\x83\x01\n\x1b\x41\x63tiveLaunchPlanListRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\r\n\x05limit\x18\x03 \x01(\r\x12\r\n\x05token\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort*+\n\x0fLaunchPlanState\x12\x0c\n\x08INACTIVE\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x01\x42\x33Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n flyteidl/admin/launch_plan.proto\x12\x0e\x66lyteidl.admin\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1d\x66lyteidl/admin/schedule.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"n\n\x17LaunchPlanCreateRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12,\n\x04spec\x18\x02 \x01(\x0b\x32\x1e.flyteidl.admin.LaunchPlanSpec\"\x1a\n\x18LaunchPlanCreateResponse\"\x95\x01\n\nLaunchPlan\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12,\n\x04spec\x18\x02 \x01(\x0b\x32\x1e.flyteidl.admin.LaunchPlanSpec\x12\x32\n\x07\x63losure\x18\x03 \x01(\x0b\x32!.flyteidl.admin.LaunchPlanClosure\"Q\n\x0eLaunchPlanList\x12\x30\n\x0claunch_plans\x18\x01 \x03(\x0b\x32\x1a.flyteidl.admin.LaunchPlan\x12\r\n\x05token\x18\x02 \x01(\t\"T\n\x04\x41uth\x12\x1c\n\x12\x61ssumable_iam_role\x18\x01 \x01(\tH\x00\x12$\n\x1akubernetes_service_account\x18\x02 \x01(\tH\x00\x42\x08\n\x06method\"\xe5\x04\n\x0eLaunchPlanSpec\x12.\n\x0bworkflow_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12;\n\x0f\x65ntity_metadata\x18\x02 \x01(\x0b\x32\".flyteidl.admin.LaunchPlanMetadata\x12\x33\n\x0e\x64\x65\x66\x61ult_inputs\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.ParameterMap\x12/\n\x0c\x66ixed_inputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMap\x12\x10\n\x04role\x18\x05 \x01(\tB\x02\x18\x01\x12&\n\x06labels\x18\x06 \x01(\x0b\x32\x16.flyteidl.admin.Labels\x12\x30\n\x0b\x61nnotations\x18\x07 \x01(\x0b\x32\x1b.flyteidl.admin.Annotations\x12&\n\x04\x61uth\x18\x08 \x01(\x0b\x32\x14.flyteidl.admin.AuthB\x02\x18\x01\x12/\n\tauth_role\x18\t \x01(\x0b\x32\x18.flyteidl.admin.AuthRoleB\x02\x18\x01\x12\x39\n\x10security_context\x18\n \x01(\x0b\x32\x1f.flyteidl.admin.SecurityContext\x12;\n\x12quality_of_service\x18\x10 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfService\x12\x43\n\x16raw_output_data_config\x18\x11 \x01(\x0b\x32#.flyteidl.admin.RawOutputDataConfig\"\x8f\x02\n\x11LaunchPlanClosure\x12.\n\x05state\x18\x01 \x01(\x0e\x32\x1f.flyteidl.admin.LaunchPlanState\x12\x34\n\x0f\x65xpected_inputs\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.ParameterMap\x12\x34\n\x10\x65xpected_outputs\x18\x03 \x01(\x0b\x32\x1a.flyteidl.core.VariableMap\x12.\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"u\n\x12LaunchPlanMetadata\x12*\n\x08schedule\x18\x01 \x01(\x0b\x32\x18.flyteidl.admin.Schedule\x12\x33\n\rnotifications\x18\x02 \x03(\x0b\x32\x1c.flyteidl.admin.Notification\"p\n\x17LaunchPlanUpdateRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12.\n\x05state\x18\x02 \x01(\x0e\x32\x1f.flyteidl.admin.LaunchPlanState\"\x1a\n\x18LaunchPlanUpdateResponse\"L\n\x17\x41\x63tiveLaunchPlanRequest\x12\x31\n\x02id\x18\x01 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifier\"\x83\x01\n\x1b\x41\x63tiveLaunchPlanListRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\r\n\x05limit\x18\x03 \x01(\r\x12\r\n\x05token\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort*+\n\x0fLaunchPlanState\x12\x0c\n\x08INACTIVE\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x01\x42\x37Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,flyteidl_dot_core_dot_literals__pb2.DESCRIPTOR,flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,flyteidl_dot_core_dot_interface__pb2.DESCRIPTOR,flyteidl_dot_admin_dot_schedule__pb2.DESCRIPTOR,flyteidl_dot_admin_dot_common__pb2.DESCRIPTOR,google_dot_protobuf_dot_timestamp__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py b/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py index 9ff8f4887..efb0d85b4 100644 --- a/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py +++ b/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py @@ -22,8 +22,8 @@ name='flyteidl/admin/matchable_resource.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n\'flyteidl/admin/matchable_resource.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1d\x66lyteidl/core/execution.proto\"M\n\x10TaskResourceSpec\x12\x0b\n\x03\x63pu\x18\x01 \x01(\t\x12\x0b\n\x03gpu\x18\x02 \x01(\t\x12\x0e\n\x06memory\x18\x03 \x01(\t\x12\x0f\n\x07storage\x18\x04 \x01(\t\"~\n\x16TaskResourceAttributes\x12\x32\n\x08\x64\x65\x66\x61ults\x18\x01 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpec\x12\x30\n\x06limits\x18\x02 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpec\"\x9d\x01\n\x19\x43lusterResourceAttributes\x12M\n\nattributes\x18\x01 \x03(\x0b\x32\x39.flyteidl.admin.ClusterResourceAttributes.AttributesEntry\x1a\x31\n\x0f\x41ttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"(\n\x18\x45xecutionQueueAttributes\x12\x0c\n\x04tags\x18\x01 \x03(\t\"&\n\x15\x45xecutionClusterLabel\x12\r\n\x05value\x18\x01 \x01(\t\"\xc1\x01\n\x0ePluginOverride\x12\x11\n\ttask_type\x18\x01 \x01(\t\x12\x11\n\tplugin_id\x18\x02 \x03(\t\x12U\n\x17missing_plugin_behavior\x18\x04 \x01(\x0e\x32\x34.flyteidl.admin.PluginOverride.MissingPluginBehavior\"2\n\x15MissingPluginBehavior\x12\x08\n\x04\x46\x41IL\x10\x00\x12\x0f\n\x0bUSE_DEFAULT\x10\x01\"D\n\x0fPluginOverrides\x12\x31\n\toverrides\x18\x01 \x03(\x0b\x32\x1e.flyteidl.admin.PluginOverride\"\xd2\x03\n\x12MatchingAttributes\x12J\n\x18task_resource_attributes\x18\x01 \x01(\x0b\x32&.flyteidl.admin.TaskResourceAttributesH\x00\x12P\n\x1b\x63luster_resource_attributes\x18\x02 \x01(\x0b\x32).flyteidl.admin.ClusterResourceAttributesH\x00\x12N\n\x1a\x65xecution_queue_attributes\x18\x03 \x01(\x0b\x32(.flyteidl.admin.ExecutionQueueAttributesH\x00\x12H\n\x17\x65xecution_cluster_label\x18\x04 \x01(\x0b\x32%.flyteidl.admin.ExecutionClusterLabelH\x00\x12=\n\x12quality_of_service\x18\x05 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceH\x00\x12;\n\x10plugin_overrides\x18\x06 \x01(\x0b\x32\x1f.flyteidl.admin.PluginOverridesH\x00\x42\x08\n\x06target\"\xa2\x01\n MatchableAttributesConfiguration\x12\x36\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributes\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0f\n\x07project\x18\x03 \x01(\t\x12\x10\n\x08workflow\x18\x04 \x01(\t\x12\x13\n\x0blaunch_plan\x18\x05 \x01(\t\"Z\n\x1eListMatchableAttributesRequest\x12\x38\n\rresource_type\x18\x01 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"k\n\x1fListMatchableAttributesResponse\x12H\n\x0e\x63onfigurations\x18\x01 \x03(\x0b\x32\x30.flyteidl.admin.MatchableAttributesConfiguration*\xa9\x01\n\x11MatchableResource\x12\x11\n\rTASK_RESOURCE\x10\x00\x12\x14\n\x10\x43LUSTER_RESOURCE\x10\x01\x12\x13\n\x0f\x45XECUTION_QUEUE\x10\x02\x12\x1b\n\x17\x45XECUTION_CLUSTER_LABEL\x10\x03\x12$\n QUALITY_OF_SERVICE_SPECIFICATION\x10\x04\x12\x13\n\x0fPLUGIN_OVERRIDE\x10\x05\x42\x33Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n\'flyteidl/admin/matchable_resource.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1d\x66lyteidl/core/execution.proto\"M\n\x10TaskResourceSpec\x12\x0b\n\x03\x63pu\x18\x01 \x01(\t\x12\x0b\n\x03gpu\x18\x02 \x01(\t\x12\x0e\n\x06memory\x18\x03 \x01(\t\x12\x0f\n\x07storage\x18\x04 \x01(\t\"~\n\x16TaskResourceAttributes\x12\x32\n\x08\x64\x65\x66\x61ults\x18\x01 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpec\x12\x30\n\x06limits\x18\x02 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpec\"\x9d\x01\n\x19\x43lusterResourceAttributes\x12M\n\nattributes\x18\x01 \x03(\x0b\x32\x39.flyteidl.admin.ClusterResourceAttributes.AttributesEntry\x1a\x31\n\x0f\x41ttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"(\n\x18\x45xecutionQueueAttributes\x12\x0c\n\x04tags\x18\x01 \x03(\t\"&\n\x15\x45xecutionClusterLabel\x12\r\n\x05value\x18\x01 \x01(\t\"\xc1\x01\n\x0ePluginOverride\x12\x11\n\ttask_type\x18\x01 \x01(\t\x12\x11\n\tplugin_id\x18\x02 \x03(\t\x12U\n\x17missing_plugin_behavior\x18\x04 \x01(\x0e\x32\x34.flyteidl.admin.PluginOverride.MissingPluginBehavior\"2\n\x15MissingPluginBehavior\x12\x08\n\x04\x46\x41IL\x10\x00\x12\x0f\n\x0bUSE_DEFAULT\x10\x01\"D\n\x0fPluginOverrides\x12\x31\n\toverrides\x18\x01 \x03(\x0b\x32\x1e.flyteidl.admin.PluginOverride\"\xd2\x03\n\x12MatchingAttributes\x12J\n\x18task_resource_attributes\x18\x01 \x01(\x0b\x32&.flyteidl.admin.TaskResourceAttributesH\x00\x12P\n\x1b\x63luster_resource_attributes\x18\x02 \x01(\x0b\x32).flyteidl.admin.ClusterResourceAttributesH\x00\x12N\n\x1a\x65xecution_queue_attributes\x18\x03 \x01(\x0b\x32(.flyteidl.admin.ExecutionQueueAttributesH\x00\x12H\n\x17\x65xecution_cluster_label\x18\x04 \x01(\x0b\x32%.flyteidl.admin.ExecutionClusterLabelH\x00\x12=\n\x12quality_of_service\x18\x05 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceH\x00\x12;\n\x10plugin_overrides\x18\x06 \x01(\x0b\x32\x1f.flyteidl.admin.PluginOverridesH\x00\x42\x08\n\x06target\"\xa2\x01\n MatchableAttributesConfiguration\x12\x36\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributes\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0f\n\x07project\x18\x03 \x01(\t\x12\x10\n\x08workflow\x18\x04 \x01(\t\x12\x13\n\x0blaunch_plan\x18\x05 \x01(\t\"Z\n\x1eListMatchableAttributesRequest\x12\x38\n\rresource_type\x18\x01 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"k\n\x1fListMatchableAttributesResponse\x12H\n\x0e\x63onfigurations\x18\x01 \x03(\x0b\x32\x30.flyteidl.admin.MatchableAttributesConfiguration*\xa9\x01\n\x11MatchableResource\x12\x11\n\rTASK_RESOURCE\x10\x00\x12\x14\n\x10\x43LUSTER_RESOURCE\x10\x01\x12\x13\n\x0f\x45XECUTION_QUEUE\x10\x02\x12\x1b\n\x17\x45XECUTION_CLUSTER_LABEL\x10\x03\x12$\n QUALITY_OF_SERVICE_SPECIFICATION\x10\x04\x12\x13\n\x0fPLUGIN_OVERRIDE\x10\x05\x42\x37Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_admin_dot_common__pb2.DESCRIPTOR,flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/admin/node_execution_pb2.py b/gen/pb_python/flyteidl/admin/node_execution_pb2.py index 4344f204b..1f7f57019 100644 --- a/gen/pb_python/flyteidl/admin/node_execution_pb2.py +++ b/gen/pb_python/flyteidl/admin/node_execution_pb2.py @@ -26,8 +26,8 @@ name='flyteidl/admin/node_execution.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n#flyteidl/admin/node_execution.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1b\x66lyteidl/core/catalog.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\"M\n\x17NodeExecutionGetRequest\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\"\xd5\x01\n\x18NodeExecutionListRequest\x12I\n\x15workflow_execution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12\r\n\x05limit\x18\x02 \x01(\r\x12\r\n\x05token\x18\x03 \x01(\t\x12\x0f\n\x07\x66ilters\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\x12\x18\n\x10unique_parent_id\x18\x06 \x01(\t\"\xba\x01\n\x1fNodeExecutionForTaskListRequest\x12\x41\n\x11task_execution_id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifier\x12\r\n\x05limit\x18\x02 \x01(\r\x12\r\n\x05token\x18\x03 \x01(\t\x12\x0f\n\x07\x66ilters\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"\xc6\x01\n\rNodeExecution\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\x12\x11\n\tinput_uri\x18\x02 \x01(\t\x12\x35\n\x07\x63losure\x18\x03 \x01(\x0b\x32$.flyteidl.admin.NodeExecutionClosure\x12\x37\n\x08metadata\x18\x04 \x01(\x0b\x32%.flyteidl.admin.NodeExecutionMetaData\"Z\n\x15NodeExecutionMetaData\x12\x13\n\x0bretry_group\x18\x01 \x01(\t\x12\x16\n\x0eis_parent_node\x18\x02 \x01(\x08\x12\x14\n\x0cspec_node_id\x18\x03 \x01(\t\"Z\n\x11NodeExecutionList\x12\x36\n\x0fnode_executions\x18\x01 \x03(\x0b\x32\x1d.flyteidl.admin.NodeExecution\x12\r\n\x05token\x18\x02 \x01(\t\"\xf8\x03\n\x14NodeExecutionClosure\x12\x14\n\noutput_uri\x18\x01 \x01(\tH\x00\x12.\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00\x12\x31\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.Phase\x12.\n\nstarted_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12+\n\x08\x64uration\x18\x05 \x01(\x0b\x32\x19.google.protobuf.Duration\x12.\n\ncreated_at\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x46\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.admin.WorkflowNodeMetadataH\x01\x12>\n\x12task_node_metadata\x18\t \x01(\x0b\x32 .flyteidl.admin.TaskNodeMetadataH\x01\x42\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"W\n\x14WorkflowNodeMetadata\x12?\n\x0b\x65xecutionId\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\"\x80\x01\n\x10TaskNodeMetadata\x12\x37\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatus\x12\x33\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadata\"Q\n\x1bNodeExecutionGetDataRequest\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\"\xd2\x01\n\x1cNodeExecutionGetDataResponse\x12\'\n\x06inputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlob\x12(\n\x07outputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlob\x12.\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMap\x12/\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB3Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n#flyteidl/admin/node_execution.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1b\x66lyteidl/core/catalog.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\"M\n\x17NodeExecutionGetRequest\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\"\xd5\x01\n\x18NodeExecutionListRequest\x12I\n\x15workflow_execution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12\r\n\x05limit\x18\x02 \x01(\r\x12\r\n\x05token\x18\x03 \x01(\t\x12\x0f\n\x07\x66ilters\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\x12\x18\n\x10unique_parent_id\x18\x06 \x01(\t\"\xba\x01\n\x1fNodeExecutionForTaskListRequest\x12\x41\n\x11task_execution_id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifier\x12\r\n\x05limit\x18\x02 \x01(\r\x12\r\n\x05token\x18\x03 \x01(\t\x12\x0f\n\x07\x66ilters\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"\xc6\x01\n\rNodeExecution\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\x12\x11\n\tinput_uri\x18\x02 \x01(\t\x12\x35\n\x07\x63losure\x18\x03 \x01(\x0b\x32$.flyteidl.admin.NodeExecutionClosure\x12\x37\n\x08metadata\x18\x04 \x01(\x0b\x32%.flyteidl.admin.NodeExecutionMetaData\"Z\n\x15NodeExecutionMetaData\x12\x13\n\x0bretry_group\x18\x01 \x01(\t\x12\x16\n\x0eis_parent_node\x18\x02 \x01(\x08\x12\x14\n\x0cspec_node_id\x18\x03 \x01(\t\"Z\n\x11NodeExecutionList\x12\x36\n\x0fnode_executions\x18\x01 \x03(\x0b\x32\x1d.flyteidl.admin.NodeExecution\x12\r\n\x05token\x18\x02 \x01(\t\"\xf8\x03\n\x14NodeExecutionClosure\x12\x14\n\noutput_uri\x18\x01 \x01(\tH\x00\x12.\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00\x12\x31\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.Phase\x12.\n\nstarted_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12+\n\x08\x64uration\x18\x05 \x01(\x0b\x32\x19.google.protobuf.Duration\x12.\n\ncreated_at\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x46\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.admin.WorkflowNodeMetadataH\x01\x12>\n\x12task_node_metadata\x18\t \x01(\x0b\x32 .flyteidl.admin.TaskNodeMetadataH\x01\x42\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"W\n\x14WorkflowNodeMetadata\x12?\n\x0b\x65xecutionId\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\"\x80\x01\n\x10TaskNodeMetadata\x12\x37\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatus\x12\x33\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadata\"Q\n\x1bNodeExecutionGetDataRequest\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\"\xd2\x01\n\x1cNodeExecutionGetDataResponse\x12\'\n\x06inputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlob\x12(\n\x07outputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlob\x12.\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMap\x12/\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB7Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_admin_dot_common__pb2.DESCRIPTOR,flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,flyteidl_dot_core_dot_catalog__pb2.DESCRIPTOR,flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,flyteidl_dot_core_dot_literals__pb2.DESCRIPTOR,google_dot_protobuf_dot_timestamp__pb2.DESCRIPTOR,google_dot_protobuf_dot_duration__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/admin/notification_pb2.py b/gen/pb_python/flyteidl/admin/notification_pb2.py index c52511ca3..d02688d5d 100644 --- a/gen/pb_python/flyteidl/admin/notification_pb2.py +++ b/gen/pb_python/flyteidl/admin/notification_pb2.py @@ -19,8 +19,8 @@ name='flyteidl/admin/notification.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n!flyteidl/admin/notification.proto\x12\x0e\x66lyteidl.admin\"b\n\x0c\x45mailMessage\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\x12\x14\n\x0csender_email\x18\x02 \x01(\t\x12\x14\n\x0csubject_line\x18\x03 \x01(\t\x12\x0c\n\x04\x62ody\x18\x04 \x01(\tB3Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n!flyteidl/admin/notification.proto\x12\x0e\x66lyteidl.admin\"b\n\x0c\x45mailMessage\x12\x18\n\x10recipients_email\x18\x01 \x03(\t\x12\x14\n\x0csender_email\x18\x02 \x01(\t\x12\x14\n\x0csubject_line\x18\x03 \x01(\t\x12\x0c\n\x04\x62ody\x18\x04 \x01(\tB7Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') ) diff --git a/gen/pb_python/flyteidl/admin/project_domain_attributes_pb2.py b/gen/pb_python/flyteidl/admin/project_domain_attributes_pb2.py index f0f147910..808a6ee5f 100644 --- a/gen/pb_python/flyteidl/admin/project_domain_attributes_pb2.py +++ b/gen/pb_python/flyteidl/admin/project_domain_attributes_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/admin/project_domain_attributes.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n.flyteidl/admin/project_domain_attributes.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/matchable_resource.proto\"{\n\x17ProjectDomainAttributes\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12?\n\x13matching_attributes\x18\x03 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributes\"c\n$ProjectDomainAttributesUpdateRequest\x12;\n\nattributes\x18\x01 \x01(\x0b\x32\'.flyteidl.admin.ProjectDomainAttributes\"\'\n%ProjectDomainAttributesUpdateResponse\"~\n!ProjectDomainAttributesGetRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x38\n\rresource_type\x18\x03 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"a\n\"ProjectDomainAttributesGetResponse\x12;\n\nattributes\x18\x01 \x01(\x0b\x32\'.flyteidl.admin.ProjectDomainAttributes\"\x81\x01\n$ProjectDomainAttributesDeleteRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x38\n\rresource_type\x18\x03 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"\'\n%ProjectDomainAttributesDeleteResponseB3Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n.flyteidl/admin/project_domain_attributes.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/matchable_resource.proto\"{\n\x17ProjectDomainAttributes\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12?\n\x13matching_attributes\x18\x03 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributes\"c\n$ProjectDomainAttributesUpdateRequest\x12;\n\nattributes\x18\x01 \x01(\x0b\x32\'.flyteidl.admin.ProjectDomainAttributes\"\'\n%ProjectDomainAttributesUpdateResponse\"~\n!ProjectDomainAttributesGetRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x38\n\rresource_type\x18\x03 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"a\n\"ProjectDomainAttributesGetResponse\x12;\n\nattributes\x18\x01 \x01(\x0b\x32\'.flyteidl.admin.ProjectDomainAttributes\"\x81\x01\n$ProjectDomainAttributesDeleteRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x38\n\rresource_type\x18\x03 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"\'\n%ProjectDomainAttributesDeleteResponseB7Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_admin_dot_matchable__resource__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/admin/project_pb2.py b/gen/pb_python/flyteidl/admin/project_pb2.py index 492fdce9f..8a7586af0 100644 --- a/gen/pb_python/flyteidl/admin/project_pb2.py +++ b/gen/pb_python/flyteidl/admin/project_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/admin/project.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n\x1c\x66lyteidl/admin/project.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\"\"\n\x06\x44omain\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"\xfe\x01\n\x07Project\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\'\n\x07\x64omains\x18\x03 \x03(\x0b\x32\x16.flyteidl.admin.Domain\x12\x13\n\x0b\x64\x65scription\x18\x04 \x01(\t\x12&\n\x06labels\x18\x05 \x01(\x0b\x32\x16.flyteidl.admin.Labels\x12\x33\n\x05state\x18\x06 \x01(\x0e\x32$.flyteidl.admin.Project.ProjectState\">\n\x0cProjectState\x12\n\n\x06\x41\x43TIVE\x10\x00\x12\x0c\n\x08\x41RCHIVED\x10\x01\x12\x14\n\x10SYSTEM_GENERATED\x10\x02\"D\n\x08Projects\x12)\n\x08projects\x18\x01 \x03(\x0b\x32\x17.flyteidl.admin.Project\x12\r\n\x05token\x18\x02 \x01(\t\"j\n\x12ProjectListRequest\x12\r\n\x05limit\x18\x01 \x01(\r\x12\r\n\x05token\x18\x02 \x01(\t\x12\x0f\n\x07\x66ilters\x18\x03 \x01(\t\x12%\n\x07sort_by\x18\x04 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"B\n\x16ProjectRegisterRequest\x12(\n\x07project\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.Project\"\x19\n\x17ProjectRegisterResponse\"\x17\n\x15ProjectUpdateResponseB3Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n\x1c\x66lyteidl/admin/project.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\"\"\n\x06\x44omain\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"\xfe\x01\n\x07Project\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\'\n\x07\x64omains\x18\x03 \x03(\x0b\x32\x16.flyteidl.admin.Domain\x12\x13\n\x0b\x64\x65scription\x18\x04 \x01(\t\x12&\n\x06labels\x18\x05 \x01(\x0b\x32\x16.flyteidl.admin.Labels\x12\x33\n\x05state\x18\x06 \x01(\x0e\x32$.flyteidl.admin.Project.ProjectState\">\n\x0cProjectState\x12\n\n\x06\x41\x43TIVE\x10\x00\x12\x0c\n\x08\x41RCHIVED\x10\x01\x12\x14\n\x10SYSTEM_GENERATED\x10\x02\"D\n\x08Projects\x12)\n\x08projects\x18\x01 \x03(\x0b\x32\x17.flyteidl.admin.Project\x12\r\n\x05token\x18\x02 \x01(\t\"j\n\x12ProjectListRequest\x12\r\n\x05limit\x18\x01 \x01(\r\x12\r\n\x05token\x18\x02 \x01(\t\x12\x0f\n\x07\x66ilters\x18\x03 \x01(\t\x12%\n\x07sort_by\x18\x04 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"B\n\x16ProjectRegisterRequest\x12(\n\x07project\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.Project\"\x19\n\x17ProjectRegisterResponse\"\x17\n\x15ProjectUpdateResponseB7Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_admin_dot_common__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/admin/schedule_pb2.py b/gen/pb_python/flyteidl/admin/schedule_pb2.py index 4658231a3..a19d0e390 100644 --- a/gen/pb_python/flyteidl/admin/schedule_pb2.py +++ b/gen/pb_python/flyteidl/admin/schedule_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/admin/schedule.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n\x1d\x66lyteidl/admin/schedule.proto\x12\x0e\x66lyteidl.admin\"G\n\tFixedRate\x12\r\n\x05value\x18\x01 \x01(\r\x12+\n\x04unit\x18\x02 \x01(\x0e\x32\x1d.flyteidl.admin.FixedRateUnit\"0\n\x0c\x43ronSchedule\x12\x10\n\x08schedule\x18\x01 \x01(\t\x12\x0e\n\x06offset\x18\x02 \x01(\t\"\xc1\x01\n\x08Schedule\x12\x1d\n\x0f\x63ron_expression\x18\x01 \x01(\tB\x02\x18\x01H\x00\x12)\n\x04rate\x18\x02 \x01(\x0b\x32\x19.flyteidl.admin.FixedRateH\x00\x12\x35\n\rcron_schedule\x18\x04 \x01(\x0b\x32\x1c.flyteidl.admin.CronScheduleH\x00\x12\x1e\n\x16kickoff_time_input_arg\x18\x03 \x01(\tB\x14\n\x12ScheduleExpression*.\n\rFixedRateUnit\x12\n\n\x06MINUTE\x10\x00\x12\x08\n\x04HOUR\x10\x01\x12\x07\n\x03\x44\x41Y\x10\x02\x42\x33Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n\x1d\x66lyteidl/admin/schedule.proto\x12\x0e\x66lyteidl.admin\"G\n\tFixedRate\x12\r\n\x05value\x18\x01 \x01(\r\x12+\n\x04unit\x18\x02 \x01(\x0e\x32\x1d.flyteidl.admin.FixedRateUnit\"0\n\x0c\x43ronSchedule\x12\x10\n\x08schedule\x18\x01 \x01(\t\x12\x0e\n\x06offset\x18\x02 \x01(\t\"\xc1\x01\n\x08Schedule\x12\x1d\n\x0f\x63ron_expression\x18\x01 \x01(\tB\x02\x18\x01H\x00\x12)\n\x04rate\x18\x02 \x01(\x0b\x32\x19.flyteidl.admin.FixedRateH\x00\x12\x35\n\rcron_schedule\x18\x04 \x01(\x0b\x32\x1c.flyteidl.admin.CronScheduleH\x00\x12\x1e\n\x16kickoff_time_input_arg\x18\x03 \x01(\tB\x14\n\x12ScheduleExpression*.\n\rFixedRateUnit\x12\n\n\x06MINUTE\x10\x00\x12\x08\n\x04HOUR\x10\x01\x12\x07\n\x03\x44\x41Y\x10\x02\x42\x37Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') ) _FIXEDRATEUNIT = _descriptor.EnumDescriptor( diff --git a/gen/pb_python/flyteidl/admin/task_execution_pb2.py b/gen/pb_python/flyteidl/admin/task_execution_pb2.py index ab56787a6..83cb10dcc 100644 --- a/gen/pb_python/flyteidl/admin/task_execution_pb2.py +++ b/gen/pb_python/flyteidl/admin/task_execution_pb2.py @@ -26,8 +26,8 @@ name='flyteidl/admin/task_execution.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n#flyteidl/admin/task_execution.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"M\n\x17TaskExecutionGetRequest\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifier\"\xb3\x01\n\x18TaskExecutionListRequest\x12\x41\n\x11node_execution_id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\x12\r\n\x05limit\x18\x02 \x01(\r\x12\r\n\x05token\x18\x03 \x01(\t\x12\x0f\n\x07\x66ilters\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"\xa0\x01\n\rTaskExecution\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifier\x12\x11\n\tinput_uri\x18\x02 \x01(\t\x12\x35\n\x07\x63losure\x18\x03 \x01(\x0b\x32$.flyteidl.admin.TaskExecutionClosure\x12\x11\n\tis_parent\x18\x04 \x01(\x08\"Z\n\x11TaskExecutionList\x12\x36\n\x0ftask_executions\x18\x01 \x03(\x0b\x32\x1d.flyteidl.admin.TaskExecution\x12\r\n\x05token\x18\x02 \x01(\t\"\xb1\x03\n\x14TaskExecutionClosure\x12\x14\n\noutput_uri\x18\x01 \x01(\tH\x00\x12.\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00\x12\x31\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.TaskExecution.Phase\x12$\n\x04logs\x18\x04 \x03(\x0b\x32\x16.flyteidl.core.TaskLog\x12.\n\nstarted_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12+\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.Duration\x12.\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x0b\x63ustom_info\x18\t \x01(\x0b\x32\x17.google.protobuf.StructB\x0f\n\routput_result\"Q\n\x1bTaskExecutionGetDataRequest\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifier\"\xd2\x01\n\x1cTaskExecutionGetDataResponse\x12\'\n\x06inputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlob\x12(\n\x07outputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlob\x12.\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMap\x12/\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB3Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n#flyteidl/admin/task_execution.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"M\n\x17TaskExecutionGetRequest\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifier\"\xb3\x01\n\x18TaskExecutionListRequest\x12\x41\n\x11node_execution_id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\x12\r\n\x05limit\x18\x02 \x01(\r\x12\r\n\x05token\x18\x03 \x01(\t\x12\x0f\n\x07\x66ilters\x18\x04 \x01(\t\x12%\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.Sort\"\xa0\x01\n\rTaskExecution\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifier\x12\x11\n\tinput_uri\x18\x02 \x01(\t\x12\x35\n\x07\x63losure\x18\x03 \x01(\x0b\x32$.flyteidl.admin.TaskExecutionClosure\x12\x11\n\tis_parent\x18\x04 \x01(\x08\"Z\n\x11TaskExecutionList\x12\x36\n\x0ftask_executions\x18\x01 \x03(\x0b\x32\x1d.flyteidl.admin.TaskExecution\x12\r\n\x05token\x18\x02 \x01(\t\"\xb1\x03\n\x14TaskExecutionClosure\x12\x14\n\noutput_uri\x18\x01 \x01(\tH\x00\x12.\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00\x12\x31\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.TaskExecution.Phase\x12$\n\x04logs\x18\x04 \x03(\x0b\x32\x16.flyteidl.core.TaskLog\x12.\n\nstarted_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12+\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.Duration\x12.\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x0b\x63ustom_info\x18\t \x01(\x0b\x32\x17.google.protobuf.StructB\x0f\n\routput_result\"Q\n\x1bTaskExecutionGetDataRequest\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifier\"\xd2\x01\n\x1cTaskExecutionGetDataResponse\x12\'\n\x06inputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlob\x12(\n\x07outputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlob\x12.\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMap\x12/\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB7Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_admin_dot_common__pb2.DESCRIPTOR,flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,flyteidl_dot_core_dot_literals__pb2.DESCRIPTOR,google_dot_protobuf_dot_timestamp__pb2.DESCRIPTOR,google_dot_protobuf_dot_duration__pb2.DESCRIPTOR,google_dot_protobuf_dot_struct__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/admin/task_pb2.py b/gen/pb_python/flyteidl/admin/task_pb2.py index 3423aa852..e9c341503 100644 --- a/gen/pb_python/flyteidl/admin/task_pb2.py +++ b/gen/pb_python/flyteidl/admin/task_pb2.py @@ -23,8 +23,8 @@ name='flyteidl/admin/task.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n\x19\x66lyteidl/admin/task.proto\x12\x0e\x66lyteidl.admin\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x1c\x66lyteidl/core/compiler.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"b\n\x11TaskCreateRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12&\n\x04spec\x18\x02 \x01(\x0b\x32\x18.flyteidl.admin.TaskSpec\"\x14\n\x12TaskCreateResponse\"[\n\x04Task\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12,\n\x07\x63losure\x18\x02 \x01(\x0b\x32\x1b.flyteidl.admin.TaskClosure\">\n\x08TaskList\x12#\n\x05tasks\x18\x01 \x03(\x0b\x32\x14.flyteidl.admin.Task\x12\r\n\x05token\x18\x02 \x01(\t\"9\n\x08TaskSpec\x12-\n\x08template\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplate\"q\n\x0bTaskClosure\x12\x32\n\rcompiled_task\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.CompiledTask\x12.\n\ncreated_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB3Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n\x19\x66lyteidl/admin/task.proto\x12\x0e\x66lyteidl.admin\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x1c\x66lyteidl/core/compiler.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"b\n\x11TaskCreateRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12&\n\x04spec\x18\x02 \x01(\x0b\x32\x18.flyteidl.admin.TaskSpec\"\x14\n\x12TaskCreateResponse\"[\n\x04Task\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12,\n\x07\x63losure\x18\x02 \x01(\x0b\x32\x1b.flyteidl.admin.TaskClosure\">\n\x08TaskList\x12#\n\x05tasks\x18\x01 \x03(\x0b\x32\x14.flyteidl.admin.Task\x12\r\n\x05token\x18\x02 \x01(\t\"9\n\x08TaskSpec\x12-\n\x08template\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplate\"q\n\x0bTaskClosure\x12\x32\n\rcompiled_task\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.CompiledTask\x12.\n\ncreated_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB7Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,flyteidl_dot_core_dot_tasks__pb2.DESCRIPTOR,flyteidl_dot_core_dot_compiler__pb2.DESCRIPTOR,google_dot_protobuf_dot_timestamp__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/admin/workflow_attributes_pb2.py b/gen/pb_python/flyteidl/admin/workflow_attributes_pb2.py index a67c5fc9a..7e5d22c4d 100644 --- a/gen/pb_python/flyteidl/admin/workflow_attributes_pb2.py +++ b/gen/pb_python/flyteidl/admin/workflow_attributes_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/admin/workflow_attributes.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n(flyteidl/admin/workflow_attributes.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/matchable_resource.proto\"\x88\x01\n\x12WorkflowAttributes\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x10\n\x08workflow\x18\x03 \x01(\t\x12?\n\x13matching_attributes\x18\x04 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributes\"Y\n\x1fWorkflowAttributesUpdateRequest\x12\x36\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.WorkflowAttributes\"\"\n WorkflowAttributesUpdateResponse\"\x8b\x01\n\x1cWorkflowAttributesGetRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x10\n\x08workflow\x18\x03 \x01(\t\x12\x38\n\rresource_type\x18\x04 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"W\n\x1dWorkflowAttributesGetResponse\x12\x36\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.WorkflowAttributes\"\x8e\x01\n\x1fWorkflowAttributesDeleteRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x10\n\x08workflow\x18\x03 \x01(\t\x12\x38\n\rresource_type\x18\x04 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"\"\n WorkflowAttributesDeleteResponseB3Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n(flyteidl/admin/workflow_attributes.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/matchable_resource.proto\"\x88\x01\n\x12WorkflowAttributes\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x10\n\x08workflow\x18\x03 \x01(\t\x12?\n\x13matching_attributes\x18\x04 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributes\"Y\n\x1fWorkflowAttributesUpdateRequest\x12\x36\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.WorkflowAttributes\"\"\n WorkflowAttributesUpdateResponse\"\x8b\x01\n\x1cWorkflowAttributesGetRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x10\n\x08workflow\x18\x03 \x01(\t\x12\x38\n\rresource_type\x18\x04 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"W\n\x1dWorkflowAttributesGetResponse\x12\x36\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.WorkflowAttributes\"\x8e\x01\n\x1fWorkflowAttributesDeleteRequest\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x10\n\x08workflow\x18\x03 \x01(\t\x12\x38\n\rresource_type\x18\x04 \x01(\x0e\x32!.flyteidl.admin.MatchableResource\"\"\n WorkflowAttributesDeleteResponseB7Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_admin_dot_matchable__resource__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/admin/workflow_pb2.py b/gen/pb_python/flyteidl/admin/workflow_pb2.py index 074f83d09..10b46e33f 100644 --- a/gen/pb_python/flyteidl/admin/workflow_pb2.py +++ b/gen/pb_python/flyteidl/admin/workflow_pb2.py @@ -24,8 +24,8 @@ name='flyteidl/admin/workflow.proto', package='flyteidl.admin', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin'), - serialized_pb=_b('\n\x1d\x66lyteidl/admin/workflow.proto\x12\x0e\x66lyteidl.admin\x1a\x1c\x66lyteidl/core/compiler.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"j\n\x15WorkflowCreateRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12*\n\x04spec\x18\x02 \x01(\x0b\x32\x1c.flyteidl.admin.WorkflowSpec\"\x18\n\x16WorkflowCreateResponse\"c\n\x08Workflow\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12\x30\n\x07\x63losure\x18\x02 \x01(\x0b\x32\x1f.flyteidl.admin.WorkflowClosure\"J\n\x0cWorkflowList\x12+\n\tworkflows\x18\x01 \x03(\x0b\x32\x18.flyteidl.admin.Workflow\x12\r\n\x05token\x18\x02 \x01(\t\"y\n\x0cWorkflowSpec\x12\x31\n\x08template\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplate\x12\x36\n\rsub_workflows\x18\x02 \x03(\x0b\x32\x1f.flyteidl.core.WorkflowTemplate\"\x84\x01\n\x0fWorkflowClosure\x12\x41\n\x11\x63ompiled_workflow\x18\x01 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosure\x12.\n\ncreated_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB3Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin'), + serialized_pb=_b('\n\x1d\x66lyteidl/admin/workflow.proto\x12\x0e\x66lyteidl.admin\x1a\x1c\x66lyteidl/core/compiler.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"j\n\x15WorkflowCreateRequest\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12*\n\x04spec\x18\x02 \x01(\x0b\x32\x1c.flyteidl.admin.WorkflowSpec\"\x18\n\x16WorkflowCreateResponse\"c\n\x08Workflow\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12\x30\n\x07\x63losure\x18\x02 \x01(\x0b\x32\x1f.flyteidl.admin.WorkflowClosure\"J\n\x0cWorkflowList\x12+\n\tworkflows\x18\x01 \x03(\x0b\x32\x18.flyteidl.admin.Workflow\x12\r\n\x05token\x18\x02 \x01(\t\"y\n\x0cWorkflowSpec\x12\x31\n\x08template\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplate\x12\x36\n\rsub_workflows\x18\x02 \x03(\x0b\x32\x1f.flyteidl.core.WorkflowTemplate\"\x84\x01\n\x0fWorkflowClosure\x12\x41\n\x11\x63ompiled_workflow\x18\x01 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosure\x12.\n\ncreated_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB7Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/adminb\x06proto3') , dependencies=[flyteidl_dot_core_dot_compiler__pb2.DESCRIPTOR,flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,flyteidl_dot_core_dot_workflow__pb2.DESCRIPTOR,flyteidl_dot_admin_dot_common__pb2.DESCRIPTOR,google_dot_protobuf_dot_timestamp__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/core/catalog_pb2.py b/gen/pb_python/flyteidl/core/catalog_pb2.py index 62727bc4c..59c7921ed 100644 --- a/gen/pb_python/flyteidl/core/catalog_pb2.py +++ b/gen/pb_python/flyteidl/core/catalog_pb2.py @@ -21,8 +21,8 @@ name='flyteidl/core/catalog.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n\x1b\x66lyteidl/core/catalog.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\"7\n\x12\x43\x61talogArtifactTag\x12\x13\n\x0b\x61rtifact_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"\xd6\x01\n\x0f\x43\x61talogMetadata\x12-\n\ndataset_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12\x37\n\x0c\x61rtifact_tag\x18\x02 \x01(\x0b\x32!.flyteidl.core.CatalogArtifactTag\x12G\n\x15source_task_execution\x18\x03 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierH\x00\x42\x12\n\x10source_execution*\x8d\x01\n\x12\x43\x61talogCacheStatus\x12\x12\n\x0e\x43\x41\x43HE_DISABLED\x10\x00\x12\x0e\n\nCACHE_MISS\x10\x01\x12\r\n\tCACHE_HIT\x10\x02\x12\x13\n\x0f\x43\x41\x43HE_POPULATED\x10\x03\x12\x18\n\x14\x43\x41\x43HE_LOOKUP_FAILURE\x10\x04\x12\x15\n\x11\x43\x41\x43HE_PUT_FAILURE\x10\x05\x42\x32Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n\x1b\x66lyteidl/core/catalog.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\"7\n\x12\x43\x61talogArtifactTag\x12\x13\n\x0b\x61rtifact_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"\xd6\x01\n\x0f\x43\x61talogMetadata\x12-\n\ndataset_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12\x37\n\x0c\x61rtifact_tag\x18\x02 \x01(\x0b\x32!.flyteidl.core.CatalogArtifactTag\x12G\n\x15source_task_execution\x18\x03 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierH\x00\x42\x12\n\x10source_execution*\x8d\x01\n\x12\x43\x61talogCacheStatus\x12\x12\n\x0e\x43\x41\x43HE_DISABLED\x10\x00\x12\x0e\n\nCACHE_MISS\x10\x01\x12\r\n\tCACHE_HIT\x10\x02\x12\x13\n\x0f\x43\x41\x43HE_POPULATED\x10\x03\x12\x18\n\x14\x43\x41\x43HE_LOOKUP_FAILURE\x10\x04\x12\x15\n\x11\x43\x41\x43HE_PUT_FAILURE\x10\x05\x42\x36Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') , dependencies=[flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/core/compiler_pb2.py b/gen/pb_python/flyteidl/core/compiler_pb2.py index be12e6960..960336fdd 100644 --- a/gen/pb_python/flyteidl/core/compiler_pb2.py +++ b/gen/pb_python/flyteidl/core/compiler_pb2.py @@ -21,8 +21,8 @@ name='flyteidl/core/compiler.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n\x1c\x66lyteidl/core/compiler.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x19\x66lyteidl/core/tasks.proto\"\xd4\x02\n\rConnectionSet\x12@\n\ndownstream\x18\x07 \x03(\x0b\x32,.flyteidl.core.ConnectionSet.DownstreamEntry\x12<\n\x08upstream\x18\x08 \x03(\x0b\x32*.flyteidl.core.ConnectionSet.UpstreamEntry\x1a\x15\n\x06IdList\x12\x0b\n\x03ids\x18\x01 \x03(\t\x1aV\n\x0f\x44ownstreamEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x32\n\x05value\x18\x02 \x01(\x0b\x32#.flyteidl.core.ConnectionSet.IdList:\x02\x38\x01\x1aT\n\rUpstreamEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x32\n\x05value\x18\x02 \x01(\x0b\x32#.flyteidl.core.ConnectionSet.IdList:\x02\x38\x01\"x\n\x10\x43ompiledWorkflow\x12\x31\n\x08template\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplate\x12\x31\n\x0b\x63onnections\x18\x02 \x01(\x0b\x32\x1c.flyteidl.core.ConnectionSet\"=\n\x0c\x43ompiledTask\x12-\n\x08template\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplate\"\xaf\x01\n\x17\x43ompiledWorkflowClosure\x12\x30\n\x07primary\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.CompiledWorkflow\x12\x36\n\rsub_workflows\x18\x02 \x03(\x0b\x32\x1f.flyteidl.core.CompiledWorkflow\x12*\n\x05tasks\x18\x03 \x03(\x0b\x32\x1b.flyteidl.core.CompiledTaskB2Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n\x1c\x66lyteidl/core/compiler.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x19\x66lyteidl/core/tasks.proto\"\xd4\x02\n\rConnectionSet\x12@\n\ndownstream\x18\x07 \x03(\x0b\x32,.flyteidl.core.ConnectionSet.DownstreamEntry\x12<\n\x08upstream\x18\x08 \x03(\x0b\x32*.flyteidl.core.ConnectionSet.UpstreamEntry\x1a\x15\n\x06IdList\x12\x0b\n\x03ids\x18\x01 \x03(\t\x1aV\n\x0f\x44ownstreamEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x32\n\x05value\x18\x02 \x01(\x0b\x32#.flyteidl.core.ConnectionSet.IdList:\x02\x38\x01\x1aT\n\rUpstreamEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x32\n\x05value\x18\x02 \x01(\x0b\x32#.flyteidl.core.ConnectionSet.IdList:\x02\x38\x01\"x\n\x10\x43ompiledWorkflow\x12\x31\n\x08template\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplate\x12\x31\n\x0b\x63onnections\x18\x02 \x01(\x0b\x32\x1c.flyteidl.core.ConnectionSet\"=\n\x0c\x43ompiledTask\x12-\n\x08template\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplate\"\xaf\x01\n\x17\x43ompiledWorkflowClosure\x12\x30\n\x07primary\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.CompiledWorkflow\x12\x36\n\rsub_workflows\x18\x02 \x03(\x0b\x32\x1f.flyteidl.core.CompiledWorkflow\x12*\n\x05tasks\x18\x03 \x03(\x0b\x32\x1b.flyteidl.core.CompiledTaskB6Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') , dependencies=[flyteidl_dot_core_dot_workflow__pb2.DESCRIPTOR,flyteidl_dot_core_dot_tasks__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/core/condition_pb2.py b/gen/pb_python/flyteidl/core/condition_pb2.py index 04905f6ea..7964b0bb5 100644 --- a/gen/pb_python/flyteidl/core/condition_pb2.py +++ b/gen/pb_python/flyteidl/core/condition_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/core/condition.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n\x1d\x66lyteidl/core/condition.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/literals.proto\"\xee\x01\n\x14\x43omparisonExpression\x12>\n\x08operator\x18\x01 \x01(\x0e\x32,.flyteidl.core.ComparisonExpression.Operator\x12*\n\nleft_value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.Operand\x12+\n\x0bright_value\x18\x03 \x01(\x0b\x32\x16.flyteidl.core.Operand\"=\n\x08Operator\x12\x06\n\x02\x45Q\x10\x00\x12\x07\n\x03NEQ\x10\x01\x12\x06\n\x02GT\x10\x02\x12\x07\n\x03GTE\x10\x03\x12\x06\n\x02LT\x10\x04\x12\x07\n\x03LTE\x10\x05\"N\n\x07Operand\x12-\n\tprimitive\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.PrimitiveH\x00\x12\r\n\x03var\x18\x02 \x01(\tH\x00\x42\x05\n\x03val\"\x93\x01\n\x11\x42ooleanExpression\x12;\n\x0b\x63onjunction\x18\x01 \x01(\x0b\x32$.flyteidl.core.ConjunctionExpressionH\x00\x12\x39\n\ncomparison\x18\x02 \x01(\x0b\x32#.flyteidl.core.ComparisonExpressionH\x00\x42\x06\n\x04\x65xpr\"\xfa\x01\n\x15\x43onjunctionExpression\x12\x46\n\x08operator\x18\x01 \x01(\x0e\x32\x34.flyteidl.core.ConjunctionExpression.LogicalOperator\x12\x39\n\x0fleft_expression\x18\x02 \x01(\x0b\x32 .flyteidl.core.BooleanExpression\x12:\n\x10right_expression\x18\x03 \x01(\x0b\x32 .flyteidl.core.BooleanExpression\"\"\n\x0fLogicalOperator\x12\x07\n\x03\x41ND\x10\x00\x12\x06\n\x02OR\x10\x01\x42\x32Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n\x1d\x66lyteidl/core/condition.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/literals.proto\"\xee\x01\n\x14\x43omparisonExpression\x12>\n\x08operator\x18\x01 \x01(\x0e\x32,.flyteidl.core.ComparisonExpression.Operator\x12*\n\nleft_value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.Operand\x12+\n\x0bright_value\x18\x03 \x01(\x0b\x32\x16.flyteidl.core.Operand\"=\n\x08Operator\x12\x06\n\x02\x45Q\x10\x00\x12\x07\n\x03NEQ\x10\x01\x12\x06\n\x02GT\x10\x02\x12\x07\n\x03GTE\x10\x03\x12\x06\n\x02LT\x10\x04\x12\x07\n\x03LTE\x10\x05\"N\n\x07Operand\x12-\n\tprimitive\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.PrimitiveH\x00\x12\r\n\x03var\x18\x02 \x01(\tH\x00\x42\x05\n\x03val\"\x93\x01\n\x11\x42ooleanExpression\x12;\n\x0b\x63onjunction\x18\x01 \x01(\x0b\x32$.flyteidl.core.ConjunctionExpressionH\x00\x12\x39\n\ncomparison\x18\x02 \x01(\x0b\x32#.flyteidl.core.ComparisonExpressionH\x00\x42\x06\n\x04\x65xpr\"\xfa\x01\n\x15\x43onjunctionExpression\x12\x46\n\x08operator\x18\x01 \x01(\x0e\x32\x34.flyteidl.core.ConjunctionExpression.LogicalOperator\x12\x39\n\x0fleft_expression\x18\x02 \x01(\x0b\x32 .flyteidl.core.BooleanExpression\x12:\n\x10right_expression\x18\x03 \x01(\x0b\x32 .flyteidl.core.BooleanExpression\"\"\n\x0fLogicalOperator\x12\x07\n\x03\x41ND\x10\x00\x12\x06\n\x02OR\x10\x01\x42\x36Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') , dependencies=[flyteidl_dot_core_dot_literals__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/core/dynamic_job_pb2.py b/gen/pb_python/flyteidl/core/dynamic_job_pb2.py index cad56091a..10cf2c523 100644 --- a/gen/pb_python/flyteidl/core/dynamic_job_pb2.py +++ b/gen/pb_python/flyteidl/core/dynamic_job_pb2.py @@ -22,8 +22,8 @@ name='flyteidl/core/dynamic_job.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n\x1f\x66lyteidl/core/dynamic_job.proto\x12\rflyteidl.core\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x1c\x66lyteidl/core/literals.proto\"\xd7\x01\n\x0e\x44ynamicJobSpec\x12\"\n\x05nodes\x18\x01 \x03(\x0b\x32\x13.flyteidl.core.Node\x12\x15\n\rmin_successes\x18\x02 \x01(\x03\x12\'\n\x07outputs\x18\x03 \x03(\x0b\x32\x16.flyteidl.core.Binding\x12*\n\x05tasks\x18\x04 \x03(\x0b\x32\x1b.flyteidl.core.TaskTemplate\x12\x35\n\x0csubworkflows\x18\x05 \x03(\x0b\x32\x1f.flyteidl.core.WorkflowTemplateB2Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n\x1f\x66lyteidl/core/dynamic_job.proto\x12\rflyteidl.core\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x1c\x66lyteidl/core/literals.proto\"\xd7\x01\n\x0e\x44ynamicJobSpec\x12\"\n\x05nodes\x18\x01 \x03(\x0b\x32\x13.flyteidl.core.Node\x12\x15\n\rmin_successes\x18\x02 \x01(\x03\x12\'\n\x07outputs\x18\x03 \x03(\x0b\x32\x16.flyteidl.core.Binding\x12*\n\x05tasks\x18\x04 \x03(\x0b\x32\x1b.flyteidl.core.TaskTemplate\x12\x35\n\x0csubworkflows\x18\x05 \x03(\x0b\x32\x1f.flyteidl.core.WorkflowTemplateB6Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') , dependencies=[flyteidl_dot_core_dot_tasks__pb2.DESCRIPTOR,flyteidl_dot_core_dot_workflow__pb2.DESCRIPTOR,flyteidl_dot_core_dot_literals__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/core/errors_pb2.py b/gen/pb_python/flyteidl/core/errors_pb2.py index e07691872..4bb92e22a 100644 --- a/gen/pb_python/flyteidl/core/errors_pb2.py +++ b/gen/pb_python/flyteidl/core/errors_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/core/errors.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n\x1a\x66lyteidl/core/errors.proto\x12\rflyteidl.core\x1a\x1d\x66lyteidl/core/execution.proto\"\xc8\x01\n\x0e\x43ontainerError\x12\x0c\n\x04\x63ode\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t\x12\x30\n\x04kind\x18\x03 \x01(\x0e\x32\".flyteidl.core.ContainerError.Kind\x12\x37\n\x06origin\x18\x04 \x01(\x0e\x32\'.flyteidl.core.ExecutionError.ErrorKind\",\n\x04Kind\x12\x13\n\x0fNON_RECOVERABLE\x10\x00\x12\x0f\n\x0bRECOVERABLE\x10\x01\"=\n\rErrorDocument\x12,\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x1d.flyteidl.core.ContainerErrorB2Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n\x1a\x66lyteidl/core/errors.proto\x12\rflyteidl.core\x1a\x1d\x66lyteidl/core/execution.proto\"\xc8\x01\n\x0e\x43ontainerError\x12\x0c\n\x04\x63ode\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t\x12\x30\n\x04kind\x18\x03 \x01(\x0e\x32\".flyteidl.core.ContainerError.Kind\x12\x37\n\x06origin\x18\x04 \x01(\x0e\x32\'.flyteidl.core.ExecutionError.ErrorKind\",\n\x04Kind\x12\x13\n\x0fNON_RECOVERABLE\x10\x00\x12\x0f\n\x0bRECOVERABLE\x10\x01\"=\n\rErrorDocument\x12,\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x1d.flyteidl.core.ContainerErrorB6Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') , dependencies=[flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/core/execution_pb2.py b/gen/pb_python/flyteidl/core/execution_pb2.py index 51debef68..08a82a475 100644 --- a/gen/pb_python/flyteidl/core/execution_pb2.py +++ b/gen/pb_python/flyteidl/core/execution_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/core/execution.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n\x1d\x66lyteidl/core/execution.proto\x12\rflyteidl.core\x1a\x1egoogle/protobuf/duration.proto\"\x99\x01\n\x11WorkflowExecution\"\x83\x01\n\x05Phase\x12\r\n\tUNDEFINED\x10\x00\x12\n\n\x06QUEUED\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\x0e\n\nSUCCEEDING\x10\x03\x12\r\n\tSUCCEEDED\x10\x04\x12\x0b\n\x07\x46\x41ILING\x10\x05\x12\n\n\x06\x46\x41ILED\x10\x06\x12\x0b\n\x07\x41\x42ORTED\x10\x07\x12\r\n\tTIMED_OUT\x10\x08\"\x92\x01\n\rNodeExecution\"\x80\x01\n\x05Phase\x12\r\n\tUNDEFINED\x10\x00\x12\n\n\x06QUEUED\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\r\n\tSUCCEEDED\x10\x03\x12\x0b\n\x07\x46\x41ILING\x10\x04\x12\n\n\x06\x46\x41ILED\x10\x05\x12\x0b\n\x07\x41\x42ORTED\x10\x06\x12\x0b\n\x07SKIPPED\x10\x07\x12\r\n\tTIMED_OUT\x10\x08\"\x96\x01\n\rTaskExecution\"\x84\x01\n\x05Phase\x12\r\n\tUNDEFINED\x10\x00\x12\n\n\x06QUEUED\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\r\n\tSUCCEEDED\x10\x03\x12\x0b\n\x07\x41\x42ORTED\x10\x04\x12\n\n\x06\x46\x41ILED\x10\x05\x12\x10\n\x0cINITIALIZING\x10\x06\x12\x19\n\x15WAITING_FOR_RESOURCES\x10\x07\"\xa9\x01\n\x0e\x45xecutionError\x12\x0c\n\x04\x63ode\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t\x12\x11\n\terror_uri\x18\x03 \x01(\t\x12\x35\n\x04kind\x18\x04 \x01(\x0e\x32\'.flyteidl.core.ExecutionError.ErrorKind\".\n\tErrorKind\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x08\n\x04USER\x10\x01\x12\n\n\x06SYSTEM\x10\x02\"\xbb\x01\n\x07TaskLog\x12\x0b\n\x03uri\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12<\n\x0emessage_format\x18\x03 \x01(\x0e\x32$.flyteidl.core.TaskLog.MessageFormat\x12&\n\x03ttl\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration\"/\n\rMessageFormat\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03\x43SV\x10\x01\x12\x08\n\x04JSON\x10\x02\"J\n\x14QualityOfServiceSpec\x12\x32\n\x0fqueueing_budget\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\"\xc2\x01\n\x10QualityOfService\x12\x34\n\x04tier\x18\x01 \x01(\x0e\x32$.flyteidl.core.QualityOfService.TierH\x00\x12\x33\n\x04spec\x18\x02 \x01(\x0b\x32#.flyteidl.core.QualityOfServiceSpecH\x00\"4\n\x04Tier\x12\r\n\tUNDEFINED\x10\x00\x12\x08\n\x04HIGH\x10\x01\x12\n\n\x06MEDIUM\x10\x02\x12\x07\n\x03LOW\x10\x03\x42\r\n\x0b\x64\x65signationB2Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n\x1d\x66lyteidl/core/execution.proto\x12\rflyteidl.core\x1a\x1egoogle/protobuf/duration.proto\"\x99\x01\n\x11WorkflowExecution\"\x83\x01\n\x05Phase\x12\r\n\tUNDEFINED\x10\x00\x12\n\n\x06QUEUED\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\x0e\n\nSUCCEEDING\x10\x03\x12\r\n\tSUCCEEDED\x10\x04\x12\x0b\n\x07\x46\x41ILING\x10\x05\x12\n\n\x06\x46\x41ILED\x10\x06\x12\x0b\n\x07\x41\x42ORTED\x10\x07\x12\r\n\tTIMED_OUT\x10\x08\"\x92\x01\n\rNodeExecution\"\x80\x01\n\x05Phase\x12\r\n\tUNDEFINED\x10\x00\x12\n\n\x06QUEUED\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\r\n\tSUCCEEDED\x10\x03\x12\x0b\n\x07\x46\x41ILING\x10\x04\x12\n\n\x06\x46\x41ILED\x10\x05\x12\x0b\n\x07\x41\x42ORTED\x10\x06\x12\x0b\n\x07SKIPPED\x10\x07\x12\r\n\tTIMED_OUT\x10\x08\"\x96\x01\n\rTaskExecution\"\x84\x01\n\x05Phase\x12\r\n\tUNDEFINED\x10\x00\x12\n\n\x06QUEUED\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\r\n\tSUCCEEDED\x10\x03\x12\x0b\n\x07\x41\x42ORTED\x10\x04\x12\n\n\x06\x46\x41ILED\x10\x05\x12\x10\n\x0cINITIALIZING\x10\x06\x12\x19\n\x15WAITING_FOR_RESOURCES\x10\x07\"\xa9\x01\n\x0e\x45xecutionError\x12\x0c\n\x04\x63ode\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t\x12\x11\n\terror_uri\x18\x03 \x01(\t\x12\x35\n\x04kind\x18\x04 \x01(\x0e\x32\'.flyteidl.core.ExecutionError.ErrorKind\".\n\tErrorKind\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x08\n\x04USER\x10\x01\x12\n\n\x06SYSTEM\x10\x02\"\xbb\x01\n\x07TaskLog\x12\x0b\n\x03uri\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12<\n\x0emessage_format\x18\x03 \x01(\x0e\x32$.flyteidl.core.TaskLog.MessageFormat\x12&\n\x03ttl\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration\"/\n\rMessageFormat\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03\x43SV\x10\x01\x12\x08\n\x04JSON\x10\x02\"J\n\x14QualityOfServiceSpec\x12\x32\n\x0fqueueing_budget\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\"\xc2\x01\n\x10QualityOfService\x12\x34\n\x04tier\x18\x01 \x01(\x0e\x32$.flyteidl.core.QualityOfService.TierH\x00\x12\x33\n\x04spec\x18\x02 \x01(\x0b\x32#.flyteidl.core.QualityOfServiceSpecH\x00\"4\n\x04Tier\x12\r\n\tUNDEFINED\x10\x00\x12\x08\n\x04HIGH\x10\x01\x12\n\n\x06MEDIUM\x10\x02\x12\x07\n\x03LOW\x10\x03\x42\r\n\x0b\x64\x65signationB6Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') , dependencies=[google_dot_protobuf_dot_duration__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/core/identifier_pb2.py b/gen/pb_python/flyteidl/core/identifier_pb2.py index efbdb740f..ab9eb0ec2 100644 --- a/gen/pb_python/flyteidl/core/identifier_pb2.py +++ b/gen/pb_python/flyteidl/core/identifier_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/core/identifier.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n\x1e\x66lyteidl/core/identifier.proto\x12\rflyteidl.core\"\x80\x01\n\nIdentifier\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x0f\n\x07project\x18\x02 \x01(\t\x12\x0e\n\x06\x64omain\x18\x03 \x01(\t\x12\x0c\n\x04name\x18\x04 \x01(\t\x12\x0f\n\x07version\x18\x05 \x01(\t\"L\n\x1bWorkflowExecutionIdentifier\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x04 \x01(\t\"l\n\x17NodeExecutionIdentifier\x12\x0f\n\x07node_id\x18\x01 \x01(\t\x12@\n\x0c\x65xecution_id\x18\x02 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\"\x9f\x01\n\x17TaskExecutionIdentifier\x12*\n\x07task_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12\x41\n\x11node_execution_id\x18\x02 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\x12\x15\n\rretry_attempt\x18\x03 \x01(\r*U\n\x0cResourceType\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x08\n\x04TASK\x10\x01\x12\x0c\n\x08WORKFLOW\x10\x02\x12\x0f\n\x0bLAUNCH_PLAN\x10\x03\x12\x0b\n\x07\x44\x41TASET\x10\x04\x42\x32Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n\x1e\x66lyteidl/core/identifier.proto\x12\rflyteidl.core\"\x80\x01\n\nIdentifier\x12\x32\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceType\x12\x0f\n\x07project\x18\x02 \x01(\t\x12\x0e\n\x06\x64omain\x18\x03 \x01(\t\x12\x0c\n\x04name\x18\x04 \x01(\t\x12\x0f\n\x07version\x18\x05 \x01(\t\"L\n\x1bWorkflowExecutionIdentifier\x12\x0f\n\x07project\x18\x01 \x01(\t\x12\x0e\n\x06\x64omain\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x04 \x01(\t\"l\n\x17NodeExecutionIdentifier\x12\x0f\n\x07node_id\x18\x01 \x01(\t\x12@\n\x0c\x65xecution_id\x18\x02 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\"\x9f\x01\n\x17TaskExecutionIdentifier\x12*\n\x07task_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12\x41\n\x11node_execution_id\x18\x02 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\x12\x15\n\rretry_attempt\x18\x03 \x01(\r*U\n\x0cResourceType\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x08\n\x04TASK\x10\x01\x12\x0c\n\x08WORKFLOW\x10\x02\x12\x0f\n\x0bLAUNCH_PLAN\x10\x03\x12\x0b\n\x07\x44\x41TASET\x10\x04\x42\x36Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') ) _RESOURCETYPE = _descriptor.EnumDescriptor( diff --git a/gen/pb_python/flyteidl/core/interface_pb2.py b/gen/pb_python/flyteidl/core/interface_pb2.py index 9563e07b6..2fd7096c2 100644 --- a/gen/pb_python/flyteidl/core/interface_pb2.py +++ b/gen/pb_python/flyteidl/core/interface_pb2.py @@ -21,8 +21,8 @@ name='flyteidl/core/interface.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n\x1d\x66lyteidl/core/interface.proto\x12\rflyteidl.core\x1a\x19\x66lyteidl/core/types.proto\x1a\x1c\x66lyteidl/core/literals.proto\"I\n\x08Variable\x12(\n\x04type\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.LiteralType\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\"\x96\x01\n\x0bVariableMap\x12<\n\tvariables\x18\x01 \x03(\x0b\x32).flyteidl.core.VariableMap.VariablesEntry\x1aI\n\x0eVariablesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12&\n\x05value\x18\x02 \x01(\x0b\x32\x17.flyteidl.core.Variable:\x02\x38\x01\"i\n\x0eTypedInterface\x12*\n\x06inputs\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.VariableMap\x12+\n\x07outputs\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.VariableMap\"|\n\tParameter\x12$\n\x03var\x18\x01 \x01(\x0b\x32\x17.flyteidl.core.Variable\x12)\n\x07\x64\x65\x66\x61ult\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.LiteralH\x00\x12\x12\n\x08required\x18\x03 \x01(\x08H\x00\x42\n\n\x08\x62\x65havior\"\x9c\x01\n\x0cParameterMap\x12?\n\nparameters\x18\x01 \x03(\x0b\x32+.flyteidl.core.ParameterMap.ParametersEntry\x1aK\n\x0fParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\'\n\x05value\x18\x02 \x01(\x0b\x32\x18.flyteidl.core.Parameter:\x02\x38\x01\x42\x32Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n\x1d\x66lyteidl/core/interface.proto\x12\rflyteidl.core\x1a\x19\x66lyteidl/core/types.proto\x1a\x1c\x66lyteidl/core/literals.proto\"I\n\x08Variable\x12(\n\x04type\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.LiteralType\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\"\x96\x01\n\x0bVariableMap\x12<\n\tvariables\x18\x01 \x03(\x0b\x32).flyteidl.core.VariableMap.VariablesEntry\x1aI\n\x0eVariablesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12&\n\x05value\x18\x02 \x01(\x0b\x32\x17.flyteidl.core.Variable:\x02\x38\x01\"i\n\x0eTypedInterface\x12*\n\x06inputs\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.VariableMap\x12+\n\x07outputs\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.VariableMap\"|\n\tParameter\x12$\n\x03var\x18\x01 \x01(\x0b\x32\x17.flyteidl.core.Variable\x12)\n\x07\x64\x65\x66\x61ult\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.LiteralH\x00\x12\x12\n\x08required\x18\x03 \x01(\x08H\x00\x42\n\n\x08\x62\x65havior\"\x9c\x01\n\x0cParameterMap\x12?\n\nparameters\x18\x01 \x03(\x0b\x32+.flyteidl.core.ParameterMap.ParametersEntry\x1aK\n\x0fParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\'\n\x05value\x18\x02 \x01(\x0b\x32\x18.flyteidl.core.Parameter:\x02\x38\x01\x42\x36Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') , dependencies=[flyteidl_dot_core_dot_types__pb2.DESCRIPTOR,flyteidl_dot_core_dot_literals__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/core/literals_pb2.py b/gen/pb_python/flyteidl/core/literals_pb2.py index 0b5f40656..c8cfae16e 100644 --- a/gen/pb_python/flyteidl/core/literals_pb2.py +++ b/gen/pb_python/flyteidl/core/literals_pb2.py @@ -23,8 +23,8 @@ name='flyteidl/core/literals.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n\x1c\x66lyteidl/core/literals.proto\x12\rflyteidl.core\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x19\x66lyteidl/core/types.proto\"\xc8\x01\n\tPrimitive\x12\x11\n\x07integer\x18\x01 \x01(\x03H\x00\x12\x15\n\x0b\x66loat_value\x18\x02 \x01(\x01H\x00\x12\x16\n\x0cstring_value\x18\x03 \x01(\tH\x00\x12\x11\n\x07\x62oolean\x18\x04 \x01(\x08H\x00\x12.\n\x08\x64\x61tetime\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x12-\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.DurationH\x00\x42\x07\n\x05value\"\x06\n\x04Void\"B\n\x04\x42lob\x12-\n\x08metadata\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.BlobMetadata\x12\x0b\n\x03uri\x18\x03 \x01(\t\"5\n\x0c\x42lobMetadata\x12%\n\x04type\x18\x01 \x01(\x0b\x32\x17.flyteidl.core.BlobType\"$\n\x06\x42inary\x12\r\n\x05value\x18\x01 \x01(\x0c\x12\x0b\n\x03tag\x18\x02 \x01(\t\">\n\x06Schema\x12\x0b\n\x03uri\x18\x01 \x01(\t\x12\'\n\x04type\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.SchemaType\"\xb4\x02\n\x06Scalar\x12-\n\tprimitive\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.PrimitiveH\x00\x12#\n\x04\x62lob\x18\x02 \x01(\x0b\x32\x13.flyteidl.core.BlobH\x00\x12\'\n\x06\x62inary\x18\x03 \x01(\x0b\x32\x15.flyteidl.core.BinaryH\x00\x12\'\n\x06schema\x18\x04 \x01(\x0b\x32\x15.flyteidl.core.SchemaH\x00\x12(\n\tnone_type\x18\x05 \x01(\x0b\x32\x13.flyteidl.core.VoidH\x00\x12%\n\x05\x65rror\x18\x06 \x01(\x0b\x32\x14.flyteidl.core.ErrorH\x00\x12*\n\x07generic\x18\x07 \x01(\x0b\x32\x17.google.protobuf.StructH\x00\x42\x07\n\x05value\"\x9d\x01\n\x07Literal\x12\'\n\x06scalar\x18\x01 \x01(\x0b\x32\x15.flyteidl.core.ScalarH\x00\x12\x36\n\ncollection\x18\x02 \x01(\x0b\x32 .flyteidl.core.LiteralCollectionH\x00\x12(\n\x03map\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00\x42\x07\n\x05value\"=\n\x11LiteralCollection\x12(\n\x08literals\x18\x01 \x03(\x0b\x32\x16.flyteidl.core.Literal\"\x90\x01\n\nLiteralMap\x12\x39\n\x08literals\x18\x01 \x03(\x0b\x32\'.flyteidl.core.LiteralMap.LiteralsEntry\x1aG\n\rLiteralsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12%\n\x05value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.Literal:\x02\x38\x01\"E\n\x15\x42indingDataCollection\x12,\n\x08\x62indings\x18\x01 \x03(\x0b\x32\x1a.flyteidl.core.BindingData\"\x9c\x01\n\x0e\x42indingDataMap\x12=\n\x08\x62indings\x18\x01 \x03(\x0b\x32+.flyteidl.core.BindingDataMap.BindingsEntry\x1aK\n\rBindingsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.BindingData:\x02\x38\x01\"\xdc\x01\n\x0b\x42indingData\x12\'\n\x06scalar\x18\x01 \x01(\x0b\x32\x15.flyteidl.core.ScalarH\x00\x12:\n\ncollection\x18\x02 \x01(\x0b\x32$.flyteidl.core.BindingDataCollectionH\x00\x12\x31\n\x07promise\x18\x03 \x01(\x0b\x32\x1e.flyteidl.core.OutputReferenceH\x00\x12,\n\x03map\x18\x04 \x01(\x0b\x32\x1d.flyteidl.core.BindingDataMapH\x00\x42\x07\n\x05value\"C\n\x07\x42inding\x12\x0b\n\x03var\x18\x01 \x01(\t\x12+\n\x07\x62inding\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.BindingData\"*\n\x0cKeyValuePair\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t\" \n\rRetryStrategy\x12\x0f\n\x07retries\x18\x05 \x01(\rB2Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n\x1c\x66lyteidl/core/literals.proto\x12\rflyteidl.core\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x19\x66lyteidl/core/types.proto\"\xc8\x01\n\tPrimitive\x12\x11\n\x07integer\x18\x01 \x01(\x03H\x00\x12\x15\n\x0b\x66loat_value\x18\x02 \x01(\x01H\x00\x12\x16\n\x0cstring_value\x18\x03 \x01(\tH\x00\x12\x11\n\x07\x62oolean\x18\x04 \x01(\x08H\x00\x12.\n\x08\x64\x61tetime\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x12-\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.DurationH\x00\x42\x07\n\x05value\"\x06\n\x04Void\"B\n\x04\x42lob\x12-\n\x08metadata\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.BlobMetadata\x12\x0b\n\x03uri\x18\x03 \x01(\t\"5\n\x0c\x42lobMetadata\x12%\n\x04type\x18\x01 \x01(\x0b\x32\x17.flyteidl.core.BlobType\"$\n\x06\x42inary\x12\r\n\x05value\x18\x01 \x01(\x0c\x12\x0b\n\x03tag\x18\x02 \x01(\t\">\n\x06Schema\x12\x0b\n\x03uri\x18\x01 \x01(\t\x12\'\n\x04type\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.SchemaType\"\xb4\x02\n\x06Scalar\x12-\n\tprimitive\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.PrimitiveH\x00\x12#\n\x04\x62lob\x18\x02 \x01(\x0b\x32\x13.flyteidl.core.BlobH\x00\x12\'\n\x06\x62inary\x18\x03 \x01(\x0b\x32\x15.flyteidl.core.BinaryH\x00\x12\'\n\x06schema\x18\x04 \x01(\x0b\x32\x15.flyteidl.core.SchemaH\x00\x12(\n\tnone_type\x18\x05 \x01(\x0b\x32\x13.flyteidl.core.VoidH\x00\x12%\n\x05\x65rror\x18\x06 \x01(\x0b\x32\x14.flyteidl.core.ErrorH\x00\x12*\n\x07generic\x18\x07 \x01(\x0b\x32\x17.google.protobuf.StructH\x00\x42\x07\n\x05value\"\x9d\x01\n\x07Literal\x12\'\n\x06scalar\x18\x01 \x01(\x0b\x32\x15.flyteidl.core.ScalarH\x00\x12\x36\n\ncollection\x18\x02 \x01(\x0b\x32 .flyteidl.core.LiteralCollectionH\x00\x12(\n\x03map\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00\x42\x07\n\x05value\"=\n\x11LiteralCollection\x12(\n\x08literals\x18\x01 \x03(\x0b\x32\x16.flyteidl.core.Literal\"\x90\x01\n\nLiteralMap\x12\x39\n\x08literals\x18\x01 \x03(\x0b\x32\'.flyteidl.core.LiteralMap.LiteralsEntry\x1aG\n\rLiteralsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12%\n\x05value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.Literal:\x02\x38\x01\"E\n\x15\x42indingDataCollection\x12,\n\x08\x62indings\x18\x01 \x03(\x0b\x32\x1a.flyteidl.core.BindingData\"\x9c\x01\n\x0e\x42indingDataMap\x12=\n\x08\x62indings\x18\x01 \x03(\x0b\x32+.flyteidl.core.BindingDataMap.BindingsEntry\x1aK\n\rBindingsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.BindingData:\x02\x38\x01\"\xdc\x01\n\x0b\x42indingData\x12\'\n\x06scalar\x18\x01 \x01(\x0b\x32\x15.flyteidl.core.ScalarH\x00\x12:\n\ncollection\x18\x02 \x01(\x0b\x32$.flyteidl.core.BindingDataCollectionH\x00\x12\x31\n\x07promise\x18\x03 \x01(\x0b\x32\x1e.flyteidl.core.OutputReferenceH\x00\x12,\n\x03map\x18\x04 \x01(\x0b\x32\x1d.flyteidl.core.BindingDataMapH\x00\x42\x07\n\x05value\"C\n\x07\x42inding\x12\x0b\n\x03var\x18\x01 \x01(\t\x12+\n\x07\x62inding\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.BindingData\"*\n\x0cKeyValuePair\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t\" \n\rRetryStrategy\x12\x0f\n\x07retries\x18\x05 \x01(\rB6Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') , dependencies=[google_dot_protobuf_dot_timestamp__pb2.DESCRIPTOR,google_dot_protobuf_dot_duration__pb2.DESCRIPTOR,google_dot_protobuf_dot_struct__pb2.DESCRIPTOR,flyteidl_dot_core_dot_types__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/core/tasks_pb2.py b/gen/pb_python/flyteidl/core/tasks_pb2.py index 1d203b460..cef976c7c 100644 --- a/gen/pb_python/flyteidl/core/tasks_pb2.py +++ b/gen/pb_python/flyteidl/core/tasks_pb2.py @@ -24,8 +24,8 @@ name='flyteidl/core/tasks.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n\x19\x66lyteidl/core/tasks.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x9a\x02\n\tResources\x12\x38\n\x08requests\x18\x01 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntry\x12\x36\n\x06limits\x18\x02 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntry\x1aS\n\rResourceEntry\x12\x33\n\x04name\x18\x01 \x01(\x0e\x32%.flyteidl.core.Resources.ResourceName\x12\r\n\x05value\x18\x02 \x01(\t\"F\n\x0cResourceName\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03\x43PU\x10\x01\x12\x07\n\x03GPU\x10\x02\x12\n\n\x06MEMORY\x10\x03\x12\x0b\n\x07STORAGE\x10\x04\"\x95\x01\n\x0fRuntimeMetadata\x12\x38\n\x04type\x18\x01 \x01(\x0e\x32*.flyteidl.core.RuntimeMetadata.RuntimeType\x12\x0f\n\x07version\x18\x02 \x01(\t\x12\x0e\n\x06\x66lavor\x18\x03 \x01(\t\"\'\n\x0bRuntimeType\x12\t\n\x05OTHER\x10\x00\x12\r\n\tFLYTE_SDK\x10\x01\"\x9d\x02\n\x0cTaskMetadata\x12\x14\n\x0c\x64iscoverable\x18\x01 \x01(\x08\x12/\n\x07runtime\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.RuntimeMetadata\x12*\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration\x12-\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategy\x12\x19\n\x11\x64iscovery_version\x18\x06 \x01(\t\x12 \n\x18\x64\x65precated_error_message\x18\x07 \x01(\t\x12\x17\n\rinterruptible\x18\x08 \x01(\x08H\x00\x42\x15\n\x13interruptible_value\"\xa1\x02\n\x0cTaskTemplate\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12\x0c\n\x04type\x18\x02 \x01(\t\x12-\n\x08metadata\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.TaskMetadata\x12\x30\n\tinterface\x18\x04 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterface\x12\'\n\x06\x63ustom\x18\x05 \x01(\x0b\x32\x17.google.protobuf.Struct\x12-\n\tcontainer\x18\x06 \x01(\x0b\x32\x18.flyteidl.core.ContainerH\x00\x12\x19\n\x11task_type_version\x18\x07 \x01(\x05\x42\x08\n\x06target\"\'\n\rContainerPort\x12\x16\n\x0e\x63ontainer_port\x18\x01 \x01(\r\"\xa1\x02\n\tContainer\x12\r\n\x05image\x18\x01 \x01(\t\x12\x0f\n\x07\x63ommand\x18\x02 \x03(\t\x12\x0c\n\x04\x61rgs\x18\x03 \x03(\t\x12+\n\tresources\x18\x04 \x01(\x0b\x32\x18.flyteidl.core.Resources\x12(\n\x03\x65nv\x18\x05 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePair\x12+\n\x06\x63onfig\x18\x06 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePair\x12+\n\x05ports\x18\x07 \x03(\x0b\x32\x1c.flyteidl.core.ContainerPort\x12\x35\n\x0b\x64\x61ta_config\x18\t \x01(\x0b\x32 .flyteidl.core.DataLoadingConfig\"\x9b\x02\n\nIOStrategy\x12=\n\rdownload_mode\x18\x01 \x01(\x0e\x32&.flyteidl.core.IOStrategy.DownloadMode\x12\x39\n\x0bupload_mode\x18\x02 \x01(\x0e\x32$.flyteidl.core.IOStrategy.UploadMode\"L\n\x0c\x44ownloadMode\x12\x12\n\x0e\x44OWNLOAD_EAGER\x10\x00\x12\x13\n\x0f\x44OWNLOAD_STREAM\x10\x01\x12\x13\n\x0f\x44O_NOT_DOWNLOAD\x10\x02\"E\n\nUploadMode\x12\x12\n\x0eUPLOAD_ON_EXIT\x10\x00\x12\x10\n\x0cUPLOAD_EAGER\x10\x01\x12\x11\n\rDO_NOT_UPLOAD\x10\x02\"\xf3\x01\n\x11\x44\x61taLoadingConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x12\n\ninput_path\x18\x02 \x01(\t\x12\x13\n\x0boutput_path\x18\x03 \x01(\t\x12\x41\n\x06\x66ormat\x18\x04 \x01(\x0e\x32\x31.flyteidl.core.DataLoadingConfig.LiteralMapFormat\x12.\n\x0bio_strategy\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.IOStrategy\"1\n\x10LiteralMapFormat\x12\x08\n\x04JSON\x10\x00\x12\x08\n\x04YAML\x10\x01\x12\t\n\x05PROTO\x10\x02\x42\x32Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n\x19\x66lyteidl/core/tasks.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x9a\x02\n\tResources\x12\x38\n\x08requests\x18\x01 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntry\x12\x36\n\x06limits\x18\x02 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntry\x1aS\n\rResourceEntry\x12\x33\n\x04name\x18\x01 \x01(\x0e\x32%.flyteidl.core.Resources.ResourceName\x12\r\n\x05value\x18\x02 \x01(\t\"F\n\x0cResourceName\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03\x43PU\x10\x01\x12\x07\n\x03GPU\x10\x02\x12\n\n\x06MEMORY\x10\x03\x12\x0b\n\x07STORAGE\x10\x04\"\x95\x01\n\x0fRuntimeMetadata\x12\x38\n\x04type\x18\x01 \x01(\x0e\x32*.flyteidl.core.RuntimeMetadata.RuntimeType\x12\x0f\n\x07version\x18\x02 \x01(\t\x12\x0e\n\x06\x66lavor\x18\x03 \x01(\t\"\'\n\x0bRuntimeType\x12\t\n\x05OTHER\x10\x00\x12\r\n\tFLYTE_SDK\x10\x01\"\x9d\x02\n\x0cTaskMetadata\x12\x14\n\x0c\x64iscoverable\x18\x01 \x01(\x08\x12/\n\x07runtime\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.RuntimeMetadata\x12*\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration\x12-\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategy\x12\x19\n\x11\x64iscovery_version\x18\x06 \x01(\t\x12 \n\x18\x64\x65precated_error_message\x18\x07 \x01(\t\x12\x17\n\rinterruptible\x18\x08 \x01(\x08H\x00\x42\x15\n\x13interruptible_value\"\xa1\x02\n\x0cTaskTemplate\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12\x0c\n\x04type\x18\x02 \x01(\t\x12-\n\x08metadata\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.TaskMetadata\x12\x30\n\tinterface\x18\x04 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterface\x12\'\n\x06\x63ustom\x18\x05 \x01(\x0b\x32\x17.google.protobuf.Struct\x12-\n\tcontainer\x18\x06 \x01(\x0b\x32\x18.flyteidl.core.ContainerH\x00\x12\x19\n\x11task_type_version\x18\x07 \x01(\x05\x42\x08\n\x06target\"\'\n\rContainerPort\x12\x16\n\x0e\x63ontainer_port\x18\x01 \x01(\r\"\xa1\x02\n\tContainer\x12\r\n\x05image\x18\x01 \x01(\t\x12\x0f\n\x07\x63ommand\x18\x02 \x03(\t\x12\x0c\n\x04\x61rgs\x18\x03 \x03(\t\x12+\n\tresources\x18\x04 \x01(\x0b\x32\x18.flyteidl.core.Resources\x12(\n\x03\x65nv\x18\x05 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePair\x12+\n\x06\x63onfig\x18\x06 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePair\x12+\n\x05ports\x18\x07 \x03(\x0b\x32\x1c.flyteidl.core.ContainerPort\x12\x35\n\x0b\x64\x61ta_config\x18\t \x01(\x0b\x32 .flyteidl.core.DataLoadingConfig\"\x9b\x02\n\nIOStrategy\x12=\n\rdownload_mode\x18\x01 \x01(\x0e\x32&.flyteidl.core.IOStrategy.DownloadMode\x12\x39\n\x0bupload_mode\x18\x02 \x01(\x0e\x32$.flyteidl.core.IOStrategy.UploadMode\"L\n\x0c\x44ownloadMode\x12\x12\n\x0e\x44OWNLOAD_EAGER\x10\x00\x12\x13\n\x0f\x44OWNLOAD_STREAM\x10\x01\x12\x13\n\x0f\x44O_NOT_DOWNLOAD\x10\x02\"E\n\nUploadMode\x12\x12\n\x0eUPLOAD_ON_EXIT\x10\x00\x12\x10\n\x0cUPLOAD_EAGER\x10\x01\x12\x11\n\rDO_NOT_UPLOAD\x10\x02\"\xf3\x01\n\x11\x44\x61taLoadingConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x12\n\ninput_path\x18\x02 \x01(\t\x12\x13\n\x0boutput_path\x18\x03 \x01(\t\x12\x41\n\x06\x66ormat\x18\x04 \x01(\x0e\x32\x31.flyteidl.core.DataLoadingConfig.LiteralMapFormat\x12.\n\x0bio_strategy\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.IOStrategy\"1\n\x10LiteralMapFormat\x12\x08\n\x04JSON\x10\x00\x12\x08\n\x04YAML\x10\x01\x12\t\n\x05PROTO\x10\x02\x42\x36Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') , dependencies=[flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,flyteidl_dot_core_dot_interface__pb2.DESCRIPTOR,flyteidl_dot_core_dot_literals__pb2.DESCRIPTOR,google_dot_protobuf_dot_duration__pb2.DESCRIPTOR,google_dot_protobuf_dot_struct__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/core/types_pb2.py b/gen/pb_python/flyteidl/core/types_pb2.py index 745b4a67c..3ffa9f4f7 100644 --- a/gen/pb_python/flyteidl/core/types_pb2.py +++ b/gen/pb_python/flyteidl/core/types_pb2.py @@ -21,8 +21,8 @@ name='flyteidl/core/types.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n\x19\x66lyteidl/core/types.proto\x12\rflyteidl.core\x1a\x1cgoogle/protobuf/struct.proto\"\x8c\x02\n\nSchemaType\x12\x37\n\x07\x63olumns\x18\x03 \x03(\x0b\x32&.flyteidl.core.SchemaType.SchemaColumn\x1a\xc4\x01\n\x0cSchemaColumn\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x45\n\x04type\x18\x02 \x01(\x0e\x32\x37.flyteidl.core.SchemaType.SchemaColumn.SchemaColumnType\"_\n\x10SchemaColumnType\x12\x0b\n\x07INTEGER\x10\x00\x12\t\n\x05\x46LOAT\x10\x01\x12\n\n\x06STRING\x10\x02\x12\x0b\n\x07\x42OOLEAN\x10\x03\x12\x0c\n\x08\x44\x41TETIME\x10\x04\x12\x0c\n\x08\x44URATION\x10\x05\"\x8f\x01\n\x08\x42lobType\x12\x0e\n\x06\x66ormat\x18\x01 \x01(\t\x12\x42\n\x0e\x64imensionality\x18\x02 \x01(\x0e\x32*.flyteidl.core.BlobType.BlobDimensionality\"/\n\x12\x42lobDimensionality\x12\n\n\x06SINGLE\x10\x00\x12\r\n\tMULTIPART\x10\x01\"\xb0\x02\n\x0bLiteralType\x12+\n\x06simple\x18\x01 \x01(\x0e\x32\x19.flyteidl.core.SimpleTypeH\x00\x12+\n\x06schema\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.SchemaTypeH\x00\x12\x35\n\x0f\x63ollection_type\x18\x03 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeH\x00\x12\x34\n\x0emap_value_type\x18\x04 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeH\x00\x12\'\n\x04\x62lob\x18\x05 \x01(\x0b\x32\x17.flyteidl.core.BlobTypeH\x00\x12)\n\x08metadata\x18\x06 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\n\x04type\"/\n\x0fOutputReference\x12\x0f\n\x07node_id\x18\x01 \x01(\t\x12\x0b\n\x03var\x18\x02 \x01(\t\"0\n\x05\x45rror\x12\x16\n\x0e\x66\x61iled_node_id\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t*\x86\x01\n\nSimpleType\x12\x08\n\x04NONE\x10\x00\x12\x0b\n\x07INTEGER\x10\x01\x12\t\n\x05\x46LOAT\x10\x02\x12\n\n\x06STRING\x10\x03\x12\x0b\n\x07\x42OOLEAN\x10\x04\x12\x0c\n\x08\x44\x41TETIME\x10\x05\x12\x0c\n\x08\x44URATION\x10\x06\x12\n\n\x06\x42INARY\x10\x07\x12\t\n\x05\x45RROR\x10\x08\x12\n\n\x06STRUCT\x10\tB2Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n\x19\x66lyteidl/core/types.proto\x12\rflyteidl.core\x1a\x1cgoogle/protobuf/struct.proto\"\x8c\x02\n\nSchemaType\x12\x37\n\x07\x63olumns\x18\x03 \x03(\x0b\x32&.flyteidl.core.SchemaType.SchemaColumn\x1a\xc4\x01\n\x0cSchemaColumn\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x45\n\x04type\x18\x02 \x01(\x0e\x32\x37.flyteidl.core.SchemaType.SchemaColumn.SchemaColumnType\"_\n\x10SchemaColumnType\x12\x0b\n\x07INTEGER\x10\x00\x12\t\n\x05\x46LOAT\x10\x01\x12\n\n\x06STRING\x10\x02\x12\x0b\n\x07\x42OOLEAN\x10\x03\x12\x0c\n\x08\x44\x41TETIME\x10\x04\x12\x0c\n\x08\x44URATION\x10\x05\"\x8f\x01\n\x08\x42lobType\x12\x0e\n\x06\x66ormat\x18\x01 \x01(\t\x12\x42\n\x0e\x64imensionality\x18\x02 \x01(\x0e\x32*.flyteidl.core.BlobType.BlobDimensionality\"/\n\x12\x42lobDimensionality\x12\n\n\x06SINGLE\x10\x00\x12\r\n\tMULTIPART\x10\x01\"\xb0\x02\n\x0bLiteralType\x12+\n\x06simple\x18\x01 \x01(\x0e\x32\x19.flyteidl.core.SimpleTypeH\x00\x12+\n\x06schema\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.SchemaTypeH\x00\x12\x35\n\x0f\x63ollection_type\x18\x03 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeH\x00\x12\x34\n\x0emap_value_type\x18\x04 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeH\x00\x12\'\n\x04\x62lob\x18\x05 \x01(\x0b\x32\x17.flyteidl.core.BlobTypeH\x00\x12)\n\x08metadata\x18\x06 \x01(\x0b\x32\x17.google.protobuf.StructB\x06\n\x04type\"/\n\x0fOutputReference\x12\x0f\n\x07node_id\x18\x01 \x01(\t\x12\x0b\n\x03var\x18\x02 \x01(\t\"0\n\x05\x45rror\x12\x16\n\x0e\x66\x61iled_node_id\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t*\x86\x01\n\nSimpleType\x12\x08\n\x04NONE\x10\x00\x12\x0b\n\x07INTEGER\x10\x01\x12\t\n\x05\x46LOAT\x10\x02\x12\n\n\x06STRING\x10\x03\x12\x0b\n\x07\x42OOLEAN\x10\x04\x12\x0c\n\x08\x44\x41TETIME\x10\x05\x12\x0c\n\x08\x44URATION\x10\x06\x12\n\n\x06\x42INARY\x10\x07\x12\t\n\x05\x45RROR\x10\x08\x12\n\n\x06STRUCT\x10\tB6Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') , dependencies=[google_dot_protobuf_dot_struct__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/core/workflow_closure_pb2.py b/gen/pb_python/flyteidl/core/workflow_closure_pb2.py index 51bdb9450..8b073429f 100644 --- a/gen/pb_python/flyteidl/core/workflow_closure_pb2.py +++ b/gen/pb_python/flyteidl/core/workflow_closure_pb2.py @@ -21,8 +21,8 @@ name='flyteidl/core/workflow_closure.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n$flyteidl/core/workflow_closure.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x19\x66lyteidl/core/tasks.proto\"p\n\x0fWorkflowClosure\x12\x31\n\x08workflow\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplate\x12*\n\x05tasks\x18\x02 \x03(\x0b\x32\x1b.flyteidl.core.TaskTemplateB2Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n$flyteidl/core/workflow_closure.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x19\x66lyteidl/core/tasks.proto\"p\n\x0fWorkflowClosure\x12\x31\n\x08workflow\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplate\x12*\n\x05tasks\x18\x02 \x03(\x0b\x32\x1b.flyteidl.core.TaskTemplateB6Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') , dependencies=[flyteidl_dot_core_dot_workflow__pb2.DESCRIPTOR,flyteidl_dot_core_dot_tasks__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/core/workflow_pb2.py b/gen/pb_python/flyteidl/core/workflow_pb2.py index 7bcf53935..4f0964aaa 100644 --- a/gen/pb_python/flyteidl/core/workflow_pb2.py +++ b/gen/pb_python/flyteidl/core/workflow_pb2.py @@ -26,8 +26,8 @@ name='flyteidl/core/workflow.proto', package='flyteidl.core', syntax='proto3', - serialized_options=_b('Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/core'), - serialized_pb=_b('\n\x1c\x66lyteidl/core/workflow.proto\x12\rflyteidl.core\x1a\x1d\x66lyteidl/core/condition.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/types.proto\x1a\x1egoogle/protobuf/duration.proto\"f\n\x07IfBlock\x12\x33\n\tcondition\x18\x01 \x01(\x0b\x32 .flyteidl.core.BooleanExpression\x12&\n\tthen_node\x18\x02 \x01(\x0b\x32\x13.flyteidl.core.Node\"\xb6\x01\n\x0bIfElseBlock\x12$\n\x04\x63\x61se\x18\x01 \x01(\x0b\x32\x16.flyteidl.core.IfBlock\x12%\n\x05other\x18\x02 \x03(\x0b\x32\x16.flyteidl.core.IfBlock\x12(\n\telse_node\x18\x03 \x01(\x0b\x32\x13.flyteidl.core.NodeH\x00\x12%\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x14.flyteidl.core.ErrorH\x00\x42\t\n\x07\x64\x65\x66\x61ult\"9\n\nBranchNode\x12+\n\x07if_else\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.IfElseBlock\"J\n\x08TaskNode\x12\x31\n\x0creference_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00\x42\x0b\n\treference\"\x87\x01\n\x0cWorkflowNode\x12\x33\n\x0elaunchplan_ref\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00\x12\x35\n\x10sub_workflow_ref\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00\x42\x0b\n\treference\"\xa7\x01\n\x0cNodeMetadata\x12\x0c\n\x04name\x18\x01 \x01(\t\x12*\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration\x12-\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategy\x12\x17\n\rinterruptible\x18\x06 \x01(\x08H\x00\x42\x15\n\x13interruptible_value\"#\n\x05\x41lias\x12\x0b\n\x03var\x18\x01 \x01(\t\x12\r\n\x05\x61lias\x18\x02 \x01(\t\"\xd2\x02\n\x04Node\x12\n\n\x02id\x18\x01 \x01(\t\x12-\n\x08metadata\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.NodeMetadata\x12&\n\x06inputs\x18\x03 \x03(\x0b\x32\x16.flyteidl.core.Binding\x12\x19\n\x11upstream_node_ids\x18\x04 \x03(\t\x12,\n\x0eoutput_aliases\x18\x05 \x03(\x0b\x32\x14.flyteidl.core.Alias\x12,\n\ttask_node\x18\x06 \x01(\x0b\x32\x17.flyteidl.core.TaskNodeH\x00\x12\x34\n\rworkflow_node\x18\x07 \x01(\x0b\x32\x1b.flyteidl.core.WorkflowNodeH\x00\x12\x30\n\x0b\x62ranch_node\x18\x08 \x01(\x0b\x32\x19.flyteidl.core.BranchNodeH\x00\x42\x08\n\x06target\"\xe7\x01\n\x10WorkflowMetadata\x12;\n\x12quality_of_service\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfService\x12\x43\n\non_failure\x18\x02 \x01(\x0e\x32/.flyteidl.core.WorkflowMetadata.OnFailurePolicy\"Q\n\x0fOnFailurePolicy\x12\x14\n\x10\x46\x41IL_IMMEDIATELY\x10\x00\x12(\n$FAIL_AFTER_EXECUTABLE_NODES_COMPLETE\x10\x01\"1\n\x18WorkflowMetadataDefaults\x12\x15\n\rinterruptible\x18\x01 \x01(\x08\"\xda\x02\n\x10WorkflowTemplate\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12\x31\n\x08metadata\x18\x02 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowMetadata\x12\x30\n\tinterface\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterface\x12\"\n\x05nodes\x18\x04 \x03(\x0b\x32\x13.flyteidl.core.Node\x12\'\n\x07outputs\x18\x05 \x03(\x0b\x32\x16.flyteidl.core.Binding\x12)\n\x0c\x66\x61ilure_node\x18\x06 \x01(\x0b\x32\x13.flyteidl.core.Node\x12\x42\n\x11metadata_defaults\x18\x07 \x01(\x0b\x32\'.flyteidl.core.WorkflowMetadataDefaultsB2Z0github.com/lyft/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') + serialized_options=_b('Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core'), + serialized_pb=_b('\n\x1c\x66lyteidl/core/workflow.proto\x12\rflyteidl.core\x1a\x1d\x66lyteidl/core/condition.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/types.proto\x1a\x1egoogle/protobuf/duration.proto\"f\n\x07IfBlock\x12\x33\n\tcondition\x18\x01 \x01(\x0b\x32 .flyteidl.core.BooleanExpression\x12&\n\tthen_node\x18\x02 \x01(\x0b\x32\x13.flyteidl.core.Node\"\xb6\x01\n\x0bIfElseBlock\x12$\n\x04\x63\x61se\x18\x01 \x01(\x0b\x32\x16.flyteidl.core.IfBlock\x12%\n\x05other\x18\x02 \x03(\x0b\x32\x16.flyteidl.core.IfBlock\x12(\n\telse_node\x18\x03 \x01(\x0b\x32\x13.flyteidl.core.NodeH\x00\x12%\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x14.flyteidl.core.ErrorH\x00\x42\t\n\x07\x64\x65\x66\x61ult\"9\n\nBranchNode\x12+\n\x07if_else\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.IfElseBlock\"J\n\x08TaskNode\x12\x31\n\x0creference_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00\x42\x0b\n\treference\"\x87\x01\n\x0cWorkflowNode\x12\x33\n\x0elaunchplan_ref\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00\x12\x35\n\x10sub_workflow_ref\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00\x42\x0b\n\treference\"\xa7\x01\n\x0cNodeMetadata\x12\x0c\n\x04name\x18\x01 \x01(\t\x12*\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration\x12-\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategy\x12\x17\n\rinterruptible\x18\x06 \x01(\x08H\x00\x42\x15\n\x13interruptible_value\"#\n\x05\x41lias\x12\x0b\n\x03var\x18\x01 \x01(\t\x12\r\n\x05\x61lias\x18\x02 \x01(\t\"\xd2\x02\n\x04Node\x12\n\n\x02id\x18\x01 \x01(\t\x12-\n\x08metadata\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.NodeMetadata\x12&\n\x06inputs\x18\x03 \x03(\x0b\x32\x16.flyteidl.core.Binding\x12\x19\n\x11upstream_node_ids\x18\x04 \x03(\t\x12,\n\x0eoutput_aliases\x18\x05 \x03(\x0b\x32\x14.flyteidl.core.Alias\x12,\n\ttask_node\x18\x06 \x01(\x0b\x32\x17.flyteidl.core.TaskNodeH\x00\x12\x34\n\rworkflow_node\x18\x07 \x01(\x0b\x32\x1b.flyteidl.core.WorkflowNodeH\x00\x12\x30\n\x0b\x62ranch_node\x18\x08 \x01(\x0b\x32\x19.flyteidl.core.BranchNodeH\x00\x42\x08\n\x06target\"\xe7\x01\n\x10WorkflowMetadata\x12;\n\x12quality_of_service\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfService\x12\x43\n\non_failure\x18\x02 \x01(\x0e\x32/.flyteidl.core.WorkflowMetadata.OnFailurePolicy\"Q\n\x0fOnFailurePolicy\x12\x14\n\x10\x46\x41IL_IMMEDIATELY\x10\x00\x12(\n$FAIL_AFTER_EXECUTABLE_NODES_COMPLETE\x10\x01\"1\n\x18WorkflowMetadataDefaults\x12\x15\n\rinterruptible\x18\x01 \x01(\x08\"\xda\x02\n\x10WorkflowTemplate\x12%\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12\x31\n\x08metadata\x18\x02 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowMetadata\x12\x30\n\tinterface\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterface\x12\"\n\x05nodes\x18\x04 \x03(\x0b\x32\x13.flyteidl.core.Node\x12\'\n\x07outputs\x18\x05 \x03(\x0b\x32\x16.flyteidl.core.Binding\x12)\n\x0c\x66\x61ilure_node\x18\x06 \x01(\x0b\x32\x13.flyteidl.core.Node\x12\x42\n\x11metadata_defaults\x18\x07 \x01(\x0b\x32\'.flyteidl.core.WorkflowMetadataDefaultsB6Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/coreb\x06proto3') , dependencies=[flyteidl_dot_core_dot_condition__pb2.DESCRIPTOR,flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,flyteidl_dot_core_dot_interface__pb2.DESCRIPTOR,flyteidl_dot_core_dot_literals__pb2.DESCRIPTOR,flyteidl_dot_core_dot_types__pb2.DESCRIPTOR,google_dot_protobuf_dot_duration__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/event/event_pb2.py b/gen/pb_python/flyteidl/event/event_pb2.py index 834f57b11..573b6fc25 100644 --- a/gen/pb_python/flyteidl/event/event_pb2.py +++ b/gen/pb_python/flyteidl/event/event_pb2.py @@ -24,8 +24,8 @@ name='flyteidl/event/event.proto', package='flyteidl.event', syntax='proto3', - serialized_options=_b('Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/event'), - serialized_pb=_b('\n\x1a\x66lyteidl/event/event.proto\x12\x0e\x66lyteidl.event\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1b\x66lyteidl/core/catalog.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xae\x02\n\x16WorkflowExecutionEvent\x12@\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12\x13\n\x0bproducer_id\x18\x02 \x01(\t\x12\x35\n\x05phase\x18\x03 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.Phase\x12/\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x14\n\noutput_uri\x18\x05 \x01(\tH\x00\x12.\n\x05\x65rror\x18\x06 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00\x42\x0f\n\routput_result\"\x9a\x05\n\x12NodeExecutionEvent\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\x12\x13\n\x0bproducer_id\x18\x02 \x01(\t\x12\x31\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.Phase\x12/\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x11\n\tinput_uri\x18\x05 \x01(\t\x12\x14\n\noutput_uri\x18\x06 \x01(\tH\x00\x12.\n\x05\x65rror\x18\x07 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00\x12\x46\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.event.WorkflowNodeMetadataH\x01\x12>\n\x12task_node_metadata\x18\x0e \x01(\x0b\x32 .flyteidl.event.TaskNodeMetadataH\x01\x12I\n\x14parent_task_metadata\x18\t \x01(\x0b\x32+.flyteidl.event.ParentTaskExecutionMetadata\x12I\n\x14parent_node_metadata\x18\n \x01(\x0b\x32+.flyteidl.event.ParentNodeExecutionMetadata\x12\x13\n\x0bretry_group\x18\x0b \x01(\t\x12\x14\n\x0cspec_node_id\x18\x0c \x01(\t\x12\x11\n\tnode_name\x18\r \x01(\tB\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"X\n\x14WorkflowNodeMetadata\x12@\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\"\x80\x01\n\x10TaskNodeMetadata\x12\x37\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatus\x12\x33\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadata\"Q\n\x1bParentTaskExecutionMetadata\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifier\".\n\x1bParentNodeExecutionMetadata\x12\x0f\n\x07node_id\x18\x01 \x01(\t\"\xa8\x04\n\x12TaskExecutionEvent\x12*\n\x07task_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12H\n\x18parent_node_execution_id\x18\x02 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\x12\x15\n\rretry_attempt\x18\x03 \x01(\r\x12\x31\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.Phase\x12\x13\n\x0bproducer_id\x18\x05 \x01(\t\x12$\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLog\x12/\n\x0boccurred_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x11\n\tinput_uri\x18\x08 \x01(\t\x12\x14\n\noutput_uri\x18\t \x01(\tH\x00\x12.\n\x05\x65rror\x18\n \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00\x12,\n\x0b\x63ustom_info\x18\x0b \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x15\n\rphase_version\x18\x0c \x01(\r\x12\x37\n\x08metadata\x18\x10 \x01(\x0b\x32%.flyteidl.event.TaskExecutionMetadataB\x0f\n\routput_result\"\x95\x01\n\x15TaskExecutionMetadata\x12K\n\x0einstance_class\x18\x10 \x01(\x0e\x32\x33.flyteidl.event.TaskExecutionMetadata.InstanceClass\"/\n\rInstanceClass\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\x11\n\rINTERRUPTIBLE\x10\x01\x42\x33Z1github.com/lyft/flyteidl/gen/pb-go/flyteidl/eventb\x06proto3') + serialized_options=_b('Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event'), + serialized_pb=_b('\n\x1a\x66lyteidl/event/event.proto\x12\x0e\x66lyteidl.event\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1b\x66lyteidl/core/catalog.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xae\x02\n\x16WorkflowExecutionEvent\x12@\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12\x13\n\x0bproducer_id\x18\x02 \x01(\t\x12\x35\n\x05phase\x18\x03 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.Phase\x12/\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x14\n\noutput_uri\x18\x05 \x01(\tH\x00\x12.\n\x05\x65rror\x18\x06 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00\x42\x0f\n\routput_result\"\x9a\x05\n\x12NodeExecutionEvent\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\x12\x13\n\x0bproducer_id\x18\x02 \x01(\t\x12\x31\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.Phase\x12/\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x11\n\tinput_uri\x18\x05 \x01(\t\x12\x14\n\noutput_uri\x18\x06 \x01(\tH\x00\x12.\n\x05\x65rror\x18\x07 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00\x12\x46\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.event.WorkflowNodeMetadataH\x01\x12>\n\x12task_node_metadata\x18\x0e \x01(\x0b\x32 .flyteidl.event.TaskNodeMetadataH\x01\x12I\n\x14parent_task_metadata\x18\t \x01(\x0b\x32+.flyteidl.event.ParentTaskExecutionMetadata\x12I\n\x14parent_node_metadata\x18\n \x01(\x0b\x32+.flyteidl.event.ParentNodeExecutionMetadata\x12\x13\n\x0bretry_group\x18\x0b \x01(\t\x12\x14\n\x0cspec_node_id\x18\x0c \x01(\t\x12\x11\n\tnode_name\x18\r \x01(\tB\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"X\n\x14WorkflowNodeMetadata\x12@\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\"\x80\x01\n\x10TaskNodeMetadata\x12\x37\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatus\x12\x33\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadata\"Q\n\x1bParentTaskExecutionMetadata\x12\x32\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifier\".\n\x1bParentNodeExecutionMetadata\x12\x0f\n\x07node_id\x18\x01 \x01(\t\"\xa8\x04\n\x12TaskExecutionEvent\x12*\n\x07task_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.Identifier\x12H\n\x18parent_node_execution_id\x18\x02 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifier\x12\x15\n\rretry_attempt\x18\x03 \x01(\r\x12\x31\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.Phase\x12\x13\n\x0bproducer_id\x18\x05 \x01(\t\x12$\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLog\x12/\n\x0boccurred_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x11\n\tinput_uri\x18\x08 \x01(\t\x12\x14\n\noutput_uri\x18\t \x01(\tH\x00\x12.\n\x05\x65rror\x18\n \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00\x12,\n\x0b\x63ustom_info\x18\x0b \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x15\n\rphase_version\x18\x0c \x01(\r\x12\x37\n\x08metadata\x18\x10 \x01(\x0b\x32%.flyteidl.event.TaskExecutionMetadataB\x0f\n\routput_result\"\x95\x01\n\x15TaskExecutionMetadata\x12K\n\x0einstance_class\x18\x10 \x01(\x0e\x32\x33.flyteidl.event.TaskExecutionMetadata.InstanceClass\"/\n\rInstanceClass\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\x11\n\rINTERRUPTIBLE\x10\x01\x42\x37Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/eventb\x06proto3') , dependencies=[flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,flyteidl_dot_core_dot_catalog__pb2.DESCRIPTOR,google_dot_protobuf_dot_timestamp__pb2.DESCRIPTOR,google_dot_protobuf_dot_struct__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/plugins/array_job_pb2.py b/gen/pb_python/flyteidl/plugins/array_job_pb2.py index 9097352f7..9801c6bee 100644 --- a/gen/pb_python/flyteidl/plugins/array_job_pb2.py +++ b/gen/pb_python/flyteidl/plugins/array_job_pb2.py @@ -19,8 +19,8 @@ name='flyteidl/plugins/array_job.proto', package='flyteidl.plugins', syntax='proto3', - serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins'), - serialized_pb=_b('\n flyteidl/plugins/array_job.proto\x12\x10\x66lyteidl.plugins\"w\n\x08\x41rrayJob\x12\x13\n\x0bparallelism\x18\x01 \x01(\x03\x12\x0c\n\x04size\x18\x02 \x01(\x03\x12\x17\n\rmin_successes\x18\x03 \x01(\x03H\x00\x12\x1b\n\x11min_success_ratio\x18\x04 \x01(\x02H\x00\x42\x12\n\x10success_criteriaB5Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') + serialized_options=_b('Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins'), + serialized_pb=_b('\n flyteidl/plugins/array_job.proto\x12\x10\x66lyteidl.plugins\"w\n\x08\x41rrayJob\x12\x13\n\x0bparallelism\x18\x01 \x01(\x03\x12\x0c\n\x04size\x18\x02 \x01(\x03\x12\x17\n\rmin_successes\x18\x03 \x01(\x03H\x00\x12\x1b\n\x11min_success_ratio\x18\x04 \x01(\x02H\x00\x42\x12\n\x10success_criteriaB9Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') ) diff --git a/gen/pb_python/flyteidl/plugins/presto_pb2.py b/gen/pb_python/flyteidl/plugins/presto_pb2.py index bedbb58d3..af8a30fe5 100644 --- a/gen/pb_python/flyteidl/plugins/presto_pb2.py +++ b/gen/pb_python/flyteidl/plugins/presto_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/plugins/presto.proto', package='flyteidl.plugins', syntax='proto3', - serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins'), - serialized_pb=_b('\n\x1d\x66lyteidl/plugins/presto.proto\x12\x10\x66lyteidl.plugins\x1a\x19\x66lyteidl/core/tasks.proto\"X\n\x0bPrestoQuery\x12\x15\n\rrouting_group\x18\x01 \x01(\t\x12\x0f\n\x07\x63\x61talog\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x11\n\tstatement\x18\x04 \x01(\tB5Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') + serialized_options=_b('Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins'), + serialized_pb=_b('\n\x1d\x66lyteidl/plugins/presto.proto\x12\x10\x66lyteidl.plugins\x1a\x19\x66lyteidl/core/tasks.proto\"X\n\x0bPrestoQuery\x12\x15\n\rrouting_group\x18\x01 \x01(\t\x12\x0f\n\x07\x63\x61talog\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x11\n\tstatement\x18\x04 \x01(\tB9Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') , dependencies=[flyteidl_dot_core_dot_tasks__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/plugins/pytorch_pb2.py b/gen/pb_python/flyteidl/plugins/pytorch_pb2.py index bede9e0e8..ea46266e4 100644 --- a/gen/pb_python/flyteidl/plugins/pytorch_pb2.py +++ b/gen/pb_python/flyteidl/plugins/pytorch_pb2.py @@ -19,8 +19,8 @@ name='flyteidl/plugins/pytorch.proto', package='flyteidl.plugins', syntax='proto3', - serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins'), - serialized_pb=_b('\n\x1e\x66lyteidl/plugins/pytorch.proto\x12\x10\x66lyteidl.plugins\"1\n\x1e\x44istributedPyTorchTrainingTask\x12\x0f\n\x07workers\x18\x01 \x01(\x05\x42\x35Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') + serialized_options=_b('Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins'), + serialized_pb=_b('\n\x1e\x66lyteidl/plugins/pytorch.proto\x12\x10\x66lyteidl.plugins\"1\n\x1e\x44istributedPyTorchTrainingTask\x12\x0f\n\x07workers\x18\x01 \x01(\x05\x42\x39Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') ) diff --git a/gen/pb_python/flyteidl/plugins/qubole_pb2.py b/gen/pb_python/flyteidl/plugins/qubole_pb2.py index 7bc332478..38bc2306e 100644 --- a/gen/pb_python/flyteidl/plugins/qubole_pb2.py +++ b/gen/pb_python/flyteidl/plugins/qubole_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/plugins/qubole.proto', package='flyteidl.plugins', syntax='proto3', - serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins'), - serialized_pb=_b('\n\x1d\x66lyteidl/plugins/qubole.proto\x12\x10\x66lyteidl.plugins\x1a\x19\x66lyteidl/core/tasks.proto\"C\n\tHiveQuery\x12\r\n\x05query\x18\x01 \x01(\t\x12\x13\n\x0btimeout_sec\x18\x02 \x01(\r\x12\x12\n\nretryCount\x18\x03 \x01(\r\"C\n\x13HiveQueryCollection\x12,\n\x07queries\x18\x02 \x03(\x0b\x32\x1b.flyteidl.plugins.HiveQuery\"\xa5\x01\n\rQuboleHiveJob\x12\x15\n\rcluster_label\x18\x01 \x01(\t\x12\x43\n\x10query_collection\x18\x02 \x01(\x0b\x32%.flyteidl.plugins.HiveQueryCollectionB\x02\x18\x01\x12\x0c\n\x04tags\x18\x03 \x03(\t\x12*\n\x05query\x18\x04 \x01(\x0b\x32\x1b.flyteidl.plugins.HiveQueryB5Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') + serialized_options=_b('Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins'), + serialized_pb=_b('\n\x1d\x66lyteidl/plugins/qubole.proto\x12\x10\x66lyteidl.plugins\x1a\x19\x66lyteidl/core/tasks.proto\"C\n\tHiveQuery\x12\r\n\x05query\x18\x01 \x01(\t\x12\x13\n\x0btimeout_sec\x18\x02 \x01(\r\x12\x12\n\nretryCount\x18\x03 \x01(\r\"C\n\x13HiveQueryCollection\x12,\n\x07queries\x18\x02 \x03(\x0b\x32\x1b.flyteidl.plugins.HiveQuery\"\xa5\x01\n\rQuboleHiveJob\x12\x15\n\rcluster_label\x18\x01 \x01(\t\x12\x43\n\x10query_collection\x18\x02 \x01(\x0b\x32%.flyteidl.plugins.HiveQueryCollectionB\x02\x18\x01\x12\x0c\n\x04tags\x18\x03 \x03(\t\x12*\n\x05query\x18\x04 \x01(\x0b\x32\x1b.flyteidl.plugins.HiveQueryB9Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') , dependencies=[flyteidl_dot_core_dot_tasks__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/plugins/sagemaker/hyperparameter_tuning_job_pb2.py b/gen/pb_python/flyteidl/plugins/sagemaker/hyperparameter_tuning_job_pb2.py index 68c53659e..d4cbd2698 100644 --- a/gen/pb_python/flyteidl/plugins/sagemaker/hyperparameter_tuning_job_pb2.py +++ b/gen/pb_python/flyteidl/plugins/sagemaker/hyperparameter_tuning_job_pb2.py @@ -21,8 +21,8 @@ name='flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto', package='flyteidl.plugins.sagemaker', syntax='proto3', - serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins'), - serialized_pb=_b('\n:flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto\x12\x1a\x66lyteidl.plugins.sagemaker\x1a\x31\x66lyteidl/plugins/sagemaker/parameter_ranges.proto\x1a-flyteidl/plugins/sagemaker/training_job.proto\"\xa1\x01\n\x17HyperparameterTuningJob\x12=\n\x0ctraining_job\x18\x01 \x01(\x0b\x32\'.flyteidl.plugins.sagemaker.TrainingJob\x12#\n\x1bmax_number_of_training_jobs\x18\x02 \x01(\x03\x12\"\n\x1amax_parallel_training_jobs\x18\x03 \x01(\x03\"H\n!HyperparameterTuningObjectiveType\"#\n\x05Value\x12\x0c\n\x08MINIMIZE\x10\x00\x12\x0c\n\x08MAXIMIZE\x10\x01\"\x91\x01\n\x1dHyperparameterTuningObjective\x12[\n\x0eobjective_type\x18\x01 \x01(\x0e\x32\x43.flyteidl.plugins.sagemaker.HyperparameterTuningObjectiveType.Value\x12\x13\n\x0bmetric_name\x18\x02 \x01(\t\"A\n\x1cHyperparameterTuningStrategy\"!\n\x05Value\x12\x0c\n\x08\x42\x41YESIAN\x10\x00\x12\n\n\x06RANDOM\x10\x01\":\n\x1cTrainingJobEarlyStoppingType\"\x1a\n\x05Value\x12\x07\n\x03OFF\x10\x00\x12\x08\n\x04\x41UTO\x10\x01\"\x83\x03\n\x1dHyperparameterTuningJobConfig\x12J\n\x15hyperparameter_ranges\x18\x01 \x01(\x0b\x32+.flyteidl.plugins.sagemaker.ParameterRanges\x12W\n\x0ftuning_strategy\x18\x02 \x01(\x0e\x32>.flyteidl.plugins.sagemaker.HyperparameterTuningStrategy.Value\x12S\n\x10tuning_objective\x18\x03 \x01(\x0b\x32\x39.flyteidl.plugins.sagemaker.HyperparameterTuningObjective\x12h\n training_job_early_stopping_type\x18\x04 \x01(\x0e\x32>.flyteidl.plugins.sagemaker.TrainingJobEarlyStoppingType.ValueB5Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') + serialized_options=_b('Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins'), + serialized_pb=_b('\n:flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto\x12\x1a\x66lyteidl.plugins.sagemaker\x1a\x31\x66lyteidl/plugins/sagemaker/parameter_ranges.proto\x1a-flyteidl/plugins/sagemaker/training_job.proto\"\xa1\x01\n\x17HyperparameterTuningJob\x12=\n\x0ctraining_job\x18\x01 \x01(\x0b\x32\'.flyteidl.plugins.sagemaker.TrainingJob\x12#\n\x1bmax_number_of_training_jobs\x18\x02 \x01(\x03\x12\"\n\x1amax_parallel_training_jobs\x18\x03 \x01(\x03\"H\n!HyperparameterTuningObjectiveType\"#\n\x05Value\x12\x0c\n\x08MINIMIZE\x10\x00\x12\x0c\n\x08MAXIMIZE\x10\x01\"\x91\x01\n\x1dHyperparameterTuningObjective\x12[\n\x0eobjective_type\x18\x01 \x01(\x0e\x32\x43.flyteidl.plugins.sagemaker.HyperparameterTuningObjectiveType.Value\x12\x13\n\x0bmetric_name\x18\x02 \x01(\t\"A\n\x1cHyperparameterTuningStrategy\"!\n\x05Value\x12\x0c\n\x08\x42\x41YESIAN\x10\x00\x12\n\n\x06RANDOM\x10\x01\":\n\x1cTrainingJobEarlyStoppingType\"\x1a\n\x05Value\x12\x07\n\x03OFF\x10\x00\x12\x08\n\x04\x41UTO\x10\x01\"\x83\x03\n\x1dHyperparameterTuningJobConfig\x12J\n\x15hyperparameter_ranges\x18\x01 \x01(\x0b\x32+.flyteidl.plugins.sagemaker.ParameterRanges\x12W\n\x0ftuning_strategy\x18\x02 \x01(\x0e\x32>.flyteidl.plugins.sagemaker.HyperparameterTuningStrategy.Value\x12S\n\x10tuning_objective\x18\x03 \x01(\x0b\x32\x39.flyteidl.plugins.sagemaker.HyperparameterTuningObjective\x12h\n training_job_early_stopping_type\x18\x04 \x01(\x0e\x32>.flyteidl.plugins.sagemaker.TrainingJobEarlyStoppingType.ValueB9Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') , dependencies=[flyteidl_dot_plugins_dot_sagemaker_dot_parameter__ranges__pb2.DESCRIPTOR,flyteidl_dot_plugins_dot_sagemaker_dot_training__job__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/plugins/sagemaker/parameter_ranges_pb2.py b/gen/pb_python/flyteidl/plugins/sagemaker/parameter_ranges_pb2.py index 75f009d09..bda2fb179 100644 --- a/gen/pb_python/flyteidl/plugins/sagemaker/parameter_ranges_pb2.py +++ b/gen/pb_python/flyteidl/plugins/sagemaker/parameter_ranges_pb2.py @@ -19,8 +19,8 @@ name='flyteidl/plugins/sagemaker/parameter_ranges.proto', package='flyteidl.plugins.sagemaker', syntax='proto3', - serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins'), - serialized_pb=_b('\n1flyteidl/plugins/sagemaker/parameter_ranges.proto\x12\x1a\x66lyteidl.plugins.sagemaker\"c\n\x19HyperparameterScalingType\"F\n\x05Value\x12\x08\n\x04\x41UTO\x10\x00\x12\n\n\x06LINEAR\x10\x01\x12\x0f\n\x0bLOGARITHMIC\x10\x02\x12\x16\n\x12REVERSELOGARITHMIC\x10\x03\"\x93\x01\n\x18\x43ontinuousParameterRange\x12\x11\n\tmax_value\x18\x01 \x01(\x01\x12\x11\n\tmin_value\x18\x02 \x01(\x01\x12Q\n\x0cscaling_type\x18\x03 \x01(\x0e\x32;.flyteidl.plugins.sagemaker.HyperparameterScalingType.Value\"\x90\x01\n\x15IntegerParameterRange\x12\x11\n\tmax_value\x18\x01 \x01(\x03\x12\x11\n\tmin_value\x18\x02 \x01(\x03\x12Q\n\x0cscaling_type\x18\x03 \x01(\x0e\x32;.flyteidl.plugins.sagemaker.HyperparameterScalingType.Value\"+\n\x19\x43\x61tegoricalParameterRange\x12\x0e\n\x06values\x18\x01 \x03(\t\"\xbd\x02\n\x13ParameterRangeOneOf\x12Z\n\x1a\x63ontinuous_parameter_range\x18\x01 \x01(\x0b\x32\x34.flyteidl.plugins.sagemaker.ContinuousParameterRangeH\x00\x12T\n\x17integer_parameter_range\x18\x02 \x01(\x0b\x32\x31.flyteidl.plugins.sagemaker.IntegerParameterRangeH\x00\x12\\\n\x1b\x63\x61tegorical_parameter_range\x18\x03 \x01(\x0b\x32\x35.flyteidl.plugins.sagemaker.CategoricalParameterRangeH\x00\x42\x16\n\x14parameter_range_type\"\xdd\x01\n\x0fParameterRanges\x12_\n\x13parameter_range_map\x18\x01 \x03(\x0b\x32\x42.flyteidl.plugins.sagemaker.ParameterRanges.ParameterRangeMapEntry\x1ai\n\x16ParameterRangeMapEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12>\n\x05value\x18\x02 \x01(\x0b\x32/.flyteidl.plugins.sagemaker.ParameterRangeOneOf:\x02\x38\x01\x42\x35Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') + serialized_options=_b('Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins'), + serialized_pb=_b('\n1flyteidl/plugins/sagemaker/parameter_ranges.proto\x12\x1a\x66lyteidl.plugins.sagemaker\"c\n\x19HyperparameterScalingType\"F\n\x05Value\x12\x08\n\x04\x41UTO\x10\x00\x12\n\n\x06LINEAR\x10\x01\x12\x0f\n\x0bLOGARITHMIC\x10\x02\x12\x16\n\x12REVERSELOGARITHMIC\x10\x03\"\x93\x01\n\x18\x43ontinuousParameterRange\x12\x11\n\tmax_value\x18\x01 \x01(\x01\x12\x11\n\tmin_value\x18\x02 \x01(\x01\x12Q\n\x0cscaling_type\x18\x03 \x01(\x0e\x32;.flyteidl.plugins.sagemaker.HyperparameterScalingType.Value\"\x90\x01\n\x15IntegerParameterRange\x12\x11\n\tmax_value\x18\x01 \x01(\x03\x12\x11\n\tmin_value\x18\x02 \x01(\x03\x12Q\n\x0cscaling_type\x18\x03 \x01(\x0e\x32;.flyteidl.plugins.sagemaker.HyperparameterScalingType.Value\"+\n\x19\x43\x61tegoricalParameterRange\x12\x0e\n\x06values\x18\x01 \x03(\t\"\xbd\x02\n\x13ParameterRangeOneOf\x12Z\n\x1a\x63ontinuous_parameter_range\x18\x01 \x01(\x0b\x32\x34.flyteidl.plugins.sagemaker.ContinuousParameterRangeH\x00\x12T\n\x17integer_parameter_range\x18\x02 \x01(\x0b\x32\x31.flyteidl.plugins.sagemaker.IntegerParameterRangeH\x00\x12\\\n\x1b\x63\x61tegorical_parameter_range\x18\x03 \x01(\x0b\x32\x35.flyteidl.plugins.sagemaker.CategoricalParameterRangeH\x00\x42\x16\n\x14parameter_range_type\"\xdd\x01\n\x0fParameterRanges\x12_\n\x13parameter_range_map\x18\x01 \x03(\x0b\x32\x42.flyteidl.plugins.sagemaker.ParameterRanges.ParameterRangeMapEntry\x1ai\n\x16ParameterRangeMapEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12>\n\x05value\x18\x02 \x01(\x0b\x32/.flyteidl.plugins.sagemaker.ParameterRangeOneOf:\x02\x38\x01\x42\x39Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') ) diff --git a/gen/pb_python/flyteidl/plugins/sagemaker/training_job_pb2.py b/gen/pb_python/flyteidl/plugins/sagemaker/training_job_pb2.py index 0934d438d..0b37d65c6 100644 --- a/gen/pb_python/flyteidl/plugins/sagemaker/training_job_pb2.py +++ b/gen/pb_python/flyteidl/plugins/sagemaker/training_job_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/plugins/sagemaker/training_job.proto', package='flyteidl.plugins.sagemaker', syntax='proto3', - serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins'), - serialized_pb=_b('\n-flyteidl/plugins/sagemaker/training_job.proto\x12\x1a\x66lyteidl.plugins.sagemaker\x1a\x1egoogle/protobuf/duration.proto\"(\n\tInputMode\"\x1b\n\x05Value\x12\x08\n\x04\x46ILE\x10\x00\x12\x08\n\x04PIPE\x10\x01\"1\n\rAlgorithmName\" \n\x05Value\x12\n\n\x06\x43USTOM\x10\x00\x12\x0b\n\x07XGBOOST\x10\x01\")\n\x10InputContentType\"\x15\n\x05Value\x12\x0c\n\x08TEXT_CSV\x10\x00\"/\n\x10MetricDefinition\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\r\n\x05regex\x18\x02 \x01(\t\"\xd7\x02\n\x16\x41lgorithmSpecification\x12?\n\ninput_mode\x18\x01 \x01(\x0e\x32+.flyteidl.plugins.sagemaker.InputMode.Value\x12G\n\x0e\x61lgorithm_name\x18\x02 \x01(\x0e\x32/.flyteidl.plugins.sagemaker.AlgorithmName.Value\x12\x19\n\x11\x61lgorithm_version\x18\x03 \x01(\t\x12H\n\x12metric_definitions\x18\x04 \x03(\x0b\x32,.flyteidl.plugins.sagemaker.MetricDefinition\x12N\n\x12input_content_type\x18\x05 \x01(\x0e\x32\x32.flyteidl.plugins.sagemaker.InputContentType.Value\"8\n\x13\x44istributedProtocol\"!\n\x05Value\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x07\n\x03MPI\x10\x01\"\xba\x01\n\x19TrainingJobResourceConfig\x12\x16\n\x0einstance_count\x18\x01 \x01(\x03\x12\x15\n\rinstance_type\x18\x02 \x01(\t\x12\x19\n\x11volume_size_in_gb\x18\x03 \x01(\x03\x12S\n\x14\x64istributed_protocol\x18\x04 \x01(\x0e\x32\x35.flyteidl.plugins.sagemaker.DistributedProtocol.Value\"\xbf\x01\n\x0bTrainingJob\x12S\n\x17\x61lgorithm_specification\x18\x01 \x01(\x0b\x32\x32.flyteidl.plugins.sagemaker.AlgorithmSpecification\x12[\n\x1ctraining_job_resource_config\x18\x02 \x01(\x0b\x32\x35.flyteidl.plugins.sagemaker.TrainingJobResourceConfigB5Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') + serialized_options=_b('Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins'), + serialized_pb=_b('\n-flyteidl/plugins/sagemaker/training_job.proto\x12\x1a\x66lyteidl.plugins.sagemaker\x1a\x1egoogle/protobuf/duration.proto\"(\n\tInputMode\"\x1b\n\x05Value\x12\x08\n\x04\x46ILE\x10\x00\x12\x08\n\x04PIPE\x10\x01\"1\n\rAlgorithmName\" \n\x05Value\x12\n\n\x06\x43USTOM\x10\x00\x12\x0b\n\x07XGBOOST\x10\x01\")\n\x10InputContentType\"\x15\n\x05Value\x12\x0c\n\x08TEXT_CSV\x10\x00\"/\n\x10MetricDefinition\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\r\n\x05regex\x18\x02 \x01(\t\"\xd7\x02\n\x16\x41lgorithmSpecification\x12?\n\ninput_mode\x18\x01 \x01(\x0e\x32+.flyteidl.plugins.sagemaker.InputMode.Value\x12G\n\x0e\x61lgorithm_name\x18\x02 \x01(\x0e\x32/.flyteidl.plugins.sagemaker.AlgorithmName.Value\x12\x19\n\x11\x61lgorithm_version\x18\x03 \x01(\t\x12H\n\x12metric_definitions\x18\x04 \x03(\x0b\x32,.flyteidl.plugins.sagemaker.MetricDefinition\x12N\n\x12input_content_type\x18\x05 \x01(\x0e\x32\x32.flyteidl.plugins.sagemaker.InputContentType.Value\"8\n\x13\x44istributedProtocol\"!\n\x05Value\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x07\n\x03MPI\x10\x01\"\xba\x01\n\x19TrainingJobResourceConfig\x12\x16\n\x0einstance_count\x18\x01 \x01(\x03\x12\x15\n\rinstance_type\x18\x02 \x01(\t\x12\x19\n\x11volume_size_in_gb\x18\x03 \x01(\x03\x12S\n\x14\x64istributed_protocol\x18\x04 \x01(\x0e\x32\x35.flyteidl.plugins.sagemaker.DistributedProtocol.Value\"\xbf\x01\n\x0bTrainingJob\x12S\n\x17\x61lgorithm_specification\x18\x01 \x01(\x0b\x32\x32.flyteidl.plugins.sagemaker.AlgorithmSpecification\x12[\n\x1ctraining_job_resource_config\x18\x02 \x01(\x0b\x32\x35.flyteidl.plugins.sagemaker.TrainingJobResourceConfigB9Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') , dependencies=[google_dot_protobuf_dot_duration__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/plugins/sidecar_pb2.py b/gen/pb_python/flyteidl/plugins/sidecar_pb2.py index f4f81ae76..34c40802e 100644 --- a/gen/pb_python/flyteidl/plugins/sidecar_pb2.py +++ b/gen/pb_python/flyteidl/plugins/sidecar_pb2.py @@ -20,8 +20,8 @@ name='flyteidl/plugins/sidecar.proto', package='flyteidl.plugins', syntax='proto3', - serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins'), - serialized_pb=_b('\n\x1e\x66lyteidl/plugins/sidecar.proto\x12\x10\x66lyteidl.plugins\x1a\"k8s.io/api/core/v1/generated.proto\"[\n\nSidecarJob\x12-\n\x08pod_spec\x18\x01 \x01(\x0b\x32\x1b.k8s.io.api.core.v1.PodSpec\x12\x1e\n\x16primary_container_name\x18\x02 \x01(\tB5Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') + serialized_options=_b('Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins'), + serialized_pb=_b('\n\x1e\x66lyteidl/plugins/sidecar.proto\x12\x10\x66lyteidl.plugins\x1a\"k8s.io/api/core/v1/generated.proto\"[\n\nSidecarJob\x12-\n\x08pod_spec\x18\x01 \x01(\x0b\x32\x1b.k8s.io.api.core.v1.PodSpec\x12\x1e\n\x16primary_container_name\x18\x02 \x01(\tB9Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') , dependencies=[k8s_dot_io_dot_api_dot_core_dot_v1_dot_generated__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/plugins/spark_pb2.py b/gen/pb_python/flyteidl/plugins/spark_pb2.py index 59dcf838f..0a82214e8 100644 --- a/gen/pb_python/flyteidl/plugins/spark_pb2.py +++ b/gen/pb_python/flyteidl/plugins/spark_pb2.py @@ -19,8 +19,8 @@ name='flyteidl/plugins/spark.proto', package='flyteidl.plugins', syntax='proto3', - serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins'), - serialized_pb=_b('\n\x1c\x66lyteidl/plugins/spark.proto\x12\x10\x66lyteidl.plugins\"B\n\x10SparkApplication\".\n\x04Type\x12\n\n\x06PYTHON\x10\x00\x12\x08\n\x04JAVA\x10\x01\x12\t\n\x05SCALA\x10\x02\x12\x05\n\x01R\x10\x03\"\xf5\x02\n\x08SparkJob\x12@\n\x0f\x61pplicationType\x18\x01 \x01(\x0e\x32\'.flyteidl.plugins.SparkApplication.Type\x12\x1b\n\x13mainApplicationFile\x18\x02 \x01(\t\x12\x11\n\tmainClass\x18\x03 \x01(\t\x12<\n\tsparkConf\x18\x04 \x03(\x0b\x32).flyteidl.plugins.SparkJob.SparkConfEntry\x12>\n\nhadoopConf\x18\x05 \x03(\x0b\x32*.flyteidl.plugins.SparkJob.HadoopConfEntry\x12\x14\n\x0c\x65xecutorPath\x18\x06 \x01(\t\x1a\x30\n\x0eSparkConfEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x31\n\x0fHadoopConfEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x35Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') + serialized_options=_b('Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins'), + serialized_pb=_b('\n\x1c\x66lyteidl/plugins/spark.proto\x12\x10\x66lyteidl.plugins\"B\n\x10SparkApplication\".\n\x04Type\x12\n\n\x06PYTHON\x10\x00\x12\x08\n\x04JAVA\x10\x01\x12\t\n\x05SCALA\x10\x02\x12\x05\n\x01R\x10\x03\"\xf5\x02\n\x08SparkJob\x12@\n\x0f\x61pplicationType\x18\x01 \x01(\x0e\x32\'.flyteidl.plugins.SparkApplication.Type\x12\x1b\n\x13mainApplicationFile\x18\x02 \x01(\t\x12\x11\n\tmainClass\x18\x03 \x01(\t\x12<\n\tsparkConf\x18\x04 \x03(\x0b\x32).flyteidl.plugins.SparkJob.SparkConfEntry\x12>\n\nhadoopConf\x18\x05 \x03(\x0b\x32*.flyteidl.plugins.SparkJob.HadoopConfEntry\x12\x14\n\x0c\x65xecutorPath\x18\x06 \x01(\t\x1a\x30\n\x0eSparkConfEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x31\n\x0fHadoopConfEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x39Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') ) diff --git a/gen/pb_python/flyteidl/plugins/tensorflow_pb2.py b/gen/pb_python/flyteidl/plugins/tensorflow_pb2.py index aae0170ad..3dc4c5534 100644 --- a/gen/pb_python/flyteidl/plugins/tensorflow_pb2.py +++ b/gen/pb_python/flyteidl/plugins/tensorflow_pb2.py @@ -19,8 +19,8 @@ name='flyteidl/plugins/tensorflow.proto', package='flyteidl.plugins', syntax='proto3', - serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins'), - serialized_pb=_b('\n!flyteidl/plugins/tensorflow.proto\x12\x10\x66lyteidl.plugins\"a\n!DistributedTensorflowTrainingTask\x12\x0f\n\x07workers\x18\x01 \x01(\x05\x12\x13\n\x0bps_replicas\x18\x02 \x01(\x05\x12\x16\n\x0e\x63hief_replicas\x18\x03 \x01(\x05\x42\x35Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') + serialized_options=_b('Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins'), + serialized_pb=_b('\n!flyteidl/plugins/tensorflow.proto\x12\x10\x66lyteidl.plugins\"a\n!DistributedTensorflowTrainingTask\x12\x0f\n\x07workers\x18\x01 \x01(\x05\x12\x13\n\x0bps_replicas\x18\x02 \x01(\x05\x12\x16\n\x0e\x63hief_replicas\x18\x03 \x01(\x05\x42\x39Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') ) diff --git a/gen/pb_python/flyteidl/plugins/waitable_pb2.py b/gen/pb_python/flyteidl/plugins/waitable_pb2.py index 7da0926ab..571379df8 100644 --- a/gen/pb_python/flyteidl/plugins/waitable_pb2.py +++ b/gen/pb_python/flyteidl/plugins/waitable_pb2.py @@ -21,8 +21,8 @@ name='flyteidl/plugins/waitable.proto', package='flyteidl.plugins', syntax='proto3', - serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins'), - serialized_pb=_b('\n\x1f\x66lyteidl/plugins/waitable.proto\x12\x10\x66lyteidl.plugins\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\"\x96\x01\n\x08Waitable\x12>\n\nwf_exec_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12\x35\n\x05phase\x18\x02 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.Phase\x12\x13\n\x0bworkflow_id\x18\x03 \x01(\tB5Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') + serialized_options=_b('Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins'), + serialized_pb=_b('\n\x1f\x66lyteidl/plugins/waitable.proto\x12\x10\x66lyteidl.plugins\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\"\x96\x01\n\x08Waitable\x12>\n\nwf_exec_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifier\x12\x35\n\x05phase\x18\x02 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.Phase\x12\x13\n\x0bworkflow_id\x18\x03 \x01(\tB9Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/pluginsb\x06proto3') , dependencies=[flyteidl_dot_core_dot_execution__pb2.DESCRIPTOR,flyteidl_dot_core_dot_identifier__pb2.DESCRIPTOR,]) diff --git a/gen/pb_python/flyteidl/service/admin_pb2.py b/gen/pb_python/flyteidl/service/admin_pb2.py index 0258385eb..7e0bed8ca 100644 --- a/gen/pb_python/flyteidl/service/admin_pb2.py +++ b/gen/pb_python/flyteidl/service/admin_pb2.py @@ -33,8 +33,8 @@ name='flyteidl/service/admin.proto', package='flyteidl.service', syntax='proto3', - serialized_options=_b('Z3github.com/lyft/flyteidl/gen/pb-go/flyteidl/service'), - serialized_pb=_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\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\x1b\x66lyteidl/admin/common.proto\x1a,protoc-gen-swagger/options/annotations.proto2\xe3_\n\x0c\x41\x64minService\x12\xc5\x02\n\nCreateTask\x12!.flyteidl.admin.TaskCreateRequest\x1a\".flyteidl.admin.TaskCreateResponse\"\xef\x01\x82\xd3\xe4\x93\x02\x12\"\r/api/v1/tasks:\x01*\x92\x41\xd3\x01\x1a&Create and register a task definition.JB\n\x03\x34\x30\x30\x12;\n9Returned for bad request that may have failed validation.Je\n\x03\x34\x30\x39\x12^\n\\Returned for a request that references an identical entity that has already been registered.\x12\xb2\x01\n\x07GetTask\x12 .flyteidl.admin.ObjectGetRequest\x1a\x14.flyteidl.admin.Task\"o\x82\xd3\xe4\x93\x02?\x12=/api/v1/tasks/{id.project}/{id.domain}/{id.name}/{id.version}\x92\x41\'\x1a%Retrieve an existing task definition.\x12\xde\x01\n\x0bListTaskIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"r\x82\xd3\xe4\x93\x02%\x12#/api/v1/task_ids/{project}/{domain}\x92\x41\x44\x1a\x42\x46\x65tch existing task definition identifiers matching input filters.\x12\xeb\x01\n\tListTasks\x12#.flyteidl.admin.ResourceListRequest\x1a\x18.flyteidl.admin.TaskList\"\x9e\x01\x82\xd3\xe4\x93\x02\\\x12\x30/api/v1/tasks/{id.project}/{id.domain}/{id.name}Z(\x12&/api/v1/tasks/{id.project}/{id.domain}\x92\x41\x39\x1a\x37\x46\x65tch existing task definitions matching input filters.\x12\xd9\x02\n\x0e\x43reateWorkflow\x12%.flyteidl.admin.WorkflowCreateRequest\x1a&.flyteidl.admin.WorkflowCreateResponse\"\xf7\x01\x82\xd3\xe4\x93\x02\x16\"\x11/api/v1/workflows:\x01*\x92\x41\xd7\x01\x1a*Create and register a workflow definition.JB\n\x03\x34\x30\x30\x12;\n9Returned for bad request that may have failed validation.Je\n\x03\x34\x30\x39\x12^\n\\Returned for a request that references an identical entity that has already been registered.\x12\xc2\x01\n\x0bGetWorkflow\x12 .flyteidl.admin.ObjectGetRequest\x1a\x18.flyteidl.admin.Workflow\"w\x82\xd3\xe4\x93\x02\x43\x12\x41/api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version}\x92\x41+\x1a)Retrieve an existing workflow definition.\x12\xed\x01\n\x0fListWorkflowIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"}\x82\xd3\xe4\x93\x02)\x12\'/api/v1/workflow_ids/{project}/{domain}\x92\x41K\x1aIFetch an existing workflow definition identifiers matching input filters.\x12\xff\x01\n\rListWorkflows\x12#.flyteidl.admin.ResourceListRequest\x1a\x1c.flyteidl.admin.WorkflowList\"\xaa\x01\x82\xd3\xe4\x93\x02\x64\x12\x34/api/v1/workflows/{id.project}/{id.domain}/{id.name}Z,\x12*/api/v1/workflows/{id.project}/{id.domain}\x92\x41=\x1a;Fetch existing workflow definitions matching input filters.\x12\xe5\x02\n\x10\x43reateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanCreateRequest\x1a(.flyteidl.admin.LaunchPlanCreateResponse\"\xfd\x01\x82\xd3\xe4\x93\x02\x19\"\x14/api/v1/launch_plans:\x01*\x92\x41\xda\x01\x1a-Create and register a launch plan definition.JB\n\x03\x34\x30\x30\x12;\n9Returned for bad request that may have failed validation.Je\n\x03\x34\x30\x39\x12^\n\\Returned for a request that references an identical entity that has already been registered.\x12\xcc\x01\n\rGetLaunchPlan\x12 .flyteidl.admin.ObjectGetRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"}\x82\xd3\xe4\x93\x02\x46\x12\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x92\x41.\x1a,Retrieve an existing launch plan definition.\x12\xf3\x01\n\x13GetActiveLaunchPlan\x12\'.flyteidl.admin.ActiveLaunchPlanRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"\x96\x01\x82\xd3\xe4\x93\x02@\x12>/api/v1/active_launch_plans/{id.project}/{id.domain}/{id.name}\x92\x41M\x1aKRetrieve the active launch plan version specified by input request filters.\x12\xeb\x01\n\x15ListActiveLaunchPlans\x12+.flyteidl.admin.ActiveLaunchPlanListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"\x84\x01\x82\xd3\xe4\x93\x02\x30\x12./api/v1/active_launch_plans/{project}/{domain}\x92\x41K\x1aIFetch the active launch plan versions specified by input request filters.\x12\xf3\x01\n\x11ListLaunchPlanIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"\x80\x01\x82\xd3\xe4\x93\x02,\x12*/api/v1/launch_plan_ids/{project}/{domain}\x92\x41K\x1aIFetch existing launch plan definition identifiers matching input filters.\x12\x8c\x02\n\x0fListLaunchPlans\x12#.flyteidl.admin.ResourceListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"\xb3\x01\x82\xd3\xe4\x93\x02j\x12\x37/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}Z/\x12-/api/v1/launch_plans/{id.project}/{id.domain}\x92\x41@\x1a>Fetch existing launch plan definitions matching input filters.\x12\xc0\x06\n\x10UpdateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanUpdateRequest\x1a(.flyteidl.admin.LaunchPlanUpdateResponse\"\xd8\x05\x82\xd3\xe4\x93\x02I\x1a\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}:\x01*\x92\x41\x85\x05\x1a\x82\x05Update the status of an existing launch plan definition. At most one launch plan version for a given {project, domain, name} can be active at a time. If this call sets a launch plan to active and existing version is already active, the result of this call will be that the formerly active launch plan will be made inactive and specified launch plan in this request will be made active. In the event that the formerly active launch plan had a schedule associated it with it, this schedule will be disabled. If the reference launch plan in this request is being set to active and has a schedule associated with it, the schedule will be enabled.\x12\xa2\x01\n\x0f\x43reateExecution\x12&.flyteidl.admin.ExecutionCreateRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\">\x82\xd3\xe4\x93\x02\x17\"\x12/api/v1/executions:\x01*\x92\x41\x1e\x1a\x1c\x43reate a workflow execution.\x12\xb1\x01\n\x11RelaunchExecution\x12(.flyteidl.admin.ExecutionRelaunchRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"I\x82\xd3\xe4\x93\x02 \"\x1b/api/v1/executions/relaunch:\x01*\x92\x41 \x1a\x1eRelaunch a workflow execution.\x12\xc2\x01\n\x0cGetExecution\x12+.flyteidl.admin.WorkflowExecutionGetRequest\x1a\x19.flyteidl.admin.Execution\"j\x82\xd3\xe4\x93\x02\x37\x12\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x92\x41*\x1a(Retrieve an existing workflow execution.\x12\x82\x02\n\x10GetExecutionData\x12/.flyteidl.admin.WorkflowExecutionGetDataRequest\x1a\x30.flyteidl.admin.WorkflowExecutionGetDataResponse\"\x8a\x01\x82\xd3\xe4\x93\x02<\x12:/api/v1/data/executions/{id.project}/{id.domain}/{id.name}\x92\x41\x45\x1a\x43Retrieve input and output data from an existing workflow execution.\x12\xc8\x01\n\x0eListExecutions\x12#.flyteidl.admin.ResourceListRequest\x1a\x1d.flyteidl.admin.ExecutionList\"r\x82\xd3\xe4\x93\x02-\x12+/api/v1/executions/{id.project}/{id.domain}\x92\x41<\x1a:Fetch existing workflow executions matching input filters.\x12\xf4\x01\n\x12TerminateExecution\x12).flyteidl.admin.ExecutionTerminateRequest\x1a*.flyteidl.admin.ExecutionTerminateResponse\"\x86\x01\x82\xd3\xe4\x93\x02:*5/api/v1/executions/{id.project}/{id.domain}/{id.name}:\x01*\x92\x41\x43\x1a\x41Terminate the active workflow execution specified in the request.\x12\xfc\x01\n\x10GetNodeExecution\x12\'.flyteidl.admin.NodeExecutionGetRequest\x1a\x1d.flyteidl.admin.NodeExecution\"\x9f\x01\x82\xd3\xe4\x93\x02p\x12n/api/v1/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x92\x41&\x1a$Retrieve an existing node execution.\x12\x9a\x02\n\x12ListNodeExecutions\x12(.flyteidl.admin.NodeExecutionListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\xb6\x01\x82\xd3\xe4\x93\x02u\x12s/api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x92\x41\x38\x1a\x36\x46\x65tch existing node executions matching input filters.\x12\xef\x04\n\x19ListNodeExecutionsForTask\x12/.flyteidl.admin.NodeExecutionForTaskListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\xfd\x03\x82\xd3\xe4\x93\x02\xac\x03\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}\x92\x41G\x1a\x45\x46\x65tch child node executions launched by the specified task execution.\x12\xb3\x02\n\x14GetNodeExecutionData\x12+.flyteidl.admin.NodeExecutionGetDataRequest\x1a,.flyteidl.admin.NodeExecutionGetDataResponse\"\xbf\x01\x82\xd3\xe4\x93\x02u\x12s/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x92\x41\x41\x1a?Retrieve input and output data from an existing node execution.\x12\x97\x01\n\x0fRegisterProject\x12&.flyteidl.admin.ProjectRegisterRequest\x1a\'.flyteidl.admin.ProjectRegisterResponse\"3\x82\xd3\xe4\x93\x02\x15\"\x10/api/v1/projects:\x01*\x92\x41\x15\x1a\x13Register a project.\x12\x87\x01\n\rUpdateProject\x12\x17.flyteidl.admin.Project\x1a%.flyteidl.admin.ProjectUpdateResponse\"6\x82\xd3\xe4\x93\x02\x1a\x1a\x15/api/v1/projects/{id}:\x01*\x92\x41\x13\x1a\x11Update a project.\x12\x85\x01\n\x0cListProjects\x12\".flyteidl.admin.ProjectListRequest\x1a\x18.flyteidl.admin.Projects\"7\x82\xd3\xe4\x93\x02\x12\x12\x10/api/v1/projects\x92\x41\x1c\x1a\x1a\x46\x65tch registered projects.\x12\xdd\x01\n\x13\x43reateWorkflowEvent\x12-.flyteidl.admin.WorkflowExecutionEventRequest\x1a..flyteidl.admin.WorkflowExecutionEventResponse\"g\x82\xd3\xe4\x93\x02\x1d\"\x18/api/v1/events/workflows:\x01*\x92\x41\x41\x1a?Create a workflow execution event recording a phase transition.\x12\xc9\x01\n\x0f\x43reateNodeEvent\x12).flyteidl.admin.NodeExecutionEventRequest\x1a*.flyteidl.admin.NodeExecutionEventResponse\"_\x82\xd3\xe4\x93\x02\x19\"\x14/api/v1/events/nodes:\x01*\x92\x41=\x1a;Create a node execution event recording a phase transition.\x12\xc9\x01\n\x0f\x43reateTaskEvent\x12).flyteidl.admin.TaskExecutionEventRequest\x1a*.flyteidl.admin.TaskExecutionEventResponse\"_\x82\xd3\xe4\x93\x02\x19\"\x14/api/v1/events/tasks:\x01*\x92\x41=\x1a;Create a task execution event recording a phase transition.\x12\xa9\x03\n\x10GetTaskExecution\x12\'.flyteidl.admin.TaskExecutionGetRequest\x1a\x1d.flyteidl.admin.TaskExecution\"\xcc\x02\x82\xd3\xe4\x93\x02\x9c\x02\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}\x92\x41&\x1a$Retrieve an existing task execution.\x12\xd3\x02\n\x12ListTaskExecutions\x12(.flyteidl.admin.TaskExecutionListRequest\x1a!.flyteidl.admin.TaskExecutionList\"\xef\x01\x82\xd3\xe4\x93\x02\xad\x01\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}\x92\x41\x38\x1a\x36\x46\x65tch existing task executions matching input filters.\x12\xe0\x03\n\x14GetTaskExecutionData\x12+.flyteidl.admin.TaskExecutionGetDataRequest\x1a,.flyteidl.admin.TaskExecutionGetDataResponse\"\xec\x02\x82\xd3\xe4\x93\x02\xa1\x02\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}\x92\x41\x41\x1a?Retrieve input and output data from an existing task execution.\x12\xbf\x02\n\x1dUpdateProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesUpdateRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesUpdateResponse\"\xb0\x01\x82\xd3\xe4\x93\x02O\x1aJ/api/v1/project_domain_attributes/{attributes.project}/{attributes.domain}:\x01*\x92\x41X\x1aVUpdate the customized resource attributes associated with a project-domain combination\x12\x9f\x02\n\x1aGetProjectDomainAttributes\x12\x31.flyteidl.admin.ProjectDomainAttributesGetRequest\x1a\x32.flyteidl.admin.ProjectDomainAttributesGetResponse\"\x99\x01\x82\xd3\xe4\x93\x02\x36\x12\x34/api/v1/project_domain_attributes/{project}/{domain}\x92\x41Z\x1aXRetrieve the customized resource attributes associated with a project-domain combination\x12\xa9\x02\n\x1d\x44\x65leteProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesDeleteRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesDeleteResponse\"\x9a\x01\x82\xd3\xe4\x93\x02\x39*4/api/v1/project_domain_attributes/{project}/{domain}:\x01*\x92\x41X\x1aVDelete the customized resource attributes associated with a project-domain combination\x12\xce\x02\n\x18UpdateWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesUpdateRequest\x1a\x30.flyteidl.admin.WorkflowAttributesUpdateResponse\"\xce\x01\x82\xd3\xe4\x93\x02_\x1aZ/api/v1/workflow_attributes/{attributes.project}/{attributes.domain}/{attributes.workflow}:\x01*\x92\x41\x66\x1a\x64Update the customized resource attributes associated with a project, domain and workflow combination\x12\xa3\x02\n\x15GetWorkflowAttributes\x12,.flyteidl.admin.WorkflowAttributesGetRequest\x1a-.flyteidl.admin.WorkflowAttributesGetResponse\"\xac\x01\x82\xd3\xe4\x93\x02;\x12\x39/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x92\x41h\x1a\x66Retrieve the customized resource attributes associated with a project, domain and workflow combination\x12\xad\x02\n\x18\x44\x65leteWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesDeleteRequest\x1a\x30.flyteidl.admin.WorkflowAttributesDeleteResponse\"\xad\x01\x82\xd3\xe4\x93\x02>*9/api/v1/workflow_attributes/{project}/{domain}/{workflow}:\x01*\x92\x41\x66\x1a\x64\x44\x65lete the customized resource attributes associated with a project, domain and workflow combination\x12\xe1\x01\n\x17ListMatchableAttributes\x12..flyteidl.admin.ListMatchableAttributesRequest\x1a/.flyteidl.admin.ListMatchableAttributesResponse\"e\x82\xd3\xe4\x93\x02\x1e\x12\x1c/api/v1/matchable_attributes\x92\x41>\x1a/api/v1/active_launch_plans/{id.project}/{id.domain}/{id.name}\x92\x41M\x1aKRetrieve the active launch plan version specified by input request filters.\x12\xeb\x01\n\x15ListActiveLaunchPlans\x12+.flyteidl.admin.ActiveLaunchPlanListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"\x84\x01\x82\xd3\xe4\x93\x02\x30\x12./api/v1/active_launch_plans/{project}/{domain}\x92\x41K\x1aIFetch the active launch plan versions specified by input request filters.\x12\xf3\x01\n\x11ListLaunchPlanIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"\x80\x01\x82\xd3\xe4\x93\x02,\x12*/api/v1/launch_plan_ids/{project}/{domain}\x92\x41K\x1aIFetch existing launch plan definition identifiers matching input filters.\x12\x8c\x02\n\x0fListLaunchPlans\x12#.flyteidl.admin.ResourceListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"\xb3\x01\x82\xd3\xe4\x93\x02j\x12\x37/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}Z/\x12-/api/v1/launch_plans/{id.project}/{id.domain}\x92\x41@\x1a>Fetch existing launch plan definitions matching input filters.\x12\xc0\x06\n\x10UpdateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanUpdateRequest\x1a(.flyteidl.admin.LaunchPlanUpdateResponse\"\xd8\x05\x82\xd3\xe4\x93\x02I\x1a\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}:\x01*\x92\x41\x85\x05\x1a\x82\x05Update the status of an existing launch plan definition. At most one launch plan version for a given {project, domain, name} can be active at a time. If this call sets a launch plan to active and existing version is already active, the result of this call will be that the formerly active launch plan will be made inactive and specified launch plan in this request will be made active. In the event that the formerly active launch plan had a schedule associated it with it, this schedule will be disabled. If the reference launch plan in this request is being set to active and has a schedule associated with it, the schedule will be enabled.\x12\xa2\x01\n\x0f\x43reateExecution\x12&.flyteidl.admin.ExecutionCreateRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\">\x82\xd3\xe4\x93\x02\x17\"\x12/api/v1/executions:\x01*\x92\x41\x1e\x1a\x1c\x43reate a workflow execution.\x12\xb1\x01\n\x11RelaunchExecution\x12(.flyteidl.admin.ExecutionRelaunchRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"I\x82\xd3\xe4\x93\x02 \"\x1b/api/v1/executions/relaunch:\x01*\x92\x41 \x1a\x1eRelaunch a workflow execution.\x12\xc2\x01\n\x0cGetExecution\x12+.flyteidl.admin.WorkflowExecutionGetRequest\x1a\x19.flyteidl.admin.Execution\"j\x82\xd3\xe4\x93\x02\x37\x12\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x92\x41*\x1a(Retrieve an existing workflow execution.\x12\x82\x02\n\x10GetExecutionData\x12/.flyteidl.admin.WorkflowExecutionGetDataRequest\x1a\x30.flyteidl.admin.WorkflowExecutionGetDataResponse\"\x8a\x01\x82\xd3\xe4\x93\x02<\x12:/api/v1/data/executions/{id.project}/{id.domain}/{id.name}\x92\x41\x45\x1a\x43Retrieve input and output data from an existing workflow execution.\x12\xc8\x01\n\x0eListExecutions\x12#.flyteidl.admin.ResourceListRequest\x1a\x1d.flyteidl.admin.ExecutionList\"r\x82\xd3\xe4\x93\x02-\x12+/api/v1/executions/{id.project}/{id.domain}\x92\x41<\x1a:Fetch existing workflow executions matching input filters.\x12\xf4\x01\n\x12TerminateExecution\x12).flyteidl.admin.ExecutionTerminateRequest\x1a*.flyteidl.admin.ExecutionTerminateResponse\"\x86\x01\x82\xd3\xe4\x93\x02:*5/api/v1/executions/{id.project}/{id.domain}/{id.name}:\x01*\x92\x41\x43\x1a\x41Terminate the active workflow execution specified in the request.\x12\xfc\x01\n\x10GetNodeExecution\x12\'.flyteidl.admin.NodeExecutionGetRequest\x1a\x1d.flyteidl.admin.NodeExecution\"\x9f\x01\x82\xd3\xe4\x93\x02p\x12n/api/v1/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x92\x41&\x1a$Retrieve an existing node execution.\x12\x9a\x02\n\x12ListNodeExecutions\x12(.flyteidl.admin.NodeExecutionListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\xb6\x01\x82\xd3\xe4\x93\x02u\x12s/api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x92\x41\x38\x1a\x36\x46\x65tch existing node executions matching input filters.\x12\xef\x04\n\x19ListNodeExecutionsForTask\x12/.flyteidl.admin.NodeExecutionForTaskListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\xfd\x03\x82\xd3\xe4\x93\x02\xac\x03\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}\x92\x41G\x1a\x45\x46\x65tch child node executions launched by the specified task execution.\x12\xb3\x02\n\x14GetNodeExecutionData\x12+.flyteidl.admin.NodeExecutionGetDataRequest\x1a,.flyteidl.admin.NodeExecutionGetDataResponse\"\xbf\x01\x82\xd3\xe4\x93\x02u\x12s/api/v1/data/node_executions/{id.execution_id.project}/{id.execution_id.domain}/{id.execution_id.name}/{id.node_id}\x92\x41\x41\x1a?Retrieve input and output data from an existing node execution.\x12\x97\x01\n\x0fRegisterProject\x12&.flyteidl.admin.ProjectRegisterRequest\x1a\'.flyteidl.admin.ProjectRegisterResponse\"3\x82\xd3\xe4\x93\x02\x15\"\x10/api/v1/projects:\x01*\x92\x41\x15\x1a\x13Register a project.\x12\x87\x01\n\rUpdateProject\x12\x17.flyteidl.admin.Project\x1a%.flyteidl.admin.ProjectUpdateResponse\"6\x82\xd3\xe4\x93\x02\x1a\x1a\x15/api/v1/projects/{id}:\x01*\x92\x41\x13\x1a\x11Update a project.\x12\x85\x01\n\x0cListProjects\x12\".flyteidl.admin.ProjectListRequest\x1a\x18.flyteidl.admin.Projects\"7\x82\xd3\xe4\x93\x02\x12\x12\x10/api/v1/projects\x92\x41\x1c\x1a\x1a\x46\x65tch registered projects.\x12\xdd\x01\n\x13\x43reateWorkflowEvent\x12-.flyteidl.admin.WorkflowExecutionEventRequest\x1a..flyteidl.admin.WorkflowExecutionEventResponse\"g\x82\xd3\xe4\x93\x02\x1d\"\x18/api/v1/events/workflows:\x01*\x92\x41\x41\x1a?Create a workflow execution event recording a phase transition.\x12\xc9\x01\n\x0f\x43reateNodeEvent\x12).flyteidl.admin.NodeExecutionEventRequest\x1a*.flyteidl.admin.NodeExecutionEventResponse\"_\x82\xd3\xe4\x93\x02\x19\"\x14/api/v1/events/nodes:\x01*\x92\x41=\x1a;Create a node execution event recording a phase transition.\x12\xc9\x01\n\x0f\x43reateTaskEvent\x12).flyteidl.admin.TaskExecutionEventRequest\x1a*.flyteidl.admin.TaskExecutionEventResponse\"_\x82\xd3\xe4\x93\x02\x19\"\x14/api/v1/events/tasks:\x01*\x92\x41=\x1a;Create a task execution event recording a phase transition.\x12\xa9\x03\n\x10GetTaskExecution\x12\'.flyteidl.admin.TaskExecutionGetRequest\x1a\x1d.flyteidl.admin.TaskExecution\"\xcc\x02\x82\xd3\xe4\x93\x02\x9c\x02\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}\x92\x41&\x1a$Retrieve an existing task execution.\x12\xd3\x02\n\x12ListTaskExecutions\x12(.flyteidl.admin.TaskExecutionListRequest\x1a!.flyteidl.admin.TaskExecutionList\"\xef\x01\x82\xd3\xe4\x93\x02\xad\x01\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}\x92\x41\x38\x1a\x36\x46\x65tch existing task executions matching input filters.\x12\xe0\x03\n\x14GetTaskExecutionData\x12+.flyteidl.admin.TaskExecutionGetDataRequest\x1a,.flyteidl.admin.TaskExecutionGetDataResponse\"\xec\x02\x82\xd3\xe4\x93\x02\xa1\x02\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}\x92\x41\x41\x1a?Retrieve input and output data from an existing task execution.\x12\xbf\x02\n\x1dUpdateProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesUpdateRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesUpdateResponse\"\xb0\x01\x82\xd3\xe4\x93\x02O\x1aJ/api/v1/project_domain_attributes/{attributes.project}/{attributes.domain}:\x01*\x92\x41X\x1aVUpdate the customized resource attributes associated with a project-domain combination\x12\x9f\x02\n\x1aGetProjectDomainAttributes\x12\x31.flyteidl.admin.ProjectDomainAttributesGetRequest\x1a\x32.flyteidl.admin.ProjectDomainAttributesGetResponse\"\x99\x01\x82\xd3\xe4\x93\x02\x36\x12\x34/api/v1/project_domain_attributes/{project}/{domain}\x92\x41Z\x1aXRetrieve the customized resource attributes associated with a project-domain combination\x12\xa9\x02\n\x1d\x44\x65leteProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesDeleteRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesDeleteResponse\"\x9a\x01\x82\xd3\xe4\x93\x02\x39*4/api/v1/project_domain_attributes/{project}/{domain}:\x01*\x92\x41X\x1aVDelete the customized resource attributes associated with a project-domain combination\x12\xce\x02\n\x18UpdateWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesUpdateRequest\x1a\x30.flyteidl.admin.WorkflowAttributesUpdateResponse\"\xce\x01\x82\xd3\xe4\x93\x02_\x1aZ/api/v1/workflow_attributes/{attributes.project}/{attributes.domain}/{attributes.workflow}:\x01*\x92\x41\x66\x1a\x64Update the customized resource attributes associated with a project, domain and workflow combination\x12\xa3\x02\n\x15GetWorkflowAttributes\x12,.flyteidl.admin.WorkflowAttributesGetRequest\x1a-.flyteidl.admin.WorkflowAttributesGetResponse\"\xac\x01\x82\xd3\xe4\x93\x02;\x12\x39/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x92\x41h\x1a\x66Retrieve the customized resource attributes associated with a project, domain and workflow combination\x12\xad\x02\n\x18\x44\x65leteWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesDeleteRequest\x1a\x30.flyteidl.admin.WorkflowAttributesDeleteResponse\"\xad\x01\x82\xd3\xe4\x93\x02>*9/api/v1/workflow_attributes/{project}/{domain}/{workflow}:\x01*\x92\x41\x66\x1a\x64\x44\x65lete the customized resource attributes associated with a project, domain and workflow combination\x12\xe1\x01\n\x17ListMatchableAttributes\x12..flyteidl.admin.ListMatchableAttributesRequest\x1a/.flyteidl.admin.ListMatchableAttributesResponse\"e\x82\xd3\xe4\x93\x02\x1e\x12\x1c/api/v1/matchable_attributes\x92\x41>\x1a k8s.io/client-go kubernetes-1.16.2 -// and it will be replaced with the 'sha' variant of the version -replace k8s.io/client-go => k8s.io/client-go v0.0.0-20191016111102-bec269661e48 diff --git a/go.sum b/go.sum index a64614033..bbeea5b76 100644 --- a/go.sum +++ b/go.sum @@ -5,60 +5,107 @@ cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6A cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= -cloud.google.com/go v0.47.0/go.mod h1:5p3Ky/7f3N10VBkhuR5LFtddroTiMyjZV/Kj5qOQFxU= -cloud.google.com/go v0.52.0 h1:GGslhk/BU052LPlnI1vpp3fcbUs+hQ3E+Doti/3/vF8= +cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= +cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= +cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= +cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= +cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= +cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= +cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= +cloud.google.com/go v0.66.0/go.mod h1:dgqGAjKCDxyhGTtC9dAREQGUJpkceNm1yt590Qno0Ko= +cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= +cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= +cloud.google.com/go v0.75.0 h1:XgtDnVJRCPEUG21gjFiRPz4zI1Mjg16R+NYQjfmU4XY= +cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= +cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= +cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= +cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= +cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= +cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= +cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= +cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= +cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= +cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= +cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= +cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= +cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= +cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= +cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= +cloud.google.com/go/storage v1.12.0 h1:4y3gHptW1EHVtcPAVE0eBBlFuGqEejTTG3KdIE0lUX4= +cloud.google.com/go/storage v1.12.0/go.mod h1:fFLk2dp2oAhDz8QFKwqrjdJvxSp/W2g7nillojlL5Ho= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -github.com/Azure/azure-sdk-for-go v10.2.1-beta+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= github.com/Azure/azure-sdk-for-go v32.5.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go v38.2.0+incompatible h1:ZeCdp1E/V5lI8oLR/BjWQh0OW9aFBYlgXGKRVIWNPXY= -github.com/Azure/azure-sdk-for-go v38.2.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= +github.com/Azure/azure-sdk-for-go v51.0.0+incompatible h1:p7blnyJSjJqf5jflHbSGhIhEpXIgIFmYZNg5uwqweso= +github.com/Azure/azure-sdk-for-go v51.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= +github.com/Azure/go-autorest v14.2.0+incompatible h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs= +github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= github.com/Azure/go-autorest/autorest v0.9.0/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI= -github.com/Azure/go-autorest/autorest v0.9.2/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI= -github.com/Azure/go-autorest/autorest v0.9.4 h1:1cM+NmKw91+8h5vfjgzK4ZGLuN72k87XVZBWyGwNjUM= -github.com/Azure/go-autorest/autorest v0.9.4/go.mod h1:GsRuLYvwzLjjjRoWEIyMUaYq8GNUx2nRB378IPt/1p0= +github.com/Azure/go-autorest/autorest v0.11.12/go.mod h1:eipySxLmqSyC5s5k1CLupqet0PSENBEDP93LQ9a8QYw= +github.com/Azure/go-autorest/autorest v0.11.17 h1:2zCdHwNgRH+St1J+ZMf66xI8aLr/5KMy+wWLH97zwYM= +github.com/Azure/go-autorest/autorest v0.11.17/go.mod h1:eipySxLmqSyC5s5k1CLupqet0PSENBEDP93LQ9a8QYw= github.com/Azure/go-autorest/autorest/adal v0.5.0/go.mod h1:8Z9fGy2MpX0PvDjB1pEgQTmVqjGhiHBW7RJJEciWzS0= -github.com/Azure/go-autorest/autorest/adal v0.8.0/go.mod h1:Z6vX6WXXuyieHAXwMj0S6HY6e6wcHn37qQMBQlvY3lc= -github.com/Azure/go-autorest/autorest/adal v0.8.1 h1:pZdL8o72rK+avFWl+p9nE8RWi1JInZrWJYlnpfXJwHk= -github.com/Azure/go-autorest/autorest/adal v0.8.1/go.mod h1:ZjhuQClTqx435SRJ2iMlOxPYt3d2C/T/7TiQCVZSn3Q= +github.com/Azure/go-autorest/autorest/adal v0.9.5/go.mod h1:B7KF7jKIeC9Mct5spmyCB/A8CG/sEz1vwIRGv/bbw7A= +github.com/Azure/go-autorest/autorest/adal v0.9.10 h1:r6fZHMaHD8B6LDCn0o5vyBFHIHrM6Ywwx7mb49lPItI= +github.com/Azure/go-autorest/autorest/adal v0.9.10/go.mod h1:B7KF7jKIeC9Mct5spmyCB/A8CG/sEz1vwIRGv/bbw7A= github.com/Azure/go-autorest/autorest/date v0.1.0/go.mod h1:plvfp3oPSKwf2DNjlBjWF/7vwR+cUD/ELuzDCXwHUVA= -github.com/Azure/go-autorest/autorest/date v0.2.0 h1:yW+Zlqf26583pE43KhfnhFcdmSWlm5Ew6bxipnr/tbM= -github.com/Azure/go-autorest/autorest/date v0.2.0/go.mod h1:vcORJHLJEh643/Ioh9+vPmf1Ij9AEBM5FuBIXLmIy0g= +github.com/Azure/go-autorest/autorest/date v0.3.0 h1:7gUk1U5M/CQbp9WoqinNzJar+8KY+LPI6wiWrP/myHw= +github.com/Azure/go-autorest/autorest/date v0.3.0/go.mod h1:BI0uouVdmngYNUzGWeSYnokU+TrmwEsOqdt8Y6sso74= github.com/Azure/go-autorest/autorest/mocks v0.1.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= github.com/Azure/go-autorest/autorest/mocks v0.2.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= -github.com/Azure/go-autorest/autorest/mocks v0.3.0/go.mod h1:a8FDP3DYzQ4RYfVAxAN3SVSiiO77gL2j2ronKKP0syM= -github.com/Azure/go-autorest/autorest/to v0.3.0/go.mod h1:MgwOyqaIuKdG4TL/2ywSsIWKAfJfgHDo8ObuUk3t5sA= -github.com/Azure/go-autorest/logger v0.1.0 h1:ruG4BSDXONFRrZZJ2GUXDiUyVpayPmb1GnWeHDdaNKY= +github.com/Azure/go-autorest/autorest/mocks v0.4.1/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k= +github.com/Azure/go-autorest/autorest/to v0.4.0/go.mod h1:fE8iZBn7LQR7zH/9XU2NcPR4o9jEImooCeWJcYV/zLE= github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6LSNgds39diKLz7Vrc= -github.com/Azure/go-autorest/tracing v0.5.0 h1:TRn4WjSnkcSy5AEG3pnbtFSwNtwzjr4VYyQflFE619k= +github.com/Azure/go-autorest/logger v0.2.0 h1:e4RVHVZKC5p6UANLJHkM4OfR1UKZPj8Wt8Pcx+3oqrE= +github.com/Azure/go-autorest/logger v0.2.0/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8= github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= +github.com/Azure/go-autorest/tracing v0.6.0 h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo= +github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/PuerkitoBio/purell v1.0.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= -github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= +github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= +github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= +github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= +github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= +github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= +github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod h1:SkGFH1ia65gfNATL8TAiHDNxPzPdmEL5uirI2Uyuz6c= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= github.com/antihax/optional v0.0.0-20180407024304-ca021399b1a6/go.mod h1:V8iCPQYkqmusNa815XgQio277wI47sdRh1dUOLdyC6Q= github.com/antihax/optional v1.0.0 h1:xK2lYat7ZLaVVcIuj82J8kIro4V6kDe0AUDFboUCwcg= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= +github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= +github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= +github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= +github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= +github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= +github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a/go.mod h1:DAHtR1m6lCRdSC2Tm3DSWRPvIPr6xNKyeHdqDQSQT+A= +github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= +github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= github.com/aws/aws-sdk-go v1.23.4/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go v1.25.16/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go v1.28.9 h1:grIuBQc+p3dTRXerh5+2OxSuWFi0iXuxbFdTSg0jaW0= -github.com/aws/aws-sdk-go v1.28.9/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/aws/aws-sdk-go v1.37.1 h1:BTHmuN+gzhxkvU9sac2tZvaY0gV9ihbHw+KxZOecYvY= +github.com/aws/aws-sdk-go v1.37.1/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= +github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= github.com/benlaurie/objecthash v0.0.0-20180202135721-d1e3d6079fc1/go.mod h1:jvdWlw8vowVGnZqSDC7yhPd7AifQeQbRDkZcQXV2nRg= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= +github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84= +github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= +github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= @@ -68,317 +115,476 @@ github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927/go.mod h1:h/aW8ynjgk github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= +github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/coocood/freecache v1.1.0 h1:ENiHOsWdj1BrrlPwblhbn4GdAsMymK3pZORJ+bJGAjA= -github.com/coocood/freecache v1.1.0/go.mod h1:ePwxCDzOYvARfHdr1pByNct1at3CoKnsipOHwKlNbzI= +github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= +github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= +github.com/coocood/freecache v1.1.1 h1:uukNF7QKCZEdZ9gAV7WQzvh0SbjwdMF6m3x3rxEkaPc= +github.com/coocood/freecache v1.1.1/go.mod h1:OKrEjkGVoxZhyWAJoeFi5BMLUJm2Tit0kpGkIr7NGYY= github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= -github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= -github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= +github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-oidc v2.1.0+incompatible h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM= github.com/coreos/go-oidc v2.1.0+incompatible/go.mod h1:CgnwVTmzoESiwO9qyAFEMiHoZ1nMCKZlZ9V6mm3/LKc= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= -github.com/davecgh/go-spew v0.0.0-20151105211317-5215b55f46b2/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= +github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= +github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= -github.com/dnaeon/go-vcr v1.0.1/go.mod h1:aBB1+wY4s93YsC3HHjMBMrwTj2R9FHDzUr9KyGc8n1E= +github.com/dnaeon/go-vcr v1.1.0/go.mod h1:M7tiix8f0r6mKKJ3Yq/kqU1OYf3MnfmBWVbPx/yU9ko= github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= -github.com/elazarl/goproxy v0.0.0-20170405201442-c4fc26588b6e/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= +github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= +github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= +github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= +github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= +github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= +github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= +github.com/envoyproxy/go-control-plane v0.6.9/go.mod h1:SBwIajubJHhxtWwsL9s8ss4safvEdbitLhGGK48rN6g= +github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= +github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/ernesto-jimenez/gogen v0.0.0-20180125220232-d7d4131e6607/go.mod h1:Cg4fM0vhYWOZdgM7RIOSTRNIc8/VT7CXClC3Ni86lu4= -github.com/evanphx/json-patch v4.2.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys= +github.com/evanphx/json-patch v4.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= -github.com/fatih/color v1.9.0 h1:8xPHl4/q1VyqGIPif1F+1V3Y3lSmrq01EabUW3CoW5s= -github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= -github.com/fatih/structtag v1.1.0/go.mod h1:mBJUNpUnHmRKrKlQQlmCrh5PuhftFbNv8Ys4/aAZl94= +github.com/fatih/color v1.10.0 h1:s36xzo75JdqLaaWoiEHk767eHiwo0598uUxyfiPkDsg= +github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM= github.com/fatih/structtag v1.2.0/go.mod h1:mBJUNpUnHmRKrKlQQlmCrh5PuhftFbNv8Ys4/aAZl94= +github.com/flyteorg/flytestdlib v0.3.13 h1:5ioA/q3ixlyqkFh5kDaHgmPyTP/AHtqq1K/TIbVLUzM= +github.com/flyteorg/flytestdlib v0.3.13/go.mod h1:Tz8JCECAbX6VWGwFT6cmEQ+RJpZ/6L9pswu3fzWs220= +github.com/form3tech-oss/jwt-go v3.2.2+incompatible h1:TcekIExNqud5crz4xD2pavyTgWiPvpYe4Xau31I0PRk= +github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= +github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4= +github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= -github.com/fsnotify/fsnotify v1.4.8-0.20191012010759-4bf2d1fec783/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= +github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= +github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= +github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= -github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= -github.com/go-openapi/jsonreference v0.0.0-20160704190145-13c6e3589ad9/go.mod h1:W3Z9FmVs9qj+KR4zFKmDPGiLdk1D9Rlm7cyMvf57TTg= -github.com/go-openapi/spec v0.0.0-20160808142527-6aced65f8501/go.mod h1:J8+jY1nAiCcj+friV/PDoE1/3eeccG9LYBs0tYvLOWc= -github.com/go-openapi/swag v0.0.0-20160704191624-1d0bd113de87/go.mod h1:DXUve3Dpr1UfpPtxFw+EFuQ41HhCWZfha5jSVRG7C7I= +github.com/go-logr/logr v0.2.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= +github.com/go-logr/logr v0.4.0 h1:K7/B1jt6fIBQVd4Owv2MqGQClcgf0R266+7C/QjRcLc= +github.com/go-logr/logr v0.4.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= +github.com/go-openapi/jsonpointer v0.19.2/go.mod h1:3akKfEdA7DF1sugOqz1dVQHBcuDBPKZGEoHC/NkiQRg= +github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= +github.com/go-openapi/jsonreference v0.19.2/go.mod h1:jMjeRr2HHw6nAVajTXJ4eiUwohSTlpa0o73RUL1owJc= +github.com/go-openapi/jsonreference v0.19.3/go.mod h1:rjx6GuL8TTa9VaixXglHmQmIL98+wF9xc8zWvFonSJ8= +github.com/go-openapi/spec v0.19.3/go.mod h1:FpwSN1ksY1eteniUU7X0N/BgJ7a4WvBFVA8Lj9mJglo= +github.com/go-openapi/swag v0.19.2/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= +github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= +github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/go-test/deep v1.0.7 h1:/VSMRlnY/JSyqxQUzQLKVMAskpY/NZKFA5j2P+0pP2M= +github.com/go-test/deep v1.0.7/go.mod h1:QV8Hv/iy04NyLBxAdO9njL0iVPN1S4d/A3NVv1V36o8= +github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/gogo/protobuf v1.2.2-0.20190723190241-65acae22fc9d/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gogo/protobuf v1.3.1 h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls= github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= +github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20191002201903-404acd9df4cc/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e h1:1r7pUrabqp18hOBcwBwiTsbnFeTZHV9eER/QT5JVZxY= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= -github.com/golang/protobuf v0.0.0-20161109072736-4bd1920723d7/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= +github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= +github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.4.3 h1:JjCZWpVbqXDqFVmTfYWEVTMIYrL/NPdPSCHPJ0T/raM= +github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= -github.com/google/go-cmp v0.3.0 h1:crn/baboCvb5fXaQ0IJ1SGTsTVrWpDsCWC8EGETZijY= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/gofuzz v0.0.0-20161122191042-44d81051d367/go.mod h1:HP5RmnzzSNb993RKQDq4+1A4ia9nllfqcQFTQJedwGI= -github.com/google/gofuzz v1.0.0 h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw= +github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/gofuzz v1.1.0 h1:Hsa8mG0dQ46ij8Sl2AYJDUv1oA9/d6Vk+3LG99Oe02g= github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200905233945-acf8798be1f7/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/readahead v0.0.0-20161222183148-eaceba169032/go.mod h1:qYysrqQXuV4tzsizt4oOQ6mrBZQ0xnQXP3ylXX8Jk5Y= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5 h1:sjZBwGj9Jlw33ImPtvFviGYvseOtDM7hkSKB7+Tv3SM= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= -github.com/gophercloud/gophercloud v0.1.0/go.mod h1:vxM41WHh5uqHVBMZHzuwNOHh8XEoIEcSTewFxm1c5g8= +github.com/googleapis/gnostic v0.4.1/go.mod h1:LRhVm6pbyptWbWbuZ38d1eyptfvIytN3ir6b65WBswg= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= -github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/graymeta/stow v0.0.0-20190522170649-903027f87de7/go.mod h1:B24dekNjtWVeREK+dyMHtI22d85VzCT+sX5bVWDtjoA= -github.com/graymeta/stow v0.2.4 h1:qDGstknYXqcnmBQ5TRJtxD9Qv1MuRbYRhLoSMeUDs7U= -github.com/graymeta/stow v0.2.4/go.mod h1:+0vRL9oMECKjPMP7OeVWl8EIqRCpFwDlth3mrAeV2Kw= -github.com/gregjones/httpcache v0.0.0-20170728041850-787624de3eb7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= +github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= +github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= +github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= +github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/graymeta/stow v0.2.7 h1:b31cB1Ylw/388sYSZxnmpjT2QxC21AaQ8fRnUtE13b4= +github.com/graymeta/stow v0.2.7/go.mod h1:JAs139Zr29qfsecy7b+h9DRsWXbFbsd7LCrbCDYI84k= +github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= +github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-middleware v1.1.0 h1:THDBEeQ9xZ8JEaCLyLQqXMMdRqNr0QAUJTIkQAUtFjg= github.com/grpc-ecosystem/go-grpc-middleware v1.1.0/go.mod h1:f5nM7jw/oeRSadq3xCzHAvxcr8HZnzsqU6ILg/0NiiE= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/grpc-ecosystem/grpc-gateway v1.11.3 h1:h8+NsYENhxNTuq+dobk3+ODoJtwY4Fu0WQXsxJfL8aM= -github.com/grpc-ecosystem/grpc-gateway v1.11.3/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.12.2 h1:D0EVSTwQoQOyfY35QNSuPJA4jpZRtkoGYWQMB7XNg5o= github.com/grpc-ecosystem/grpc-gateway v1.12.2/go.mod h1:8XEsbTttt/W+VvjtQhLACqCisSPWTxCZ7sBRjU6iH9c= +github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= +github.com/hashicorp/consul/api v1.3.0/go.mod h1:MmDNSzIMUjNpY/mQ398R4bk2FnqQLoPndWW5VkKPlCE= +github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= +github.com/hashicorp/consul/sdk v0.3.0/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= +github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= +github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU= +github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= +github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4= +github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= +github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= +github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= +github.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.3/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= github.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= +github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= +github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= +github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= +github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= -github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= -github.com/influxdata/influxdb v1.7.9 h1:uSeBTNO4rBkbp1Be5FKRsAmglM9nlx25TzVQRQt1An4= -github.com/influxdata/influxdb v1.7.9/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= -github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af h1:pmfjZENx5imkbgOkpRUYLnmbU7UEFbjtDA2hxJ1ichM= +github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= +github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= +github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= +github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= -github.com/json-iterator/go v0.0.0-20180612202835-f2b4162afba3/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= -github.com/json-iterator/go v1.1.7 h1:KfgG9LzI+pYjr4xvmz/5H4FXjokeP+rlHLhv3iH62Fo= github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.10 h1:Kz6Cvnvv2wGdaG/V8yMvfkmNiXq9Ya2KUv4rouJJr68= +github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= +github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.2 h1:DB17ag19krx9CFsz4o3enTrPXyIXCl+2iCXH/aMAp9s= -github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= -github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= +github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= -github.com/lyft/flytestdlib v0.2.31 h1:JAOSGwy/wLprhq1KR9zxekBqnKdSlAQQG1x4KQe+hlI= -github.com/lyft/flytestdlib v0.2.31/go.mod h1:/fqNXKCGChEvMzcRapVq6vDM69Vlusl+bCj7foToaUQ= -github.com/lyft/flytestdlib v0.3.0 h1:nIkX4MlyYdcLLzaF35RI2P5BhARt+qMgHoFto8eVNzU= -github.com/lyft/flytestdlib v0.3.0/go.mod h1:LJPPJlkFj+wwVWMrQT3K5JZgNhZi2mULsCG4ZYhinhU= -github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= +github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= +github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= +github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ= github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mattn/go-colorable v0.0.9 h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4= +github.com/magiconair/properties v1.8.4/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= +github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= -github.com/mattn/go-colorable v0.1.4 h1:snbPLB8fVfU9iwbbo30TPtbLRzwWu6aJS6Xh4eaaviA= -github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.10 h1:qxFzApOv4WsAL965uUPIsXzAKCZxN2p9UqdhFS4ZW10= -github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= -github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= +github.com/mattn/go-colorable v0.1.8 h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ0s8= +github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= +github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= +github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= +github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= +github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE= +github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= +github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= +github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= +github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag= +github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/reflect2 v0.0.0-20180320133207-05fbef0ca5da/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.1 h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8= github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= -github.com/ncw/swift v1.0.49-0.20190728102658-a24ef33bc9b7/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM= -github.com/ncw/swift v1.0.49 h1:eQaKIjSt/PXLKfYgzg01nevmO+CMXfXGRhB1gOhDs7E= +github.com/nats-io/jwt v0.3.0/go.mod h1:fRYCDE99xlTsqUzISS1Bi75UBJ6ljOJQOAAu5VglpSg= +github.com/nats-io/jwt v0.3.2/go.mod h1:/euKqTS1ZD+zzjYrY7pseZrTtWQSjujC7xjPc8wL6eU= +github.com/nats-io/nats-server/v2 v2.1.2/go.mod h1:Afk+wRZqkMQs/p45uXdrVLuab3gwv3Z8C4HTBu8GD/k= +github.com/nats-io/nats.go v1.9.1/go.mod h1:ZjDU1L/7fJ09jvUSRVBR2e7+RnLiiIQyqyzEE/Zbp4w= +github.com/nats-io/nkeys v0.1.0/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= +github.com/nats-io/nkeys v0.1.3/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= +github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/ncw/swift v1.0.49/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM= +github.com/ncw/swift v1.0.53 h1:luHjjTNtekIEvHg5KdAFIBaH7bWfNkefwFnpDffSIks= +github.com/ncw/swift v1.0.53/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM= +github.com/oklog/oklog v0.3.2/go.mod h1:FCV+B7mhrz4o+ueLpx+KqkyXRGMWOYEvfiXtdGtbWGs= +github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= +github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.8.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.10.1/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.11.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= -github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= +github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= +github.com/op/go-logging v0.0.0-20160315200505-970db520ece7/go.mod h1:HzydrMdWErDVzsI23lYNej1Htcns9BCg93Dk0bBINWk= +github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492/go.mod h1:Ngi6UdF0k5OKD5t5wlmGhe/EDKPoUM3BXZSSfIuJbis= +github.com/opentracing/basictracer-go v1.0.0/go.mod h1:QfBfYuafItcjQuMwinw9GhYKwFXS9KnPs5lxoYwgW74= +github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5/go.mod h1:/wsWhb9smxSfWAKL3wpBW7V8scJMt8N8gnaMCS9E/cA= +github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw= +github.com/openzipkin/zipkin-go v0.2.1/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= +github.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= +github.com/pact-foundation/pact-go v1.0.4/go.mod h1:uExwJY4kCzNPcHRj+hCR/HBbOOIwwtUjcrb0b5/5kLM= +github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= +github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/pelletier/go-toml v1.5.0/go.mod h1:5N711Q9dKgbdkxHL+MEfF31hpT7l0S0s/t2kKREewys= -github.com/pelletier/go-toml v1.6.0/go.mod h1:5N711Q9dKgbdkxHL+MEfF31hpT7l0S0s/t2kKREewys= +github.com/pelletier/go-toml v1.8.1/go.mod h1:T2/BmBdy8dvIRq1a/8aqjN41wvWlN4lrapLU/GW4pbc= +github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= +github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= +github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pkg/sftp v1.10.0/go.mod h1:NxmoDg/QLVWluQDUYG7XBZTLUpKeFa8e3aMf1BfjyHk= -github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 h1:J9b7z+QKAmPf4YLrFg6oQUotqHQeUNWwkvo7jZp1GLU= github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35/go.mod h1:prYjPmNq4d1NPVmpShWobRqXY3q7Vp+80DqgxxUrUIA= github.com/pquerna/ffjson v0.0.0-20190813045741-dac163c6c0a9/go.mod h1:YARuvh7BUWHNhzDq2OM5tzR2RiCcN2D7sapiKyCel/M= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= -github.com/prometheus/client_golang v1.0.0 h1:vrDKnkGzuGvhNAL56c7DBz29ZL+KxnoR0x7enabFceM= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= -github.com/prometheus/client_golang v1.3.0 h1:miYCvYqFXtl/J9FIy8eNpBfYthAEFg+Ys0XyUVEcDsc= github.com/prometheus/client_golang v1.3.0/go.mod h1:hJaj2vgQTGQmVCsAACORcieXFeDPbaTKGT+JTgUa3og= +github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= +github.com/prometheus/client_golang v1.9.0 h1:Rrch9mh17XcxvEu9D9DEpb4isxjGBtcevQjKvxPRQIU= +github.com/prometheus/client_golang v1.9.0/go.mod h1:FqZLKOZnGdFAhOK4nqGHa7D66IdsO+O441Eve7ptJDU= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= +github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.7.0 h1:L+1lyG48J1zAQXA3RBX/nG/B3gjlHq0zTt2tlbJLyCY= github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= -github.com/prometheus/common v0.9.1 h1:KOMtN28tlbam3/7ZKEYKHhKoJZYYj3gMH4uc62x7X7U= -github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= +github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= +github.com/prometheus/common v0.15.0 h1:4fgOnadei3EZvgRwxJ7RMpG1k1pOZth5Pc13tyspaKM= +github.com/prometheus/common v0.15.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.5 h1:3+auTFlqw+ZaQYJARz6ArODtkaIwtvBTx3N2NehQlL8= -github.com/prometheus/procfs v0.0.5/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= -github.com/prometheus/procfs v0.0.8 h1:+fpWZdT24pJBiqJdAwYBjPSk+5YmQzYNPYzQsdzLkt8= github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= +github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= +github.com/prometheus/procfs v0.2.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= +github.com/prometheus/procfs v0.3.0 h1:Uehi/mxLK0eiUc0H0++5tpMGTexB8wZ598MIgU8VpDM= +github.com/prometheus/procfs v0.3.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= +github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= +github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= +github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E= github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww= github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= -github.com/satori/uuid v1.2.0/go.mod h1:B8HLsPLik/YNn6KKWVMDJ8nzCL8RP5WyfsnmvnAEwIU= +github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= +github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= +github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= +github.com/sirupsen/logrus v1.7.0 h1:ShrD1U9pZB12TX0cVy0DtePoCH97K8EtX+mg7ZARUtM= +github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= +github.com/sony/gobreaker v0.4.1/go.mod h1:ZKptC7FHNvhBz7dN2LGjPVBz2sZJmc0/PkyDJOjmxWY= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= +github.com/spf13/afero v1.5.1/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cobra v0.0.5 h1:f0B+LkLX6DtmRH1isoNA9VTtNUK9K8xYd28JNNfOv/s= -github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= +github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= +github.com/spf13/cobra v1.1.1 h1:KfztREH0tPxJJ+geloSLaAkaPkr4ki2Er5quFV1TDo4= +github.com/spf13/cobra v1.1.1/go.mod h1:WnodtKOvamDL/PwE2M4iKs8aMDBZ5Q5klgD3qfVJQMI= github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= -github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= -github.com/spf13/viper v1.6.2/go.mod h1:t3iDnF5Jlj76alVNuyFBk5oUMCvsrkbvZK0WQdfDi5k= +github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= +github.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= +github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.1.1 h1:2vfRuCMp5sSVIDSqO8oNnWJq7mPa6KVP3iPIwFBuy8A= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.2.0 h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48= github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= -github.com/stretchr/testify v0.0.0-20151208002404-e3a8ff8ce365/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/objx v0.3.0 h1:NGXK3lHquSN08v5vWalVI/L8XU9hdzE/G6xsrze47As= +github.com/stretchr/objx v0.3.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= +github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= -github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= +github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= +github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= -github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= +github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= +go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= +go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= +go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= +go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= -go.opencensus.io v0.22.1/go.mod h1:Ap50jQcDJrx6rB6VgeeFPtuPIf3wMRvRfrfYDO6+BmA= -go.opencensus.io v0.22.2 h1:75k/FF0Q2YM8QYo07VPddOLBslDt1MZOdEslOHvmzAs= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= +go.opencensus.io v0.22.6 h1:BdkrbWrzDlV9dnbzoP7sfN+dHheJ4J9JOaYxcUDL+ok= +go.opencensus.io v0.22.6/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= +go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= +go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= +go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= +go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8 h1:1wopBVtVdWnn03fZelqdXTqk7U7zPQCb+T4rbU9ZEoU= golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200117160349-530e935923ad h1:Jh8cai0fqIK+f6nG0UgPW5wFk8wmiMhM3AyciDBdtQg= -golang.org/x/crypto v0.0.0-20200117160349-530e935923ad/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad h1:DN0cp81fZ3njFcrLCytUHRSUkqBjfTo4Tx9RJTWs0EY= +golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= -golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= +golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= +golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= +golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -389,58 +595,92 @@ golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHl golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= +golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/net v0.0.0-20170114055629-f2499483f923/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190812203447-cdfb69ac37fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191002035440-2ec189313ef0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191004110552-13f9640d40b9/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191021144547-ec77196f6094/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191028085509-fe3aa8a45271 h1:N66aaryRB3Ax92gH0v3hp1QYZ3zWWCCUR/j8Ifh45Ss= -golang.org/x/net v0.0.0-20191028085509-fe3aa8a45271/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa h1:F+8P+gmewFQYRk6JoLQLwjBCTu3mcIURZfNkVweuRKA= +golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200904194848-62affa334b73/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210119194325-5f4716e94777 h1:003p0dJM77cxMSyCPFphvZf/Y5/NXf5fzg6ufd1/Oew= +golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 h1:SVwTIAaPC2U/AvvLNZ2a7OVsmBpC8L5BlwK1whH3hm0= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d h1:TzXSXBo42m9gQenoE3b9BGiEpg5IG2JkU5FkPIawgtw= +golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210126194326-f9ce19ea3013 h1:55H5j7lotzuFCEOKDsMch+fRNUQ9DgtyHOUP31FNqKc= +golang.org/x/oauth2 v0.0.0-20210126194326-f9ce19ea3013/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190209173611-3b5209105503/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -449,34 +689,62 @@ golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191020212454-3e7259c5e7c2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191028164358-195ce5e7f934 h1:u/E0NqCIWRDAo9WCFo6Ko49njPFDLSd3z+X1HgWDMpE= -golang.org/x/sys v0.0.0-20191028164358-195ce5e7f934/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191220142924-d4481acd189f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200122134326-e047566fdf82 h1:ywK/j/KkyTHcdyYSZNXGjMwgmDSfjglYZ3vStQ/gSCU= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9 h1:1/DFK4b7JH8DmkqhUk48onnSfrPzImPoVxuomtbT2nk= -golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200828194041-157a740278f4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201112073958-5cba982894dd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c h1:VwygUrnw9jn88c4u8GD3rZQbqrP/tgas88tPUbBxQrk= +golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.5 h1:i6eZZ+zk0SOf0xgBpEpPD18qWcJda6q1sxt3S0kzyUQ= +golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20190921001708-c4c64cad1fd0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20191024005414-555d28b269f0 h1:/5xXl8Y5W96D+TtHSlonuFqGHIWVuyCkGJLwGh9JJFs= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 h1:Hir2P/De0WpUhtrKGGjvSb2YxUgyZ7EFOSLIcSSpiwE= +golang.org/x/time v0.0.0-20201208040808-7e3f01d25324/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181011042414-1f849cf54d09/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= @@ -488,110 +756,225 @@ golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBn golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190614205625-5aca471b1d59/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191010171213-8abd42400456/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191204011308-9611592c72f6/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200124170513-3f4d10fc73b4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= +golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200828161849-5deb26317202/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= +golang.org/x/tools v0.0.0-20200915173823-2db8f0ff891c/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= +golang.org/x/tools v0.0.0-20200918232735-d647fc253266/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= +golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/api v0.3.1/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.11.1-0.20191020000718-bf72a15fd9e9/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.15.0 h1:yzlyyDW/J0w8yNFJIhiAJy4kq74S+1DOLdawELNxFMA= +google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= +google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= +google.golang.org/api v0.31.0/go.mod h1:CL+9IBCa2WWU6gRuBWaKqGWLFFwbEUXkfeMkHLQWYWo= +google.golang.org/api v0.32.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= +google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= +google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= +google.golang.org/api v0.38.0 h1:vDyWk6eup8eQAidaZ31sNWIn8tZEL8qpbtGkBD4ytQo= +google.golang.org/api v0.38.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= -google.golang.org/appengine v1.6.5 h1:tycE03LOZYQNhDpS27tcQdAzLCVMaj7QT2SXxebnpCM= google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190530194941-fb225487d101/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s= google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= google.golang.org/genproto v0.0.0-20190927181202-20e1ac93f88c/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= -google.golang.org/genproto v0.0.0-20191009194640-548a555dbc03/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191028173616-919d9bdd9fe6 h1:UXl+Zk3jqqcbEVV7ace5lrt4YdA4tXiz3f/KbmD29Vo= -google.golang.org/genproto v0.0.0-20191028173616-919d9bdd9fe6/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150 h1:VPpdpQkGvFicX9yo4G5oxZPi9ALBnEOZblPSa/Wa2m4= google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= +google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= +google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= +google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= +google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200831141814-d751682dd103/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200914193844-75d14daec038/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200921151605-7abf4a1a14d5/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210126160654-44e461bb6506 h1:uLBY0yHDCj2PMQ98KWDSIDFwn9zK2zh+tgWtbvPPBjI= +google.golang.org/genproto v0.0.0-20210126160654-44e461bb6506/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/grpc v1.22.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.24.0 h1:vb/1TCsVn3DcJlQ0Gs1yB1pKI6Do2/QNwxdKqmc/b0s= +google.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.24.0/go.mod h1:XDChyiUovWa60DnaeDeZmSW86xtLtjtZbwvSiRnRtcA= -google.golang.org/grpc v1.26.0 h1:2dTRdpdFEEhJYQD8EMLB61nnrzSCTbG38PhqdhvOltg= +google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= +google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= +google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.32.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= +google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= +google.golang.org/grpc v1.35.0 h1:TwIQcH3es+MojMVojxxfQ3l3OF2KzlRxML2xZq0kRo8= +google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= +google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= +google.golang.org/protobuf v1.25.0 h1:Ejskq+SyPohKW+1uil0JJMtmHCgJPJ/qWTxr8qp+R4c= +google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= -gopkg.in/inf.v0 v0.9.0/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= +gopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/ini.v1 v1.51.1/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/kothar/go-backblaze.v0 v0.0.0-20190520213052-702d4e7eb465/go.mod h1:zJ2QpyDCYo1KvLXlmdnFlQAyF/Qfth0fB8239Qg7BIE= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= gopkg.in/square/go-jose.v2 v2.4.1 h1:H0TmLt7/KmzlrDOpa1F+zr0Tk90PbJYBfsVUmRLrf9Y= gopkg.in/square/go-jose.v2 v2.4.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= +gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.4 h1:/eiJrUcujPVeJ3xlSWaiNi3uSVmDGBK1pDHUHAnao1I= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10= +gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= -k8s.io/api v0.0.0-20191016110408-35e52d86657a/go.mod h1:/L5qH+AD540e7Cetbui1tuJeXdmNhO8jM6VkXeDdDhQ= -k8s.io/api v0.0.0-20191025225708-5524a3672fbb h1:XpnI7Pjlb0pMfI0hmHgWgaKqkp/JIL3JYYFN21AYCP8= -k8s.io/api v0.0.0-20191025225708-5524a3672fbb/go.mod h1:NMIXwlJTrA+pXie6lv562GUPkluJ4oRGzQfqWBLaceY= -k8s.io/api v0.17.2 h1:NF1UFXcKN7/OOv1uxdRz3qfra8AHsPav5M93hlV9+Dc= -k8s.io/api v0.17.2/go.mod h1:BS9fjjLc4CMuqfSO8vgbHPKMt5+SF0ET6u/RVDihTo4= -k8s.io/apimachinery v0.0.0-20181127025237-2b1284ed4c93/go.mod h1:ccL7Eh7zubPUSh9A3USN90/OzHNSVN6zxzde07TDCL0= -k8s.io/apimachinery v0.0.0-20191004115801-a2eda9f80ab8/go.mod h1:llRdnznGEAqC3DcNm6yEj472xaFVfLM7hnYofMb12tQ= -k8s.io/apimachinery v0.0.0-20191025225532-af6325b3a843 h1:Ge6Np+ecN6pKYcAaFXR53I88+UL5ch+KpLxkKREpsJ4= -k8s.io/apimachinery v0.0.0-20191025225532-af6325b3a843/go.mod h1:gA1T9z4LIup7PIegBwxkF2UYXUNVKhOAPvQWWnAc34k= -k8s.io/apimachinery v0.17.2 h1:hwDQQFbdRlpnnsR64Asdi55GyCaIP/3WQpMmbNBeWr4= -k8s.io/apimachinery v0.17.2/go.mod h1:b9qmWdKlLuU9EBh+06BtLcSf/Mu89rWL33naRxs1uZg= -k8s.io/client-go v0.0.0-20181213151034-8d9ed539ba31/go.mod h1:7vJpHMYJwNQCWgzmNV+VYUl1zCObLyodBc8nIyt8L5s= -k8s.io/client-go v0.0.0-20191016111102-bec269661e48 h1:C2XVy2z0dV94q9hSSoCuTPp1KOG7IegvbdXuz9VGxoU= -k8s.io/client-go v0.0.0-20191016111102-bec269661e48/go.mod h1:hrwktSwYGI4JK+TJA3dMaFyyvHVi/aLarVHpbs8bgCU= -k8s.io/gengo v0.0.0-20190128074634-0689ccc1d7d6/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= -k8s.io/klog v0.0.0-20181102134211-b9b56d5dfc92/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk= -k8s.io/klog v0.3.0/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk= -k8s.io/klog v0.4.0/go.mod h1:4Bi6QPql/J/LkTDqv7R/cd3hPo4k2DG6Ptcz060Ez5I= -k8s.io/klog v1.0.0 h1:Pt+yjF5aB1xDSVbau4VsWe+dQNzA0qv1LlXdC2dF6Q8= -k8s.io/klog v1.0.0/go.mod h1:4Bi6QPql/J/LkTDqv7R/cd3hPo4k2DG6Ptcz060Ez5I= -k8s.io/kube-openapi v0.0.0-20190816220812-743ec37842bf/go.mod h1:1TqjTSzOxsLGIKfj0lK8EeCP7K1iUG65v09OM0/WG5E= -k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a/go.mod h1:1TqjTSzOxsLGIKfj0lK8EeCP7K1iUG65v09OM0/WG5E= -k8s.io/utils v0.0.0-20190801114015-581e00157fb1/go.mod h1:sZAwmy6armz5eXlNoLmJcl4F1QuKu7sr+mFQ0byX7Ew= +honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +k8s.io/api v0.0.0-20210217171935-8e2decd92398/go.mod h1:60tmSUpHxGPFerNHbo/ayI2lKxvtrhbxFyXuEIWJd78= +k8s.io/api v0.20.2 h1:y/HR22XDZY3pniu9hIFDLpUCPq2w5eQ6aV/VFQ7uJMw= +k8s.io/api v0.20.2/go.mod h1:d7n6Ehyzx+S+cE3VhTGfVNNqtGc/oL9DCdYYahlurV8= +k8s.io/apimachinery v0.0.0-20210217011835-527a61b4dffe/go.mod h1:Z7ps/g0rjlTeMstYrMOUttJfT2Gg34DEaG/f2PYLCWY= +k8s.io/apimachinery v0.20.2 h1:hFx6Sbt1oG0n6DZ+g4bFt5f6BoMkOjKWsQFu077M3Vg= +k8s.io/apimachinery v0.20.2/go.mod h1:WlLqWAHZGg07AeltaI0MV5uk1Omp8xaN0JGLY6gkRpU= +k8s.io/client-go v0.0.0-20210217172142-7279fc64d847 h1:d+LBRNY3c/KGp7lDblRlUJkayx4Vla7WUTIazoGMdYo= +k8s.io/client-go v0.0.0-20210217172142-7279fc64d847/go.mod h1:q0EaghmVye2uui19vxSZ2NG6ssgUWgjudO6vrwXneSI= +k8s.io/gengo v0.0.0-20200413195148-3a45101e95ac/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= +k8s.io/klog/v2 v2.0.0/go.mod h1:PBfzABfn139FHAV07az/IF9Wp1bkk3vpT2XSJ76fSDE= +k8s.io/klog/v2 v2.4.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y= +k8s.io/klog/v2 v2.5.0 h1:8mOnjf1RmUPW6KRqQCfYSZq/K20Unmp3IhuZUhxl8KI= +k8s.io/klog/v2 v2.5.0/go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec= +k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd/go.mod h1:WOJ3KddDSol4tAGcJo0Tvi+dK12EcqSLqcWsryKMpfM= +k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= -sigs.k8s.io/structured-merge-diff v0.0.0-20190525122527-15d366b2352e/go.mod h1:wWxsB5ozmmv/SG7nM11ayaAW51xMvak/t1r0CSlcokI= -sigs.k8s.io/yaml v1.1.0 h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs= +rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= +rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= +sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= +sigs.k8s.io/structured-merge-diff/v4 v4.0.3 h1:4oyYo8NREp49LBBhKxEqCulFjg26rawYKrnCmg+Sr6c= +sigs.k8s.io/structured-merge-diff/v4 v4.0.3/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= +sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc= +sourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0/go.mod h1:hI742Nqp5OhwiqlzhgfbWU4mW4yO10fP+LoT9WOswdU= diff --git a/package.json b/package.json index d245447bf..4303c0b39 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@flyteorg/flyteidl", - "version": "0.18.14", + "version": "0.18.15", "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs", "repository": { "type": "git", diff --git a/protos/flyteidl/admin/common.proto b/protos/flyteidl/admin/common.proto index 0057ed171..ed7ba3fcc 100644 --- a/protos/flyteidl/admin/common.proto +++ b/protos/flyteidl/admin/common.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; import "flyteidl/core/execution.proto"; import "flyteidl/core/identifier.proto"; diff --git a/protos/flyteidl/admin/event.proto b/protos/flyteidl/admin/event.proto index f19b90c66..935e5ea6a 100644 --- a/protos/flyteidl/admin/event.proto +++ b/protos/flyteidl/admin/event.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; import "flyteidl/event/event.proto"; diff --git a/protos/flyteidl/admin/execution.proto b/protos/flyteidl/admin/execution.proto index d5beab463..9739423e2 100644 --- a/protos/flyteidl/admin/execution.proto +++ b/protos/flyteidl/admin/execution.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; import "flyteidl/admin/common.proto"; import "flyteidl/core/literals.proto"; diff --git a/protos/flyteidl/admin/launch_plan.proto b/protos/flyteidl/admin/launch_plan.proto index b8b5aaab8..1a055fa63 100644 --- a/protos/flyteidl/admin/launch_plan.proto +++ b/protos/flyteidl/admin/launch_plan.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; import "flyteidl/core/execution.proto"; import "flyteidl/core/literals.proto"; diff --git a/protos/flyteidl/admin/matchable_resource.proto b/protos/flyteidl/admin/matchable_resource.proto index e2e7dca86..9e7ee22ad 100644 --- a/protos/flyteidl/admin/matchable_resource.proto +++ b/protos/flyteidl/admin/matchable_resource.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; import "flyteidl/admin/common.proto"; import "flyteidl/core/execution.proto"; diff --git a/protos/flyteidl/admin/node_execution.proto b/protos/flyteidl/admin/node_execution.proto index c091a54d1..ffbb33663 100644 --- a/protos/flyteidl/admin/node_execution.proto +++ b/protos/flyteidl/admin/node_execution.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; import "flyteidl/admin/common.proto"; import "flyteidl/core/execution.proto"; diff --git a/protos/flyteidl/admin/notification.proto b/protos/flyteidl/admin/notification.proto index f20138f64..bc832e71d 100644 --- a/protos/flyteidl/admin/notification.proto +++ b/protos/flyteidl/admin/notification.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; // import "validate/validate.proto"; diff --git a/protos/flyteidl/admin/project.proto b/protos/flyteidl/admin/project.proto index ec70229bb..ebb11744d 100644 --- a/protos/flyteidl/admin/project.proto +++ b/protos/flyteidl/admin/project.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; import "flyteidl/admin/common.proto"; diff --git a/protos/flyteidl/admin/project_domain_attributes.proto b/protos/flyteidl/admin/project_domain_attributes.proto index 000ba1889..11f798a41 100644 --- a/protos/flyteidl/admin/project_domain_attributes.proto +++ b/protos/flyteidl/admin/project_domain_attributes.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; import "flyteidl/admin/matchable_resource.proto"; @@ -52,4 +52,3 @@ message ProjectDomainAttributesDeleteRequest { // Purposefully empty, may be populated in the future. message ProjectDomainAttributesDeleteResponse { } - diff --git a/protos/flyteidl/admin/schedule.proto b/protos/flyteidl/admin/schedule.proto index b16fdd473..7ad9b62fd 100644 --- a/protos/flyteidl/admin/schedule.proto +++ b/protos/flyteidl/admin/schedule.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; // Represents a frequency at which to run a schedule. enum FixedRateUnit { diff --git a/protos/flyteidl/admin/task.proto b/protos/flyteidl/admin/task.proto index 4155b3c4c..46dd29981 100644 --- a/protos/flyteidl/admin/task.proto +++ b/protos/flyteidl/admin/task.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; import "flyteidl/core/identifier.proto"; import "flyteidl/core/tasks.proto"; diff --git a/protos/flyteidl/admin/task_execution.proto b/protos/flyteidl/admin/task_execution.proto index d59a00113..0cab756d7 100644 --- a/protos/flyteidl/admin/task_execution.proto +++ b/protos/flyteidl/admin/task_execution.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; import "flyteidl/admin/common.proto"; import "flyteidl/core/execution.proto"; diff --git a/protos/flyteidl/admin/title.rst b/protos/flyteidl/admin/title.rst index 80a44c25c..4b654eda6 100644 --- a/protos/flyteidl/admin/title.rst +++ b/protos/flyteidl/admin/title.rst @@ -3,4 +3,4 @@ Flyte Admin Service entities These are the control plane entities that can be used to communication with the Flyte Admin service over gRPC or REST. The endpoint specification is defined in the -`admin service spec `__. +`admin service spec `__. diff --git a/protos/flyteidl/admin/workflow.proto b/protos/flyteidl/admin/workflow.proto index 9f05c7bf1..416a21c5f 100644 --- a/protos/flyteidl/admin/workflow.proto +++ b/protos/flyteidl/admin/workflow.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; import "flyteidl/core/compiler.proto"; import "flyteidl/core/identifier.proto"; @@ -62,4 +62,3 @@ message WorkflowClosure { // Time at which the workflow was created. google.protobuf.Timestamp created_at = 2; } - diff --git a/protos/flyteidl/admin/workflow_attributes.proto b/protos/flyteidl/admin/workflow_attributes.proto index cb2d857be..f05f85b3f 100644 --- a/protos/flyteidl/admin/workflow_attributes.proto +++ b/protos/flyteidl/admin/workflow_attributes.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.admin; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/admin"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"; import "flyteidl/admin/matchable_resource.proto"; @@ -60,4 +60,3 @@ message WorkflowAttributesDeleteRequest { // Purposefully empty, may be populated in the future. message WorkflowAttributesDeleteResponse { } - diff --git a/protos/flyteidl/core/catalog.proto b/protos/flyteidl/core/catalog.proto index d2b71ac5e..9b55206de 100644 --- a/protos/flyteidl/core/catalog.proto +++ b/protos/flyteidl/core/catalog.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; import "flyteidl/core/identifier.proto"; diff --git a/protos/flyteidl/core/compiler.proto b/protos/flyteidl/core/compiler.proto index 6e1eda5bb..c5674cb87 100644 --- a/protos/flyteidl/core/compiler.proto +++ b/protos/flyteidl/core/compiler.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; import "flyteidl/core/workflow.proto"; import "flyteidl/core/tasks.proto"; diff --git a/protos/flyteidl/core/condition.proto b/protos/flyteidl/core/condition.proto index fdfa24606..9dc4fe8da 100644 --- a/protos/flyteidl/core/condition.proto +++ b/protos/flyteidl/core/condition.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; import "flyteidl/core/literals.proto"; diff --git a/protos/flyteidl/core/dynamic_job.proto b/protos/flyteidl/core/dynamic_job.proto index b865d72e2..05d0731a1 100644 --- a/protos/flyteidl/core/dynamic_job.proto +++ b/protos/flyteidl/core/dynamic_job.proto @@ -6,7 +6,7 @@ import "flyteidl/core/literals.proto"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; // Describes a set of tasks to execute and how the final outputs are produced. message DynamicJobSpec { diff --git a/protos/flyteidl/core/errors.proto b/protos/flyteidl/core/errors.proto index 44fa43385..d9a76d97d 100644 --- a/protos/flyteidl/core/errors.proto +++ b/protos/flyteidl/core/errors.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; import "flyteidl/core/execution.proto"; @@ -32,4 +32,4 @@ message ContainerError { message ErrorDocument { // The error raised during execution. ContainerError error = 1; -} \ No newline at end of file +} diff --git a/protos/flyteidl/core/execution.proto b/protos/flyteidl/core/execution.proto index 3e0f506db..357de0d84 100644 --- a/protos/flyteidl/core/execution.proto +++ b/protos/flyteidl/core/execution.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; import "google/protobuf/duration.proto"; diff --git a/protos/flyteidl/core/identifier.proto b/protos/flyteidl/core/identifier.proto index 5e0e2b9f3..817eb7579 100644 --- a/protos/flyteidl/core/identifier.proto +++ b/protos/flyteidl/core/identifier.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; // Indicates a resource type within Flyte. enum ResourceType { diff --git a/protos/flyteidl/core/interface.proto b/protos/flyteidl/core/interface.proto index de48b991f..2ee0c3f70 100644 --- a/protos/flyteidl/core/interface.proto +++ b/protos/flyteidl/core/interface.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; import "flyteidl/core/types.proto"; import "flyteidl/core/literals.proto"; diff --git a/protos/flyteidl/core/literals.proto b/protos/flyteidl/core/literals.proto index 52427c772..b52cceef3 100644 --- a/protos/flyteidl/core/literals.proto +++ b/protos/flyteidl/core/literals.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; import "google/protobuf/timestamp.proto"; import "google/protobuf/duration.proto"; diff --git a/protos/flyteidl/core/tasks.proto b/protos/flyteidl/core/tasks.proto index 4179dfb74..5f15184d6 100644 --- a/protos/flyteidl/core/tasks.proto +++ b/protos/flyteidl/core/tasks.proto @@ -8,7 +8,7 @@ import "google/protobuf/struct.proto"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; // A customizable interface to convey resources requested for a container. This can be interpretted differently for different // container engines. diff --git a/protos/flyteidl/core/types.proto b/protos/flyteidl/core/types.proto index 3760f7de9..a2025a300 100644 --- a/protos/flyteidl/core/types.proto +++ b/protos/flyteidl/core/types.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; import "google/protobuf/struct.proto"; diff --git a/protos/flyteidl/core/workflow.proto b/protos/flyteidl/core/workflow.proto index 1df67b8a1..cefc4c311 100644 --- a/protos/flyteidl/core/workflow.proto +++ b/protos/flyteidl/core/workflow.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; import "flyteidl/core/condition.proto"; import "flyteidl/core/execution.proto"; @@ -194,5 +194,3 @@ message WorkflowTemplate { // workflow defaults WorkflowMetadataDefaults metadata_defaults = 7; } - - diff --git a/protos/flyteidl/core/workflow_closure.proto b/protos/flyteidl/core/workflow_closure.proto index 94008dfae..e00b2ccf6 100644 --- a/protos/flyteidl/core/workflow_closure.proto +++ b/protos/flyteidl/core/workflow_closure.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.core; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/core"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"; import "flyteidl/core/workflow.proto"; import "flyteidl/core/tasks.proto"; diff --git a/protos/flyteidl/event/event.proto b/protos/flyteidl/event/event.proto index ea3619cde..66163d0c8 100644 --- a/protos/flyteidl/event/event.proto +++ b/protos/flyteidl/event/event.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.event; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/event"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"; import "flyteidl/core/execution.proto"; import "flyteidl/core/identifier.proto"; diff --git a/protos/flyteidl/plugins/array_job.proto b/protos/flyteidl/plugins/array_job.proto index b3d34c402..90442efd7 100644 --- a/protos/flyteidl/plugins/array_job.proto +++ b/protos/flyteidl/plugins/array_job.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.plugins; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; // Describes a job that can process independent pieces of data concurrently. Multiple copies of the runnable component // will be executed concurrently. diff --git a/protos/flyteidl/plugins/presto.proto b/protos/flyteidl/plugins/presto.proto index 211324e1d..53c594651 100644 --- a/protos/flyteidl/plugins/presto.proto +++ b/protos/flyteidl/plugins/presto.proto @@ -4,7 +4,7 @@ package flyteidl.plugins; import "flyteidl/core/tasks.proto"; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; // This message works with the 'presto' task type in the SDK and is the object that will be in the 'custom' field // of a Presto task's TaskTemplate diff --git a/protos/flyteidl/plugins/pytorch.proto b/protos/flyteidl/plugins/pytorch.proto index 6c41d61a0..603de00c3 100644 --- a/protos/flyteidl/plugins/pytorch.proto +++ b/protos/flyteidl/plugins/pytorch.proto @@ -2,10 +2,10 @@ syntax = "proto3"; package flyteidl.plugins; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; // Custom proto for plugin that enables distributed training using https://github.com/kubeflow/pytorch-operator message DistributedPyTorchTrainingTask { // number of worker replicas spawned in the cluster for this job int32 workers = 1; -} \ No newline at end of file +} diff --git a/protos/flyteidl/plugins/qubole.proto b/protos/flyteidl/plugins/qubole.proto index 33447c2f4..fb6c81523 100644 --- a/protos/flyteidl/plugins/qubole.proto +++ b/protos/flyteidl/plugins/qubole.proto @@ -4,7 +4,7 @@ package flyteidl.plugins; import "flyteidl/core/tasks.proto"; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; // Defines a query to execute on a hive cluster. message HiveQuery { diff --git a/protos/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto b/protos/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto index bfc3b1400..d12ca832c 100644 --- a/protos/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto +++ b/protos/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.plugins.sagemaker; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; import "flyteidl/plugins/sagemaker/parameter_ranges.proto"; import "flyteidl/plugins/sagemaker/training_job.proto"; diff --git a/protos/flyteidl/plugins/sagemaker/parameter_ranges.proto b/protos/flyteidl/plugins/sagemaker/parameter_ranges.proto index 909f4e6eb..39f758ede 100644 --- a/protos/flyteidl/plugins/sagemaker/parameter_ranges.proto +++ b/protos/flyteidl/plugins/sagemaker/parameter_ranges.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.plugins.sagemaker; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; // HyperparameterScalingType defines the way to increase or decrease the value of the hyperparameter // For details, refer to: https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-define-ranges.html diff --git a/protos/flyteidl/plugins/sagemaker/training_job.proto b/protos/flyteidl/plugins/sagemaker/training_job.proto index eb14da592..9c6545c1e 100644 --- a/protos/flyteidl/plugins/sagemaker/training_job.proto +++ b/protos/flyteidl/plugins/sagemaker/training_job.proto @@ -4,7 +4,7 @@ package flyteidl.plugins.sagemaker; import "google/protobuf/duration.proto"; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; // The input mode that the algorithm supports. When using the File input mode, SageMaker downloads // the training data from S3 to the provisioned ML storage Volume, and mounts the directory to docker diff --git a/protos/flyteidl/plugins/sidecar.proto b/protos/flyteidl/plugins/sidecar.proto index 97840f210..acd778bcb 100644 --- a/protos/flyteidl/plugins/sidecar.proto +++ b/protos/flyteidl/plugins/sidecar.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.plugins; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; import "k8s.io/api/core/v1/generated.proto"; diff --git a/protos/flyteidl/plugins/spark.proto b/protos/flyteidl/plugins/spark.proto index 24f974a75..8d008ee6e 100644 --- a/protos/flyteidl/plugins/spark.proto +++ b/protos/flyteidl/plugins/spark.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.plugins; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; message SparkApplication { enum Type { @@ -21,4 +21,4 @@ message SparkJob { map sparkConf = 4; map hadoopConf = 5; string executorPath = 6; // Executor path for Python jobs. -} \ No newline at end of file +} diff --git a/protos/flyteidl/plugins/tensorflow.proto b/protos/flyteidl/plugins/tensorflow.proto index 992eb045a..a24f871de 100644 --- a/protos/flyteidl/plugins/tensorflow.proto +++ b/protos/flyteidl/plugins/tensorflow.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package flyteidl.plugins; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; // Custom proto for plugin that enables distributed training using https://github.com/kubeflow/tf-operator message DistributedTensorflowTrainingTask { diff --git a/protos/flyteidl/plugins/waitable.proto b/protos/flyteidl/plugins/waitable.proto index 797a6a58a..83f5f46b6 100644 --- a/protos/flyteidl/plugins/waitable.proto +++ b/protos/flyteidl/plugins/waitable.proto @@ -5,7 +5,7 @@ import "flyteidl/core/identifier.proto"; package flyteidl.plugins; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/plugins"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"; // Represents an Execution that was launched and could be waited on. message Waitable { diff --git a/protos/flyteidl/service/admin.proto b/protos/flyteidl/service/admin.proto index 8539731ec..53551af96 100644 --- a/protos/flyteidl/service/admin.proto +++ b/protos/flyteidl/service/admin.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package flyteidl.service; -option go_package = "github.com/lyft/flyteidl/gen/pb-go/flyteidl/service"; +option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service"; import "google/api/annotations.proto"; import "flyteidl/admin/project.proto"; diff --git a/scripts/test_diff.sh b/scripts/test_diff.sh index a07988ea4..b6d0c0452 100755 --- a/scripts/test_diff.sh +++ b/scripts/test_diff.sh @@ -8,7 +8,7 @@ rm -rf gen/pb_python/flyteidl/service/flyteadmin/docs # Unfortunately, the `--grpc-gateway-out` plugin doesn’t yet support the `source_relative` option. Until it does, we need to move the files from the autogenerated location to the source_relative location. -cp -r gen/pb-go/github.com/lyft/flyteidl/gen/* gen/ +cp -r gen/pb-go/github.com/flyteorg/flyteidl/gen/* gen/ rm -rf gen/pb-go/github.com # Copy the validate.py protos. diff --git a/setup.py b/setup.py index ebf5ba4c2..1d8010f50 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -__version__ = '0.18.14' +__version__ = '0.18.15' setup( name='flyteidl',