diff --git a/.github/workflows/bump-tags.yml b/.github/workflows/bump-tags.yml index fe1c432be6..2ea6cf0b5a 100644 --- a/.github/workflows/bump-tags.yml +++ b/.github/workflows/bump-tags.yml @@ -43,6 +43,7 @@ jobs: "datacatalog", "flyteadmin", "flytecopilot", + "flyteidl", "flyteplugins", "flytepropeller", "flytestdlib", diff --git a/cmd/single/console.go b/cmd/single/console.go index 7b405ebc09..66b4344066 100644 --- a/cmd/single/console.go +++ b/cmd/single/console.go @@ -1,16 +1,16 @@ package single import ( - "path/filepath" "net/http" + "path/filepath" "strings" ) const ( - consoleRoot = "/console" + consoleRoot = "/console" consoleStatic = consoleRoot + "/assets/" - packageDir = "dist" - indexHTML = "index.html" + packageDir = "dist" + indexHTML = "index.html" ) // GetConsoleFile returns the console file that should be used for the given path. diff --git a/datacatalog/go.mod b/datacatalog/go.mod index ca68a6501f..f33c31e8cb 100644 --- a/datacatalog/go.mod +++ b/datacatalog/go.mod @@ -4,8 +4,8 @@ go 1.19 require ( github.com/Selvatico/go-mocket v1.0.7 + github.com/flyteorg/flyte/flyteidl v0.0.0-00010101000000-000000000000 github.com/flyteorg/flyte/flytestdlib v0.0.0-00010101000000-000000000000 - github.com/flyteorg/flyteidl v0.0.0-00010101000000-000000000000 github.com/gofrs/uuid v4.2.0+incompatible github.com/golang/glog v1.1.0 github.com/golang/protobuf v1.5.3 @@ -109,8 +109,8 @@ require ( replace ( github.com/flyteorg/flyte/datacatalog => ../datacatalog github.com/flyteorg/flyte/flyteadmin => ../flyteadmin + github.com/flyteorg/flyte/flyteidl => ../flyteidl github.com/flyteorg/flyte/flyteplugins => ../flyteplugins github.com/flyteorg/flyte/flytepropeller => ../flytepropeller github.com/flyteorg/flyte/flytestdlib => ../flytestdlib - github.com/flyteorg/flyteidl => ../flyteidl ) diff --git a/datacatalog/go.sum b/datacatalog/go.sum index debf474fcd..672f959a95 100644 --- a/datacatalog/go.sum +++ b/datacatalog/go.sum @@ -350,8 +350,8 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxv 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/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA= github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= @@ -872,8 +872,8 @@ google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw 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/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= 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/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s= diff --git a/datacatalog/pkg/manager/impl/artifact_data_store.go b/datacatalog/pkg/manager/impl/artifact_data_store.go index d65edfb6f2..2a03cefa23 100644 --- a/datacatalog/pkg/manager/impl/artifact_data_store.go +++ b/datacatalog/pkg/manager/impl/artifact_data_store.go @@ -5,9 +5,9 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/errors" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" "google.golang.org/grpc/codes" ) diff --git a/datacatalog/pkg/manager/impl/artifact_manager.go b/datacatalog/pkg/manager/impl/artifact_manager.go index 2c87e0438b..569c72634d 100644 --- a/datacatalog/pkg/manager/impl/artifact_manager.go +++ b/datacatalog/pkg/manager/impl/artifact_manager.go @@ -9,7 +9,7 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/manager/impl/validators" "github.com/flyteorg/flyte/datacatalog/pkg/manager/interfaces" "github.com/flyteorg/flyte/datacatalog/pkg/repositories" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/transformers" diff --git a/datacatalog/pkg/manager/impl/artifact_manager_test.go b/datacatalog/pkg/manager/impl/artifact_manager_test.go index f8b5f3d5d8..50477a7146 100644 --- a/datacatalog/pkg/manager/impl/artifact_manager_test.go +++ b/datacatalog/pkg/manager/impl/artifact_manager_test.go @@ -14,12 +14,12 @@ import ( repoErrors "github.com/flyteorg/flyte/datacatalog/pkg/repositories/errors" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/mocks" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/flytestdlib/contextutils" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/golang/protobuf/proto" "github.com/golang/protobuf/ptypes" "github.com/stretchr/testify/assert" diff --git a/datacatalog/pkg/manager/impl/dataset_manager.go b/datacatalog/pkg/manager/impl/dataset_manager.go index 50a3bd1465..2645c30c64 100644 --- a/datacatalog/pkg/manager/impl/dataset_manager.go +++ b/datacatalog/pkg/manager/impl/dataset_manager.go @@ -11,11 +11,11 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/manager/interfaces" "github.com/flyteorg/flyte/datacatalog/pkg/repositories" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/transformers" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" "google.golang.org/grpc/codes" ) diff --git a/datacatalog/pkg/manager/impl/dataset_manager_test.go b/datacatalog/pkg/manager/impl/dataset_manager_test.go index 076eace195..536d4aff76 100644 --- a/datacatalog/pkg/manager/impl/dataset_manager_test.go +++ b/datacatalog/pkg/manager/impl/dataset_manager_test.go @@ -10,10 +10,10 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/repositories/mocks" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/transformers" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/flytestdlib/contextutils" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" diff --git a/datacatalog/pkg/manager/impl/reservation_manager.go b/datacatalog/pkg/manager/impl/reservation_manager.go index 713a797b55..54c4c4abde 100644 --- a/datacatalog/pkg/manager/impl/reservation_manager.go +++ b/datacatalog/pkg/manager/impl/reservation_manager.go @@ -16,7 +16,7 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/manager/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" ) type reservationMetrics struct { diff --git a/datacatalog/pkg/manager/impl/reservation_manager_test.go b/datacatalog/pkg/manager/impl/reservation_manager_test.go index 0c64bcc5ac..e86ede2212 100644 --- a/datacatalog/pkg/manager/impl/reservation_manager_test.go +++ b/datacatalog/pkg/manager/impl/reservation_manager_test.go @@ -13,7 +13,7 @@ import ( errors3 "github.com/flyteorg/flyte/datacatalog/pkg/repositories/errors" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/mocks" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/golang/protobuf/ptypes" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" diff --git a/datacatalog/pkg/manager/impl/tag_manager.go b/datacatalog/pkg/manager/impl/tag_manager.go index f71bb2e9ec..52828822d3 100644 --- a/datacatalog/pkg/manager/impl/tag_manager.go +++ b/datacatalog/pkg/manager/impl/tag_manager.go @@ -10,7 +10,7 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/transformers" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/datacatalog/pkg/errors" "github.com/flyteorg/flyte/flytestdlib/contextutils" diff --git a/datacatalog/pkg/manager/impl/tag_manager_test.go b/datacatalog/pkg/manager/impl/tag_manager_test.go index 63d8c91280..56581e00f3 100644 --- a/datacatalog/pkg/manager/impl/tag_manager_test.go +++ b/datacatalog/pkg/manager/impl/tag_manager_test.go @@ -6,7 +6,7 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/repositories/mocks" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/flytestdlib/contextutils" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" diff --git a/datacatalog/pkg/manager/impl/validators/artifact_validator.go b/datacatalog/pkg/manager/impl/validators/artifact_validator.go index fddff14a3d..d4721e1597 100644 --- a/datacatalog/pkg/manager/impl/validators/artifact_validator.go +++ b/datacatalog/pkg/manager/impl/validators/artifact_validator.go @@ -4,7 +4,7 @@ import ( "fmt" "github.com/flyteorg/flyte/datacatalog/pkg/common" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" ) const ( diff --git a/datacatalog/pkg/manager/impl/validators/dataset_validator.go b/datacatalog/pkg/manager/impl/validators/dataset_validator.go index 1521907836..5ab010517f 100644 --- a/datacatalog/pkg/manager/impl/validators/dataset_validator.go +++ b/datacatalog/pkg/manager/impl/validators/dataset_validator.go @@ -2,7 +2,7 @@ package validators import ( "github.com/flyteorg/flyte/datacatalog/pkg/common" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" ) const ( diff --git a/datacatalog/pkg/manager/impl/validators/pagination_validator.go b/datacatalog/pkg/manager/impl/validators/pagination_validator.go index bf955676e3..367a1d7a4f 100644 --- a/datacatalog/pkg/manager/impl/validators/pagination_validator.go +++ b/datacatalog/pkg/manager/impl/validators/pagination_validator.go @@ -5,7 +5,7 @@ import ( "strings" "github.com/flyteorg/flyte/datacatalog/pkg/errors" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "google.golang.org/grpc/codes" ) diff --git a/datacatalog/pkg/manager/impl/validators/partition_validator.go b/datacatalog/pkg/manager/impl/validators/partition_validator.go index eeb1a95f7f..f672413b05 100644 --- a/datacatalog/pkg/manager/impl/validators/partition_validator.go +++ b/datacatalog/pkg/manager/impl/validators/partition_validator.go @@ -4,7 +4,7 @@ import ( "fmt" "github.com/flyteorg/flyte/datacatalog/pkg/errors" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "google.golang.org/grpc/codes" ) diff --git a/datacatalog/pkg/manager/impl/validators/tag_validator.go b/datacatalog/pkg/manager/impl/validators/tag_validator.go index 94e4b3a9bb..4539ad03c2 100644 --- a/datacatalog/pkg/manager/impl/validators/tag_validator.go +++ b/datacatalog/pkg/manager/impl/validators/tag_validator.go @@ -1,7 +1,7 @@ package validators import ( - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" ) const ( diff --git a/datacatalog/pkg/manager/interfaces/artifact.go b/datacatalog/pkg/manager/interfaces/artifact.go index 3fdae66215..f370369602 100644 --- a/datacatalog/pkg/manager/interfaces/artifact.go +++ b/datacatalog/pkg/manager/interfaces/artifact.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - idl_datacatalog "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + idl_datacatalog "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" ) //go:generate mockery -all -output=../mocks -case=underscore diff --git a/datacatalog/pkg/manager/interfaces/dataset.go b/datacatalog/pkg/manager/interfaces/dataset.go index 9dbdcd980e..9f7802dad6 100644 --- a/datacatalog/pkg/manager/interfaces/dataset.go +++ b/datacatalog/pkg/manager/interfaces/dataset.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - idl_datacatalog "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + idl_datacatalog "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" ) type DatasetManager interface { diff --git a/datacatalog/pkg/manager/interfaces/reservation.go b/datacatalog/pkg/manager/interfaces/reservation.go index 42d95b8cbf..a20750ff9b 100644 --- a/datacatalog/pkg/manager/interfaces/reservation.go +++ b/datacatalog/pkg/manager/interfaces/reservation.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" ) // ReservationManager is the interface to handle reservation requests. diff --git a/datacatalog/pkg/manager/interfaces/tag.go b/datacatalog/pkg/manager/interfaces/tag.go index 00994180dd..de838a04ee 100644 --- a/datacatalog/pkg/manager/interfaces/tag.go +++ b/datacatalog/pkg/manager/interfaces/tag.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" ) type TagManager interface { diff --git a/datacatalog/pkg/manager/mocks/artifact_manager.go b/datacatalog/pkg/manager/mocks/artifact_manager.go index 98cacf0227..d249aac1a2 100644 --- a/datacatalog/pkg/manager/mocks/artifact_manager.go +++ b/datacatalog/pkg/manager/mocks/artifact_manager.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - datacatalog "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + datacatalog "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" mock "github.com/stretchr/testify/mock" ) diff --git a/datacatalog/pkg/manager/mocks/dataset_manager.go b/datacatalog/pkg/manager/mocks/dataset_manager.go index 4f97dc2859..95385f0e07 100644 --- a/datacatalog/pkg/manager/mocks/dataset_manager.go +++ b/datacatalog/pkg/manager/mocks/dataset_manager.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - datacatalog "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + datacatalog "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" mock "github.com/stretchr/testify/mock" ) diff --git a/datacatalog/pkg/manager/mocks/reservation_manager.go b/datacatalog/pkg/manager/mocks/reservation_manager.go index edde09ad90..3753ee64e4 100644 --- a/datacatalog/pkg/manager/mocks/reservation_manager.go +++ b/datacatalog/pkg/manager/mocks/reservation_manager.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - datacatalog "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + datacatalog "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" mock "github.com/stretchr/testify/mock" ) diff --git a/datacatalog/pkg/manager/mocks/tag_manager.go b/datacatalog/pkg/manager/mocks/tag_manager.go index b48d9cd125..91e73ee5ae 100644 --- a/datacatalog/pkg/manager/mocks/tag_manager.go +++ b/datacatalog/pkg/manager/mocks/tag_manager.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - datacatalog "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + datacatalog "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" mock "github.com/stretchr/testify/mock" ) diff --git a/datacatalog/pkg/repositories/gormimpl/artifact.go b/datacatalog/pkg/repositories/gormimpl/artifact.go index ed0ddc17c9..7045c6fa71 100644 --- a/datacatalog/pkg/repositories/gormimpl/artifact.go +++ b/datacatalog/pkg/repositories/gormimpl/artifact.go @@ -3,7 +3,7 @@ package gormimpl import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/datacatalog/pkg/common" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/errors" diff --git a/datacatalog/pkg/repositories/gormimpl/artifact_test.go b/datacatalog/pkg/repositories/gormimpl/artifact_test.go index ae3fb1554e..598f9c5026 100644 --- a/datacatalog/pkg/repositories/gormimpl/artifact_test.go +++ b/datacatalog/pkg/repositories/gormimpl/artifact_test.go @@ -14,10 +14,10 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/repositories/errors" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/utils" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" "google.golang.org/grpc/codes" ) diff --git a/datacatalog/pkg/repositories/gormimpl/dataset.go b/datacatalog/pkg/repositories/gormimpl/dataset.go index 416370ccf3..b4bbe59f3a 100644 --- a/datacatalog/pkg/repositories/gormimpl/dataset.go +++ b/datacatalog/pkg/repositories/gormimpl/dataset.go @@ -3,7 +3,7 @@ package gormimpl import ( "context" - idl_datacatalog "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + idl_datacatalog "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/datacatalog/pkg/common" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/errors" diff --git a/datacatalog/pkg/repositories/gormimpl/dataset_test.go b/datacatalog/pkg/repositories/gormimpl/dataset_test.go index 5b8bd36d8d..8df5857886 100644 --- a/datacatalog/pkg/repositories/gormimpl/dataset_test.go +++ b/datacatalog/pkg/repositories/gormimpl/dataset_test.go @@ -17,10 +17,10 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/repositories/errors" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/utils" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" ) func init() { diff --git a/datacatalog/pkg/repositories/gormimpl/list_test.go b/datacatalog/pkg/repositories/gormimpl/list_test.go index 4d5a9ce685..44e944dfcf 100644 --- a/datacatalog/pkg/repositories/gormimpl/list_test.go +++ b/datacatalog/pkg/repositories/gormimpl/list_test.go @@ -9,7 +9,7 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/common" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/utils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/stretchr/testify/assert" ) diff --git a/datacatalog/pkg/repositories/gormimpl/reservation.go b/datacatalog/pkg/repositories/gormimpl/reservation.go index 9d005b5552..4f4e069cf4 100644 --- a/datacatalog/pkg/repositories/gormimpl/reservation.go +++ b/datacatalog/pkg/repositories/gormimpl/reservation.go @@ -8,7 +8,7 @@ import ( "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" errors2 "github.com/flyteorg/flyte/datacatalog/pkg/repositories/errors" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/interfaces" diff --git a/datacatalog/pkg/repositories/gormimpl/sort.go b/datacatalog/pkg/repositories/gormimpl/sort.go index 04b98adc90..8b6bc23a8f 100644 --- a/datacatalog/pkg/repositories/gormimpl/sort.go +++ b/datacatalog/pkg/repositories/gormimpl/sort.go @@ -4,7 +4,7 @@ import ( "fmt" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" ) const ( diff --git a/datacatalog/pkg/repositories/gormimpl/sort_test.go b/datacatalog/pkg/repositories/gormimpl/sort_test.go index cd5201f82f..136cc6ea03 100644 --- a/datacatalog/pkg/repositories/gormimpl/sort_test.go +++ b/datacatalog/pkg/repositories/gormimpl/sort_test.go @@ -3,7 +3,7 @@ package gormimpl import ( "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/stretchr/testify/assert" ) diff --git a/datacatalog/pkg/repositories/gormimpl/tag.go b/datacatalog/pkg/repositories/gormimpl/tag.go index e3992e8473..0fd3bf54d6 100644 --- a/datacatalog/pkg/repositories/gormimpl/tag.go +++ b/datacatalog/pkg/repositories/gormimpl/tag.go @@ -3,7 +3,7 @@ package gormimpl import ( "context" - idl_datacatalog "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + idl_datacatalog "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/errors" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/interfaces" diff --git a/datacatalog/pkg/repositories/transformers/artifact.go b/datacatalog/pkg/repositories/transformers/artifact.go index c02f75502f..6eeb54568a 100644 --- a/datacatalog/pkg/repositories/transformers/artifact.go +++ b/datacatalog/pkg/repositories/transformers/artifact.go @@ -3,7 +3,7 @@ package transformers import ( "github.com/flyteorg/flyte/datacatalog/pkg/errors" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/golang/protobuf/ptypes" "google.golang.org/grpc/codes" ) diff --git a/datacatalog/pkg/repositories/transformers/artifact_test.go b/datacatalog/pkg/repositories/transformers/artifact_test.go index d1d4143559..89463ecc00 100644 --- a/datacatalog/pkg/repositories/transformers/artifact_test.go +++ b/datacatalog/pkg/repositories/transformers/artifact_test.go @@ -6,8 +6,8 @@ import ( "time" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/golang/protobuf/ptypes" "github.com/stretchr/testify/assert" ) diff --git a/datacatalog/pkg/repositories/transformers/dataset.go b/datacatalog/pkg/repositories/transformers/dataset.go index 1e38461b21..9d5cb168a4 100644 --- a/datacatalog/pkg/repositories/transformers/dataset.go +++ b/datacatalog/pkg/repositories/transformers/dataset.go @@ -2,7 +2,7 @@ package transformers import ( "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" ) // Create a dataset model from the Dataset api object. This will serialize the metadata in the dataset as part of the transform diff --git a/datacatalog/pkg/repositories/transformers/dataset_test.go b/datacatalog/pkg/repositories/transformers/dataset_test.go index e735c9fe5a..93f5509c2a 100644 --- a/datacatalog/pkg/repositories/transformers/dataset_test.go +++ b/datacatalog/pkg/repositories/transformers/dataset_test.go @@ -4,7 +4,7 @@ import ( "testing" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/stretchr/testify/assert" ) diff --git a/datacatalog/pkg/repositories/transformers/filters.go b/datacatalog/pkg/repositories/transformers/filters.go index 2bd1780fe4..bf14d715b2 100644 --- a/datacatalog/pkg/repositories/transformers/filters.go +++ b/datacatalog/pkg/repositories/transformers/filters.go @@ -8,8 +8,8 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/manager/impl/validators" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/gormimpl" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" ) const ( diff --git a/datacatalog/pkg/repositories/transformers/filters_test.go b/datacatalog/pkg/repositories/transformers/filters_test.go index 3e56e45028..0285b32f0c 100644 --- a/datacatalog/pkg/repositories/transformers/filters_test.go +++ b/datacatalog/pkg/repositories/transformers/filters_test.go @@ -6,7 +6,7 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/common" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/stretchr/testify/assert" ) diff --git a/datacatalog/pkg/repositories/transformers/pagination.go b/datacatalog/pkg/repositories/transformers/pagination.go index 63ef90f8bd..fb80857002 100644 --- a/datacatalog/pkg/repositories/transformers/pagination.go +++ b/datacatalog/pkg/repositories/transformers/pagination.go @@ -8,7 +8,7 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/errors" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/gormimpl" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "google.golang.org/grpc/codes" ) diff --git a/datacatalog/pkg/repositories/transformers/pagination_test.go b/datacatalog/pkg/repositories/transformers/pagination_test.go index 97ed7c55c2..8ae86b1113 100644 --- a/datacatalog/pkg/repositories/transformers/pagination_test.go +++ b/datacatalog/pkg/repositories/transformers/pagination_test.go @@ -5,7 +5,7 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/common" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/stretchr/testify/assert" ) diff --git a/datacatalog/pkg/repositories/transformers/reservation.go b/datacatalog/pkg/repositories/transformers/reservation.go index 19cb9d9a8b..d002b6650b 100644 --- a/datacatalog/pkg/repositories/transformers/reservation.go +++ b/datacatalog/pkg/repositories/transformers/reservation.go @@ -5,7 +5,7 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/errors" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/golang/protobuf/ptypes" diff --git a/datacatalog/pkg/repositories/transformers/reservation_test.go b/datacatalog/pkg/repositories/transformers/reservation_test.go index d03751f878..49ebb574d2 100644 --- a/datacatalog/pkg/repositories/transformers/reservation_test.go +++ b/datacatalog/pkg/repositories/transformers/reservation_test.go @@ -5,7 +5,7 @@ import ( "time" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/stretchr/testify/assert" ) diff --git a/datacatalog/pkg/repositories/transformers/tag.go b/datacatalog/pkg/repositories/transformers/tag.go index 4927c01dff..df98e22200 100644 --- a/datacatalog/pkg/repositories/transformers/tag.go +++ b/datacatalog/pkg/repositories/transformers/tag.go @@ -2,7 +2,7 @@ package transformers import ( "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" ) func ToTagKey(datasetID *datacatalog.DatasetID, tagName string) models.TagKey { diff --git a/datacatalog/pkg/repositories/transformers/tag_test.go b/datacatalog/pkg/repositories/transformers/tag_test.go index 08eb9f1a01..899306e72c 100644 --- a/datacatalog/pkg/repositories/transformers/tag_test.go +++ b/datacatalog/pkg/repositories/transformers/tag_test.go @@ -4,7 +4,7 @@ import ( "testing" "github.com/flyteorg/flyte/datacatalog/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/stretchr/testify/assert" ) diff --git a/datacatalog/pkg/repositories/transformers/util.go b/datacatalog/pkg/repositories/transformers/util.go index 03ffe9323c..755ef02b72 100644 --- a/datacatalog/pkg/repositories/transformers/util.go +++ b/datacatalog/pkg/repositories/transformers/util.go @@ -2,7 +2,7 @@ package transformers import ( "github.com/flyteorg/flyte/datacatalog/pkg/errors" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/golang/protobuf/proto" "google.golang.org/grpc/codes" ) diff --git a/datacatalog/pkg/rpc/datacatalogservice/service.go b/datacatalog/pkg/rpc/datacatalogservice/service.go index 806997cfe8..a72d00af7d 100644 --- a/datacatalog/pkg/rpc/datacatalogservice/service.go +++ b/datacatalog/pkg/rpc/datacatalogservice/service.go @@ -18,11 +18,11 @@ import ( "github.com/flyteorg/flyte/datacatalog/pkg/manager/interfaces" "github.com/flyteorg/flyte/datacatalog/pkg/repositories" "github.com/flyteorg/flyte/datacatalog/pkg/runtime" + catalog "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/storage" - catalog "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" ) type DataCatalogService struct { diff --git a/flyteadmin/auth/auth_context.go b/flyteadmin/auth/auth_context.go index 54eacc399d..99eb7ef514 100644 --- a/flyteadmin/auth/auth_context.go +++ b/flyteadmin/auth/auth_context.go @@ -10,8 +10,8 @@ import ( "strings" "time" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" "github.com/coreos/go-oidc" "github.com/flyteorg/flyte/flyteadmin/auth/config" diff --git a/flyteadmin/auth/authzserver/claims_verifier.go b/flyteadmin/auth/authzserver/claims_verifier.go index 941bc59aa4..9ba3c0d1d9 100644 --- a/flyteadmin/auth/authzserver/claims_verifier.go +++ b/flyteadmin/auth/authzserver/claims_verifier.go @@ -9,7 +9,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/auth" "github.com/flyteorg/flyte/flyteadmin/auth/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) func verifyClaims(expectedAudience sets.String, claimsRaw map[string]interface{}) (interfaces.IdentityContext, error) { diff --git a/flyteadmin/auth/authzserver/metadata_provider.go b/flyteadmin/auth/authzserver/metadata_provider.go index 7c5c66e2a3..6752ecbcee 100644 --- a/flyteadmin/auth/authzserver/metadata_provider.go +++ b/flyteadmin/auth/authzserver/metadata_provider.go @@ -11,7 +11,7 @@ import ( authConfig "github.com/flyteorg/flyte/flyteadmin/auth/config" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) type OAuth2MetadataProvider struct { diff --git a/flyteadmin/auth/authzserver/metadata_provider_test.go b/flyteadmin/auth/authzserver/metadata_provider_test.go index f1ad541976..79bcc7b727 100644 --- a/flyteadmin/auth/authzserver/metadata_provider_test.go +++ b/flyteadmin/auth/authzserver/metadata_provider_test.go @@ -12,7 +12,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/auth/config" authConfig "github.com/flyteorg/flyte/flyteadmin/auth/config" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/auth/authzserver/provider.go b/flyteadmin/auth/authzserver/provider.go index e9eaf1f999..ab6a91becd 100644 --- a/flyteadmin/auth/authzserver/provider.go +++ b/flyteadmin/auth/authzserver/provider.go @@ -9,8 +9,8 @@ import ( "fmt" "time" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" "k8s.io/apimachinery/pkg/util/sets" diff --git a/flyteadmin/auth/authzserver/provider_test.go b/flyteadmin/auth/authzserver/provider_test.go index f26a959ce1..b3892e7fed 100644 --- a/flyteadmin/auth/authzserver/provider_test.go +++ b/flyteadmin/auth/authzserver/provider_test.go @@ -13,7 +13,7 @@ import ( jwtgo "github.com/golang-jwt/jwt/v4" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/auth/authzserver/resource_server.go b/flyteadmin/auth/authzserver/resource_server.go index efe838fc1a..c7db85c949 100644 --- a/flyteadmin/auth/authzserver/resource_server.go +++ b/flyteadmin/auth/authzserver/resource_server.go @@ -19,7 +19,7 @@ import ( "github.com/coreos/go-oidc" authConfig "github.com/flyteorg/flyte/flyteadmin/auth/config" "github.com/flyteorg/flyte/flyteadmin/auth/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "golang.org/x/oauth2" ) diff --git a/flyteadmin/auth/cookie_manager.go b/flyteadmin/auth/cookie_manager.go index 5b867fb685..1ab5fbcfca 100644 --- a/flyteadmin/auth/cookie_manager.go +++ b/flyteadmin/auth/cookie_manager.go @@ -8,9 +8,9 @@ import ( "net/http" "time" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytestdlib/errors" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" "golang.org/x/oauth2" "github.com/flyteorg/flyte/flyteadmin/auth/config" diff --git a/flyteadmin/auth/cookie_manager_test.go b/flyteadmin/auth/cookie_manager_test.go index 8af5657989..e36bb61671 100644 --- a/flyteadmin/auth/cookie_manager_test.go +++ b/flyteadmin/auth/cookie_manager_test.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/flyteadmin/auth/handlers.go b/flyteadmin/auth/handlers.go index 2d14f6c699..a5bacdc06e 100644 --- a/flyteadmin/auth/handlers.go +++ b/flyteadmin/auth/handlers.go @@ -8,9 +8,9 @@ import ( "strings" "time" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytestdlib/errors" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" "github.com/grpc-ecosystem/go-grpc-middleware/util/metautils" "golang.org/x/oauth2" "google.golang.org/grpc" diff --git a/flyteadmin/auth/handlers_test.go b/flyteadmin/auth/handlers_test.go index b1b364b72b..63facc8bfa 100644 --- a/flyteadmin/auth/handlers_test.go +++ b/flyteadmin/auth/handlers_test.go @@ -12,8 +12,8 @@ import ( "testing" "github.com/coreos/go-oidc" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" stdConfig "github.com/flyteorg/flyte/flytestdlib/config" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "github.com/stretchr/testify/require" diff --git a/flyteadmin/auth/identity_context.go b/flyteadmin/auth/identity_context.go index 8d3643410a..4da330e101 100644 --- a/flyteadmin/auth/identity_context.go +++ b/flyteadmin/auth/identity_context.go @@ -7,7 +7,7 @@ import ( "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "k8s.io/apimachinery/pkg/util/sets" ) diff --git a/flyteadmin/auth/interfaces/context.go b/flyteadmin/auth/interfaces/context.go index a26742e387..7b73c56d21 100644 --- a/flyteadmin/auth/interfaces/context.go +++ b/flyteadmin/auth/interfaces/context.go @@ -6,7 +6,7 @@ import ( "net/url" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "k8s.io/apimachinery/pkg/util/sets" diff --git a/flyteadmin/auth/interfaces/cookie.go b/flyteadmin/auth/interfaces/cookie.go index 988709a8fd..272fab8d6a 100644 --- a/flyteadmin/auth/interfaces/cookie.go +++ b/flyteadmin/auth/interfaces/cookie.go @@ -4,7 +4,7 @@ import ( "context" "net/http" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "golang.org/x/oauth2" ) diff --git a/flyteadmin/auth/interfaces/mocks/authentication_context.go b/flyteadmin/auth/interfaces/mocks/authentication_context.go index 8115c48e89..a7d0201a36 100644 --- a/flyteadmin/auth/interfaces/mocks/authentication_context.go +++ b/flyteadmin/auth/interfaces/mocks/authentication_context.go @@ -15,7 +15,7 @@ import ( oidc "github.com/coreos/go-oidc" - service "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + service "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" url "net/url" ) diff --git a/flyteadmin/auth/interfaces/mocks/cookie_handler.go b/flyteadmin/auth/interfaces/mocks/cookie_handler.go index 74371b0cec..f45f8644a3 100644 --- a/flyteadmin/auth/interfaces/mocks/cookie_handler.go +++ b/flyteadmin/auth/interfaces/mocks/cookie_handler.go @@ -10,7 +10,7 @@ import ( oauth2 "golang.org/x/oauth2" - service "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + service "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) // CookieHandler is an autogenerated mock type for the CookieHandler type diff --git a/flyteadmin/auth/interfaces/mocks/identity_context.go b/flyteadmin/auth/interfaces/mocks/identity_context.go index 0458ea8418..c56e44303d 100644 --- a/flyteadmin/auth/interfaces/mocks/identity_context.go +++ b/flyteadmin/auth/interfaces/mocks/identity_context.go @@ -7,7 +7,7 @@ import ( mock "github.com/stretchr/testify/mock" - service "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + service "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" sets "k8s.io/apimachinery/pkg/util/sets" diff --git a/flyteadmin/auth/interfaces/mocks/o_auth2_provider.go b/flyteadmin/auth/interfaces/mocks/o_auth2_provider.go index b01f24e877..ec542f58cf 100644 --- a/flyteadmin/auth/interfaces/mocks/o_auth2_provider.go +++ b/flyteadmin/auth/interfaces/mocks/o_auth2_provider.go @@ -17,7 +17,7 @@ import ( oauth2 "github.com/ory/fosite/handler/oauth2" - service "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + service "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) // OAuth2Provider is an autogenerated mock type for the OAuth2Provider type diff --git a/flyteadmin/auth/token.go b/flyteadmin/auth/token.go index 5ce16835d1..e864c96123 100644 --- a/flyteadmin/auth/token.go +++ b/flyteadmin/auth/token.go @@ -8,7 +8,7 @@ import ( "github.com/grpc-ecosystem/go-grpc-middleware/util/metautils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "k8s.io/apimachinery/pkg/util/sets" diff --git a/flyteadmin/auth/user_info_provider.go b/flyteadmin/auth/user_info_provider.go index 1619378bf9..6d9a9334d1 100644 --- a/flyteadmin/auth/user_info_provider.go +++ b/flyteadmin/auth/user_info_provider.go @@ -3,7 +3,7 @@ package auth import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) type UserInfoProvider struct { diff --git a/flyteadmin/cmd/entrypoints/serve_test.go b/flyteadmin/cmd/entrypoints/serve_test.go index 155fcb806f..e2269388ad 100644 --- a/flyteadmin/cmd/entrypoints/serve_test.go +++ b/flyteadmin/cmd/entrypoints/serve_test.go @@ -10,8 +10,8 @@ import ( "fmt" "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/stretchr/testify/assert" "golang.org/x/oauth2" "google.golang.org/grpc" diff --git a/flyteadmin/cmd/scheduler/entrypoints/precheck.go b/flyteadmin/cmd/scheduler/entrypoints/precheck.go index 89e5d22800..a3e3e8add5 100644 --- a/flyteadmin/cmd/scheduler/entrypoints/precheck.go +++ b/flyteadmin/cmd/scheduler/entrypoints/precheck.go @@ -4,8 +4,8 @@ import ( "context" "fmt" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/clients/go/admin" "github.com/spf13/cobra" "google.golang.org/grpc/health/grpc_health_v1" diff --git a/flyteadmin/dataproxy/service.go b/flyteadmin/dataproxy/service.go index d35ea7832d..049bd14b1e 100644 --- a/flyteadmin/dataproxy/service.go +++ b/flyteadmin/dataproxy/service.go @@ -14,14 +14,14 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/common" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "google.golang.org/grpc/codes" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils" @@ -35,7 +35,7 @@ import ( "github.com/flyteorg/stow" "k8s.io/apimachinery/pkg/util/rand" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) type Service struct { diff --git a/flyteadmin/dataproxy/service_test.go b/flyteadmin/dataproxy/service_test.go index 2e69e3b027..814ac38ecd 100644 --- a/flyteadmin/dataproxy/service_test.go +++ b/flyteadmin/dataproxy/service_test.go @@ -8,10 +8,10 @@ import ( "testing" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/mocks" @@ -23,7 +23,7 @@ import ( "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" "google.golang.org/protobuf/types/known/durationpb" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flyteadmin/pkg/config" "github.com/flyteorg/flyte/flytestdlib/promutils" diff --git a/flyteadmin/go.mod b/flyteadmin/go.mod index 60015b34b6..fd41dcc1e2 100644 --- a/flyteadmin/go.mod +++ b/flyteadmin/go.mod @@ -13,10 +13,10 @@ require ( github.com/cloudevents/sdk-go/v2 v2.8.0 github.com/coreos/go-oidc v2.2.1+incompatible github.com/evanphx/json-patch v4.12.0+incompatible + github.com/flyteorg/flyte/flyteidl v0.0.0-00010101000000-000000000000 github.com/flyteorg/flyte/flyteplugins v0.0.0-00010101000000-000000000000 github.com/flyteorg/flyte/flytepropeller v0.0.0-00010101000000-000000000000 github.com/flyteorg/flyte/flytestdlib v0.0.0-00010101000000-000000000000 - github.com/flyteorg/flyteidl v0.0.0-00010101000000-000000000000 github.com/flyteorg/stow v0.3.7 github.com/ghodss/yaml v1.0.0 github.com/go-gormigrate/gormigrate/v2 v2.0.0 @@ -213,9 +213,9 @@ retract v1.1.94 replace ( github.com/flyteorg/flyte/datacatalog => ../datacatalog github.com/flyteorg/flyte/flyteadmin => ../flyteadmin + github.com/flyteorg/flyte/flyteidl => ../flyteidl github.com/flyteorg/flyte/flyteplugins => ../flyteplugins github.com/flyteorg/flyte/flytepropeller => ../flytepropeller github.com/flyteorg/flyte/flytestdlib => ../flytestdlib - github.com/flyteorg/flyteidl => ../flyteidl github.com/robfig/cron/v3 => github.com/unionai/cron/v3 v3.0.2-0.20220915080349-5790c370e63a ) diff --git a/flyteadmin/pkg/async/cloudevent/implementations/cloudevent_publisher.go b/flyteadmin/pkg/async/cloudevent/implementations/cloudevent_publisher.go index ac9ab99815..8eafefffc0 100644 --- a/flyteadmin/pkg/async/cloudevent/implementations/cloudevent_publisher.go +++ b/flyteadmin/pkg/async/cloudevent/implementations/cloudevent_publisher.go @@ -9,7 +9,7 @@ import ( "github.com/golang/protobuf/jsonpb" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/implementations" diff --git a/flyteadmin/pkg/async/cloudevent/implementations/cloudevent_publisher_test.go b/flyteadmin/pkg/async/cloudevent/implementations/cloudevent_publisher_test.go index 10222530a6..65bedaac47 100644 --- a/flyteadmin/pkg/async/cloudevent/implementations/cloudevent_publisher_test.go +++ b/flyteadmin/pkg/async/cloudevent/implementations/cloudevent_publisher_test.go @@ -9,9 +9,9 @@ import ( "github.com/golang/protobuf/jsonpb" - "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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/ptypes" "github.com/NYTimes/gizmo/pubsub" diff --git a/flyteadmin/pkg/async/events/implementations/node_execution_event_writer.go b/flyteadmin/pkg/async/events/implementations/node_execution_event_writer.go index 30ee12f6d3..fbcc50aa83 100644 --- a/flyteadmin/pkg/async/events/implementations/node_execution_event_writer.go +++ b/flyteadmin/pkg/async/events/implementations/node_execution_event_writer.go @@ -7,8 +7,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/async/events/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/transformers" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" ) // This event writer acts to asynchronously persist node execution events. As flytepropeller sends node diff --git a/flyteadmin/pkg/async/events/implementations/node_execution_event_writer_test.go b/flyteadmin/pkg/async/events/implementations/node_execution_event_writer_test.go index 573b9c32a6..4fafd19f69 100644 --- a/flyteadmin/pkg/async/events/implementations/node_execution_event_writer_test.go +++ b/flyteadmin/pkg/async/events/implementations/node_execution_event_writer_test.go @@ -4,9 +4,9 @@ import ( "testing" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - event2 "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + event2 "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" ) func TestNodeExecutionEventWriter(t *testing.T) { diff --git a/flyteadmin/pkg/async/events/implementations/workflow_execution_event_writer.go b/flyteadmin/pkg/async/events/implementations/workflow_execution_event_writer.go index 35c973340f..6d326d4708 100644 --- a/flyteadmin/pkg/async/events/implementations/workflow_execution_event_writer.go +++ b/flyteadmin/pkg/async/events/implementations/workflow_execution_event_writer.go @@ -7,8 +7,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/async/events/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/transformers" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" ) // This event writer acts to asynchronously persist workflow execution events. As flytepropeller sends workflow diff --git a/flyteadmin/pkg/async/events/implementations/workflow_execution_event_writer_test.go b/flyteadmin/pkg/async/events/implementations/workflow_execution_event_writer_test.go index dbd5f6d6d2..db52cb809f 100644 --- a/flyteadmin/pkg/async/events/implementations/workflow_execution_event_writer_test.go +++ b/flyteadmin/pkg/async/events/implementations/workflow_execution_event_writer_test.go @@ -4,9 +4,9 @@ import ( "testing" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - event2 "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + event2 "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" ) func TestWorkflowExecutionEventWriter(t *testing.T) { diff --git a/flyteadmin/pkg/async/events/interfaces/node_execution.go b/flyteadmin/pkg/async/events/interfaces/node_execution.go index af9477e295..d6163db526 100644 --- a/flyteadmin/pkg/async/events/interfaces/node_execution.go +++ b/flyteadmin/pkg/async/events/interfaces/node_execution.go @@ -1,7 +1,7 @@ package interfaces import ( - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) //go:generate mockery -name=NodeExecutionEventWriter -output=../mocks -case=underscore diff --git a/flyteadmin/pkg/async/events/interfaces/workflow_execution.go b/flyteadmin/pkg/async/events/interfaces/workflow_execution.go index e92c9e56e5..f730ddc993 100644 --- a/flyteadmin/pkg/async/events/interfaces/workflow_execution.go +++ b/flyteadmin/pkg/async/events/interfaces/workflow_execution.go @@ -1,7 +1,7 @@ package interfaces import ( - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) //go:generate mockery -name=WorkflowExecutionEventWriter -output=../mocks -case=underscore diff --git a/flyteadmin/pkg/async/events/mocks/node_execution_event_writer.go b/flyteadmin/pkg/async/events/mocks/node_execution_event_writer.go index 18a44878ec..b51639c609 100644 --- a/flyteadmin/pkg/async/events/mocks/node_execution_event_writer.go +++ b/flyteadmin/pkg/async/events/mocks/node_execution_event_writer.go @@ -3,7 +3,7 @@ package mocks import ( - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteadmin/pkg/async/events/mocks/workflow_execution_event_writer.go b/flyteadmin/pkg/async/events/mocks/workflow_execution_event_writer.go index d369c2d7e4..1c366f4cd5 100644 --- a/flyteadmin/pkg/async/events/mocks/workflow_execution_event_writer.go +++ b/flyteadmin/pkg/async/events/mocks/workflow_execution_event_writer.go @@ -3,7 +3,7 @@ package mocks import ( - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteadmin/pkg/async/notifications/email.go b/flyteadmin/pkg/async/notifications/email.go index 5898066e51..6481d0cc20 100644 --- a/flyteadmin/pkg/async/notifications/email.go +++ b/flyteadmin/pkg/async/notifications/email.go @@ -6,7 +6,7 @@ import ( "strings" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) type GetTemplateValue func(admin.WorkflowExecutionEventRequest, *admin.Execution) string diff --git a/flyteadmin/pkg/async/notifications/email_test.go b/flyteadmin/pkg/async/notifications/email_test.go index 37dc7b9ffe..53fcb585c1 100644 --- a/flyteadmin/pkg/async/notifications/email_test.go +++ b/flyteadmin/pkg/async/notifications/email_test.go @@ -7,9 +7,9 @@ import ( "strings" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" - "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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/gogo/protobuf/proto" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/async/notifications/factory_test.go b/flyteadmin/pkg/async/notifications/factory_test.go index 5b5cc05041..f52989d386 100644 --- a/flyteadmin/pkg/async/notifications/factory_test.go +++ b/flyteadmin/pkg/async/notifications/factory_test.go @@ -6,8 +6,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/implementations" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/async/notifications/implementations/aws_emailer.go b/flyteadmin/pkg/async/notifications/implementations/aws_emailer.go index ebacb8f880..94f96a1c57 100644 --- a/flyteadmin/pkg/async/notifications/implementations/aws_emailer.go +++ b/flyteadmin/pkg/async/notifications/implementations/aws_emailer.go @@ -8,9 +8,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/async/notifications/implementations/aws_emailer_test.go b/flyteadmin/pkg/async/notifications/implementations/aws_emailer_test.go index a77d47724e..aa8e1585b3 100644 --- a/flyteadmin/pkg/async/notifications/implementations/aws_emailer_test.go +++ b/flyteadmin/pkg/async/notifications/implementations/aws_emailer_test.go @@ -10,8 +10,8 @@ import ( "github.com/aws/aws-sdk-go/service/ses/sesiface" "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/mocks" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/pkg/errors" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/async/notifications/implementations/aws_processor.go b/flyteadmin/pkg/async/notifications/implementations/aws_processor.go index 5ed0327615..fe99ad0af9 100644 --- a/flyteadmin/pkg/async/notifications/implementations/aws_processor.go +++ b/flyteadmin/pkg/async/notifications/implementations/aws_processor.go @@ -9,9 +9,9 @@ import ( "github.com/NYTimes/gizmo/pubsub" "github.com/flyteorg/flyte/flyteadmin/pkg/async" "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" ) diff --git a/flyteadmin/pkg/async/notifications/implementations/aws_processor_test.go b/flyteadmin/pkg/async/notifications/implementations/aws_processor_test.go index bf7b3d7127..f189ec1cb8 100644 --- a/flyteadmin/pkg/async/notifications/implementations/aws_processor_test.go +++ b/flyteadmin/pkg/async/notifications/implementations/aws_processor_test.go @@ -8,7 +8,7 @@ import ( "encoding/base64" "github.com/aws/aws-sdk-go/aws" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/mocks" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/async/notifications/implementations/event_publisher.go b/flyteadmin/pkg/async/notifications/implementations/event_publisher.go index e2210f3e94..fc501ff12f 100644 --- a/flyteadmin/pkg/async/notifications/implementations/event_publisher.go +++ b/flyteadmin/pkg/async/notifications/implementations/event_publisher.go @@ -5,7 +5,7 @@ import ( "k8s.io/apimachinery/pkg/util/sets" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/interfaces" diff --git a/flyteadmin/pkg/async/notifications/implementations/event_publisher_test.go b/flyteadmin/pkg/async/notifications/implementations/event_publisher_test.go index b75a5e6a10..c6223bbf61 100644 --- a/flyteadmin/pkg/async/notifications/implementations/event_publisher_test.go +++ b/flyteadmin/pkg/async/notifications/implementations/event_publisher_test.go @@ -6,9 +6,9 @@ import ( "testing" "time" - "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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/ptypes" "github.com/NYTimes/gizmo/pubsub" diff --git a/flyteadmin/pkg/async/notifications/implementations/gcp_processor.go b/flyteadmin/pkg/async/notifications/implementations/gcp_processor.go index b5eee6a607..2127f02cf1 100644 --- a/flyteadmin/pkg/async/notifications/implementations/gcp_processor.go +++ b/flyteadmin/pkg/async/notifications/implementations/gcp_processor.go @@ -7,9 +7,9 @@ import ( "github.com/NYTimes/gizmo/pubsub" "github.com/flyteorg/flyte/flyteadmin/pkg/async" "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" ) diff --git a/flyteadmin/pkg/async/notifications/implementations/gcp_processor_test.go b/flyteadmin/pkg/async/notifications/implementations/gcp_processor_test.go index 9282749fe0..35ab94c093 100644 --- a/flyteadmin/pkg/async/notifications/implementations/gcp_processor_test.go +++ b/flyteadmin/pkg/async/notifications/implementations/gcp_processor_test.go @@ -6,8 +6,8 @@ import ( "github.com/NYTimes/gizmo/pubsub/pubsubtest" "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/pkg/errors" dto "github.com/prometheus/client_model/go" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/async/notifications/implementations/noop_notifications.go b/flyteadmin/pkg/async/notifications/implementations/noop_notifications.go index de3ed8553b..ca716113ae 100644 --- a/flyteadmin/pkg/async/notifications/implementations/noop_notifications.go +++ b/flyteadmin/pkg/async/notifications/implementations/noop_notifications.go @@ -5,8 +5,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "strings" diff --git a/flyteadmin/pkg/async/notifications/implementations/publisher_test.go b/flyteadmin/pkg/async/notifications/implementations/publisher_test.go index 4af33c904e..e55df967fb 100644 --- a/flyteadmin/pkg/async/notifications/implementations/publisher_test.go +++ b/flyteadmin/pkg/async/notifications/implementations/publisher_test.go @@ -10,8 +10,8 @@ import ( "github.com/NYTimes/gizmo/pubsub/pubsubtest" "github.com/aws/aws-sdk-go/aws" "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/async/notifications/implementations/sandbox_processor.go b/flyteadmin/pkg/async/notifications/implementations/sandbox_processor.go index 34aea291a1..128b865e84 100644 --- a/flyteadmin/pkg/async/notifications/implementations/sandbox_processor.go +++ b/flyteadmin/pkg/async/notifications/implementations/sandbox_processor.go @@ -6,8 +6,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/async" "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" ) diff --git a/flyteadmin/pkg/async/notifications/implementations/sandbox_processor_test.go b/flyteadmin/pkg/async/notifications/implementations/sandbox_processor_test.go index ea765ec08b..1a703faf70 100644 --- a/flyteadmin/pkg/async/notifications/implementations/sandbox_processor_test.go +++ b/flyteadmin/pkg/async/notifications/implementations/sandbox_processor_test.go @@ -6,7 +6,7 @@ import ( "time" "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/pkg/errors" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/async/notifications/implementations/sendgrid_emailer.go b/flyteadmin/pkg/async/notifications/implementations/sendgrid_emailer.go index 5631a61876..54f53859f3 100644 --- a/flyteadmin/pkg/async/notifications/implementations/sendgrid_emailer.go +++ b/flyteadmin/pkg/async/notifications/implementations/sendgrid_emailer.go @@ -11,9 +11,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/async/notifications/interfaces" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" ) type SendgridEmailer struct { diff --git a/flyteadmin/pkg/async/notifications/implementations/sendgrid_emailer_test.go b/flyteadmin/pkg/async/notifications/implementations/sendgrid_emailer_test.go index 5d7039de51..fd16c9cf15 100644 --- a/flyteadmin/pkg/async/notifications/implementations/sendgrid_emailer_test.go +++ b/flyteadmin/pkg/async/notifications/implementations/sendgrid_emailer_test.go @@ -7,8 +7,8 @@ import ( "testing" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/async/notifications/interfaces/emailer.go b/flyteadmin/pkg/async/notifications/interfaces/emailer.go index 3d76ae1dfd..54b6ad5574 100644 --- a/flyteadmin/pkg/async/notifications/interfaces/emailer.go +++ b/flyteadmin/pkg/async/notifications/interfaces/emailer.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // The implementation of Emailer needs to be passed to the implementation of Processor diff --git a/flyteadmin/pkg/async/notifications/mocks/processor.go b/flyteadmin/pkg/async/notifications/mocks/processor.go index 77b942a0c3..a60bb26f96 100644 --- a/flyteadmin/pkg/async/notifications/mocks/processor.go +++ b/flyteadmin/pkg/async/notifications/mocks/processor.go @@ -3,7 +3,7 @@ package mocks import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) type RunFunc func() error diff --git a/flyteadmin/pkg/async/schedule/aws/cloud_watch_scheduler.go b/flyteadmin/pkg/async/schedule/aws/cloud_watch_scheduler.go index bd77fed861..26bfec0631 100644 --- a/flyteadmin/pkg/async/schedule/aws/cloud_watch_scheduler.go +++ b/flyteadmin/pkg/async/schedule/aws/cloud_watch_scheduler.go @@ -9,10 +9,10 @@ import ( scheduleInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/async/schedule/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" appInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/awserr" diff --git a/flyteadmin/pkg/async/schedule/aws/cloud_watch_scheduler_test.go b/flyteadmin/pkg/async/schedule/aws/cloud_watch_scheduler_test.go index 52402f7e63..86b08df5b0 100644 --- a/flyteadmin/pkg/async/schedule/aws/cloud_watch_scheduler_test.go +++ b/flyteadmin/pkg/async/schedule/aws/cloud_watch_scheduler_test.go @@ -9,9 +9,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/async/schedule/aws/mocks" scheduleInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/async/schedule/interfaces" flyteAdminErrors "github.com/flyteorg/flyte/flyteadmin/pkg/errors" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/service/cloudwatchevents" diff --git a/flyteadmin/pkg/async/schedule/aws/serialization.go b/flyteadmin/pkg/async/schedule/aws/serialization.go index 0540ee1a31..e10f3f89d8 100644 --- a/flyteadmin/pkg/async/schedule/aws/serialization.go +++ b/flyteadmin/pkg/async/schedule/aws/serialization.go @@ -11,7 +11,7 @@ import ( "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/async/schedule/aws/serialization_test.go b/flyteadmin/pkg/async/schedule/aws/serialization_test.go index 719bab6c66..40358ab5d7 100644 --- a/flyteadmin/pkg/async/schedule/aws/serialization_test.go +++ b/flyteadmin/pkg/async/schedule/aws/serialization_test.go @@ -6,7 +6,7 @@ import ( "time" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/async/schedule/aws/shared.go b/flyteadmin/pkg/async/schedule/aws/shared.go index 65207cb8d8..2a0590cff6 100644 --- a/flyteadmin/pkg/async/schedule/aws/shared.go +++ b/flyteadmin/pkg/async/schedule/aws/shared.go @@ -5,8 +5,8 @@ import ( "fmt" "hash/fnv" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) func hashIdentifier(identifier core.Identifier) uint64 { diff --git a/flyteadmin/pkg/async/schedule/aws/shared_test.go b/flyteadmin/pkg/async/schedule/aws/shared_test.go index 1d7b50a396..2a2d6f0ee0 100644 --- a/flyteadmin/pkg/async/schedule/aws/shared_test.go +++ b/flyteadmin/pkg/async/schedule/aws/shared_test.go @@ -3,7 +3,7 @@ package aws import ( "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/magiconair/properties/assert" ) diff --git a/flyteadmin/pkg/async/schedule/aws/workflow_executor.go b/flyteadmin/pkg/async/schedule/aws/workflow_executor.go index f19362021d..6175a8618a 100644 --- a/flyteadmin/pkg/async/schedule/aws/workflow_executor.go +++ b/flyteadmin/pkg/async/schedule/aws/workflow_executor.go @@ -20,15 +20,15 @@ import ( "github.com/prometheus/client_golang/prometheus" scheduleInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/async/schedule/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/ptypes" "github.com/NYTimes/gizmo/pubsub" "github.com/NYTimes/gizmo/pubsub/aws" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/async/schedule/aws/workflow_executor_test.go b/flyteadmin/pkg/async/schedule/aws/workflow_executor_test.go index 8d8b01df1b..8fa12ac2c8 100644 --- a/flyteadmin/pkg/async/schedule/aws/workflow_executor_test.go +++ b/flyteadmin/pkg/async/schedule/aws/workflow_executor_test.go @@ -20,8 +20,8 @@ import ( "github.com/NYTimes/gizmo/pubsub" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/ptypes" ) diff --git a/flyteadmin/pkg/async/schedule/interfaces/event_scheduler.go b/flyteadmin/pkg/async/schedule/interfaces/event_scheduler.go index 3871faa6a9..8502eae167 100644 --- a/flyteadmin/pkg/async/schedule/interfaces/event_scheduler.go +++ b/flyteadmin/pkg/async/schedule/interfaces/event_scheduler.go @@ -5,8 +5,8 @@ import ( "context" appInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) type AddScheduleInput struct { diff --git a/flyteadmin/pkg/async/schedule/mocks/mock_event_scheduler.go b/flyteadmin/pkg/async/schedule/mocks/mock_event_scheduler.go index 92d72bbfb6..a1bcc9bee7 100644 --- a/flyteadmin/pkg/async/schedule/mocks/mock_event_scheduler.go +++ b/flyteadmin/pkg/async/schedule/mocks/mock_event_scheduler.go @@ -6,8 +6,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/async/schedule/aws" "github.com/flyteorg/flyte/flyteadmin/pkg/async/schedule/interfaces" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) type AddScheduleFunc func(ctx context.Context, input interfaces.AddScheduleInput) error diff --git a/flyteadmin/pkg/async/schedule/noop/event_scheduler.go b/flyteadmin/pkg/async/schedule/noop/event_scheduler.go index cc49113495..ed05858607 100644 --- a/flyteadmin/pkg/async/schedule/noop/event_scheduler.go +++ b/flyteadmin/pkg/async/schedule/noop/event_scheduler.go @@ -6,9 +6,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/async/schedule/interfaces" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) type EventScheduler struct{} diff --git a/flyteadmin/pkg/clusterresource/controller.go b/flyteadmin/pkg/clusterresource/controller.go index 7e5fe6610d..cdf9ea0655 100644 --- a/flyteadmin/pkg/clusterresource/controller.go +++ b/flyteadmin/pkg/clusterresource/controller.go @@ -47,10 +47,10 @@ import ( errors2 "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/runtime" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + admin2 "github.com/flyteorg/flyte/flyteidl/clients/go/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - admin2 "github.com/flyteorg/flyteidl/clients/go/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" ) const namespaceVariable = "namespace" diff --git a/flyteadmin/pkg/clusterresource/controller_test.go b/flyteadmin/pkg/clusterresource/controller_test.go index c43afcaaf2..2cb1d14965 100644 --- a/flyteadmin/pkg/clusterresource/controller_test.go +++ b/flyteadmin/pkg/clusterresource/controller_test.go @@ -13,8 +13,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/clusterresource/mocks" execClusterMocks "github.com/flyteorg/flyte/flyteadmin/pkg/executioncluster/mocks" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" diff --git a/flyteadmin/pkg/clusterresource/impl/admin_service_data_provider.go b/flyteadmin/pkg/clusterresource/impl/admin_service_data_provider.go index e2635f345e..252dadc98d 100644 --- a/flyteadmin/pkg/clusterresource/impl/admin_service_data_provider.go +++ b/flyteadmin/pkg/clusterresource/impl/admin_service_data_provider.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flyteadmin/pkg/clusterresource/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/common" diff --git a/flyteadmin/pkg/clusterresource/impl/admin_service_data_provider_test.go b/flyteadmin/pkg/clusterresource/impl/admin_service_data_provider_test.go index 79d980b7e7..b7665a3ad9 100644 --- a/flyteadmin/pkg/clusterresource/impl/admin_service_data_provider_test.go +++ b/flyteadmin/pkg/clusterresource/impl/admin_service_data_provider_test.go @@ -4,8 +4,8 @@ import ( "context" "testing" - "github.com/flyteorg/flyteidl/clients/go/admin/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/clusterresource/impl/db_admin_data_provider.go b/flyteadmin/pkg/clusterresource/impl/db_admin_data_provider.go index 05250c0548..3f9a67333f 100644 --- a/flyteadmin/pkg/clusterresource/impl/db_admin_data_provider.go +++ b/flyteadmin/pkg/clusterresource/impl/db_admin_data_provider.go @@ -9,7 +9,7 @@ import ( repositoryInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/transformers" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // Implementation of an interfaces.FlyteAdminDataProvider which fetches data directly from the provided database connection. diff --git a/flyteadmin/pkg/clusterresource/impl/db_admin_data_provider_test.go b/flyteadmin/pkg/clusterresource/impl/db_admin_data_provider_test.go index dca0a7aec8..b5fed4d0a3 100644 --- a/flyteadmin/pkg/clusterresource/impl/db_admin_data_provider_test.go +++ b/flyteadmin/pkg/clusterresource/impl/db_admin_data_provider_test.go @@ -12,7 +12,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" configMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/flyteadmin/pkg/clusterresource/interfaces/admin.go b/flyteadmin/pkg/clusterresource/interfaces/admin.go index fbd142224f..fe63687aa0 100644 --- a/flyteadmin/pkg/clusterresource/interfaces/admin.go +++ b/flyteadmin/pkg/clusterresource/interfaces/admin.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) //go:generate mockery -name FlyteAdminDataProvider -output=../mocks -case=underscore diff --git a/flyteadmin/pkg/clusterresource/mocks/flyte_admin_data_provider.go b/flyteadmin/pkg/clusterresource/mocks/flyte_admin_data_provider.go index c81c14aa49..087426a895 100644 --- a/flyteadmin/pkg/clusterresource/mocks/flyte_admin_data_provider.go +++ b/flyteadmin/pkg/clusterresource/mocks/flyte_admin_data_provider.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteadmin/pkg/common/data_store.go b/flyteadmin/pkg/common/data_store.go index 11f98db68e..e6c1866af8 100644 --- a/flyteadmin/pkg/common/data_store.go +++ b/flyteadmin/pkg/common/data_store.go @@ -7,8 +7,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/async" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/shared" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" errrs "github.com/pkg/errors" "google.golang.org/api/googleapi" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/common/data_store_test.go b/flyteadmin/pkg/common/data_store_test.go index 1241eeed6c..594af6a09d 100644 --- a/flyteadmin/pkg/common/data_store_test.go +++ b/flyteadmin/pkg/common/data_store_test.go @@ -11,8 +11,8 @@ import ( "google.golang.org/grpc/codes" commonMocks "github.com/flyteorg/flyte/flyteadmin/pkg/common/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/common/entity.go b/flyteadmin/pkg/common/entity.go index cbb96e53df..ed51d872b2 100644 --- a/flyteadmin/pkg/common/entity.go +++ b/flyteadmin/pkg/common/entity.go @@ -1,7 +1,7 @@ package common import ( - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) type Entity = string diff --git a/flyteadmin/pkg/common/executions.go b/flyteadmin/pkg/common/executions.go index 48a806c036..a4484e8e0b 100644 --- a/flyteadmin/pkg/common/executions.go +++ b/flyteadmin/pkg/common/executions.go @@ -3,7 +3,7 @@ package common import ( "fmt" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "k8s.io/apimachinery/pkg/util/rand" ) diff --git a/flyteadmin/pkg/common/flyte_url.go b/flyteadmin/pkg/common/flyte_url.go index c4734b411c..195963535e 100644 --- a/flyteadmin/pkg/common/flyte_url.go +++ b/flyteadmin/pkg/common/flyte_url.go @@ -5,8 +5,8 @@ import ( "regexp" "strconv" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) // transform to snake case to make lower case diff --git a/flyteadmin/pkg/common/flyte_url_test.go b/flyteadmin/pkg/common/flyte_url_test.go index b88866766a..75bbfe0e53 100644 --- a/flyteadmin/pkg/common/flyte_url_test.go +++ b/flyteadmin/pkg/common/flyte_url_test.go @@ -3,7 +3,7 @@ package common import ( "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/common/sorting.go b/flyteadmin/pkg/common/sorting.go index 966942ce32..748ff36c27 100644 --- a/flyteadmin/pkg/common/sorting.go +++ b/flyteadmin/pkg/common/sorting.go @@ -3,7 +3,7 @@ package common import ( "fmt" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" "k8s.io/apimachinery/pkg/util/sets" diff --git a/flyteadmin/pkg/common/sorting_test.go b/flyteadmin/pkg/common/sorting_test.go index 29181994fb..b879fd7335 100644 --- a/flyteadmin/pkg/common/sorting_test.go +++ b/flyteadmin/pkg/common/sorting_test.go @@ -5,7 +5,7 @@ import ( "k8s.io/apimachinery/pkg/util/sets" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/common/testutils/common.go b/flyteadmin/pkg/common/testutils/common.go index 7df3db16f1..6224c4023b 100644 --- a/flyteadmin/pkg/common/testutils/common.go +++ b/flyteadmin/pkg/common/testutils/common.go @@ -1,6 +1,6 @@ package testutils -import "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" +import "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" // Convenience method to wrap verbose boilerplate for initializing a PluginOverrides MatchingAttributes. func GetPluginOverridesAttributes(vals map[string][]string) *admin.MatchingAttributes { diff --git a/flyteadmin/pkg/data/implementations/aws_remote_url.go b/flyteadmin/pkg/data/implementations/aws_remote_url.go index 59cfe4ad1f..3063222092 100644 --- a/flyteadmin/pkg/data/implementations/aws_remote_url.go +++ b/flyteadmin/pkg/data/implementations/aws_remote_url.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/request" diff --git a/flyteadmin/pkg/data/implementations/gcp_remote_url.go b/flyteadmin/pkg/data/implementations/gcp_remote_url.go index e64d3f47b5..6253375572 100644 --- a/flyteadmin/pkg/data/implementations/gcp_remote_url.go +++ b/flyteadmin/pkg/data/implementations/gcp_remote_url.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" gax "github.com/googleapis/gax-go/v2" "golang.org/x/oauth2" diff --git a/flyteadmin/pkg/data/implementations/noop_remote_url.go b/flyteadmin/pkg/data/implementations/noop_remote_url.go index 8dab8615fe..c19daa6887 100644 --- a/flyteadmin/pkg/data/implementations/noop_remote_url.go +++ b/flyteadmin/pkg/data/implementations/noop_remote_url.go @@ -5,8 +5,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/data/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/data/interfaces/remote.go b/flyteadmin/pkg/data/interfaces/remote.go index 1be347a4f6..049c9a0465 100644 --- a/flyteadmin/pkg/data/interfaces/remote.go +++ b/flyteadmin/pkg/data/interfaces/remote.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // Defines an interface for fetching pre-signed URLs. diff --git a/flyteadmin/pkg/data/mocks/remote.go b/flyteadmin/pkg/data/mocks/remote.go index a00b95d521..3f7b0f64e0 100644 --- a/flyteadmin/pkg/data/mocks/remote.go +++ b/flyteadmin/pkg/data/mocks/remote.go @@ -4,7 +4,7 @@ import ( "context" "github.com/flyteorg/flyte/flyteadmin/pkg/data/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // Mock implementation of a RemoteURLInterface diff --git a/flyteadmin/pkg/errors/errors.go b/flyteadmin/pkg/errors/errors.go index 6a6e60f006..577b3a8655 100644 --- a/flyteadmin/pkg/errors/errors.go +++ b/flyteadmin/pkg/errors/errors.go @@ -6,8 +6,8 @@ import ( "fmt" "strings" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/flyteadmin/pkg/errors/errors_test.go b/flyteadmin/pkg/errors/errors_test.go index ace659b0ce..fa3c646314 100644 --- a/flyteadmin/pkg/errors/errors_test.go +++ b/flyteadmin/pkg/errors/errors_test.go @@ -7,8 +7,8 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/executioncluster/impl/random_cluster_selector.go b/flyteadmin/pkg/executioncluster/impl/random_cluster_selector.go index 42624f8920..5e3f3800ea 100644 --- a/flyteadmin/pkg/executioncluster/impl/random_cluster_selector.go +++ b/flyteadmin/pkg/executioncluster/impl/random_cluster_selector.go @@ -10,7 +10,7 @@ import ( "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/resources" diff --git a/flyteadmin/pkg/executioncluster/impl/random_cluster_selector_test.go b/flyteadmin/pkg/executioncluster/impl/random_cluster_selector_test.go index 954e09f01b..d937596c97 100644 --- a/flyteadmin/pkg/executioncluster/impl/random_cluster_selector_test.go +++ b/flyteadmin/pkg/executioncluster/impl/random_cluster_selector_test.go @@ -10,7 +10,7 @@ import ( repo_interface "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" repo_mock "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/manager/impl/description_entity_manager.go b/flyteadmin/pkg/manager/impl/description_entity_manager.go index 26f25575b6..9dea2c7867 100644 --- a/flyteadmin/pkg/manager/impl/description_entity_manager.go +++ b/flyteadmin/pkg/manager/impl/description_entity_manager.go @@ -4,11 +4,11 @@ import ( "context" "strconv" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" "github.com/flyteorg/flyte/flyteadmin/pkg/common" diff --git a/flyteadmin/pkg/manager/impl/description_entity_manager_test.go b/flyteadmin/pkg/manager/impl/description_entity_manager_test.go index ebf7bd175e..20944e82ec 100644 --- a/flyteadmin/pkg/manager/impl/description_entity_manager_test.go +++ b/flyteadmin/pkg/manager/impl/description_entity_manager_test.go @@ -9,9 +9,9 @@ import ( repositoryMocks "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" runtimeMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/execution_manager.go b/flyteadmin/pkg/manager/impl/execution_manager.go index c3c3fb0b5a..e5515f886b 100644 --- a/flyteadmin/pkg/manager/impl/execution_manager.go +++ b/flyteadmin/pkg/manager/impl/execution_manager.go @@ -7,14 +7,14 @@ import ( "time" "github.com/benbjohnson/clock" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" "github.com/flyteorg/flyte/flytestdlib/storage" - "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/golang/protobuf/ptypes" "github.com/golang/protobuf/ptypes/timestamp" diff --git a/flyteadmin/pkg/manager/impl/execution_manager_test.go b/flyteadmin/pkg/manager/impl/execution_manager_test.go index c481c056b0..daeaa454c7 100644 --- a/flyteadmin/pkg/manager/impl/execution_manager_test.go +++ b/flyteadmin/pkg/manager/impl/execution_manager_test.go @@ -9,12 +9,12 @@ import ( "time" "github.com/benbjohnson/clock" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/clients/go/coreutils" - "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/gogo/protobuf/jsonpb" "github.com/golang/protobuf/proto" "github.com/golang/protobuf/ptypes" diff --git a/flyteadmin/pkg/manager/impl/executions/quality_of_service.go b/flyteadmin/pkg/manager/impl/executions/quality_of_service.go index a9af45eeea..256cad089f 100644 --- a/flyteadmin/pkg/manager/impl/executions/quality_of_service.go +++ b/flyteadmin/pkg/manager/impl/executions/quality_of_service.go @@ -7,9 +7,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/interfaces" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/ptypes" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/executions/quality_of_service_test.go b/flyteadmin/pkg/manager/impl/executions/quality_of_service_test.go index e78a5dd6fc..ebe50ddef6 100644 --- a/flyteadmin/pkg/manager/impl/executions/quality_of_service_test.go +++ b/flyteadmin/pkg/manager/impl/executions/quality_of_service_test.go @@ -11,8 +11,8 @@ import ( runtimeIFaceMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" runtimeMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/ptypes" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/executions/queues.go b/flyteadmin/pkg/manager/impl/executions/queues.go index fa05d7698c..df3aef271e 100644 --- a/flyteadmin/pkg/manager/impl/executions/queues.go +++ b/flyteadmin/pkg/manager/impl/executions/queues.go @@ -9,11 +9,11 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/resources" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" ) diff --git a/flyteadmin/pkg/manager/impl/executions/queues_test.go b/flyteadmin/pkg/manager/impl/executions/queues_test.go index 4acb2f41c0..81578e3c24 100644 --- a/flyteadmin/pkg/manager/impl/executions/queues_test.go +++ b/flyteadmin/pkg/manager/impl/executions/queues_test.go @@ -9,11 +9,11 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "google.golang.org/grpc/codes" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" runtimeMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" diff --git a/flyteadmin/pkg/manager/impl/launch_plan_manager.go b/flyteadmin/pkg/manager/impl/launch_plan_manager.go index 9b5eae61ff..2ed875d970 100644 --- a/flyteadmin/pkg/manager/impl/launch_plan_manager.go +++ b/flyteadmin/pkg/manager/impl/launch_plan_manager.go @@ -5,11 +5,11 @@ import ( "context" "strconv" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - "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/prometheus/client_golang/prometheus" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/manager/impl/launch_plan_manager_test.go b/flyteadmin/pkg/manager/impl/launch_plan_manager_test.go index e0df95c772..545703c629 100644 --- a/flyteadmin/pkg/manager/impl/launch_plan_manager_test.go +++ b/flyteadmin/pkg/manager/impl/launch_plan_manager_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "github.com/flyteorg/flyteidl/clients/go/coreutils" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" "github.com/flyteorg/flyte/flyteadmin/pkg/async/schedule/mocks" @@ -26,9 +26,9 @@ import ( runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" runtimeMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/metrics_manager.go b/flyteadmin/pkg/manager/impl/metrics_manager.go index 3297bff871..e49f4dffa7 100644 --- a/flyteadmin/pkg/manager/impl/metrics_manager.go +++ b/flyteadmin/pkg/manager/impl/metrics_manager.go @@ -9,8 +9,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/manager/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1" diff --git a/flyteadmin/pkg/manager/impl/metrics_manager_test.go b/flyteadmin/pkg/manager/impl/metrics_manager_test.go index 1a529394c9..fd8e68d094 100644 --- a/flyteadmin/pkg/manager/impl/metrics_manager_test.go +++ b/flyteadmin/pkg/manager/impl/metrics_manager_test.go @@ -5,8 +5,8 @@ import ( "reflect" "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/mocks" diff --git a/flyteadmin/pkg/manager/impl/named_entity_manager.go b/flyteadmin/pkg/manager/impl/named_entity_manager.go index 478c59fc3e..23c2fce134 100644 --- a/flyteadmin/pkg/manager/impl/named_entity_manager.go +++ b/flyteadmin/pkg/manager/impl/named_entity_manager.go @@ -5,11 +5,11 @@ import ( "strconv" "strings" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" "github.com/flyteorg/flyte/flyteadmin/pkg/common" diff --git a/flyteadmin/pkg/manager/impl/named_entity_manager_test.go b/flyteadmin/pkg/manager/impl/named_entity_manager_test.go index ea76ecf304..6a77edc7e0 100644 --- a/flyteadmin/pkg/manager/impl/named_entity_manager_test.go +++ b/flyteadmin/pkg/manager/impl/named_entity_manager_test.go @@ -10,9 +10,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" runtimeMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/node_execution_manager.go b/flyteadmin/pkg/manager/impl/node_execution_manager.go index 701a1ce46a..cc5cbbccc3 100644 --- a/flyteadmin/pkg/manager/impl/node_execution_manager.go +++ b/flyteadmin/pkg/manager/impl/node_execution_manager.go @@ -5,13 +5,13 @@ import ( "fmt" "strconv" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" "github.com/flyteorg/flyte/flytestdlib/storage" - "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/prometheus/client_golang/prometheus" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/manager/impl/node_execution_manager_test.go b/flyteadmin/pkg/manager/impl/node_execution_manager_test.go index 80504cf9a2..f7fee29fad 100644 --- a/flyteadmin/pkg/manager/impl/node_execution_manager_test.go +++ b/flyteadmin/pkg/manager/impl/node_execution_manager_test.go @@ -19,10 +19,10 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "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/proto" "github.com/golang/protobuf/ptypes" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/manager/impl/project_manager.go b/flyteadmin/pkg/manager/impl/project_manager.go index ed2a4b2c37..edfedcaf85 100644 --- a/flyteadmin/pkg/manager/impl/project_manager.go +++ b/flyteadmin/pkg/manager/impl/project_manager.go @@ -4,7 +4,7 @@ import ( "context" "strconv" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" "github.com/flyteorg/flyte/flyteadmin/pkg/common" diff --git a/flyteadmin/pkg/manager/impl/project_manager_test.go b/flyteadmin/pkg/manager/impl/project_manager_test.go index a6c0571c5e..ef4f470d7c 100644 --- a/flyteadmin/pkg/manager/impl/project_manager_test.go +++ b/flyteadmin/pkg/manager/impl/project_manager_test.go @@ -15,7 +15,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" runtimeMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/resources/resource_manager.go b/flyteadmin/pkg/manager/impl/resources/resource_manager.go index cfa5369038..a6b51a46cb 100644 --- a/flyteadmin/pkg/manager/impl/resources/resource_manager.go +++ b/flyteadmin/pkg/manager/impl/resources/resource_manager.go @@ -19,7 +19,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/transformers" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" ) diff --git a/flyteadmin/pkg/manager/impl/resources/resource_manager_test.go b/flyteadmin/pkg/manager/impl/resources/resource_manager_test.go index 00b7abaa93..aad3c85d37 100644 --- a/flyteadmin/pkg/manager/impl/resources/resource_manager_test.go +++ b/flyteadmin/pkg/manager/impl/resources/resource_manager_test.go @@ -4,7 +4,7 @@ import ( "context" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" // pkg/runtime/interfaces/application_configuration.go "testing" @@ -21,7 +21,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/shared/iface.go b/flyteadmin/pkg/manager/impl/shared/iface.go index 0caba1d508..b230189e40 100644 --- a/flyteadmin/pkg/manager/impl/shared/iface.go +++ b/flyteadmin/pkg/manager/impl/shared/iface.go @@ -1,8 +1,8 @@ package shared import ( - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/ptypes/wrappers" ) diff --git a/flyteadmin/pkg/manager/impl/signal_manager.go b/flyteadmin/pkg/manager/impl/signal_manager.go index 092c8ee0e1..48cfe49d51 100644 --- a/flyteadmin/pkg/manager/impl/signal_manager.go +++ b/flyteadmin/pkg/manager/impl/signal_manager.go @@ -4,12 +4,12 @@ import ( "context" "strconv" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" "github.com/flyteorg/flyte/flyteadmin/pkg/common" diff --git a/flyteadmin/pkg/manager/impl/signal_manager_test.go b/flyteadmin/pkg/manager/impl/signal_manager_test.go index 6e1dcac0d8..3cc8b87119 100644 --- a/flyteadmin/pkg/manager/impl/signal_manager_test.go +++ b/flyteadmin/pkg/manager/impl/signal_manager_test.go @@ -9,8 +9,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/transformers" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" diff --git a/flyteadmin/pkg/manager/impl/task_execution_manager.go b/flyteadmin/pkg/manager/impl/task_execution_manager.go index 8df0518ca4..92c2c7842c 100644 --- a/flyteadmin/pkg/manager/impl/task_execution_manager.go +++ b/flyteadmin/pkg/manager/impl/task_execution_manager.go @@ -5,13 +5,13 @@ import ( "fmt" "strconv" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" "github.com/flyteorg/flyte/flytestdlib/storage" - "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/prometheus/client_golang/prometheus" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/manager/impl/task_execution_manager_test.go b/flyteadmin/pkg/manager/impl/task_execution_manager_test.go index 506d5b6ef0..a6acf3c3fd 100644 --- a/flyteadmin/pkg/manager/impl/task_execution_manager_test.go +++ b/flyteadmin/pkg/manager/impl/task_execution_manager_test.go @@ -18,10 +18,10 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" repositoryMocks "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "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/proto" "github.com/golang/protobuf/ptypes" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/manager/impl/task_manager.go b/flyteadmin/pkg/manager/impl/task_manager.go index 3e8404dc81..1d1be46bb4 100644 --- a/flyteadmin/pkg/manager/impl/task_manager.go +++ b/flyteadmin/pkg/manager/impl/task_manager.go @@ -6,12 +6,12 @@ import ( "strconv" "time" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/ptypes" "github.com/prometheus/client_golang/prometheus" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/manager/impl/task_manager_test.go b/flyteadmin/pkg/manager/impl/task_manager_test.go index b4f165755c..cd21cd007b 100644 --- a/flyteadmin/pkg/manager/impl/task_manager_test.go +++ b/flyteadmin/pkg/manager/impl/task_manager_test.go @@ -19,9 +19,9 @@ import ( workflowengine "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/interfaces" workflowMocks "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/test_constants.go b/flyteadmin/pkg/manager/impl/test_constants.go index ce3ca2a046..070df71703 100644 --- a/flyteadmin/pkg/manager/impl/test_constants.go +++ b/flyteadmin/pkg/manager/impl/test_constants.go @@ -1,7 +1,7 @@ package impl import ( - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) const project = "project" diff --git a/flyteadmin/pkg/manager/impl/testutils/attributes.go b/flyteadmin/pkg/manager/impl/testutils/attributes.go index 92d276d3e0..e1fde77fb2 100644 --- a/flyteadmin/pkg/manager/impl/testutils/attributes.go +++ b/flyteadmin/pkg/manager/impl/testutils/attributes.go @@ -1,6 +1,6 @@ package testutils -import "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" +import "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" var ExecutionQueueAttributes = &admin.MatchingAttributes{ Target: &admin.MatchingAttributes_ExecutionQueueAttributes{ diff --git a/flyteadmin/pkg/manager/impl/testutils/mock_closures.go b/flyteadmin/pkg/manager/impl/testutils/mock_closures.go index 50a6e62da4..46a89a9145 100644 --- a/flyteadmin/pkg/manager/impl/testutils/mock_closures.go +++ b/flyteadmin/pkg/manager/impl/testutils/mock_closures.go @@ -4,8 +4,8 @@ package testutils import ( "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/golang/protobuf/ptypes" ) diff --git a/flyteadmin/pkg/manager/impl/testutils/mock_requests.go b/flyteadmin/pkg/manager/impl/testutils/mock_requests.go index c0e765f3e7..d307bbb6b8 100644 --- a/flyteadmin/pkg/manager/impl/testutils/mock_requests.go +++ b/flyteadmin/pkg/manager/impl/testutils/mock_requests.go @@ -1,9 +1,9 @@ package testutils import ( - "github.com/flyteorg/flyteidl/clients/go/coreutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" ) diff --git a/flyteadmin/pkg/manager/impl/testutils/repository.go b/flyteadmin/pkg/manager/impl/testutils/repository.go index d85c920c7e..65463dda89 100644 --- a/flyteadmin/pkg/manager/impl/testutils/repository.go +++ b/flyteadmin/pkg/manager/impl/testutils/repository.go @@ -6,7 +6,7 @@ import ( repositoryInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" repositoryMocks "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" ) diff --git a/flyteadmin/pkg/manager/impl/util/data.go b/flyteadmin/pkg/manager/impl/util/data.go index 896616f60d..b2b38f5275 100644 --- a/flyteadmin/pkg/manager/impl/util/data.go +++ b/flyteadmin/pkg/manager/impl/util/data.go @@ -6,10 +6,10 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/common" dataInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/data/interfaces" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" ) diff --git a/flyteadmin/pkg/manager/impl/util/data_test.go b/flyteadmin/pkg/manager/impl/util/data_test.go index 13d4c24907..47165cd2bd 100644 --- a/flyteadmin/pkg/manager/impl/util/data_test.go +++ b/flyteadmin/pkg/manager/impl/util/data_test.go @@ -6,14 +6,14 @@ import ( commonMocks "github.com/flyteorg/flyte/flyteadmin/pkg/common/mocks" urlMocks "github.com/flyteorg/flyte/flyteadmin/pkg/data/mocks" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/clients/go/coreutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/flyteorg/flyte/flyteadmin/pkg/common" "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/util/digests.go b/flyteadmin/pkg/manager/impl/util/digests.go index 463f263914..2842ab527d 100644 --- a/flyteadmin/pkg/manager/impl/util/digests.go +++ b/flyteadmin/pkg/manager/impl/util/digests.go @@ -4,10 +4,10 @@ import ( "context" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/pbhash" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/util/digests_test.go b/flyteadmin/pkg/manager/impl/util/digests_test.go index 0ec57e8ac4..fe19b0de5f 100644 --- a/flyteadmin/pkg/manager/impl/util/digests_test.go +++ b/flyteadmin/pkg/manager/impl/util/digests_test.go @@ -8,8 +8,8 @@ import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/jsonpb" "github.com/golang/protobuf/ptypes/duration" _struct "github.com/golang/protobuf/ptypes/struct" diff --git a/flyteadmin/pkg/manager/impl/util/filters.go b/flyteadmin/pkg/manager/impl/util/filters.go index 8317886698..3a9c4b714f 100644 --- a/flyteadmin/pkg/manager/impl/util/filters.go +++ b/flyteadmin/pkg/manager/impl/util/filters.go @@ -9,8 +9,8 @@ import ( "strings" "time" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" "k8s.io/apimachinery/pkg/util/sets" diff --git a/flyteadmin/pkg/manager/impl/util/filters_test.go b/flyteadmin/pkg/manager/impl/util/filters_test.go index 450096f2a3..24c5ff7c5a 100644 --- a/flyteadmin/pkg/manager/impl/util/filters_test.go +++ b/flyteadmin/pkg/manager/impl/util/filters_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/flyteadmin/pkg/manager/impl/util/resources.go b/flyteadmin/pkg/manager/impl/util/resources.go index 94304fe0ca..3962765f9b 100644 --- a/flyteadmin/pkg/manager/impl/util/resources.go +++ b/flyteadmin/pkg/manager/impl/util/resources.go @@ -7,9 +7,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/manager/interfaces" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" workflowengineInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "k8s.io/apimachinery/pkg/api/resource" ) diff --git a/flyteadmin/pkg/manager/impl/util/resources_test.go b/flyteadmin/pkg/manager/impl/util/resources_test.go index ea152ba2bb..d5297bf5d3 100644 --- a/flyteadmin/pkg/manager/impl/util/resources_test.go +++ b/flyteadmin/pkg/manager/impl/util/resources_test.go @@ -10,8 +10,8 @@ import ( runtimeMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" workflowengineInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/manager/impl/util/shared.go b/flyteadmin/pkg/manager/impl/util/shared.go index 59847023b6..e1b64f0f7b 100644 --- a/flyteadmin/pkg/manager/impl/util/shared.go +++ b/flyteadmin/pkg/manager/impl/util/shared.go @@ -13,10 +13,10 @@ import ( repoInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/transformers" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/util/shared_test.go b/flyteadmin/pkg/manager/impl/util/shared_test.go index a7d5d4cda7..dfbca17821 100644 --- a/flyteadmin/pkg/manager/impl/util/shared_test.go +++ b/flyteadmin/pkg/manager/impl/util/shared_test.go @@ -18,9 +18,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" repositoryMocks "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/storage" - "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/stretchr/testify/assert" diff --git a/flyteadmin/pkg/manager/impl/util/single_task_execution.go b/flyteadmin/pkg/manager/impl/util/single_task_execution.go index 1245cc32c5..b6de661e21 100644 --- a/flyteadmin/pkg/manager/impl/util/single_task_execution.go +++ b/flyteadmin/pkg/manager/impl/util/single_task_execution.go @@ -13,9 +13,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/transformers" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/util/single_task_execution_test.go b/flyteadmin/pkg/manager/impl/util/single_task_execution_test.go index f800ac8c1d..8c61702f3d 100644 --- a/flyteadmin/pkg/manager/impl/util/single_task_execution_test.go +++ b/flyteadmin/pkg/manager/impl/util/single_task_execution_test.go @@ -13,8 +13,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" repositoryMocks "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/manager/impl/validation/attributes_validator.go b/flyteadmin/pkg/manager/impl/validation/attributes_validator.go index 0129fa06de..19070ce15f 100644 --- a/flyteadmin/pkg/manager/impl/validation/attributes_validator.go +++ b/flyteadmin/pkg/manager/impl/validation/attributes_validator.go @@ -9,7 +9,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/shared" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/validation/attributes_validator_test.go b/flyteadmin/pkg/manager/impl/validation/attributes_validator_test.go index 40cfb8ddbc..1507e58efe 100644 --- a/flyteadmin/pkg/manager/impl/validation/attributes_validator_test.go +++ b/flyteadmin/pkg/manager/impl/validation/attributes_validator_test.go @@ -8,7 +8,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/validation/execution_validator.go b/flyteadmin/pkg/manager/impl/validation/execution_validator.go index bf0f4bc5c3..b5056589a8 100644 --- a/flyteadmin/pkg/manager/impl/validation/execution_validator.go +++ b/flyteadmin/pkg/manager/impl/validation/execution_validator.go @@ -10,9 +10,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/shared" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/validators" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/validation/execution_validator_test.go b/flyteadmin/pkg/manager/impl/validation/execution_validator_test.go index 68244ece35..c3c45d4d44 100644 --- a/flyteadmin/pkg/manager/impl/validation/execution_validator_test.go +++ b/flyteadmin/pkg/manager/impl/validation/execution_validator_test.go @@ -5,13 +5,13 @@ import ( "errors" "testing" - "github.com/flyteorg/flyteidl/clients/go/coreutils" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/validation/launch_plan_validator.go b/flyteadmin/pkg/manager/impl/validation/launch_plan_validator.go index a124dc4c4b..13c20b90d5 100644 --- a/flyteadmin/pkg/manager/impl/validation/launch_plan_validator.go +++ b/flyteadmin/pkg/manager/impl/validation/launch_plan_validator.go @@ -9,9 +9,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/shared" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/validators" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/validation/launch_plan_validator_test.go b/flyteadmin/pkg/manager/impl/validation/launch_plan_validator_test.go index 71f41fe0ef..5b07bf2e91 100644 --- a/flyteadmin/pkg/manager/impl/validation/launch_plan_validator_test.go +++ b/flyteadmin/pkg/manager/impl/validation/launch_plan_validator_test.go @@ -4,12 +4,12 @@ import ( "context" "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/clients/go/coreutils" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/validation/named_entity_validator.go b/flyteadmin/pkg/manager/impl/validation/named_entity_validator.go index abb1615eb1..e2f710da34 100644 --- a/flyteadmin/pkg/manager/impl/validation/named_entity_validator.go +++ b/flyteadmin/pkg/manager/impl/validation/named_entity_validator.go @@ -3,8 +3,8 @@ package validation import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/shared" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" "k8s.io/apimachinery/pkg/util/sets" ) diff --git a/flyteadmin/pkg/manager/impl/validation/named_entity_validator_test.go b/flyteadmin/pkg/manager/impl/validation/named_entity_validator_test.go index ba4b101839..227776a5f5 100644 --- a/flyteadmin/pkg/manager/impl/validation/named_entity_validator_test.go +++ b/flyteadmin/pkg/manager/impl/validation/named_entity_validator_test.go @@ -6,8 +6,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "google.golang.org/grpc/codes" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/validation/node_execution_validator.go b/flyteadmin/pkg/manager/impl/validation/node_execution_validator.go index 0d517f0eb3..fe0b311d2e 100644 --- a/flyteadmin/pkg/manager/impl/validation/node_execution_validator.go +++ b/flyteadmin/pkg/manager/impl/validation/node_execution_validator.go @@ -3,8 +3,8 @@ package validation import ( "github.com/flyteorg/flyte/flyteadmin/pkg/common" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/shared" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) func ValidateNodeExecutionIdentifier(identifier *core.NodeExecutionIdentifier) error { diff --git a/flyteadmin/pkg/manager/impl/validation/node_execution_validator_test.go b/flyteadmin/pkg/manager/impl/validation/node_execution_validator_test.go index 9ba3258eb3..9c945400ea 100644 --- a/flyteadmin/pkg/manager/impl/validation/node_execution_validator_test.go +++ b/flyteadmin/pkg/manager/impl/validation/node_execution_validator_test.go @@ -3,11 +3,11 @@ package validation import ( "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/validation/notifications_validator.go b/flyteadmin/pkg/manager/impl/validation/notifications_validator.go index 57049de33b..8b8f9a68e7 100644 --- a/flyteadmin/pkg/manager/impl/validation/notifications_validator.go +++ b/flyteadmin/pkg/manager/impl/validation/notifications_validator.go @@ -3,7 +3,7 @@ package validation import ( "github.com/flyteorg/flyte/flyteadmin/pkg/common" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/shared" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // TODO: maybe add more sophisticated email validation. diff --git a/flyteadmin/pkg/manager/impl/validation/notifications_validator_test.go b/flyteadmin/pkg/manager/impl/validation/notifications_validator_test.go index e9c0cf29c1..7535ce5993 100644 --- a/flyteadmin/pkg/manager/impl/validation/notifications_validator_test.go +++ b/flyteadmin/pkg/manager/impl/validation/notifications_validator_test.go @@ -3,8 +3,8 @@ package validation import ( "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/flyteadmin/pkg/manager/impl/validation/project_validator.go b/flyteadmin/pkg/manager/impl/validation/project_validator.go index 88b83880d4..09b43a0b90 100644 --- a/flyteadmin/pkg/manager/impl/validation/project_validator.go +++ b/flyteadmin/pkg/manager/impl/validation/project_validator.go @@ -9,7 +9,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" "k8s.io/apimachinery/pkg/util/validation" ) diff --git a/flyteadmin/pkg/manager/impl/validation/project_validator_test.go b/flyteadmin/pkg/manager/impl/validation/project_validator_test.go index b37bdea54a..6c64388a7c 100644 --- a/flyteadmin/pkg/manager/impl/validation/project_validator_test.go +++ b/flyteadmin/pkg/manager/impl/validation/project_validator_test.go @@ -12,7 +12,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" repositoryMocks "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/validation/shared_execution.go b/flyteadmin/pkg/manager/impl/validation/shared_execution.go index 8c065f8677..07e2a26fb0 100644 --- a/flyteadmin/pkg/manager/impl/validation/shared_execution.go +++ b/flyteadmin/pkg/manager/impl/validation/shared_execution.go @@ -7,8 +7,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/common" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" repoInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) // ValidateClusterForExecutionID validates that the execution denoted by executionId is recorded as executing on `cluster`. diff --git a/flyteadmin/pkg/manager/impl/validation/shared_execution_test.go b/flyteadmin/pkg/manager/impl/validation/shared_execution_test.go index b36393f4aa..322f72914f 100644 --- a/flyteadmin/pkg/manager/impl/validation/shared_execution_test.go +++ b/flyteadmin/pkg/manager/impl/validation/shared_execution_test.go @@ -9,7 +9,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" repositoryMocks "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/validation/signal_validator.go b/flyteadmin/pkg/manager/impl/validation/signal_validator.go index c8ac7c07a3..80e67cd964 100644 --- a/flyteadmin/pkg/manager/impl/validation/signal_validator.go +++ b/flyteadmin/pkg/manager/impl/validation/signal_validator.go @@ -8,8 +8,8 @@ import ( repositoryInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/transformers" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" propellervalidators "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/validators" diff --git a/flyteadmin/pkg/manager/impl/validation/signal_validator_test.go b/flyteadmin/pkg/manager/impl/validation/signal_validator_test.go index 5cef9737a1..164701fdb6 100644 --- a/flyteadmin/pkg/manager/impl/validation/signal_validator_test.go +++ b/flyteadmin/pkg/manager/impl/validation/signal_validator_test.go @@ -8,8 +8,8 @@ import ( repositoryMocks "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" diff --git a/flyteadmin/pkg/manager/impl/validation/task_execution_validator.go b/flyteadmin/pkg/manager/impl/validation/task_execution_validator.go index 36d44b44de..81011ca5da 100644 --- a/flyteadmin/pkg/manager/impl/validation/task_execution_validator.go +++ b/flyteadmin/pkg/manager/impl/validation/task_execution_validator.go @@ -3,8 +3,8 @@ package validation import ( "github.com/flyteorg/flyte/flyteadmin/pkg/common" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/shared" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) func ValidateTaskExecutionRequest(request admin.TaskExecutionEventRequest, maxOutputSizeInBytes int64) error { diff --git a/flyteadmin/pkg/manager/impl/validation/task_execution_validator_test.go b/flyteadmin/pkg/manager/impl/validation/task_execution_validator_test.go index 0fdabeef9c..1bf97b6303 100644 --- a/flyteadmin/pkg/manager/impl/validation/task_execution_validator_test.go +++ b/flyteadmin/pkg/manager/impl/validation/task_execution_validator_test.go @@ -4,9 +4,9 @@ import ( "testing" "time" - "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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/ptypes" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/validation/task_validator.go b/flyteadmin/pkg/manager/impl/validation/task_validator.go index f276c8e4d6..9958103803 100644 --- a/flyteadmin/pkg/manager/impl/validation/task_validator.go +++ b/flyteadmin/pkg/manager/impl/validation/task_validator.go @@ -14,9 +14,9 @@ import ( runtime "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" workflowengineInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" corev1 "k8s.io/api/core/v1" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/manager/impl/validation/task_validator_test.go b/flyteadmin/pkg/manager/impl/validation/task_validator_test.go index c6286dca61..6db7d91dd6 100644 --- a/flyteadmin/pkg/manager/impl/validation/task_validator_test.go +++ b/flyteadmin/pkg/manager/impl/validation/task_validator_test.go @@ -10,7 +10,7 @@ import ( runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" runtimeMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" workflowengineInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/manager/impl/validation/validation.go b/flyteadmin/pkg/manager/impl/validation/validation.go index 871f270079..08ab29196d 100644 --- a/flyteadmin/pkg/manager/impl/validation/validation.go +++ b/flyteadmin/pkg/manager/impl/validation/validation.go @@ -11,9 +11,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/common" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/shared" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/validators" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/validation/validation_test.go b/flyteadmin/pkg/manager/impl/validation/validation_test.go index 5cc62a7430..5292f424d3 100644 --- a/flyteadmin/pkg/manager/impl/validation/validation_test.go +++ b/flyteadmin/pkg/manager/impl/validation/validation_test.go @@ -7,13 +7,13 @@ import ( "google.golang.org/protobuf/types/known/timestamppb" - "github.com/flyteorg/flyteidl/clients/go/coreutils" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" "github.com/flyteorg/flyte/flyteadmin/pkg/common" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/shared" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/validation/workflow_validator.go b/flyteadmin/pkg/manager/impl/validation/workflow_validator.go index 95da269412..f1c6085ae3 100644 --- a/flyteadmin/pkg/manager/impl/validation/workflow_validator.go +++ b/flyteadmin/pkg/manager/impl/validation/workflow_validator.go @@ -12,9 +12,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/shared" runtime "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/impl/validation/workflow_validator_test.go b/flyteadmin/pkg/manager/impl/validation/workflow_validator_test.go index 99fb639765..0a605c8062 100644 --- a/flyteadmin/pkg/manager/impl/validation/workflow_validator_test.go +++ b/flyteadmin/pkg/manager/impl/validation/workflow_validator_test.go @@ -6,8 +6,8 @@ import ( "testing" runtimeMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" repositoryMocks "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" diff --git a/flyteadmin/pkg/manager/impl/version_manager.go b/flyteadmin/pkg/manager/impl/version_manager.go index c13fd1e854..363bf3feff 100644 --- a/flyteadmin/pkg/manager/impl/version_manager.go +++ b/flyteadmin/pkg/manager/impl/version_manager.go @@ -4,8 +4,8 @@ import ( "context" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" adminversion "github.com/flyteorg/flyte/flytestdlib/version" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" ) type VersionManager struct { diff --git a/flyteadmin/pkg/manager/impl/version_manager_test.go b/flyteadmin/pkg/manager/impl/version_manager_test.go index 00ee576ce2..881a817aeb 100644 --- a/flyteadmin/pkg/manager/impl/version_manager_test.go +++ b/flyteadmin/pkg/manager/impl/version_manager_test.go @@ -4,8 +4,8 @@ import ( "context" "testing" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" adminversion "github.com/flyteorg/flyte/flytestdlib/version" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/manager/impl/workflow_manager.go b/flyteadmin/pkg/manager/impl/workflow_manager.go index 8c8dbadbf1..712e050e95 100644 --- a/flyteadmin/pkg/manager/impl/workflow_manager.go +++ b/flyteadmin/pkg/manager/impl/workflow_manager.go @@ -6,13 +6,13 @@ import ( "strconv" "time" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" compiler "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/ptypes" "github.com/prometheus/client_golang/prometheus" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/manager/impl/workflow_manager_test.go b/flyteadmin/pkg/manager/impl/workflow_manager_test.go index 1256a48c06..2765112171 100644 --- a/flyteadmin/pkg/manager/impl/workflow_manager_test.go +++ b/flyteadmin/pkg/manager/impl/workflow_manager_test.go @@ -20,12 +20,12 @@ import ( runtimeMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" workflowengineInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/interfaces" workflowengineMocks "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler" engine "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/manager/interfaces/description_entity.go b/flyteadmin/pkg/manager/interfaces/description_entity.go index 88ac338c20..ed6360f24a 100644 --- a/flyteadmin/pkg/manager/interfaces/description_entity.go +++ b/flyteadmin/pkg/manager/interfaces/description_entity.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // DescriptionEntityInterface for managing DescriptionEntity diff --git a/flyteadmin/pkg/manager/interfaces/execution.go b/flyteadmin/pkg/manager/interfaces/execution.go index 3f11a43171..73b521afbb 100644 --- a/flyteadmin/pkg/manager/interfaces/execution.go +++ b/flyteadmin/pkg/manager/interfaces/execution.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // Interface for managing Flyte Workflow Executions diff --git a/flyteadmin/pkg/manager/interfaces/launch_plan.go b/flyteadmin/pkg/manager/interfaces/launch_plan.go index b8378c5c44..11ea37ca40 100644 --- a/flyteadmin/pkg/manager/interfaces/launch_plan.go +++ b/flyteadmin/pkg/manager/interfaces/launch_plan.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // Interface for managing Flyte Launch Plans diff --git a/flyteadmin/pkg/manager/interfaces/metrics.go b/flyteadmin/pkg/manager/interfaces/metrics.go index d726cdc997..b332e94423 100644 --- a/flyteadmin/pkg/manager/interfaces/metrics.go +++ b/flyteadmin/pkg/manager/interfaces/metrics.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) //go:generate mockery -name=MetricsInterface -output=../mocks -case=underscore diff --git a/flyteadmin/pkg/manager/interfaces/named_entity.go b/flyteadmin/pkg/manager/interfaces/named_entity.go index 090b87966d..fec59854e4 100644 --- a/flyteadmin/pkg/manager/interfaces/named_entity.go +++ b/flyteadmin/pkg/manager/interfaces/named_entity.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // Interface for managing metadata associated with NamedEntityIdentifiers diff --git a/flyteadmin/pkg/manager/interfaces/node_execution.go b/flyteadmin/pkg/manager/interfaces/node_execution.go index 489b97cc45..3aa949ec85 100644 --- a/flyteadmin/pkg/manager/interfaces/node_execution.go +++ b/flyteadmin/pkg/manager/interfaces/node_execution.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // Interface for managing Flyte Workflow NodeExecutions diff --git a/flyteadmin/pkg/manager/interfaces/project.go b/flyteadmin/pkg/manager/interfaces/project.go index 3e170ed987..cd91fb0439 100644 --- a/flyteadmin/pkg/manager/interfaces/project.go +++ b/flyteadmin/pkg/manager/interfaces/project.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // Interface for managing projects (and domains). diff --git a/flyteadmin/pkg/manager/interfaces/resource.go b/flyteadmin/pkg/manager/interfaces/resource.go index 42d4a3c9b2..ca6686c856 100644 --- a/flyteadmin/pkg/manager/interfaces/resource.go +++ b/flyteadmin/pkg/manager/interfaces/resource.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // ResourceInterface manages project, domain and workflow -specific attributes. diff --git a/flyteadmin/pkg/manager/interfaces/signal.go b/flyteadmin/pkg/manager/interfaces/signal.go index 0547e439de..31a5c9c803 100644 --- a/flyteadmin/pkg/manager/interfaces/signal.go +++ b/flyteadmin/pkg/manager/interfaces/signal.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) //go:generate mockery -name=SignalInterface -output=../mocks -case=underscore diff --git a/flyteadmin/pkg/manager/interfaces/task.go b/flyteadmin/pkg/manager/interfaces/task.go index 78f1d45b84..19b4a43683 100644 --- a/flyteadmin/pkg/manager/interfaces/task.go +++ b/flyteadmin/pkg/manager/interfaces/task.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // Interface for managing Flyte Tasks diff --git a/flyteadmin/pkg/manager/interfaces/task_execution.go b/flyteadmin/pkg/manager/interfaces/task_execution.go index a8b1c4e5cf..5adda3ad2b 100644 --- a/flyteadmin/pkg/manager/interfaces/task_execution.go +++ b/flyteadmin/pkg/manager/interfaces/task_execution.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // Interface for managing Flyte Workflow TaskExecutions diff --git a/flyteadmin/pkg/manager/interfaces/version.go b/flyteadmin/pkg/manager/interfaces/version.go index 5dd70badec..e4652c29f8 100644 --- a/flyteadmin/pkg/manager/interfaces/version.go +++ b/flyteadmin/pkg/manager/interfaces/version.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) //go:generate mockery -name VersionInterface -output=../mocks -case=underscore diff --git a/flyteadmin/pkg/manager/interfaces/workflow.go b/flyteadmin/pkg/manager/interfaces/workflow.go index 9458ff29ab..75e4e6f24b 100644 --- a/flyteadmin/pkg/manager/interfaces/workflow.go +++ b/flyteadmin/pkg/manager/interfaces/workflow.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // Interface for managing Flyte Workflows diff --git a/flyteadmin/pkg/manager/mocks/execution.go b/flyteadmin/pkg/manager/mocks/execution.go index 361234f8df..b754eea873 100644 --- a/flyteadmin/pkg/manager/mocks/execution.go +++ b/flyteadmin/pkg/manager/mocks/execution.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) type CreateExecutionFunc func( diff --git a/flyteadmin/pkg/manager/mocks/launch_plan.go b/flyteadmin/pkg/manager/mocks/launch_plan.go index 34da7fcf2d..78b1e3a0f0 100644 --- a/flyteadmin/pkg/manager/mocks/launch_plan.go +++ b/flyteadmin/pkg/manager/mocks/launch_plan.go @@ -5,7 +5,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/manager/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) type CreateLaunchPlanFunc func(ctx context.Context, request admin.LaunchPlanCreateRequest) ( diff --git a/flyteadmin/pkg/manager/mocks/metrics_interface.go b/flyteadmin/pkg/manager/mocks/metrics_interface.go index 2e292593ed..8e43543225 100644 --- a/flyteadmin/pkg/manager/mocks/metrics_interface.go +++ b/flyteadmin/pkg/manager/mocks/metrics_interface.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteadmin/pkg/manager/mocks/named_entity.go b/flyteadmin/pkg/manager/mocks/named_entity.go index 3d9d991e2a..f97c933086 100644 --- a/flyteadmin/pkg/manager/mocks/named_entity.go +++ b/flyteadmin/pkg/manager/mocks/named_entity.go @@ -3,7 +3,7 @@ package mocks import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) type GetNamedEntityFunc func(ctx context.Context, request admin.NamedEntityGetRequest) (*admin.NamedEntity, error) diff --git a/flyteadmin/pkg/manager/mocks/node_execution.go b/flyteadmin/pkg/manager/mocks/node_execution.go index 63222be949..313566fc3d 100644 --- a/flyteadmin/pkg/manager/mocks/node_execution.go +++ b/flyteadmin/pkg/manager/mocks/node_execution.go @@ -3,7 +3,7 @@ package mocks import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) type CreateNodeEventFunc func(ctx context.Context, request admin.NodeExecutionEventRequest) ( diff --git a/flyteadmin/pkg/manager/mocks/project.go b/flyteadmin/pkg/manager/mocks/project.go index 5c9d593fbf..8137955ced 100644 --- a/flyteadmin/pkg/manager/mocks/project.go +++ b/flyteadmin/pkg/manager/mocks/project.go @@ -3,7 +3,7 @@ package mocks import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) type CreateProjectFunc func(ctx context.Context, request admin.ProjectRegisterRequest) (*admin.ProjectRegisterResponse, error) diff --git a/flyteadmin/pkg/manager/mocks/resource.go b/flyteadmin/pkg/manager/mocks/resource.go index 6025fbc55b..dc539e077d 100644 --- a/flyteadmin/pkg/manager/mocks/resource.go +++ b/flyteadmin/pkg/manager/mocks/resource.go @@ -5,7 +5,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/manager/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) type UpdateProjectAttrsFunc func(ctx context.Context, request admin.ProjectAttributesUpdateRequest) ( diff --git a/flyteadmin/pkg/manager/mocks/signal_interface.go b/flyteadmin/pkg/manager/mocks/signal_interface.go index 51e8b66362..eed53b7ec6 100644 --- a/flyteadmin/pkg/manager/mocks/signal_interface.go +++ b/flyteadmin/pkg/manager/mocks/signal_interface.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteadmin/pkg/manager/mocks/task.go b/flyteadmin/pkg/manager/mocks/task.go index fef1792c63..e91d802655 100644 --- a/flyteadmin/pkg/manager/mocks/task.go +++ b/flyteadmin/pkg/manager/mocks/task.go @@ -3,7 +3,7 @@ package mocks import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) type CreateTaskFunc func(ctx context.Context, request admin.TaskCreateRequest) (*admin.TaskCreateResponse, error) diff --git a/flyteadmin/pkg/manager/mocks/task_execution.go b/flyteadmin/pkg/manager/mocks/task_execution.go index 9f1ba515ff..d46d124b0f 100644 --- a/flyteadmin/pkg/manager/mocks/task_execution.go +++ b/flyteadmin/pkg/manager/mocks/task_execution.go @@ -3,7 +3,7 @@ package mocks import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) type CreateTaskExecutionEventFunc func(ctx context.Context, request admin.TaskExecutionEventRequest) ( diff --git a/flyteadmin/pkg/manager/mocks/version_interface.go b/flyteadmin/pkg/manager/mocks/version_interface.go index 9b4a0c55fb..99de16b6ca 100644 --- a/flyteadmin/pkg/manager/mocks/version_interface.go +++ b/flyteadmin/pkg/manager/mocks/version_interface.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteadmin/pkg/manager/mocks/workflow.go b/flyteadmin/pkg/manager/mocks/workflow.go index 5055b2b4c7..36efa4359f 100644 --- a/flyteadmin/pkg/manager/mocks/workflow.go +++ b/flyteadmin/pkg/manager/mocks/workflow.go @@ -3,7 +3,7 @@ package mocks import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) type CreateWorkflowFunc func(ctx context.Context, request admin.WorkflowCreateRequest) (*admin.WorkflowCreateResponse, error) diff --git a/flyteadmin/pkg/repositories/config/migrations.go b/flyteadmin/pkg/repositories/config/migrations.go index 5882d9bd38..fdfd6baf0b 100644 --- a/flyteadmin/pkg/repositories/config/migrations.go +++ b/flyteadmin/pkg/repositories/config/migrations.go @@ -5,9 +5,9 @@ import ( "fmt" "time" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" schedulerModels "github.com/flyteorg/flyte/flyteadmin/scheduler/repositories/models" diff --git a/flyteadmin/pkg/repositories/gormimpl/description_entity_repo.go b/flyteadmin/pkg/repositories/gormimpl/description_entity_repo.go index 204c884f06..34cfea4078 100644 --- a/flyteadmin/pkg/repositories/gormimpl/description_entity_repo.go +++ b/flyteadmin/pkg/repositories/gormimpl/description_entity_repo.go @@ -3,8 +3,8 @@ package gormimpl import ( "context" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "gorm.io/gorm" "github.com/flyteorg/flyte/flyteadmin/pkg/common" diff --git a/flyteadmin/pkg/repositories/gormimpl/execution_event_repo_test.go b/flyteadmin/pkg/repositories/gormimpl/execution_event_repo_test.go index 6d0fc813fd..15eab1e0aa 100644 --- a/flyteadmin/pkg/repositories/gormimpl/execution_event_repo_test.go +++ b/flyteadmin/pkg/repositories/gormimpl/execution_event_repo_test.go @@ -9,8 +9,8 @@ import ( mocket "github.com/Selvatico/go-mocket" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/repositories/gormimpl/execution_repo.go b/flyteadmin/pkg/repositories/gormimpl/execution_repo.go index 2f9013e729..3557fec646 100644 --- a/flyteadmin/pkg/repositories/gormimpl/execution_repo.go +++ b/flyteadmin/pkg/repositories/gormimpl/execution_repo.go @@ -5,8 +5,8 @@ import ( "errors" "fmt" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/common" adminErrors "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" diff --git a/flyteadmin/pkg/repositories/gormimpl/execution_repo_test.go b/flyteadmin/pkg/repositories/gormimpl/execution_repo_test.go index 73b2fccce5..addb16d8df 100644 --- a/flyteadmin/pkg/repositories/gormimpl/execution_repo_test.go +++ b/flyteadmin/pkg/repositories/gormimpl/execution_repo_test.go @@ -7,9 +7,9 @@ import ( "time" mocket "github.com/Selvatico/go-mocket" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/flyteadmin/pkg/repositories/gormimpl/launch_plan_repo.go b/flyteadmin/pkg/repositories/gormimpl/launch_plan_repo.go index 8c2160e0a5..81a7b403af 100644 --- a/flyteadmin/pkg/repositories/gormimpl/launch_plan_repo.go +++ b/flyteadmin/pkg/repositories/gormimpl/launch_plan_repo.go @@ -5,8 +5,8 @@ import ( "errors" "time" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" "gorm.io/gorm" diff --git a/flyteadmin/pkg/repositories/gormimpl/launch_plan_repo_test.go b/flyteadmin/pkg/repositories/gormimpl/launch_plan_repo_test.go index 9890dee0b3..589be1c339 100644 --- a/flyteadmin/pkg/repositories/gormimpl/launch_plan_repo_test.go +++ b/flyteadmin/pkg/repositories/gormimpl/launch_plan_repo_test.go @@ -6,8 +6,8 @@ import ( "testing" mocket "github.com/Selvatico/go-mocket" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" "github.com/flyteorg/flyte/flyteadmin/pkg/common" diff --git a/flyteadmin/pkg/repositories/gormimpl/named_entity_repo.go b/flyteadmin/pkg/repositories/gormimpl/named_entity_repo.go index 6148f4a2e1..8f19946b33 100644 --- a/flyteadmin/pkg/repositories/gormimpl/named_entity_repo.go +++ b/flyteadmin/pkg/repositories/gormimpl/named_entity_repo.go @@ -4,8 +4,8 @@ import ( "context" "fmt" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" "gorm.io/gorm" diff --git a/flyteadmin/pkg/repositories/gormimpl/named_entity_repo_test.go b/flyteadmin/pkg/repositories/gormimpl/named_entity_repo_test.go index c1d4e883b4..8706bc40ea 100644 --- a/flyteadmin/pkg/repositories/gormimpl/named_entity_repo_test.go +++ b/flyteadmin/pkg/repositories/gormimpl/named_entity_repo_test.go @@ -6,7 +6,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/common" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mocket "github.com/Selvatico/go-mocket" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" diff --git a/flyteadmin/pkg/repositories/gormimpl/node_execution_repo.go b/flyteadmin/pkg/repositories/gormimpl/node_execution_repo.go index 0e34ac66df..fa43fa105b 100644 --- a/flyteadmin/pkg/repositories/gormimpl/node_execution_repo.go +++ b/flyteadmin/pkg/repositories/gormimpl/node_execution_repo.go @@ -5,8 +5,8 @@ import ( "errors" "fmt" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "gorm.io/gorm" adminErrors "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" diff --git a/flyteadmin/pkg/repositories/gormimpl/node_execution_repo_test.go b/flyteadmin/pkg/repositories/gormimpl/node_execution_repo_test.go index a00135e971..9c84e2352f 100644 --- a/flyteadmin/pkg/repositories/gormimpl/node_execution_repo_test.go +++ b/flyteadmin/pkg/repositories/gormimpl/node_execution_repo_test.go @@ -6,9 +6,9 @@ import ( "time" mocket "github.com/Selvatico/go-mocket" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/repositories/gormimpl/project_repo.go b/flyteadmin/pkg/repositories/gormimpl/project_repo.go index bb6e360256..7f386e549e 100644 --- a/flyteadmin/pkg/repositories/gormimpl/project_repo.go +++ b/flyteadmin/pkg/repositories/gormimpl/project_repo.go @@ -4,8 +4,8 @@ import ( "context" "errors" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" "gorm.io/gorm" diff --git a/flyteadmin/pkg/repositories/gormimpl/project_repo_test.go b/flyteadmin/pkg/repositories/gormimpl/project_repo_test.go index 42a94b0c22..148d27a43d 100644 --- a/flyteadmin/pkg/repositories/gormimpl/project_repo_test.go +++ b/flyteadmin/pkg/repositories/gormimpl/project_repo_test.go @@ -5,8 +5,8 @@ import ( "testing" mocket "github.com/Selvatico/go-mocket" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" "github.com/flyteorg/flyte/flyteadmin/pkg/common" diff --git a/flyteadmin/pkg/repositories/gormimpl/task_execution_repo.go b/flyteadmin/pkg/repositories/gormimpl/task_execution_repo.go index 08315dc59b..997bd835c4 100644 --- a/flyteadmin/pkg/repositories/gormimpl/task_execution_repo.go +++ b/flyteadmin/pkg/repositories/gormimpl/task_execution_repo.go @@ -4,8 +4,8 @@ import ( "context" "errors" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "gorm.io/gorm" flyteAdminDbErrors "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" diff --git a/flyteadmin/pkg/repositories/gormimpl/task_execution_repo_test.go b/flyteadmin/pkg/repositories/gormimpl/task_execution_repo_test.go index fde9816538..b2261deef4 100644 --- a/flyteadmin/pkg/repositories/gormimpl/task_execution_repo_test.go +++ b/flyteadmin/pkg/repositories/gormimpl/task_execution_repo_test.go @@ -6,8 +6,8 @@ import ( "time" mocket "github.com/Selvatico/go-mocket" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" "github.com/flyteorg/flyte/flyteadmin/pkg/common" diff --git a/flyteadmin/pkg/repositories/gormimpl/task_repo.go b/flyteadmin/pkg/repositories/gormimpl/task_repo.go index 8ed95465f4..e6c826e6df 100644 --- a/flyteadmin/pkg/repositories/gormimpl/task_repo.go +++ b/flyteadmin/pkg/repositories/gormimpl/task_repo.go @@ -4,8 +4,8 @@ import ( "context" "errors" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "gorm.io/gorm" flyteAdminDbErrors "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" diff --git a/flyteadmin/pkg/repositories/gormimpl/task_repo_test.go b/flyteadmin/pkg/repositories/gormimpl/task_repo_test.go index 95d9fe5d13..15ab66406f 100644 --- a/flyteadmin/pkg/repositories/gormimpl/task_repo_test.go +++ b/flyteadmin/pkg/repositories/gormimpl/task_repo_test.go @@ -6,7 +6,7 @@ import ( mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mocket "github.com/Selvatico/go-mocket" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/repositories/gormimpl/utils_for_test.go b/flyteadmin/pkg/repositories/gormimpl/utils_for_test.go index c344527935..882c0f5079 100644 --- a/flyteadmin/pkg/repositories/gormimpl/utils_for_test.go +++ b/flyteadmin/pkg/repositories/gormimpl/utils_for_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/flyteorg/flyte/flyteadmin/pkg/common" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" mocket "github.com/Selvatico/go-mocket" "gorm.io/driver/postgres" diff --git a/flyteadmin/pkg/repositories/gormimpl/workflow_repo.go b/flyteadmin/pkg/repositories/gormimpl/workflow_repo.go index 024317805c..dde873f579 100644 --- a/flyteadmin/pkg/repositories/gormimpl/workflow_repo.go +++ b/flyteadmin/pkg/repositories/gormimpl/workflow_repo.go @@ -4,8 +4,8 @@ import ( "context" "errors" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "gorm.io/gorm" flyteAdminDbErrors "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" diff --git a/flyteadmin/pkg/repositories/gormimpl/workflow_repo_test.go b/flyteadmin/pkg/repositories/gormimpl/workflow_repo_test.go index dd94d69ba9..aab881c85b 100644 --- a/flyteadmin/pkg/repositories/gormimpl/workflow_repo_test.go +++ b/flyteadmin/pkg/repositories/gormimpl/workflow_repo_test.go @@ -5,8 +5,8 @@ import ( "testing" mocket "github.com/Selvatico/go-mocket" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" "github.com/flyteorg/flyte/flyteadmin/pkg/common" diff --git a/flyteadmin/pkg/repositories/interfaces/description_entity.go b/flyteadmin/pkg/repositories/interfaces/description_entity.go index 210ea367dd..c48bb244a7 100644 --- a/flyteadmin/pkg/repositories/interfaces/description_entity.go +++ b/flyteadmin/pkg/repositories/interfaces/description_entity.go @@ -4,7 +4,7 @@ import ( "context" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) type GetDescriptionEntityInput struct { diff --git a/flyteadmin/pkg/repositories/interfaces/launch_plan_repo.go b/flyteadmin/pkg/repositories/interfaces/launch_plan_repo.go index 6d8add30b7..265e6264ea 100644 --- a/flyteadmin/pkg/repositories/interfaces/launch_plan_repo.go +++ b/flyteadmin/pkg/repositories/interfaces/launch_plan_repo.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" ) diff --git a/flyteadmin/pkg/repositories/interfaces/named_entity_repo.go b/flyteadmin/pkg/repositories/interfaces/named_entity_repo.go index db7ab3d69d..133cee0a29 100644 --- a/flyteadmin/pkg/repositories/interfaces/named_entity_repo.go +++ b/flyteadmin/pkg/repositories/interfaces/named_entity_repo.go @@ -3,7 +3,7 @@ package interfaces import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" ) diff --git a/flyteadmin/pkg/repositories/interfaces/node_execution_repo.go b/flyteadmin/pkg/repositories/interfaces/node_execution_repo.go index a71bc37145..bbc7b7acb3 100644 --- a/flyteadmin/pkg/repositories/interfaces/node_execution_repo.go +++ b/flyteadmin/pkg/repositories/interfaces/node_execution_repo.go @@ -4,7 +4,7 @@ import ( "context" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) // Defines the interface for interacting with node execution models. diff --git a/flyteadmin/pkg/repositories/interfaces/signal_repo.go b/flyteadmin/pkg/repositories/interfaces/signal_repo.go index cf06f70ca0..d6dc0c4ffa 100644 --- a/flyteadmin/pkg/repositories/interfaces/signal_repo.go +++ b/flyteadmin/pkg/repositories/interfaces/signal_repo.go @@ -4,7 +4,7 @@ import ( "context" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) //go:generate mockery -name=SignalRepoInterface -output=../mocks -case=underscore diff --git a/flyteadmin/pkg/repositories/interfaces/task_execution_repo.go b/flyteadmin/pkg/repositories/interfaces/task_execution_repo.go index cee8552f6b..627756e52c 100644 --- a/flyteadmin/pkg/repositories/interfaces/task_execution_repo.go +++ b/flyteadmin/pkg/repositories/interfaces/task_execution_repo.go @@ -4,7 +4,7 @@ import ( "context" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) // Defines the interface for interacting with task execution models. diff --git a/flyteadmin/pkg/repositories/mocks/project_repo.go b/flyteadmin/pkg/repositories/mocks/project_repo.go index 4cdfc63e93..34d1b9a0a8 100644 --- a/flyteadmin/pkg/repositories/mocks/project_repo.go +++ b/flyteadmin/pkg/repositories/mocks/project_repo.go @@ -5,7 +5,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) type CreateProjectFunction func(ctx context.Context, project models.Project) error diff --git a/flyteadmin/pkg/repositories/models/description_entity.go b/flyteadmin/pkg/repositories/models/description_entity.go index 1483128e95..e54677112a 100644 --- a/flyteadmin/pkg/repositories/models/description_entity.go +++ b/flyteadmin/pkg/repositories/models/description_entity.go @@ -1,6 +1,6 @@ package models -import "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" +import "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" // DescriptionEntityKey DescriptionEntity primary key type DescriptionEntityKey struct { diff --git a/flyteadmin/pkg/repositories/models/named_entity.go b/flyteadmin/pkg/repositories/models/named_entity.go index ef5d75a3e4..94335c20dd 100644 --- a/flyteadmin/pkg/repositories/models/named_entity.go +++ b/flyteadmin/pkg/repositories/models/named_entity.go @@ -1,7 +1,7 @@ package models import ( - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) // NamedEntityMetadata primary key diff --git a/flyteadmin/pkg/repositories/transformers/description_entity.go b/flyteadmin/pkg/repositories/transformers/description_entity.go index 2726677566..8a88cf1468 100644 --- a/flyteadmin/pkg/repositories/transformers/description_entity.go +++ b/flyteadmin/pkg/repositories/transformers/description_entity.go @@ -3,12 +3,12 @@ package transformers import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/repositories/transformers/description_entity_test.go b/flyteadmin/pkg/repositories/transformers/description_entity_test.go index c3eb7867c6..ddc003c9d0 100644 --- a/flyteadmin/pkg/repositories/transformers/description_entity_test.go +++ b/flyteadmin/pkg/repositories/transformers/description_entity_test.go @@ -4,8 +4,8 @@ import ( "testing" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/repositories/transformers/execution.go b/flyteadmin/pkg/repositories/transformers/execution.go index 4fe3086db8..d32fdc87fb 100644 --- a/flyteadmin/pkg/repositories/transformers/execution.go +++ b/flyteadmin/pkg/repositories/transformers/execution.go @@ -10,10 +10,10 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/storage" - "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/golang/protobuf/ptypes" diff --git a/flyteadmin/pkg/repositories/transformers/execution_event.go b/flyteadmin/pkg/repositories/transformers/execution_event.go index 64581cfb0d..adc553dc42 100644 --- a/flyteadmin/pkg/repositories/transformers/execution_event.go +++ b/flyteadmin/pkg/repositories/transformers/execution_event.go @@ -3,7 +3,7 @@ package transformers import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/ptypes" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/repositories/transformers/execution_event_test.go b/flyteadmin/pkg/repositories/transformers/execution_event_test.go index e1ecc51d48..20ca926b43 100644 --- a/flyteadmin/pkg/repositories/transformers/execution_event_test.go +++ b/flyteadmin/pkg/repositories/transformers/execution_event_test.go @@ -6,9 +6,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/ptypes" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/repositories/transformers/execution_test.go b/flyteadmin/pkg/repositories/transformers/execution_test.go index 88f3a550a3..77aad44a3a 100644 --- a/flyteadmin/pkg/repositories/transformers/execution_test.go +++ b/flyteadmin/pkg/repositories/transformers/execution_test.go @@ -17,11 +17,11 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/ptypes" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/repositories/transformers/launch_plan.go b/flyteadmin/pkg/repositories/transformers/launch_plan.go index bae2798199..44098c8dd9 100644 --- a/flyteadmin/pkg/repositories/transformers/launch_plan.go +++ b/flyteadmin/pkg/repositories/transformers/launch_plan.go @@ -3,8 +3,8 @@ package transformers import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/golang/protobuf/ptypes" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/repositories/transformers/launch_plan_test.go b/flyteadmin/pkg/repositories/transformers/launch_plan_test.go index 2dbbc995c6..c63b9e2cf0 100644 --- a/flyteadmin/pkg/repositories/transformers/launch_plan_test.go +++ b/flyteadmin/pkg/repositories/transformers/launch_plan_test.go @@ -4,11 +4,11 @@ import ( "testing" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "github.com/golang/protobuf/ptypes" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/repositories/transformers/named_entity.go b/flyteadmin/pkg/repositories/transformers/named_entity.go index ed49d8627a..14c5818786 100644 --- a/flyteadmin/pkg/repositories/transformers/named_entity.go +++ b/flyteadmin/pkg/repositories/transformers/named_entity.go @@ -2,7 +2,7 @@ package transformers import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) func CreateNamedEntityModel(request *admin.NamedEntityUpdateRequest) models.NamedEntity { diff --git a/flyteadmin/pkg/repositories/transformers/named_entity_test.go b/flyteadmin/pkg/repositories/transformers/named_entity_test.go index 68daf94f15..397b908929 100644 --- a/flyteadmin/pkg/repositories/transformers/named_entity_test.go +++ b/flyteadmin/pkg/repositories/transformers/named_entity_test.go @@ -4,8 +4,8 @@ import ( "testing" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/repositories/transformers/node_execution.go b/flyteadmin/pkg/repositories/transformers/node_execution.go index 6707b0273f..2b2100004a 100644 --- a/flyteadmin/pkg/repositories/transformers/node_execution.go +++ b/flyteadmin/pkg/repositories/transformers/node_execution.go @@ -3,7 +3,7 @@ package transformers import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" "github.com/flyteorg/flyte/flytestdlib/storage" @@ -14,13 +14,13 @@ import ( "github.com/golang/protobuf/proto" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/ptypes" "github.com/flyteorg/flyte/flyteadmin/pkg/errors" genModel "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/gen/models" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/repositories/transformers/node_execution_event.go b/flyteadmin/pkg/repositories/transformers/node_execution_event.go index 99fb85f955..0a26dbd962 100644 --- a/flyteadmin/pkg/repositories/transformers/node_execution_event.go +++ b/flyteadmin/pkg/repositories/transformers/node_execution_event.go @@ -3,7 +3,7 @@ package transformers import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/ptypes" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/repositories/transformers/node_execution_event_test.go b/flyteadmin/pkg/repositories/transformers/node_execution_event_test.go index f676b60c5c..9c7078e3a9 100644 --- a/flyteadmin/pkg/repositories/transformers/node_execution_event_test.go +++ b/flyteadmin/pkg/repositories/transformers/node_execution_event_test.go @@ -5,9 +5,9 @@ import ( "time" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/ptypes" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/repositories/transformers/node_execution_test.go b/flyteadmin/pkg/repositories/transformers/node_execution_test.go index 57f1c491b2..58b0948c9a 100644 --- a/flyteadmin/pkg/repositories/transformers/node_execution_test.go +++ b/flyteadmin/pkg/repositories/transformers/node_execution_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/clients/go/coreutils" flyteAdminErrors "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "google.golang.org/grpc/codes" @@ -18,9 +18,9 @@ import ( "github.com/golang/protobuf/ptypes" genModel "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/gen/models" - "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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/repositories/transformers/project.go b/flyteadmin/pkg/repositories/transformers/project.go index bec58c7a89..29031c10a7 100644 --- a/flyteadmin/pkg/repositories/transformers/project.go +++ b/flyteadmin/pkg/repositories/transformers/project.go @@ -2,7 +2,7 @@ package transformers import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" ) diff --git a/flyteadmin/pkg/repositories/transformers/project_test.go b/flyteadmin/pkg/repositories/transformers/project_test.go index bc197ab58f..0d717a3bc8 100644 --- a/flyteadmin/pkg/repositories/transformers/project_test.go +++ b/flyteadmin/pkg/repositories/transformers/project_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/repositories/transformers/resource.go b/flyteadmin/pkg/repositories/transformers/resource.go index 0ba092833c..1250af931c 100644 --- a/flyteadmin/pkg/repositories/transformers/resource.go +++ b/flyteadmin/pkg/repositories/transformers/resource.go @@ -9,7 +9,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/repositories/transformers/resource_test.go b/flyteadmin/pkg/repositories/transformers/resource_test.go index 41cd560b92..ff9a309a42 100644 --- a/flyteadmin/pkg/repositories/transformers/resource_test.go +++ b/flyteadmin/pkg/repositories/transformers/resource_test.go @@ -11,7 +11,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" repoInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/repositories/transformers/signal.go b/flyteadmin/pkg/repositories/transformers/signal.go index 9c07b823c7..d005fba1d9 100644 --- a/flyteadmin/pkg/repositories/transformers/signal.go +++ b/flyteadmin/pkg/repositories/transformers/signal.go @@ -4,8 +4,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" diff --git a/flyteadmin/pkg/repositories/transformers/signal_test.go b/flyteadmin/pkg/repositories/transformers/signal_test.go index 478d739efd..4b72b8707b 100644 --- a/flyteadmin/pkg/repositories/transformers/signal_test.go +++ b/flyteadmin/pkg/repositories/transformers/signal_test.go @@ -5,8 +5,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/repositories/transformers/task.go b/flyteadmin/pkg/repositories/transformers/task.go index 0b944fca42..fb648e1005 100644 --- a/flyteadmin/pkg/repositories/transformers/task.go +++ b/flyteadmin/pkg/repositories/transformers/task.go @@ -4,8 +4,8 @@ package transformers import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/golang/protobuf/ptypes" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/repositories/transformers/task_execution.go b/flyteadmin/pkg/repositories/transformers/task_execution.go index 17247aea14..cedf7c1f13 100644 --- a/flyteadmin/pkg/repositories/transformers/task_execution.go +++ b/flyteadmin/pkg/repositories/transformers/task_execution.go @@ -16,11 +16,11 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/storage" - "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" ) var empty _struct.Struct diff --git a/flyteadmin/pkg/repositories/transformers/task_execution_test.go b/flyteadmin/pkg/repositories/transformers/task_execution_test.go index e7c2d1472d..97f3947855 100644 --- a/flyteadmin/pkg/repositories/transformers/task_execution_test.go +++ b/flyteadmin/pkg/repositories/transformers/task_execution_test.go @@ -23,9 +23,9 @@ import ( "github.com/stretchr/testify/assert" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" ) var taskEventOccurredAt = time.Now().UTC() diff --git a/flyteadmin/pkg/repositories/transformers/task_test.go b/flyteadmin/pkg/repositories/transformers/task_test.go index 096955f4c4..6e09704f8d 100644 --- a/flyteadmin/pkg/repositories/transformers/task_test.go +++ b/flyteadmin/pkg/repositories/transformers/task_test.go @@ -4,9 +4,9 @@ import ( "testing" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/ptypes" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" diff --git a/flyteadmin/pkg/repositories/transformers/workflow.go b/flyteadmin/pkg/repositories/transformers/workflow.go index cc3386f131..b0d315e7d6 100644 --- a/flyteadmin/pkg/repositories/transformers/workflow.go +++ b/flyteadmin/pkg/repositories/transformers/workflow.go @@ -5,8 +5,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/golang/protobuf/ptypes" "google.golang.org/grpc/codes" diff --git a/flyteadmin/pkg/repositories/transformers/workflow_test.go b/flyteadmin/pkg/repositories/transformers/workflow_test.go index a76258baaa..3bb1208b55 100644 --- a/flyteadmin/pkg/repositories/transformers/workflow_test.go +++ b/flyteadmin/pkg/repositories/transformers/workflow_test.go @@ -4,9 +4,9 @@ import ( "testing" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "github.com/golang/protobuf/ptypes" diff --git a/flyteadmin/pkg/rpc/adminservice/attributes.go b/flyteadmin/pkg/rpc/adminservice/attributes.go index 582e264044..2d27346cb9 100644 --- a/flyteadmin/pkg/rpc/adminservice/attributes.go +++ b/flyteadmin/pkg/rpc/adminservice/attributes.go @@ -4,7 +4,7 @@ import ( "context" "github.com/flyteorg/flyte/flyteadmin/pkg/rpc/adminservice/util" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/flyteadmin/pkg/rpc/adminservice/base.go b/flyteadmin/pkg/rpc/adminservice/base.go index 8b5753169e..168e24560d 100644 --- a/flyteadmin/pkg/rpc/adminservice/base.go +++ b/flyteadmin/pkg/rpc/adminservice/base.go @@ -14,7 +14,7 @@ import ( eventWriter "github.com/flyteorg/flyte/flyteadmin/pkg/async/events/implementations" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/resources" diff --git a/flyteadmin/pkg/rpc/adminservice/description_entity.go b/flyteadmin/pkg/rpc/adminservice/description_entity.go index 731e6b117b..2baec49d38 100644 --- a/flyteadmin/pkg/rpc/adminservice/description_entity.go +++ b/flyteadmin/pkg/rpc/adminservice/description_entity.go @@ -5,9 +5,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/rpc/adminservice/util" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/flyteadmin/pkg/rpc/adminservice/execution.go b/flyteadmin/pkg/rpc/adminservice/execution.go index 3f9750b825..48ba032847 100644 --- a/flyteadmin/pkg/rpc/adminservice/execution.go +++ b/flyteadmin/pkg/rpc/adminservice/execution.go @@ -5,7 +5,7 @@ import ( "time" "github.com/flyteorg/flyte/flyteadmin/pkg/rpc/adminservice/util" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/flyteadmin/pkg/rpc/adminservice/launch_plan.go b/flyteadmin/pkg/rpc/adminservice/launch_plan.go index fc6361236d..4b78d8ea71 100644 --- a/flyteadmin/pkg/rpc/adminservice/launch_plan.go +++ b/flyteadmin/pkg/rpc/adminservice/launch_plan.go @@ -3,11 +3,11 @@ package adminservice import ( "context" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/rpc/adminservice/util" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/flyteadmin/pkg/rpc/adminservice/named_entity.go b/flyteadmin/pkg/rpc/adminservice/named_entity.go index d1f72318e2..e8b757d60f 100644 --- a/flyteadmin/pkg/rpc/adminservice/named_entity.go +++ b/flyteadmin/pkg/rpc/adminservice/named_entity.go @@ -4,7 +4,7 @@ import ( "context" "github.com/flyteorg/flyte/flyteadmin/pkg/rpc/adminservice/util" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/flyteadmin/pkg/rpc/adminservice/node_execution.go b/flyteadmin/pkg/rpc/adminservice/node_execution.go index 23ee97904f..83a23c125e 100644 --- a/flyteadmin/pkg/rpc/adminservice/node_execution.go +++ b/flyteadmin/pkg/rpc/adminservice/node_execution.go @@ -6,8 +6,8 @@ import ( "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flyteadmin/pkg/rpc/adminservice/util" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/flyteadmin/pkg/rpc/adminservice/project.go b/flyteadmin/pkg/rpc/adminservice/project.go index 5d49904fec..765d3e4b64 100644 --- a/flyteadmin/pkg/rpc/adminservice/project.go +++ b/flyteadmin/pkg/rpc/adminservice/project.go @@ -4,7 +4,7 @@ import ( "context" "github.com/flyteorg/flyte/flyteadmin/pkg/rpc/adminservice/util" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/flyteadmin/pkg/rpc/adminservice/task.go b/flyteadmin/pkg/rpc/adminservice/task.go index 7c35e9864a..68f10fdc4a 100644 --- a/flyteadmin/pkg/rpc/adminservice/task.go +++ b/flyteadmin/pkg/rpc/adminservice/task.go @@ -3,11 +3,11 @@ package adminservice import ( "context" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/rpc/adminservice/util" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/flyteadmin/pkg/rpc/adminservice/task_execution.go b/flyteadmin/pkg/rpc/adminservice/task_execution.go index eaf1db145e..b54375593c 100644 --- a/flyteadmin/pkg/rpc/adminservice/task_execution.go +++ b/flyteadmin/pkg/rpc/adminservice/task_execution.go @@ -7,8 +7,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/validation" "github.com/flyteorg/flyte/flyteadmin/pkg/rpc/adminservice/util" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/flyteadmin/pkg/rpc/adminservice/tests/execution_test.go b/flyteadmin/pkg/rpc/adminservice/tests/execution_test.go index 9b54df21ad..37545708be 100644 --- a/flyteadmin/pkg/rpc/adminservice/tests/execution_test.go +++ b/flyteadmin/pkg/rpc/adminservice/tests/execution_test.go @@ -9,12 +9,12 @@ import ( flyteAdminErrors "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "google.golang.org/grpc/codes" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/mocks" repoErrors "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/rpc/adminservice/tests/launch_plan_test.go b/flyteadmin/pkg/rpc/adminservice/tests/launch_plan_test.go index 9cc6fc32c3..c367e251e8 100644 --- a/flyteadmin/pkg/rpc/adminservice/tests/launch_plan_test.go +++ b/flyteadmin/pkg/rpc/adminservice/tests/launch_plan_test.go @@ -4,11 +4,11 @@ import ( "context" "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/rpc/adminservice/tests/node_execution_test.go b/flyteadmin/pkg/rpc/adminservice/tests/node_execution_test.go index 495ad2909a..4e1ebd09ea 100644 --- a/flyteadmin/pkg/rpc/adminservice/tests/node_execution_test.go +++ b/flyteadmin/pkg/rpc/adminservice/tests/node_execution_test.go @@ -10,11 +10,11 @@ import ( "github.com/golang/protobuf/proto" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/rpc/adminservice/tests/project_domain_test.go b/flyteadmin/pkg/rpc/adminservice/tests/project_domain_test.go index de8d784adb..fbc3639c4c 100644 --- a/flyteadmin/pkg/rpc/adminservice/tests/project_domain_test.go +++ b/flyteadmin/pkg/rpc/adminservice/tests/project_domain_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/rpc/adminservice/tests/project_test.go b/flyteadmin/pkg/rpc/adminservice/tests/project_test.go index 181109300e..252e40c78c 100644 --- a/flyteadmin/pkg/rpc/adminservice/tests/project_test.go +++ b/flyteadmin/pkg/rpc/adminservice/tests/project_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/rpc/adminservice/tests/task_execution_test.go b/flyteadmin/pkg/rpc/adminservice/tests/task_execution_test.go index 6f2ad61d0a..42b41778a7 100644 --- a/flyteadmin/pkg/rpc/adminservice/tests/task_execution_test.go +++ b/flyteadmin/pkg/rpc/adminservice/tests/task_execution_test.go @@ -9,9 +9,9 @@ import ( flyteAdminErrors "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/mocks" - "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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/rpc/adminservice/tests/task_test.go b/flyteadmin/pkg/rpc/adminservice/tests/task_test.go index 6afb6fc9ce..998b67832f 100644 --- a/flyteadmin/pkg/rpc/adminservice/tests/task_test.go +++ b/flyteadmin/pkg/rpc/adminservice/tests/task_test.go @@ -6,10 +6,10 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/rpc/adminservice/tests/workflow_test.go b/flyteadmin/pkg/rpc/adminservice/tests/workflow_test.go index 7157ba4459..b0f893dbc6 100644 --- a/flyteadmin/pkg/rpc/adminservice/tests/workflow_test.go +++ b/flyteadmin/pkg/rpc/adminservice/tests/workflow_test.go @@ -4,11 +4,11 @@ import ( "context" "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/rpc/adminservice/version.go b/flyteadmin/pkg/rpc/adminservice/version.go index 3f7656878e..7fb5861e50 100644 --- a/flyteadmin/pkg/rpc/adminservice/version.go +++ b/flyteadmin/pkg/rpc/adminservice/version.go @@ -3,7 +3,7 @@ package adminservice import ( "context" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) func (m *AdminService) GetVersion(ctx context.Context, request *admin.GetVersionRequest) (*admin.GetVersionResponse, error) { diff --git a/flyteadmin/pkg/rpc/adminservice/workflow.go b/flyteadmin/pkg/rpc/adminservice/workflow.go index 0b057f7091..2bb5b6895c 100644 --- a/flyteadmin/pkg/rpc/adminservice/workflow.go +++ b/flyteadmin/pkg/rpc/adminservice/workflow.go @@ -3,11 +3,11 @@ package adminservice import ( "context" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/rpc/adminservice/util" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/flyteadmin/pkg/rpc/signal_service.go b/flyteadmin/pkg/rpc/signal_service.go index 1790385fc1..f17fd80da4 100644 --- a/flyteadmin/pkg/rpc/signal_service.go +++ b/flyteadmin/pkg/rpc/signal_service.go @@ -12,8 +12,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/rpc/adminservice/util" runtimeIfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" diff --git a/flyteadmin/pkg/rpc/signal_service_test.go b/flyteadmin/pkg/rpc/signal_service_test.go index e7ac8c5ab6..cc8c170e08 100644 --- a/flyteadmin/pkg/rpc/signal_service_test.go +++ b/flyteadmin/pkg/rpc/signal_service_test.go @@ -7,7 +7,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/manager/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mockScope "github.com/flyteorg/flyte/flytestdlib/promutils" diff --git a/flyteadmin/pkg/runtime/interfaces/application_configuration.go b/flyteadmin/pkg/runtime/interfaces/application_configuration.go index 32c18b9d23..e24f6b16d2 100644 --- a/flyteadmin/pkg/runtime/interfaces/application_configuration.go +++ b/flyteadmin/pkg/runtime/interfaces/application_configuration.go @@ -1,10 +1,10 @@ package interfaces import ( + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/config" "github.com/flyteorg/flyte/flytestdlib/database" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/ptypes/wrappers" "golang.org/x/time/rate" diff --git a/flyteadmin/pkg/runtime/interfaces/mocks/quality_of_service_configuration.go b/flyteadmin/pkg/runtime/interfaces/mocks/quality_of_service_configuration.go index 5d52766e36..0a2f33b843 100644 --- a/flyteadmin/pkg/runtime/interfaces/mocks/quality_of_service_configuration.go +++ b/flyteadmin/pkg/runtime/interfaces/mocks/quality_of_service_configuration.go @@ -3,7 +3,7 @@ package mocks import ( - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteadmin/pkg/runtime/interfaces/quality_of_service_configuration.go b/flyteadmin/pkg/runtime/interfaces/quality_of_service_configuration.go index 11ae529376..c082a11bf7 100644 --- a/flyteadmin/pkg/runtime/interfaces/quality_of_service_configuration.go +++ b/flyteadmin/pkg/runtime/interfaces/quality_of_service_configuration.go @@ -1,8 +1,8 @@ package interfaces import ( + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/config" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) type TierName = string diff --git a/flyteadmin/pkg/runtime/mocks/mock_configuration_provider.go b/flyteadmin/pkg/runtime/mocks/mock_configuration_provider.go index 7f1d79a6d5..19f3dcfce7 100644 --- a/flyteadmin/pkg/runtime/mocks/mock_configuration_provider.go +++ b/flyteadmin/pkg/runtime/mocks/mock_configuration_provider.go @@ -3,7 +3,7 @@ package mocks import ( "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" ifaceMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) type MockConfigurationProvider struct { diff --git a/flyteadmin/pkg/runtime/quality_of_service_provider.go b/flyteadmin/pkg/runtime/quality_of_service_provider.go index 30a98b9cba..c87c31517a 100644 --- a/flyteadmin/pkg/runtime/quality_of_service_provider.go +++ b/flyteadmin/pkg/runtime/quality_of_service_provider.go @@ -4,8 +4,8 @@ import ( "fmt" "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/config" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/ptypes" ) diff --git a/flyteadmin/pkg/server/service.go b/flyteadmin/pkg/server/service.go index 8a99a93278..0974467da8 100644 --- a/flyteadmin/pkg/server/service.go +++ b/flyteadmin/pkg/server/service.go @@ -35,13 +35,13 @@ import ( runtime2 "github.com/flyteorg/flyte/flyteadmin/pkg/runtime" runtimeIfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" "github.com/flyteorg/flyte/flyteadmin/plugins" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/task/secretmanager" "github.com/flyteorg/flyte/flytestdlib/contextutils" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" ) var defaultCorsHeaders = []string{"Content-Type"} diff --git a/flyteadmin/pkg/workflowengine/impl/compiler.go b/flyteadmin/pkg/workflowengine/impl/compiler.go index e180696817..8785c9ccf4 100644 --- a/flyteadmin/pkg/workflowengine/impl/compiler.go +++ b/flyteadmin/pkg/workflowengine/impl/compiler.go @@ -3,9 +3,9 @@ package impl import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" ) diff --git a/flyteadmin/pkg/workflowengine/impl/interface_provider.go b/flyteadmin/pkg/workflowengine/impl/interface_provider.go index a1ac2de410..89aa444431 100644 --- a/flyteadmin/pkg/workflowengine/impl/interface_provider.go +++ b/flyteadmin/pkg/workflowengine/impl/interface_provider.go @@ -6,9 +6,9 @@ import ( "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" ) diff --git a/flyteadmin/pkg/workflowengine/impl/interface_provider_test.go b/flyteadmin/pkg/workflowengine/impl/interface_provider_test.go index 3cfbdd4b7d..4772d3d3c0 100644 --- a/flyteadmin/pkg/workflowengine/impl/interface_provider_test.go +++ b/flyteadmin/pkg/workflowengine/impl/interface_provider_test.go @@ -3,12 +3,12 @@ package impl import ( "testing" - "github.com/flyteorg/flyteidl/clients/go/coreutils" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common" - "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/stretchr/testify/assert" ) diff --git a/flyteadmin/pkg/workflowengine/impl/k8s_executor_test.go b/flyteadmin/pkg/workflowengine/impl/k8s_executor_test.go index 8726c7598d..240066fe2a 100644 --- a/flyteadmin/pkg/workflowengine/impl/k8s_executor_test.go +++ b/flyteadmin/pkg/workflowengine/impl/k8s_executor_test.go @@ -12,11 +12,11 @@ import ( runtimeMocks "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/mocks" "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1" flyteclient "github.com/flyteorg/flyte/flytepropeller/pkg/client/clientset/versioned" v1alpha12 "github.com/flyteorg/flyte/flytepropeller/pkg/client/clientset/versioned/typed/flyteworkflow/v1alpha1" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" "github.com/golang/protobuf/proto" diff --git a/flyteadmin/pkg/workflowengine/impl/prepare_execution.go b/flyteadmin/pkg/workflowengine/impl/prepare_execution.go index 719f387c80..6b062933e6 100644 --- a/flyteadmin/pkg/workflowengine/impl/prepare_execution.go +++ b/flyteadmin/pkg/workflowengine/impl/prepare_execution.go @@ -3,9 +3,9 @@ package impl import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "google.golang.org/grpc/codes" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/flyteadmin/pkg/workflowengine/impl/prepare_execution_test.go b/flyteadmin/pkg/workflowengine/impl/prepare_execution_test.go index 768ec93828..695e2aba57 100644 --- a/flyteadmin/pkg/workflowengine/impl/prepare_execution_test.go +++ b/flyteadmin/pkg/workflowengine/impl/prepare_execution_test.go @@ -7,9 +7,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/interfaces" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1" - "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/golang/protobuf/ptypes/wrappers" "github.com/stretchr/testify/assert" diff --git a/flyteadmin/pkg/workflowengine/impl/workflow_builder.go b/flyteadmin/pkg/workflowengine/impl/workflow_builder.go index 2892104db0..b868c750aa 100644 --- a/flyteadmin/pkg/workflowengine/impl/workflow_builder.go +++ b/flyteadmin/pkg/workflowengine/impl/workflow_builder.go @@ -6,9 +6,9 @@ import ( "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/prometheus/client_golang/prometheus" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/transformers/k8s" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) type builderMetrics struct { diff --git a/flyteadmin/pkg/workflowengine/interfaces/builder.go b/flyteadmin/pkg/workflowengine/interfaces/builder.go index d0b9af5ff7..7fee0ba131 100644 --- a/flyteadmin/pkg/workflowengine/interfaces/builder.go +++ b/flyteadmin/pkg/workflowengine/interfaces/builder.go @@ -1,8 +1,8 @@ package interfaces import ( + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) //go:generate mockery -name FlyteWorkflowBuilder -output=../mocks -case=underscore diff --git a/flyteadmin/pkg/workflowengine/interfaces/compiler.go b/flyteadmin/pkg/workflowengine/interfaces/compiler.go index bd342499a3..5acc4efa4b 100644 --- a/flyteadmin/pkg/workflowengine/interfaces/compiler.go +++ b/flyteadmin/pkg/workflowengine/interfaces/compiler.go @@ -1,9 +1,9 @@ package interfaces import ( + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) // Workflow compiler interface. diff --git a/flyteadmin/pkg/workflowengine/interfaces/executor.go b/flyteadmin/pkg/workflowengine/interfaces/executor.go index 667e80fdd9..0fd3891be5 100644 --- a/flyteadmin/pkg/workflowengine/interfaces/executor.go +++ b/flyteadmin/pkg/workflowengine/interfaces/executor.go @@ -6,8 +6,8 @@ import ( runtime "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/storage" ) diff --git a/flyteadmin/pkg/workflowengine/mocks/flyte_workflow_builder.go b/flyteadmin/pkg/workflowengine/mocks/flyte_workflow_builder.go index 831b42b0be..5738f0f774 100644 --- a/flyteadmin/pkg/workflowengine/mocks/flyte_workflow_builder.go +++ b/flyteadmin/pkg/workflowengine/mocks/flyte_workflow_builder.go @@ -3,7 +3,7 @@ package mocks import ( - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" mock "github.com/stretchr/testify/mock" diff --git a/flyteadmin/pkg/workflowengine/mocks/mock_compiler.go b/flyteadmin/pkg/workflowengine/mocks/mock_compiler.go index b86c78d4b5..eaf27ea433 100644 --- a/flyteadmin/pkg/workflowengine/mocks/mock_compiler.go +++ b/flyteadmin/pkg/workflowengine/mocks/mock_compiler.go @@ -2,9 +2,9 @@ package mocks import ( "github.com/flyteorg/flyte/flyteadmin/pkg/workflowengine/interfaces" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler" "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) type MockCompiler struct { diff --git a/flyteadmin/scheduler/core/gocron_scheduler.go b/flyteadmin/scheduler/core/gocron_scheduler.go index 0a8080e6a4..44de3eaf80 100644 --- a/flyteadmin/scheduler/core/gocron_scheduler.go +++ b/flyteadmin/scheduler/core/gocron_scheduler.go @@ -10,9 +10,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/scheduler/identifier" "github.com/flyteorg/flyte/flyteadmin/scheduler/repositories/models" "github.com/flyteorg/flyte/flyteadmin/scheduler/snapshoter" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/prometheus/client_golang/prometheus" "github.com/robfig/cron/v3" diff --git a/flyteadmin/scheduler/core/gocron_scheduler_test.go b/flyteadmin/scheduler/core/gocron_scheduler_test.go index 0b8890e418..d19436ddd5 100644 --- a/flyteadmin/scheduler/core/gocron_scheduler_test.go +++ b/flyteadmin/scheduler/core/gocron_scheduler_test.go @@ -18,8 +18,8 @@ import ( "github.com/flyteorg/flyte/flyteadmin/scheduler/executor/mocks" "github.com/flyteorg/flyte/flyteadmin/scheduler/repositories/models" "github.com/flyteorg/flyte/flyteadmin/scheduler/snapshoter" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" ) var scheduleCron models.SchedulableEntity diff --git a/flyteadmin/scheduler/dbapi/event_scheduler_impl.go b/flyteadmin/scheduler/dbapi/event_scheduler_impl.go index 87d69884a1..9dfab995b4 100644 --- a/flyteadmin/scheduler/dbapi/event_scheduler_impl.go +++ b/flyteadmin/scheduler/dbapi/event_scheduler_impl.go @@ -10,9 +10,9 @@ import ( scheduleInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/async/schedule/interfaces" runtimeInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/runtime/interfaces" "github.com/flyteorg/flyte/flyteadmin/scheduler/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" ) // eventScheduler used for saving the scheduler entries after launch plans are enabled or disabled. diff --git a/flyteadmin/scheduler/dbapi/event_scheduler_impl_test.go b/flyteadmin/scheduler/dbapi/event_scheduler_impl_test.go index 635442aeba..b8e00897bc 100644 --- a/flyteadmin/scheduler/dbapi/event_scheduler_impl_test.go +++ b/flyteadmin/scheduler/dbapi/event_scheduler_impl_test.go @@ -8,8 +8,8 @@ import ( repositoryInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/mocks" schedMocks "github.com/flyteorg/flyte/flyteadmin/scheduler/repositories/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" diff --git a/flyteadmin/scheduler/executor/executor_impl.go b/flyteadmin/scheduler/executor/executor_impl.go index 532a7de8b4..68e0568be6 100644 --- a/flyteadmin/scheduler/executor/executor_impl.go +++ b/flyteadmin/scheduler/executor/executor_impl.go @@ -7,11 +7,11 @@ import ( "github.com/flyteorg/flyte/flyteadmin/scheduler/identifier" "github.com/flyteorg/flyte/flyteadmin/scheduler/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - "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/service" "github.com/prometheus/client_golang/prometheus" "google.golang.org/grpc/codes" diff --git a/flyteadmin/scheduler/executor/executor_impl_test.go b/flyteadmin/scheduler/executor/executor_impl_test.go index 3606fa515f..82ed5c6bcb 100644 --- a/flyteadmin/scheduler/executor/executor_impl_test.go +++ b/flyteadmin/scheduler/executor/executor_impl_test.go @@ -7,9 +7,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/errors" "github.com/flyteorg/flyte/flyteadmin/scheduler/repositories/models" + adminMocks "github.com/flyteorg/flyte/flyteidl/clients/go/admin/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/promutils" - adminMocks "github.com/flyteorg/flyteidl/clients/go/admin/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" diff --git a/flyteadmin/scheduler/identifier/identifier.go b/flyteadmin/scheduler/identifier/identifier.go index 63c8d43c0b..708abd228c 100644 --- a/flyteadmin/scheduler/identifier/identifier.go +++ b/flyteadmin/scheduler/identifier/identifier.go @@ -9,8 +9,8 @@ import ( "time" "github.com/flyteorg/flyte/flyteadmin/scheduler/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/google/uuid" ) diff --git a/flyteadmin/scheduler/repositories/gormimpl/schedulable_entity_repo.go b/flyteadmin/scheduler/repositories/gormimpl/schedulable_entity_repo.go index 741d4c19cf..057906149f 100644 --- a/flyteadmin/scheduler/repositories/gormimpl/schedulable_entity_repo.go +++ b/flyteadmin/scheduler/repositories/gormimpl/schedulable_entity_repo.go @@ -9,8 +9,8 @@ import ( adminErrors "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" "github.com/flyteorg/flyte/flyteadmin/scheduler/repositories/interfaces" "github.com/flyteorg/flyte/flyteadmin/scheduler/repositories/models" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "gorm.io/gorm" ) diff --git a/flyteadmin/scheduler/repositories/models/schedulable_entity.go b/flyteadmin/scheduler/repositories/models/schedulable_entity.go index 1fa25a9311..7c949601ce 100644 --- a/flyteadmin/scheduler/repositories/models/schedulable_entity.go +++ b/flyteadmin/scheduler/repositories/models/schedulable_entity.go @@ -2,7 +2,7 @@ package models import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/models" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) // Database model to encapsulate metadata associated with a SchedulableEntity diff --git a/flyteadmin/scheduler/schedule_executor.go b/flyteadmin/scheduler/schedule_executor.go index 3eae856db4..e5a6565394 100644 --- a/flyteadmin/scheduler/schedule_executor.go +++ b/flyteadmin/scheduler/schedule_executor.go @@ -10,10 +10,10 @@ import ( "github.com/flyteorg/flyte/flyteadmin/scheduler/core" "github.com/flyteorg/flyte/flyteadmin/scheduler/executor" "github.com/flyteorg/flyte/flyteadmin/scheduler/snapshoter" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytestdlib/futures" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" "golang.org/x/time/rate" "k8s.io/apimachinery/pkg/util/wait" diff --git a/flyteadmin/scheduler/schedule_executor_test.go b/flyteadmin/scheduler/schedule_executor_test.go index 97436afcda..4f0d35786e 100644 --- a/flyteadmin/scheduler/schedule_executor_test.go +++ b/flyteadmin/scheduler/schedule_executor_test.go @@ -18,9 +18,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/scheduler/snapshoter" repositoryInterfaces "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/interfaces" + adminMocks "github.com/flyteorg/flyte/flyteidl/clients/go/admin/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/promutils" - adminMocks "github.com/flyteorg/flyteidl/clients/go/admin/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" diff --git a/flyteadmin/scheduler/start.go b/flyteadmin/scheduler/start.go index fce4de30b4..68baa20677 100644 --- a/flyteadmin/scheduler/start.go +++ b/flyteadmin/scheduler/start.go @@ -8,9 +8,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories" "github.com/flyteorg/flyte/flyteadmin/pkg/repositories/errors" "github.com/flyteorg/flyte/flyteadmin/pkg/runtime" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/promutils" - "github.com/flyteorg/flyteidl/clients/go/admin" ) // StartScheduler creates and starts a new scheduler instance. This is a blocking call and will block the calling go-routine diff --git a/flyteadmin/tests/attributes_test.go b/flyteadmin/tests/attributes_test.go index 1706d991d4..dd6c153d45 100644 --- a/flyteadmin/tests/attributes_test.go +++ b/flyteadmin/tests/attributes_test.go @@ -14,7 +14,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) var matchingAttributes = &admin.MatchingAttributes{ diff --git a/flyteadmin/tests/execution_test.go b/flyteadmin/tests/execution_test.go index be36d4c0d7..a8fffeeb63 100644 --- a/flyteadmin/tests/execution_test.go +++ b/flyteadmin/tests/execution_test.go @@ -11,9 +11,9 @@ import ( "github.com/flyteorg/flyte/flyteadmin/pkg/repositories" - "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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/golang/protobuf/proto" diff --git a/flyteadmin/tests/helpers.go b/flyteadmin/tests/helpers.go index 80c5a2fd33..547439dd0b 100644 --- a/flyteadmin/tests/helpers.go +++ b/flyteadmin/tests/helpers.go @@ -3,7 +3,7 @@ package tests import ( "fmt" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "google.golang.org/grpc" "google.golang.org/grpc/grpclog" ) diff --git a/flyteadmin/tests/launch_plan_test.go b/flyteadmin/tests/launch_plan_test.go index 8468759464..008ba87682 100644 --- a/flyteadmin/tests/launch_plan_test.go +++ b/flyteadmin/tests/launch_plan_test.go @@ -11,12 +11,12 @@ import ( "net/url" "testing" - "github.com/flyteorg/flyteidl/clients/go/coreutils" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" "github.com/golang/protobuf/proto" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/tests/named_entity_test.go b/flyteadmin/tests/named_entity_test.go index 2381a2f151..b6a0d5fc55 100644 --- a/flyteadmin/tests/named_entity_test.go +++ b/flyteadmin/tests/named_entity_test.go @@ -10,12 +10,12 @@ import ( "net/http" "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" ) var resourceTypes = []core.ResourceType{ diff --git a/flyteadmin/tests/node_execution_test.go b/flyteadmin/tests/node_execution_test.go index b3d17658ce..6b34749e3c 100644 --- a/flyteadmin/tests/node_execution_test.go +++ b/flyteadmin/tests/node_execution_test.go @@ -12,9 +12,9 @@ import ( "github.com/golang/protobuf/ptypes" "github.com/stretchr/testify/assert" - "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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" ) const nodeID = "nodey" diff --git a/flyteadmin/tests/project_test.go b/flyteadmin/tests/project_test.go index 74d07dc1c0..a10dc2d072 100644 --- a/flyteadmin/tests/project_test.go +++ b/flyteadmin/tests/project_test.go @@ -9,8 +9,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) func TestCreateProject(t *testing.T) { diff --git a/flyteadmin/tests/scheduler_test.go b/flyteadmin/tests/scheduler_test.go index 6500c3efb4..3c490a6f15 100644 --- a/flyteadmin/tests/scheduler_test.go +++ b/flyteadmin/tests/scheduler_test.go @@ -20,7 +20,7 @@ import ( "github.com/flyteorg/flyte/flyteadmin/scheduler/executor/mocks" "github.com/flyteorg/flyte/flyteadmin/scheduler/repositories/models" "github.com/flyteorg/flyte/flyteadmin/scheduler/snapshoter" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/promutils" ) diff --git a/flyteadmin/tests/shared.go b/flyteadmin/tests/shared.go index 041889bf73..81c713b398 100644 --- a/flyteadmin/tests/shared.go +++ b/flyteadmin/tests/shared.go @@ -9,13 +9,13 @@ import ( "net/http" "testing" - "github.com/flyteorg/flyteidl/clients/go/coreutils" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/tests/task_execution_test.go b/flyteadmin/tests/task_execution_test.go index 77871a1cb6..cbf12704e4 100644 --- a/flyteadmin/tests/task_execution_test.go +++ b/flyteadmin/tests/task_execution_test.go @@ -23,10 +23,10 @@ import ( ptypesStruct "github.com/golang/protobuf/ptypes/struct" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" - "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/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/stretchr/testify/assert" "google.golang.org/grpc" diff --git a/flyteadmin/tests/task_test.go b/flyteadmin/tests/task_test.go index 158c5ace51..114791992e 100644 --- a/flyteadmin/tests/task_test.go +++ b/flyteadmin/tests/task_test.go @@ -11,11 +11,11 @@ import ( "strings" "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/proto" "github.com/flyteorg/flyte/flyteadmin/pkg/manager/impl/testutils" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/stretchr/testify/assert" ) diff --git a/flyteadmin/tests/workflow_test.go b/flyteadmin/tests/workflow_test.go index 2ccd77f6fe..4c0ab893e1 100644 --- a/flyteadmin/tests/workflow_test.go +++ b/flyteadmin/tests/workflow_test.go @@ -14,8 +14,8 @@ import ( "github.com/golang/protobuf/proto" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/stretchr/testify/assert" ) diff --git a/flytecopilot/cmd/download.go b/flytecopilot/cmd/download.go index ac3bed7601..113d981ddd 100644 --- a/flytecopilot/cmd/download.go +++ b/flytecopilot/cmd/download.go @@ -7,7 +7,7 @@ import ( "github.com/flyteorg/flyte/flytecopilot/data" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/storage" "github.com/spf13/cobra" diff --git a/flytecopilot/cmd/download_test.go b/flytecopilot/cmd/download_test.go index 55a4f2e204..4530f4c73d 100644 --- a/flytecopilot/cmd/download_test.go +++ b/flytecopilot/cmd/download_test.go @@ -10,12 +10,12 @@ import ( "strings" "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/storage" "github.com/stretchr/testify/assert" - "github.com/flyteorg/flyteidl/clients/go/coreutils" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" ) func TestDownloadOptions_Download(t *testing.T) { diff --git a/flytecopilot/cmd/root.go b/flytecopilot/cmd/root.go index 0cdabd3e47..c01f825761 100644 --- a/flytecopilot/cmd/root.go +++ b/flytecopilot/cmd/root.go @@ -11,7 +11,7 @@ import ( "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/credentials" "github.com/aws/aws-sdk-go/aws/session" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/config" "github.com/flyteorg/flyte/flytestdlib/config/viper" "github.com/flyteorg/flyte/flytestdlib/contextutils" diff --git a/flytecopilot/cmd/sidecar.go b/flytecopilot/cmd/sidecar.go index ee5852a6c4..0bc8f00c5f 100644 --- a/flytecopilot/cmd/sidecar.go +++ b/flytecopilot/cmd/sidecar.go @@ -8,7 +8,7 @@ import ( "github.com/flyteorg/flyte/flytecopilot/cmd/containerwatcher" "github.com/flyteorg/flyte/flytecopilot/data" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/storage" "github.com/golang/protobuf/proto" diff --git a/flytecopilot/cmd/sidecar_test.go b/flytecopilot/cmd/sidecar_test.go index e316b81d12..b3e513246c 100644 --- a/flytecopilot/cmd/sidecar_test.go +++ b/flytecopilot/cmd/sidecar_test.go @@ -7,7 +7,7 @@ import ( "path" "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/storage" "github.com/golang/protobuf/proto" diff --git a/flytecopilot/data/download.go b/flytecopilot/data/download.go index ffcc85f3e5..c04679cd54 100644 --- a/flytecopilot/data/download.go +++ b/flytecopilot/data/download.go @@ -13,7 +13,7 @@ import ( "github.com/golang/protobuf/jsonpb" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/futures" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/storage" diff --git a/flytecopilot/data/upload.go b/flytecopilot/data/upload.go index 3302eee899..0e84098743 100644 --- a/flytecopilot/data/upload.go +++ b/flytecopilot/data/upload.go @@ -10,14 +10,14 @@ import ( "path/filepath" "reflect" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/futures" "github.com/flyteorg/flyte/flytestdlib/logger" "github.com/flyteorg/flyte/flytestdlib/storage" "github.com/golang/protobuf/proto" "github.com/pkg/errors" - "github.com/flyteorg/flyteidl/clients/go/coreutils" + "github.com/flyteorg/flyte/flyteidl/clients/go/coreutils" ) const maxPrimitiveSize = 1024 diff --git a/flytecopilot/data/upload_test.go b/flytecopilot/data/upload_test.go index 01ac14aed3..684b6524a0 100644 --- a/flytecopilot/data/upload_test.go +++ b/flytecopilot/data/upload_test.go @@ -8,7 +8,7 @@ import ( "path" "testing" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/promutils" "github.com/flyteorg/flyte/flytestdlib/storage" "github.com/stretchr/testify/assert" diff --git a/flytecopilot/go.mod b/flytecopilot/go.mod index f5dae4a430..6565cf119f 100644 --- a/flytecopilot/go.mod +++ b/flytecopilot/go.mod @@ -4,8 +4,8 @@ go 1.19 require ( github.com/aws/aws-sdk-go v1.44.2 + github.com/flyteorg/flyte/flyteidl v0.0.0-00010101000000-000000000000 github.com/flyteorg/flyte/flytestdlib v0.0.0-00010101000000-000000000000 - github.com/flyteorg/flyteidl v0.0.0-00010101000000-000000000000 github.com/fsnotify/fsnotify v1.5.1 github.com/ghodss/yaml v1.0.0 github.com/golang/protobuf v1.5.3 @@ -108,8 +108,8 @@ replace ( github.com/flyteorg/flyte/datacatalog => ../datacatalog github.com/flyteorg/flyte/flyteadmin => ../flyteadmin github.com/flyteorg/flyte/flytecopilot => ../flytecopilot + github.com/flyteorg/flyte/flyteidl => ../flyteidl github.com/flyteorg/flyte/flyteplugins => ../flyteplugins github.com/flyteorg/flyte/flytepropeller => ../flytepropeller github.com/flyteorg/flyte/flytestdlib => ../flytestdlib - github.com/flyteorg/flyteidl => ../flyteidl ) diff --git a/flytecopilot/go.sum b/flytecopilot/go.sum index 1be017af7a..3b2bf17b22 100644 --- a/flytecopilot/go.sum +++ b/flytecopilot/go.sum @@ -290,8 +290,8 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxv 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/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= 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= @@ -766,8 +766,8 @@ google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw 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/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= 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.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= diff --git a/flyteidl/clients/go/admin/auth_interceptor.go b/flyteidl/clients/go/admin/auth_interceptor.go index a12640b27c..daa91968bc 100644 --- a/flyteidl/clients/go/admin/auth_interceptor.go +++ b/flyteidl/clients/go/admin/auth_interceptor.go @@ -5,9 +5,9 @@ import ( "fmt" "net/http" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/clients/go/admin/cache" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" "golang.org/x/oauth2" "google.golang.org/grpc/codes" diff --git a/flyteidl/clients/go/admin/auth_interceptor_test.go b/flyteidl/clients/go/admin/auth_interceptor_test.go index dd6212bb81..fccd64769f 100644 --- a/flyteidl/clients/go/admin/auth_interceptor_test.go +++ b/flyteidl/clients/go/admin/auth_interceptor_test.go @@ -20,11 +20,11 @@ import ( "google.golang.org/grpc/status" "k8s.io/apimachinery/pkg/util/rand" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache/mocks" + adminMocks "github.com/flyteorg/flyte/flyteidl/clients/go/admin/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytestdlib/config" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/clients/go/admin/cache/mocks" - adminMocks "github.com/flyteorg/flyteidl/clients/go/admin/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" ) // authMetadataServer is a fake AuthMetadataServer that takes in an AuthMetadataServer implementation (usually one diff --git a/flyteidl/clients/go/admin/client.go b/flyteidl/clients/go/admin/client.go index 7e111de11a..ffba612a09 100644 --- a/flyteidl/clients/go/admin/client.go +++ b/flyteidl/clients/go/admin/client.go @@ -13,10 +13,10 @@ import ( "google.golang.org/grpc/credentials" "google.golang.org/grpc/health/grpc_health_v1" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/clients/go/admin/cache" - "github.com/flyteorg/flyteidl/clients/go/admin/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" ) // IDE "Go Generate File". This will create a mocks/AdminServiceClient.go file diff --git a/flyteidl/clients/go/admin/client_builder.go b/flyteidl/clients/go/admin/client_builder.go index 182ad4b6ef..25b263ecf1 100644 --- a/flyteidl/clients/go/admin/client_builder.go +++ b/flyteidl/clients/go/admin/client_builder.go @@ -5,7 +5,7 @@ import ( "google.golang.org/grpc" - "github.com/flyteorg/flyteidl/clients/go/admin/cache" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache" ) // ClientsetBuilder is used to build the clientset. This allows custom token cache implementations to be plugged in. diff --git a/flyteidl/clients/go/admin/client_builder_test.go b/flyteidl/clients/go/admin/client_builder_test.go index 1067579b45..43917ab1a7 100644 --- a/flyteidl/clients/go/admin/client_builder_test.go +++ b/flyteidl/clients/go/admin/client_builder_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/flyteorg/flyteidl/clients/go/admin/cache" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache" ) func TestClientsetBuilder_Build(t *testing.T) { diff --git a/flyteidl/clients/go/admin/client_test.go b/flyteidl/clients/go/admin/client_test.go index 69789402a8..61326819fd 100644 --- a/flyteidl/clients/go/admin/client_test.go +++ b/flyteidl/clients/go/admin/client_test.go @@ -18,15 +18,15 @@ import ( "golang.org/x/oauth2" _ "google.golang.org/grpc/balancer/roundrobin" //nolint + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache" + cachemocks "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache/mocks" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/mocks" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/oauth" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/pkce" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/tokenorchestrator" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytestdlib/config" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/clients/go/admin/cache" - cachemocks "github.com/flyteorg/flyteidl/clients/go/admin/cache/mocks" - "github.com/flyteorg/flyteidl/clients/go/admin/mocks" - "github.com/flyteorg/flyteidl/clients/go/admin/oauth" - "github.com/flyteorg/flyteidl/clients/go/admin/pkce" - "github.com/flyteorg/flyteidl/clients/go/admin/tokenorchestrator" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" ) func TestInitializeAndGetAdminClient(t *testing.T) { diff --git a/flyteidl/clients/go/admin/config.go b/flyteidl/clients/go/admin/config.go index d0bdb38d8c..1eea36a89e 100644 --- a/flyteidl/clients/go/admin/config.go +++ b/flyteidl/clients/go/admin/config.go @@ -8,10 +8,10 @@ import ( "path/filepath" "time" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/deviceflow" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/pkce" "github.com/flyteorg/flyte/flytestdlib/config" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/clients/go/admin/deviceflow" - "github.com/flyteorg/flyteidl/clients/go/admin/pkce" ) //go:generate pflags Config --default-var=defaultConfig diff --git a/flyteidl/clients/go/admin/deviceflow/token_orchestrator.go b/flyteidl/clients/go/admin/deviceflow/token_orchestrator.go index a459b820e5..fc4f1d3786 100644 --- a/flyteidl/clients/go/admin/deviceflow/token_orchestrator.go +++ b/flyteidl/clients/go/admin/deviceflow/token_orchestrator.go @@ -13,8 +13,8 @@ import ( "golang.org/x/net/context/ctxhttp" "golang.org/x/oauth2" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/tokenorchestrator" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/clients/go/admin/tokenorchestrator" ) const ( diff --git a/flyteidl/clients/go/admin/deviceflow/token_orchestrator_test.go b/flyteidl/clients/go/admin/deviceflow/token_orchestrator_test.go index 88b2d38bd6..3ecbeb746e 100644 --- a/flyteidl/clients/go/admin/deviceflow/token_orchestrator_test.go +++ b/flyteidl/clients/go/admin/deviceflow/token_orchestrator_test.go @@ -17,9 +17,9 @@ import ( "github.com/stretchr/testify/assert" "golang.org/x/oauth2" - "github.com/flyteorg/flyteidl/clients/go/admin/cache" - "github.com/flyteorg/flyteidl/clients/go/admin/oauth" - "github.com/flyteorg/flyteidl/clients/go/admin/tokenorchestrator" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/oauth" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/tokenorchestrator" ) func TestFetchFromAuthFlow(t *testing.T) { diff --git a/flyteidl/clients/go/admin/integration_test.go b/flyteidl/clients/go/admin/integration_test.go index 75c462b8eb..3dc31a35e3 100644 --- a/flyteidl/clients/go/admin/integration_test.go +++ b/flyteidl/clients/go/admin/integration_test.go @@ -14,7 +14,7 @@ import ( "golang.org/x/oauth2/clientcredentials" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyte/flytestdlib/config" "github.com/stretchr/testify/assert" ) diff --git a/flyteidl/clients/go/admin/mocks/AdminServiceClient.go b/flyteidl/clients/go/admin/mocks/AdminServiceClient.go index 2a6b65b645..38100b9b71 100644 --- a/flyteidl/clients/go/admin/mocks/AdminServiceClient.go +++ b/flyteidl/clients/go/admin/mocks/AdminServiceClient.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" grpc "google.golang.org/grpc" diff --git a/flyteidl/clients/go/admin/mocks/AdminServiceServer.go b/flyteidl/clients/go/admin/mocks/AdminServiceServer.go index cf06b26b14..00d069d104 100644 --- a/flyteidl/clients/go/admin/mocks/AdminServiceServer.go +++ b/flyteidl/clients/go/admin/mocks/AdminServiceServer.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteidl/clients/go/admin/mocks/AgentServiceClient.go b/flyteidl/clients/go/admin/mocks/AgentServiceClient.go index 0fcc10b77c..356573c33e 100644 --- a/flyteidl/clients/go/admin/mocks/AgentServiceClient.go +++ b/flyteidl/clients/go/admin/mocks/AgentServiceClient.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" grpc "google.golang.org/grpc" diff --git a/flyteidl/clients/go/admin/mocks/AgentServiceServer.go b/flyteidl/clients/go/admin/mocks/AgentServiceServer.go index df417a132c..fe769badf5 100644 --- a/flyteidl/clients/go/admin/mocks/AgentServiceServer.go +++ b/flyteidl/clients/go/admin/mocks/AgentServiceServer.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteidl/clients/go/admin/mocks/AsyncAgentServiceClient.go b/flyteidl/clients/go/admin/mocks/AsyncAgentServiceClient.go index 84a804843f..4a2b2c25f3 100644 --- a/flyteidl/clients/go/admin/mocks/AsyncAgentServiceClient.go +++ b/flyteidl/clients/go/admin/mocks/AsyncAgentServiceClient.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" grpc "google.golang.org/grpc" diff --git a/flyteidl/clients/go/admin/mocks/AsyncAgentServiceServer.go b/flyteidl/clients/go/admin/mocks/AsyncAgentServiceServer.go index d24c63ea37..722d6731ff 100644 --- a/flyteidl/clients/go/admin/mocks/AsyncAgentServiceServer.go +++ b/flyteidl/clients/go/admin/mocks/AsyncAgentServiceServer.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteidl/clients/go/admin/mocks/AuthMetadataServiceClient.go b/flyteidl/clients/go/admin/mocks/AuthMetadataServiceClient.go index 29dbb8d990..37902e0fb3 100644 --- a/flyteidl/clients/go/admin/mocks/AuthMetadataServiceClient.go +++ b/flyteidl/clients/go/admin/mocks/AuthMetadataServiceClient.go @@ -9,7 +9,7 @@ import ( mock "github.com/stretchr/testify/mock" - service "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + service "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) // AuthMetadataServiceClient is an autogenerated mock type for the AuthMetadataServiceClient type diff --git a/flyteidl/clients/go/admin/mocks/AuthMetadataServiceServer.go b/flyteidl/clients/go/admin/mocks/AuthMetadataServiceServer.go index 59f8533d91..0e5c201bd6 100644 --- a/flyteidl/clients/go/admin/mocks/AuthMetadataServiceServer.go +++ b/flyteidl/clients/go/admin/mocks/AuthMetadataServiceServer.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - service "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + service "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteidl/clients/go/admin/mocks/DataProxyServiceClient.go b/flyteidl/clients/go/admin/mocks/DataProxyServiceClient.go index ce7b9de11d..e1b8a407df 100644 --- a/flyteidl/clients/go/admin/mocks/DataProxyServiceClient.go +++ b/flyteidl/clients/go/admin/mocks/DataProxyServiceClient.go @@ -9,7 +9,7 @@ import ( mock "github.com/stretchr/testify/mock" - service "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + service "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) // DataProxyServiceClient is an autogenerated mock type for the DataProxyServiceClient type diff --git a/flyteidl/clients/go/admin/mocks/DataProxyServiceServer.go b/flyteidl/clients/go/admin/mocks/DataProxyServiceServer.go index ce2dae0daa..6fede3fce0 100644 --- a/flyteidl/clients/go/admin/mocks/DataProxyServiceServer.go +++ b/flyteidl/clients/go/admin/mocks/DataProxyServiceServer.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - service "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + service "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteidl/clients/go/admin/mocks/ExternalPluginServiceClient.go b/flyteidl/clients/go/admin/mocks/ExternalPluginServiceClient.go index 05df34213f..fd4225ff21 100644 --- a/flyteidl/clients/go/admin/mocks/ExternalPluginServiceClient.go +++ b/flyteidl/clients/go/admin/mocks/ExternalPluginServiceClient.go @@ -9,7 +9,7 @@ import ( mock "github.com/stretchr/testify/mock" - service "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + service "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) // ExternalPluginServiceClient is an autogenerated mock type for the ExternalPluginServiceClient type diff --git a/flyteidl/clients/go/admin/mocks/ExternalPluginServiceServer.go b/flyteidl/clients/go/admin/mocks/ExternalPluginServiceServer.go index 34dae1432d..fec598bc31 100644 --- a/flyteidl/clients/go/admin/mocks/ExternalPluginServiceServer.go +++ b/flyteidl/clients/go/admin/mocks/ExternalPluginServiceServer.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - service "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + service "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteidl/clients/go/admin/mocks/IdentityServiceClient.go b/flyteidl/clients/go/admin/mocks/IdentityServiceClient.go index 42868ad88e..c0e557449a 100644 --- a/flyteidl/clients/go/admin/mocks/IdentityServiceClient.go +++ b/flyteidl/clients/go/admin/mocks/IdentityServiceClient.go @@ -9,7 +9,7 @@ import ( mock "github.com/stretchr/testify/mock" - service "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + service "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) // IdentityServiceClient is an autogenerated mock type for the IdentityServiceClient type diff --git a/flyteidl/clients/go/admin/mocks/IdentityServiceServer.go b/flyteidl/clients/go/admin/mocks/IdentityServiceServer.go index 597956ab9b..ca943c9770 100644 --- a/flyteidl/clients/go/admin/mocks/IdentityServiceServer.go +++ b/flyteidl/clients/go/admin/mocks/IdentityServiceServer.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - service "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + service "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteidl/clients/go/admin/mocks/SignalServiceClient.go b/flyteidl/clients/go/admin/mocks/SignalServiceClient.go index d0a819e2b0..5bd6ecfd51 100644 --- a/flyteidl/clients/go/admin/mocks/SignalServiceClient.go +++ b/flyteidl/clients/go/admin/mocks/SignalServiceClient.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" grpc "google.golang.org/grpc" diff --git a/flyteidl/clients/go/admin/mocks/SignalServiceServer.go b/flyteidl/clients/go/admin/mocks/SignalServiceServer.go index daad4a86c8..23c40db5b6 100644 --- a/flyteidl/clients/go/admin/mocks/SignalServiceServer.go +++ b/flyteidl/clients/go/admin/mocks/SignalServiceServer.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" mock "github.com/stretchr/testify/mock" ) diff --git a/flyteidl/clients/go/admin/oauth/config.go b/flyteidl/clients/go/admin/oauth/config.go index 1048c91cdc..f0a8b9afa4 100644 --- a/flyteidl/clients/go/admin/oauth/config.go +++ b/flyteidl/clients/go/admin/oauth/config.go @@ -5,7 +5,7 @@ import ( "golang.org/x/oauth2" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) // Config oauth2.Config overridden with device endpoint for supporting Device Authorization Grant flow [RFC8268] diff --git a/flyteidl/clients/go/admin/oauth/config_test.go b/flyteidl/clients/go/admin/oauth/config_test.go index 3e537aeec4..c760fbfd5c 100644 --- a/flyteidl/clients/go/admin/oauth/config_test.go +++ b/flyteidl/clients/go/admin/oauth/config_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" - "github.com/flyteorg/flyteidl/clients/go/admin/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) func TestGenerateClientConfig(t *testing.T) { diff --git a/flyteidl/clients/go/admin/pkce/auth_flow_orchestrator.go b/flyteidl/clients/go/admin/pkce/auth_flow_orchestrator.go index 12e5470244..0ca48107ae 100644 --- a/flyteidl/clients/go/admin/pkce/auth_flow_orchestrator.go +++ b/flyteidl/clients/go/admin/pkce/auth_flow_orchestrator.go @@ -9,8 +9,8 @@ import ( "github.com/pkg/browser" "golang.org/x/oauth2" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/tokenorchestrator" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/clients/go/admin/tokenorchestrator" ) const ( diff --git a/flyteidl/clients/go/admin/pkce/auth_flow_orchestrator_test.go b/flyteidl/clients/go/admin/pkce/auth_flow_orchestrator_test.go index 76225de4ad..4799e3fabd 100644 --- a/flyteidl/clients/go/admin/pkce/auth_flow_orchestrator_test.go +++ b/flyteidl/clients/go/admin/pkce/auth_flow_orchestrator_test.go @@ -7,9 +7,9 @@ import ( "github.com/stretchr/testify/assert" "golang.org/x/oauth2" - "github.com/flyteorg/flyteidl/clients/go/admin/cache" - "github.com/flyteorg/flyteidl/clients/go/admin/oauth" - "github.com/flyteorg/flyteidl/clients/go/admin/tokenorchestrator" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/oauth" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/tokenorchestrator" ) func TestFetchFromAuthFlow(t *testing.T) { diff --git a/flyteidl/clients/go/admin/pkce/handle_app_call_back.go b/flyteidl/clients/go/admin/pkce/handle_app_call_back.go index 0874a5a4c4..72ac53883f 100644 --- a/flyteidl/clients/go/admin/pkce/handle_app_call_back.go +++ b/flyteidl/clients/go/admin/pkce/handle_app_call_back.go @@ -7,7 +7,7 @@ import ( "golang.org/x/oauth2" - "github.com/flyteorg/flyteidl/clients/go/admin/oauth" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/oauth" ) func getAuthServerCallbackHandler(c *oauth.Config, codeVerifier string, tokenChannel chan *oauth2.Token, diff --git a/flyteidl/clients/go/admin/pkce/handle_app_call_back_test.go b/flyteidl/clients/go/admin/pkce/handle_app_call_back_test.go index 91eed672c3..c28b833322 100644 --- a/flyteidl/clients/go/admin/pkce/handle_app_call_back_test.go +++ b/flyteidl/clients/go/admin/pkce/handle_app_call_back_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/flyteorg/flyteidl/clients/go/admin/oauth" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/oauth" "github.com/stretchr/testify/assert" testhttp "github.com/stretchr/testify/http" diff --git a/flyteidl/clients/go/admin/token_source_provider.go b/flyteidl/clients/go/admin/token_source_provider.go index 8ed6388856..d4f4a31a5a 100644 --- a/flyteidl/clients/go/admin/token_source_provider.go +++ b/flyteidl/clients/go/admin/token_source_provider.go @@ -12,13 +12,13 @@ import ( "golang.org/x/oauth2" "golang.org/x/oauth2/clientcredentials" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/deviceflow" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/externalprocess" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/pkce" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/tokenorchestrator" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/clients/go/admin/cache" - "github.com/flyteorg/flyteidl/clients/go/admin/deviceflow" - "github.com/flyteorg/flyteidl/clients/go/admin/externalprocess" - "github.com/flyteorg/flyteidl/clients/go/admin/pkce" - "github.com/flyteorg/flyteidl/clients/go/admin/tokenorchestrator" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" ) //go:generate mockery -name TokenSource diff --git a/flyteidl/clients/go/admin/token_source_provider_test.go b/flyteidl/clients/go/admin/token_source_provider_test.go index a0d4cb240c..1f10d40ce4 100644 --- a/flyteidl/clients/go/admin/token_source_provider_test.go +++ b/flyteidl/clients/go/admin/token_source_provider_test.go @@ -11,9 +11,9 @@ import ( "github.com/stretchr/testify/mock" "golang.org/x/oauth2" - tokenCacheMocks "github.com/flyteorg/flyteidl/clients/go/admin/cache/mocks" - adminMocks "github.com/flyteorg/flyteidl/clients/go/admin/mocks" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + tokenCacheMocks "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache/mocks" + adminMocks "github.com/flyteorg/flyte/flyteidl/clients/go/admin/mocks" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" ) func TestNewTokenSourceProvider(t *testing.T) { diff --git a/flyteidl/clients/go/admin/tokenorchestrator/base_token_orchestrator.go b/flyteidl/clients/go/admin/tokenorchestrator/base_token_orchestrator.go index 60196002ed..6fddeee67e 100644 --- a/flyteidl/clients/go/admin/tokenorchestrator/base_token_orchestrator.go +++ b/flyteidl/clients/go/admin/tokenorchestrator/base_token_orchestrator.go @@ -5,14 +5,14 @@ import ( "fmt" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "golang.org/x/oauth2" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/oauth" "github.com/flyteorg/flyte/flytestdlib/config" "github.com/flyteorg/flyte/flytestdlib/logger" - "github.com/flyteorg/flyteidl/clients/go/admin/cache" - "github.com/flyteorg/flyteidl/clients/go/admin/oauth" ) // BaseTokenOrchestrator implements the main logic to initiate device authorization flow diff --git a/flyteidl/clients/go/admin/tokenorchestrator/base_token_orchestrator_test.go b/flyteidl/clients/go/admin/tokenorchestrator/base_token_orchestrator_test.go index c68d2db6a3..ed4afa0ff0 100644 --- a/flyteidl/clients/go/admin/tokenorchestrator/base_token_orchestrator_test.go +++ b/flyteidl/clients/go/admin/tokenorchestrator/base_token_orchestrator_test.go @@ -11,12 +11,12 @@ import ( "github.com/stretchr/testify/mock" "golang.org/x/oauth2" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache" + cacheMocks "github.com/flyteorg/flyte/flyteidl/clients/go/admin/cache/mocks" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/mocks" + "github.com/flyteorg/flyte/flyteidl/clients/go/admin/oauth" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service" "github.com/flyteorg/flyte/flytestdlib/config" - "github.com/flyteorg/flyteidl/clients/go/admin/cache" - cacheMocks "github.com/flyteorg/flyteidl/clients/go/admin/cache/mocks" - "github.com/flyteorg/flyteidl/clients/go/admin/mocks" - "github.com/flyteorg/flyteidl/clients/go/admin/oauth" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service" ) func TestRefreshTheToken(t *testing.T) { diff --git a/flyteidl/clients/go/coreutils/extract_literal.go b/flyteidl/clients/go/coreutils/extract_literal.go index e3bf6b25cf..5801296dc3 100644 --- a/flyteidl/clients/go/coreutils/extract_literal.go +++ b/flyteidl/clients/go/coreutils/extract_literal.go @@ -24,7 +24,7 @@ package coreutils import ( "fmt" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) func ExtractFromLiteral(literal *core.Literal) (interface{}, error) { diff --git a/flyteidl/clients/go/coreutils/extract_literal_test.go b/flyteidl/clients/go/coreutils/extract_literal_test.go index 39855e8e5f..57ac565eb3 100644 --- a/flyteidl/clients/go/coreutils/extract_literal_test.go +++ b/flyteidl/clients/go/coreutils/extract_literal_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" structpb "github.com/golang/protobuf/ptypes/struct" "github.com/stretchr/testify/assert" diff --git a/flyteidl/clients/go/coreutils/literals.go b/flyteidl/clients/go/coreutils/literals.go index 48448dd4a0..a49fd88a95 100644 --- a/flyteidl/clients/go/coreutils/literals.go +++ b/flyteidl/clients/go/coreutils/literals.go @@ -10,8 +10,8 @@ import ( "strings" "time" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/jsonpb" "github.com/golang/protobuf/ptypes" diff --git a/flyteidl/clients/go/coreutils/literals_test.go b/flyteidl/clients/go/coreutils/literals_test.go index 751f776ab3..b9c5c27d69 100644 --- a/flyteidl/clients/go/coreutils/literals_test.go +++ b/flyteidl/clients/go/coreutils/literals_test.go @@ -12,8 +12,8 @@ import ( "github.com/go-test/deep" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyte/flytestdlib/storage" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/golang/protobuf/ptypes" structpb "github.com/golang/protobuf/ptypes/struct" diff --git a/flyteidl/clients/go/datacatalog/mocks/DataCatalogClient.go b/flyteidl/clients/go/datacatalog/mocks/DataCatalogClient.go index 28e347f66c..44e8b9c6fa 100644 --- a/flyteidl/clients/go/datacatalog/mocks/DataCatalogClient.go +++ b/flyteidl/clients/go/datacatalog/mocks/DataCatalogClient.go @@ -5,7 +5,7 @@ package mocks import ( context "context" - datacatalog "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog" + datacatalog "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog" grpc "google.golang.org/grpc" mock "github.com/stretchr/testify/mock" diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/agent.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/agent.pb.cc index 3948427bc8..3ca2f983e2 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/agent.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/agent.pb.cc @@ -405,14 +405,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fagent_2eproto[] = "ask_type\030\001 \001(\t\022\025\n\rresource_meta\030\002 \001(\014\"\024\n" "\022DeleteTaskResponse*^\n\005State\022\025\n\021RETRYABL" "E_FAILURE\020\000\022\025\n\021PERMANENT_FAILURE\020\001\022\013\n\007PE" - "NDING\020\002\022\013\n\007RUNNING\020\003\022\r\n\tSUCCEEDED\020\004B7Z5g" - "ithub.com/flyteorg/flyteidl/gen/pb-go/fl" - "yteidl/adminb\006proto3" + "NDING\020\002\022\013\n\007RUNNING\020\003\022\r\n\tSUCCEEDED\020\004B=Z;g" + "ithub.com/flyteorg/flyte/flyteidl/gen/pb" + "-go/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fagent_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fagent_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fagent_2eproto, - "flyteidl/admin/agent.proto", &assign_descriptors_table_flyteidl_2fadmin_2fagent_2eproto, 1420, + "flyteidl/admin/agent.proto", &assign_descriptors_table_flyteidl_2fadmin_2fagent_2eproto, 1426, }; void AddDescriptors_flyteidl_2fadmin_2fagent_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/cluster_assignment.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/cluster_assignment.pb.cc index 84784fabd5..2106999a3e 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/cluster_assignment.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/cluster_assignment.pb.cc @@ -71,14 +71,14 @@ ::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_fl const char descriptor_table_protodef_flyteidl_2fadmin_2fcluster_5fassignment_2eproto[] = "\n\'flyteidl/admin/cluster_assignment.prot" "o\022\016flyteidl.admin\":\n\021ClusterAssignment\022\031" - "\n\021cluster_pool_name\030\003 \001(\tJ\004\010\001\020\002J\004\010\002\020\003B7Z" - "5github.com/flyteorg/flyteidl/gen/pb-go/" - "flyteidl/adminb\006proto3" + "\n\021cluster_pool_name\030\003 \001(\tJ\004\010\001\020\002J\004\010\002\020\003B=Z" + ";github.com/flyteorg/flyte/flyteidl/gen/" + "pb-go/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fcluster_5fassignment_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fcluster_5fassignment_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fcluster_5fassignment_2eproto, - "flyteidl/admin/cluster_assignment.proto", &assign_descriptors_table_flyteidl_2fadmin_2fcluster_5fassignment_2eproto, 182, + "flyteidl/admin/cluster_assignment.proto", &assign_descriptors_table_flyteidl_2fadmin_2fcluster_5fassignment_2eproto, 188, }; void AddDescriptors_flyteidl_2fadmin_2fcluster_5fassignment_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/common.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/common.pb.cc index 2dd2d2376d..982f3fb6b7 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/common.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/common.pb.cc @@ -881,13 +881,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fcommon_2eproto[] = "\001 \001(\t\022\017\n\007outputs\030\002 \001(\t\022\014\n\004deck\030\003 \001(\t*\\\n\020" "NamedEntityState\022\027\n\023NAMED_ENTITY_ACTIVE\020" "\000\022\031\n\025NAMED_ENTITY_ARCHIVED\020\001\022\024\n\020SYSTEM_G" - "ENERATED\020\002B7Z5github.com/flyteorg/flytei" - "dl/gen/pb-go/flyteidl/adminb\006proto3" + "ENERATED\020\002B=Z;github.com/flyteorg/flyte/" + "flyteidl/gen/pb-go/flyteidl/adminb\006proto" + "3" ; ::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, 2795, + "flyteidl/admin/common.proto", &assign_descriptors_table_flyteidl_2fadmin_2fcommon_2eproto, 2801, }; void AddDescriptors_flyteidl_2fadmin_2fcommon_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/description_entity.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/description_entity.pb.cc index 5f2e78e8c7..cc0f10672a 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/description_entity.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/description_entity.pb.cc @@ -228,14 +228,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fdescription_5fentity_2ep "n.Sort*\215\001\n\021DescriptionFormat\022\036\n\032DESCRIPT" "ION_FORMAT_UNKNOWN\020\000\022\037\n\033DESCRIPTION_FORM" "AT_MARKDOWN\020\001\022\033\n\027DESCRIPTION_FORMAT_HTML" - "\020\002\022\032\n\026DESCRIPTION_FORMAT_RST\020\003B7Z5github" - ".com/flyteorg/flyteidl/gen/pb-go/flyteid" - "l/adminb\006proto3" + "\020\002\022\032\n\026DESCRIPTION_FORMAT_RST\020\003B=Z;github" + ".com/flyteorg/flyte/flyteidl/gen/pb-go/f" + "lyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fdescription_5fentity_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fdescription_5fentity_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fdescription_5fentity_2eproto, - "flyteidl/admin/description_entity.proto", &assign_descriptors_table_flyteidl_2fadmin_2fdescription_5fentity_2eproto, 1015, + "flyteidl/admin/description_entity.proto", &assign_descriptors_table_flyteidl_2fadmin_2fdescription_5fentity_2eproto, 1021, }; void AddDescriptors_flyteidl_2fadmin_2fdescription_5fentity_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/event.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/event.pb.cc index 32151d6da6..87191a9ca8 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/event.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/event.pb.cc @@ -318,14 +318,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fevent_2eproto[] = "ventResponse\"b\n\031TaskExecutionEventReques" "t\022\022\n\nrequest_id\030\001 \001(\t\0221\n\005event\030\002 \001(\0132\".f" "lyteidl.event.TaskExecutionEvent\"\034\n\032Task" - "ExecutionEventResponseB7Z5github.com/fly" - "teorg/flyteidl/gen/pb-go/flyteidl/adminb" - "\006proto3" + "ExecutionEventResponseB=Z;github.com/fly" + "teorg/flyte/flyteidl/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, 847, + "flyteidl/admin/event.proto", &assign_descriptors_table_flyteidl_2fadmin_2fevent_2eproto, 853, }; void AddDescriptors_flyteidl_2fadmin_2fevent_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/execution.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/execution.pb.cc index 912181feda..23298b14a7 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/execution.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/execution.pb.cc @@ -918,14 +918,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fexecution_2eproto[] = "\n\005depth\030\002 \001(\005\"H\n#WorkflowExecutionGetMet" "ricsResponse\022!\n\004span\030\001 \001(\0132\023.flyteidl.co" "re.Span*>\n\016ExecutionState\022\024\n\020EXECUTION_A" - "CTIVE\020\000\022\026\n\022EXECUTION_ARCHIVED\020\001B7Z5githu" - "b.com/flyteorg/flyteidl/gen/pb-go/flytei" - "dl/adminb\006proto3" + "CTIVE\020\000\022\026\n\022EXECUTION_ARCHIVED\020\001B=Z;githu" + "b.com/flyteorg/flyte/flyteidl/gen/pb-go/" + "flyteidl/adminb\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, 4616, + "flyteidl/admin/execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2fexecution_2eproto, 4622, }; void AddDescriptors_flyteidl_2fadmin_2fexecution_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/launch_plan.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/launch_plan.pb.cc index a0c5b2b23f..bcde2fea45 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/launch_plan.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/launch_plan.pb.cc @@ -501,13 +501,13 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2flaunch_5fplan_2eproto[] "main\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\010INACTIVE\020\000\022\n\n\006ACTI" - "VE\020\001B7Z5github.com/flyteorg/flyteidl/gen" - "/pb-go/flyteidl/adminb\006proto3" + "VE\020\001B=Z;github.com/flyteorg/flyte/flytei" + "dl/gen/pb-go/flyteidl/adminb\006proto3" ; ::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, 2389, + "flyteidl/admin/launch_plan.proto", &assign_descriptors_table_flyteidl_2fadmin_2flaunch_5fplan_2eproto, 2395, }; void AddDescriptors_flyteidl_2fadmin_2flaunch_5fplan_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc index 9da024066b..b38613ca8a 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/matchable_resource.pb.cc @@ -530,14 +530,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fmatchable_5fresource_2ep "UEUE\020\002\022\033\n\027EXECUTION_CLUSTER_LABEL\020\003\022$\n Q" "UALITY_OF_SERVICE_SPECIFICATION\020\004\022\023\n\017PLU" "GIN_OVERRIDE\020\005\022\035\n\031WORKFLOW_EXECUTION_CON" - "FIG\020\006\022\026\n\022CLUSTER_ASSIGNMENT\020\007B7Z5github." - "com/flyteorg/flyteidl/gen/pb-go/flyteidl" - "/adminb\006proto3" + "FIG\020\006\022\026\n\022CLUSTER_ASSIGNMENT\020\007B=Z;github." + "com/flyteorg/flyte/flyteidl/gen/pb-go/fl" + "yteidl/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, 2614, + "flyteidl/admin/matchable_resource.proto", &assign_descriptors_table_flyteidl_2fadmin_2fmatchable_5fresource_2eproto, 2620, }; void AddDescriptors_flyteidl_2fadmin_2fmatchable_5fresource_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/node_execution.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/node_execution.pb.cc index 1a175add0b..c35075a7a4 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/node_execution.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/node_execution.pb.cc @@ -517,14 +517,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fnode_5fexecution_2eproto "puts\030\004 \001(\0132\031.flyteidl.core.LiteralMap\022E\n" "\020dynamic_workflow\030\020 \001(\0132+.flyteidl.admin" ".DynamicWorkflowNodeMetadata\022-\n\nflyte_ur" - "ls\030\021 \001(\0132\031.flyteidl.admin.FlyteURLsB7Z5g" - "ithub.com/flyteorg/flyteidl/gen/pb-go/fl" - "yteidl/adminb\006proto3" + "ls\030\021 \001(\0132\031.flyteidl.admin.FlyteURLsB=Z;g" + "ithub.com/flyteorg/flyte/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, 2700, + "flyteidl/admin/node_execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2fnode_5fexecution_2eproto, 2706, }; void AddDescriptors_flyteidl_2fadmin_2fnode_5fexecution_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/notification.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/notification.pb.cc index 1dca62cf01..2807e63edf 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/notification.pb.cc +++ b/flyteidl/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(\tB7Z5githu" - "b.com/flyteorg/flyteidl/gen/pb-go/flytei" - "dl/adminb\006proto3" + "ubject_line\030\003 \001(\t\022\014\n\004body\030\004 \001(\tB=Z;githu" + "b.com/flyteorg/flyte/flyteidl/gen/pb-go/" + "flyteidl/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, 216, + "flyteidl/admin/notification.proto", &assign_descriptors_table_flyteidl_2fadmin_2fnotification_2eproto, 222, }; void AddDescriptors_flyteidl_2fadmin_2fnotification_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/project.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/project.pb.cc index 16932307c7..979041c005 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/project.pb.cc +++ b/flyteidl/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\025ProjectUpdateResponseB7Z5github.com" - "/flyteorg/flyteidl/gen/pb-go/flyteidl/ad" - "minb\006proto3" + "e\"\027\n\025ProjectUpdateResponseB=Z;github.com" + "/flyteorg/flyte/flyteidl/gen/pb-go/flyte" + "idl/adminb\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, 731, + "flyteidl/admin/project.proto", &assign_descriptors_table_flyteidl_2fadmin_2fproject_2eproto, 737, }; void AddDescriptors_flyteidl_2fadmin_2fproject_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/project_attributes.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/project_attributes.pb.cc index ac548e5d6c..ad78bb68cf 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/project_attributes.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/project_attributes.pb.cc @@ -253,14 +253,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fproject_5fattributes_2ep "\n\036ProjectAttributesDeleteRequest\022\017\n\007proj" "ect\030\001 \001(\t\0228\n\rresource_type\030\002 \001(\0162!.flyte" "idl.admin.MatchableResource\"!\n\037ProjectAt" - "tributesDeleteResponseB7Z5github.com/fly" - "teorg/flyteidl/gen/pb-go/flyteidl/adminb" - "\006proto3" + "tributesDeleteResponseB=Z;github.com/fly" + "teorg/flyte/flyteidl/gen/pb-go/flyteidl/" + "adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fproject_5fattributes_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fproject_5fattributes_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fproject_5fattributes_2eproto, - "flyteidl/admin/project_attributes.proto", &assign_descriptors_table_flyteidl_2fadmin_2fproject_5fattributes_2eproto, 727, + "flyteidl/admin/project_attributes.proto", &assign_descriptors_table_flyteidl_2fadmin_2fproject_5fattributes_2eproto, 733, }; void AddDescriptors_flyteidl_2fadmin_2fproject_5fattributes_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/project_domain_attributes.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/project_domain_attributes.pb.cc index dfb07e0b83..6de4670235 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/project_domain_attributes.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/project_domain_attributes.pb.cc @@ -259,13 +259,14 @@ 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" - "leteResponseB7Z5github.com/flyteorg/flyt" - "eidl/gen/pb-go/flyteidl/adminb\006proto3" + "leteResponseB=Z;github.com/flyteorg/flyt" + "e/flyteidl/gen/pb-go/flyteidl/adminb\006pro" + "to3" ; ::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, 837, + "flyteidl/admin/project_domain_attributes.proto", &assign_descriptors_table_flyteidl_2fadmin_2fproject_5fdomain_5fattributes_2eproto, 843, }; void AddDescriptors_flyteidl_2fadmin_2fproject_5fdomain_5fattributes_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/schedule.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/schedule.pb.cc index 42e7ff2b58..d9bae84100 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/schedule.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/schedule.pb.cc @@ -146,13 +146,14 @@ 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\002B7Z5github.com/flyteorg/fl" - "yteidl/gen/pb-go/flyteidl/adminb\006proto3" + "OUR\020\001\022\007\n\003DAY\020\002B=Z;github.com/flyteorg/fl" + "yte/flyteidl/gen/pb-go/flyteidl/adminb\006p" + "roto3" ; ::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, 479, + "flyteidl/admin/schedule.proto", &assign_descriptors_table_flyteidl_2fadmin_2fschedule_2eproto, 485, }; void AddDescriptors_flyteidl_2fadmin_2fschedule_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/signal.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/signal.pb.cc index ae7a31a1a0..47c42bcf4e 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/signal.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/signal.pb.cc @@ -247,14 +247,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fsignal_2eproto[] = "ignalSetResponse\"\206\001\n\006Signal\022+\n\002id\030\001 \001(\0132" "\037.flyteidl.core.SignalIdentifier\022(\n\004type" "\030\002 \001(\0132\032.flyteidl.core.LiteralType\022%\n\005va" - "lue\030\003 \001(\0132\026.flyteidl.core.LiteralB7Z5git" - "hub.com/flyteorg/flyteidl/gen/pb-go/flyt" - "eidl/adminb\006proto3" + "lue\030\003 \001(\0132\026.flyteidl.core.LiteralB=Z;git" + "hub.com/flyteorg/flyte/flyteidl/gen/pb-g" + "o/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fsignal_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fsignal_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fsignal_2eproto, - "flyteidl/admin/signal.proto", &assign_descriptors_table_flyteidl_2fadmin_2fsignal_2eproto, 858, + "flyteidl/admin/signal.proto", &assign_descriptors_table_flyteidl_2fadmin_2fsignal_2eproto, 864, }; void AddDescriptors_flyteidl_2fadmin_2fsignal_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/task.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/task.pb.cc index 8cbbf7f154..dfedf780d5 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/task.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/task.pb.cc @@ -244,14 +244,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2ftask_2eproto[] = "idl.admin.DescriptionEntity\"q\n\013TaskClosu" "re\0222\n\rcompiled_task\030\001 \001(\0132\033.flyteidl.cor" "e.CompiledTask\022.\n\ncreated_at\030\002 \001(\0132\032.goo" - "gle.protobuf.TimestampB7Z5github.com/fly" - "teorg/flyteidl/gen/pb-go/flyteidl/adminb" - "\006proto3" + "gle.protobuf.TimestampB=Z;github.com/fly" + "teorg/flyte/flyteidl/gen/pb-go/flyteidl/" + "adminb\006proto3" ; ::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, 807, + "flyteidl/admin/task.proto", &assign_descriptors_table_flyteidl_2fadmin_2ftask_2eproto, 813, }; void AddDescriptors_flyteidl_2fadmin_2ftask_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/task_execution.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/task_execution.pb.cc index 92e0ce3ae9..ad02254db8 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/task_execution.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/task_execution.pb.cc @@ -370,13 +370,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2ftask_5fexecution_2eproto "ts\030\003 \001(\0132\031.flyteidl.core.LiteralMap\022/\n\014f" "ull_outputs\030\004 \001(\0132\031.flyteidl.core.Litera" "lMap\022-\n\nflyte_urls\030\005 \001(\0132\031.flyteidl.admi" - "n.FlyteURLsB7Z5github.com/flyteorg/flyte" - "idl/gen/pb-go/flyteidl/adminb\006proto3" + "n.FlyteURLsB=Z;github.com/flyteorg/flyte" + "/flyteidl/gen/pb-go/flyteidl/adminb\006prot" + "o3" ; ::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, 1956, + "flyteidl/admin/task_execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2ftask_5fexecution_2eproto, 1962, }; void AddDescriptors_flyteidl_2fadmin_2ftask_5fexecution_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/version.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/version.pb.cc index 205ba1709c..a135d06626 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/version.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/version.pb.cc @@ -131,13 +131,13 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fversion_2eproto[] = "plane_version\030\001 \001(\0132\027.flyteidl.admin.Ver" "sion\"<\n\007Version\022\r\n\005Build\030\001 \001(\t\022\017\n\007Versio" "n\030\002 \001(\t\022\021\n\tBuildTime\030\003 \001(\t\"\023\n\021GetVersion" - "RequestB7Z5github.com/flyteorg/flyteidl/" - "gen/pb-go/flyteidl/adminb\006proto3" + "RequestB=Z;github.com/flyteorg/flyte/fly" + "teidl/gen/pb-go/flyteidl/adminb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fversion_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fversion_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fversion_2eproto, - "flyteidl/admin/version.proto", &assign_descriptors_table_flyteidl_2fadmin_2fversion_2eproto, 272, + "flyteidl/admin/version.proto", &assign_descriptors_table_flyteidl_2fadmin_2fversion_2eproto, 278, }; void AddDescriptors_flyteidl_2fadmin_2fversion_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/workflow.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/workflow.pb.cc index dbe431e07d..f3b09dede9 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/workflow.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/workflow.pb.cc @@ -349,13 +349,14 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fworkflow_2eproto[] = "ErrorExistsDifferentStructureH\000\022[\n\032exist" "s_identical_structure\030\002 \001(\01325.flyteidl.a" "dmin.WorkflowErrorExistsIdenticalStructu" - "reH\000B\010\n\006reasonB7Z5github.com/flyteorg/fl" - "yteidl/gen/pb-go/flyteidl/adminb\006proto3" + "reH\000B\010\n\006reasonB=Z;github.com/flyteorg/fl" + "yte/flyteidl/gen/pb-go/flyteidl/adminb\006p" + "roto3" ; ::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, 1319, + "flyteidl/admin/workflow.proto", &assign_descriptors_table_flyteidl_2fadmin_2fworkflow_2eproto, 1325, }; void AddDescriptors_flyteidl_2fadmin_2fworkflow_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/workflow_attributes.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/workflow_attributes.pb.cc index 40799c444a..0a85bfeb1d 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/workflow_attributes.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/workflow_attributes.pb.cc @@ -262,14 +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" - "tesDeleteResponseB7Z5github.com/flyteorg" - "/flyteidl/gen/pb-go/flyteidl/adminb\006prot" - "o3" + "tesDeleteResponseB=Z;github.com/flyteorg" + "/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "b\006proto3" ; ::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, 842, + "flyteidl/admin/workflow_attributes.proto", &assign_descriptors_table_flyteidl_2fadmin_2fworkflow_5fattributes_2eproto, 848, }; void AddDescriptors_flyteidl_2fadmin_2fworkflow_5fattributes_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/core/catalog.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/core/catalog.pb.cc index 4cd7dab861..e366a80acd 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/core/catalog.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/core/catalog.pb.cc @@ -149,14 +149,14 @@ const char descriptor_table_protodef_flyteidl_2fcore_2fcatalog_2eproto[] = "logCacheStatus\022\022\n\016CACHE_DISABLED\020\000\022\016\n\nCA" "CHE_MISS\020\001\022\r\n\tCACHE_HIT\020\002\022\023\n\017CACHE_POPUL" "ATED\020\003\022\030\n\024CACHE_LOOKUP_FAILURE\020\004\022\025\n\021CACH" - "E_PUT_FAILURE\020\005\022\021\n\rCACHE_SKIPPED\020\006B6Z4gi" - "thub.com/flyteorg/flyteidl/gen/pb-go/fly" - "teidl/coreb\006proto3" + "E_PUT_FAILURE\020\005\022\021\n\rCACHE_SKIPPED\020\006B.flyteidl.plu" "gins.sagemaker.TrainingJobEarlyStoppingT" - "ype.ValueB9Z7github.com/flyteorg/flyteid" - "l/gen/pb-go/flyteidl/pluginsb\006proto3" + "ype.ValueB\?Z=github.com/flyteorg/flyte/f" + "lyteidl/gen/pb-go/flyteidl/pluginsb\006prot" + "o3" ; ::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, 1156, + "flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto", &assign_descriptors_table_flyteidl_2fplugins_2fsagemaker_2fhyperparameter_5ftuning_5fjob_2eproto, 1162, }; void AddDescriptors_flyteidl_2fplugins_2fsagemaker_2fhyperparameter_5ftuning_5fjob_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/plugins/sagemaker/parameter_ranges.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/plugins/sagemaker/parameter_ranges.pb.cc index aa81114738..6933bc399b 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/plugins/sagemaker/parameter_ranges.pb.cc +++ b/flyteidl/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\001B9Z7github.com" - "/flyteorg/flyteidl/gen/pb-go/flyteidl/pl" - "uginsb\006proto3" + "er.ParameterRangeOneOf:\0028\001B\?Z=github.com" + "/flyteorg/flyte/flyteidl/gen/pb-go/flyte" + "idl/pluginsb\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, 1133, + "flyteidl/plugins/sagemaker/parameter_ranges.proto", &assign_descriptors_table_flyteidl_2fplugins_2fsagemaker_2fparameter_5franges_2eproto, 1139, }; void AddDescriptors_flyteidl_2fplugins_2fsagemaker_2fparameter_5franges_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/plugins/sagemaker/training_job.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/plugins/sagemaker/training_job.pb.cc index 2c23f51ed7..043486c450 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/plugins/sagemaker/training_job.pb.cc +++ b/flyteidl/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" - "9Z7github.com/flyteorg/flyteidl/gen/pb-g" - "o/flyteidl/pluginsb\006proto3" + "\?Z=github.com/flyteorg/flyte/flyteidl/ge" + "n/pb-go/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, 1146, + "flyteidl/plugins/sagemaker/training_job.proto", &assign_descriptors_table_flyteidl_2fplugins_2fsagemaker_2ftraining_5fjob_2eproto, 1152, }; void AddDescriptors_flyteidl_2fplugins_2fsagemaker_2ftraining_5fjob_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/plugins/spark.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/plugins/spark.pb.cc index 60f8d21c9e..8cb82c83b5 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/plugins/spark.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/plugins/spark.pb.cc @@ -182,14 +182,14 @@ const char descriptor_table_protodef_flyteidl_2fplugins_2fspark_2eproto[] = "icksToken\030\010 \001(\t\022\032\n\022databricksInstance\030\t " "\001(\t\0320\n\016SparkConfEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005va" "lue\030\002 \001(\t:\0028\001\0321\n\017HadoopConfEntry\022\013\n\003key\030" - "\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B9Z7github.com/f" - "lyteorg/flyteidl/gen/pb-go/flyteidl/plug" - "insb\006proto3" + "\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B\?Z=github.com/f" + "lyteorg/flyte/flyteidl/gen/pb-go/flyteid" + "l/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, 691, + "flyteidl/plugins/spark.proto", &assign_descriptors_table_flyteidl_2fplugins_2fspark_2eproto, 697, }; void AddDescriptors_flyteidl_2fplugins_2fspark_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/plugins/tensorflow.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/plugins/tensorflow.pb.cc index 9dae11c1a2..7d01fad6e2 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/plugins/tensorflow.pb.cc +++ b/flyteidl/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(\005B9Z7gith" - "ub.com/flyteorg/flyteidl/gen/pb-go/flyte" - "idl/pluginsb\006proto3" + "as\030\002 \001(\005\022\026\n\016chief_replicas\030\003 \001(\005B\?Z=gith" + "ub.com/flyteorg/flyte/flyteidl/gen/pb-go" + "/flyteidl/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, 219, + "flyteidl/plugins/tensorflow.proto", &assign_descriptors_table_flyteidl_2fplugins_2ftensorflow_2eproto, 225, }; void AddDescriptors_flyteidl_2fplugins_2ftensorflow_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/plugins/waitable.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/plugins/waitable.pb.cc index e6d61ed998..da360d5ab5 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/plugins/waitable.pb.cc +++ b/flyteidl/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(\tB9Z7github.co" - "m/flyteorg/flyteidl/gen/pb-go/flyteidl/p" - "luginsb\006proto3" + ".Phase\022\023\n\013workflow_id\030\003 \001(\tB\?Z=github.co" + "m/flyteorg/flyte/flyteidl/gen/pb-go/flyt" + "eidl/pluginsb\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, 334, + "flyteidl/plugins/waitable.proto", &assign_descriptors_table_flyteidl_2fplugins_2fwaitable_2eproto, 340, }; void AddDescriptors_flyteidl_2fplugins_2fwaitable_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc index efbf98757c..991c8bb312 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/service/admin.pb.cc @@ -301,14 +301,14 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fadmin_2eproto[] = "orkflowExecutionGetMetricsRequest\0323.flyt" "eidl.admin.WorkflowExecutionGetMetricsRe" "sponse\"E\202\323\344\223\002\?\022=/api/v1/metrics/executio" - "ns/{id.project}/{id.domain}/{id.name}B9Z" - "7github.com/flyteorg/flyteidl/gen/pb-go/" - "flyteidl/serviceb\006proto3" + "ns/{id.project}/{id.domain}/{id.name}B\?Z" + "=github.com/flyteorg/flyte/flyteidl/gen/" + "pb-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, 10664, + "flyteidl/service/admin.proto", &assign_descriptors_table_flyteidl_2fservice_2fadmin_2eproto, 10670, }; void AddDescriptors_flyteidl_2fservice_2fadmin_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/service/agent.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/service/agent.pb.cc index e4b6c0ebb1..4963d13cc8 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/service/agent.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/service/agent.pb.cc @@ -45,14 +45,14 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fagent_2eproto[] = "lyteidl.admin.GetTaskRequest\032\037.flyteidl." "admin.GetTaskResponse\"\000\022U\n\nDeleteTask\022!." "flyteidl.admin.DeleteTaskRequest\032\".flyte" - "idl.admin.DeleteTaskResponse\"\000B9Z7github" - ".com/flyteorg/flyteidl/gen/pb-go/flyteid" - "l/serviceb\006proto3" + "idl.admin.DeleteTaskResponse\"\000B\?Z=github" + ".com/flyteorg/flyte/flyteidl/gen/pb-go/f" + "lyteidl/serviceb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fservice_2fagent_2eproto = { false, InitDefaults_flyteidl_2fservice_2fagent_2eproto, descriptor_table_protodef_flyteidl_2fservice_2fagent_2eproto, - "flyteidl/service/agent.proto", &assign_descriptors_table_flyteidl_2fservice_2fagent_2eproto, 417, + "flyteidl/service/agent.proto", &assign_descriptors_table_flyteidl_2fservice_2fagent_2eproto, 423, }; void AddDescriptors_flyteidl_2fservice_2fagent_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/service/auth.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/service/auth.pb.cc index e1fa458ebb..d505a960aa 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/service/auth.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/service/auth.pb.cc @@ -186,14 +186,14 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fauth_2eproto[] = "ClientConfig\022/.flyteidl.service.PublicCl" "ientAuthConfigRequest\0320.flyteidl.service" ".PublicClientAuthConfigResponse\"\037\202\323\344\223\002\031\022" - "\027/config/v1/flyte_clientB9Z7github.com/f" - "lyteorg/flyteidl/gen/pb-go/flyteidl/serv" - "iceb\006proto3" + "\027/config/v1/flyte_clientB\?Z=github.com/f" + "lyteorg/flyte/flyteidl/gen/pb-go/flyteid" + "l/serviceb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fservice_2fauth_2eproto = { false, InitDefaults_flyteidl_2fservice_2fauth_2eproto, descriptor_table_protodef_flyteidl_2fservice_2fauth_2eproto, - "flyteidl/service/auth.proto", &assign_descriptors_table_flyteidl_2fservice_2fauth_2eproto, 1051, + "flyteidl/service/auth.proto", &assign_descriptors_table_flyteidl_2fservice_2fauth_2eproto, 1057, }; void AddDescriptors_flyteidl_2fservice_2fauth_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/service/dataproxy.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/service/dataproxy.pb.cc index 4fad4d2301..bf07425eb0 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/service/dataproxy.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/service/dataproxy.pb.cc @@ -374,14 +374,14 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fdataproxy_2eproto[] = "Response\"*\202\323\344\223\002$\"\037/api/v1/dataproxy/arti" "fact_link:\001*\022d\n\007GetData\022 .flyteidl.servi" "ce.GetDataRequest\032!.flyteidl.service.Get" - "DataResponse\"\024\202\323\344\223\002\016\022\014/api/v1/dataB9Z7gi" - "thub.com/flyteorg/flyteidl/gen/pb-go/fly" - "teidl/serviceb\006proto3" + "DataResponse\"\024\202\323\344\223\002\016\022\014/api/v1/dataB\?Z=gi" + "thub.com/flyteorg/flyte/flyteidl/gen/pb-" + "go/flyteidl/serviceb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fservice_2fdataproxy_2eproto = { false, InitDefaults_flyteidl_2fservice_2fdataproxy_2eproto, descriptor_table_protodef_flyteidl_2fservice_2fdataproxy_2eproto, - "flyteidl/service/dataproxy.proto", &assign_descriptors_table_flyteidl_2fservice_2fdataproxy_2eproto, 2141, + "flyteidl/service/dataproxy.proto", &assign_descriptors_table_flyteidl_2fservice_2fdataproxy_2eproto, 2147, }; void AddDescriptors_flyteidl_2fservice_2fdataproxy_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/service/external_plugin_service.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/service/external_plugin_service.pb.cc index f353dcdd01..5dee118038 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/service/external_plugin_service.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/service/external_plugin_service.pb.cc @@ -237,14 +237,14 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fexternal_5fplugin_5fse "GetRequest\032!.flyteidl.service.TaskGetRes" "ponse\"\003\210\002\001\022\\\n\nDeleteTask\022#.flyteidl.serv" "ice.TaskDeleteRequest\032$.flyteidl.service" - ".TaskDeleteResponse\"\003\210\002\001B9Z7github.com/f" - "lyteorg/flyteidl/gen/pb-go/flyteidl/serv" - "iceb\006proto3" + ".TaskDeleteResponse\"\003\210\002\001B\?Z=github.com/f" + "lyteorg/flyte/flyteidl/gen/pb-go/flyteid" + "l/serviceb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fservice_2fexternal_5fplugin_5fservice_2eproto = { false, InitDefaults_flyteidl_2fservice_2fexternal_5fplugin_5fservice_2eproto, descriptor_table_protodef_flyteidl_2fservice_2fexternal_5fplugin_5fservice_2eproto, - "flyteidl/service/external_plugin_service.proto", &assign_descriptors_table_flyteidl_2fservice_2fexternal_5fplugin_5fservice_2eproto, 1051, + "flyteidl/service/external_plugin_service.proto", &assign_descriptors_table_flyteidl_2fservice_2fexternal_5fplugin_5fservice_2eproto, 1057, }; void AddDescriptors_flyteidl_2fservice_2fexternal_5fplugin_5fservice_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/service/identity.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/service/identity.pb.cc index 3784a7fe5f..c17f9bd542 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/service/identity.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/service/identity.pb.cc @@ -115,13 +115,14 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fidentity_2eproto[] = "protobuf.Struct2q\n\017IdentityService\022^\n\010Us" "erInfo\022!.flyteidl.service.UserInfoReques" "t\032\".flyteidl.service.UserInfoResponse\"\013\202" - "\323\344\223\002\005\022\003/meB9Z7github.com/flyteorg/flytei" - "dl/gen/pb-go/flyteidl/serviceb\006proto3" + "\323\344\223\002\005\022\003/meB\?Z=github.com/flyteorg/flyte/" + "flyteidl/gen/pb-go/flyteidl/serviceb\006pro" + "to3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fservice_2fidentity_2eproto = { false, InitDefaults_flyteidl_2fservice_2fidentity_2eproto, descriptor_table_protodef_flyteidl_2fservice_2fidentity_2eproto, - "flyteidl/service/identity.proto", &assign_descriptors_table_flyteidl_2fservice_2fidentity_2eproto, 517, + "flyteidl/service/identity.proto", &assign_descriptors_table_flyteidl_2fservice_2fidentity_2eproto, 523, }; void AddDescriptors_flyteidl_2fservice_2fidentity_2eproto() { diff --git a/flyteidl/gen/pb-cpp/flyteidl/service/signal.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/service/signal.pb.cc index d14ebe8e32..a1f4aa5982 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/service/signal.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/service/signal.pb.cc @@ -50,13 +50,13 @@ const char descriptor_table_protodef_flyteidl_2fservice_2fsignal_2eproto[] = "on_id.name}\022l\n\tSetSignal\022 .flyteidl.admi" "n.SignalSetRequest\032!.flyteidl.admin.Sign" "alSetResponse\"\032\202\323\344\223\002\024\"\017/api/v1/signals:\001" - "*B9Z7github.com/flyteorg/flyteidl/gen/pb" - "-go/flyteidl/serviceb\006proto3" + "*B\?Z=github.com/flyteorg/flyte/flyteidl/" + "gen/pb-go/flyteidl/serviceb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fservice_2fsignal_2eproto = { false, InitDefaults_flyteidl_2fservice_2fsignal_2eproto, descriptor_table_protodef_flyteidl_2fservice_2fsignal_2eproto, - "flyteidl/service/signal.proto", &assign_descriptors_table_flyteidl_2fservice_2fsignal_2eproto, 588, + "flyteidl/service/signal.proto", &assign_descriptors_table_flyteidl_2fservice_2fsignal_2eproto, 594, }; void AddDescriptors_flyteidl_2fservice_2fsignal_2eproto() { diff --git a/flyteidl/gen/pb-go/flyteidl/admin/agent.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/agent.pb.go index 21152a7c99..0e4c7bb72b 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/agent.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/agent.pb.go @@ -5,9 +5,10 @@ package admin import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - proto "github.com/golang/protobuf/proto" math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -494,51 +495,51 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/agent.proto", fileDescriptor_c434e52bb0028071) } var fileDescriptor_c434e52bb0028071 = []byte{ - // 724 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0x5d, 0x6f, 0xe2, 0x46, + // 726 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0xed, 0x6e, 0xe2, 0x46, 0x14, 0x2d, 0x10, 0x08, 0x5c, 0xf2, 0x01, 0xd3, 0xa0, 0x3a, 0x24, 0xad, 0x22, 0xaa, 0x56, 0x51, - 0xab, 0x1a, 0x85, 0xb4, 0x4d, 0xd2, 0x87, 0x56, 0x24, 0xb8, 0x08, 0x89, 0xa0, 0x68, 0x02, 0x55, - 0x5b, 0xa9, 0x45, 0x83, 0xb9, 0xb0, 0x16, 0x66, 0xec, 0xf5, 0x8c, 0x51, 0x78, 0xde, 0x3f, 0xb1, - 0x3f, 0x77, 0xe5, 0xf1, 0x47, 0x00, 0xb1, 0xab, 0x44, 0xfb, 0x86, 0xef, 0x39, 0xf7, 0xcc, 0x99, - 0x73, 0xaf, 0x0d, 0x54, 0x27, 0xf6, 0x52, 0xa2, 0x35, 0xb6, 0xeb, 0x6c, 0x3c, 0xb7, 0x78, 0x9d, - 0x4d, 0x91, 0x4b, 0xdd, 0xf5, 0x1c, 0xe9, 0x90, 0x83, 0x18, 0xd3, 0x15, 0x56, 0x3d, 0x4d, 0xb8, - 0xa6, 0xe3, 0x61, 0xdd, 0xb6, 0x24, 0x7a, 0xcc, 0x16, 0x21, 0xbb, 0x7a, 0xbc, 0x8e, 0x4a, 0x26, - 0x66, 0x31, 0xf4, 0xf5, 0x3a, 0x64, 0x71, 0x89, 0xde, 0x84, 0x99, 0x18, 0xc1, 0xdf, 0x6c, 0xc0, - 0x63, 0xe4, 0xd2, 0x9a, 0x58, 0xe8, 0x85, 0x78, 0xed, 0x7d, 0x16, 0x2a, 0x7d, 0x26, 0x66, 0xc6, - 0x13, 0x9a, 0xbe, 0xb4, 0x1c, 0x7e, 0x8f, 0x92, 0x8d, 0x99, 0x64, 0x84, 0x42, 0x39, 0x38, 0x67, - 0x88, 0x31, 0x32, 0xb4, 0xc6, 0x5a, 0xea, 0x2c, 0x75, 0x5e, 0x6c, 0x7c, 0xaf, 0x27, 0xee, 0x03, - 0x55, 0x7d, 0x4d, 0xa0, 0x93, 0x1c, 0x41, 0x0f, 0xe5, 0x3a, 0x40, 0x4e, 0xa1, 0xc0, 0xd9, 0x1c, - 0x85, 0xcb, 0x4c, 0xd4, 0xd2, 0x67, 0xa9, 0xf3, 0x02, 0x7d, 0x2e, 0x90, 0x0e, 0xe4, 0x6c, 0x36, - 0x42, 0x5b, 0x68, 0x99, 0xb3, 0xcc, 0x79, 0xb1, 0x71, 0xa1, 0xaf, 0x87, 0xa4, 0x6f, 0x35, 0xaa, - 0x77, 0x55, 0x8f, 0xc1, 0xa5, 0xb7, 0xa4, 0x91, 0x00, 0xf9, 0x1b, 0x8a, 0x8c, 0x73, 0x47, 0xb2, - 0x80, 0x29, 0xb4, 0x1d, 0xa5, 0xf7, 0xeb, 0xcb, 0xf4, 0x9a, 0xcf, 0x8d, 0xa1, 0xe8, 0xaa, 0x14, - 0xd1, 0xe1, 0xcb, 0xd9, 0xb5, 0x18, 0x0a, 0xf4, 0x16, 0x96, 0x89, 0x43, 0x66, 0x9a, 0x8e, 0xcf, - 0xa5, 0x96, 0x55, 0x97, 0x29, 0xcf, 0xae, 0xc5, 0x63, 0x88, 0x34, 0x43, 0x80, 0x48, 0xa8, 0x20, - 0x5f, 0x58, 0x9e, 0xc3, 0xe7, 0xc8, 0xe5, 0x70, 0xc1, 0x3c, 0x8b, 0x8d, 0x6c, 0x14, 0x5a, 0x4e, - 0x79, 0xfa, 0xe3, 0x65, 0x9e, 0x8c, 0x67, 0x89, 0xbf, 0x62, 0x85, 0xd0, 0xdc, 0x11, 0x6e, 0x81, - 0xaa, 0x37, 0x50, 0x5c, 0x89, 0x85, 0x94, 0x20, 0x33, 0xc3, 0xa5, 0x9a, 0x5e, 0x81, 0x06, 0x3f, - 0xc9, 0x11, 0x64, 0x17, 0xcc, 0xf6, 0xe3, 0x29, 0x84, 0x0f, 0xbf, 0xa5, 0xaf, 0x53, 0xd5, 0xdf, - 0xa1, 0xb4, 0x99, 0xc0, 0xab, 0xfa, 0xdb, 0x70, 0xfc, 0x51, 0xb7, 0xaf, 0x11, 0xaa, 0xbd, 0x4b, - 0x43, 0xf9, 0xce, 0x43, 0x26, 0x31, 0xc8, 0x84, 0xe2, 0x5b, 0x1f, 0x85, 0x24, 0x17, 0x90, 0xb3, - 0xb8, 0xeb, 0x4b, 0x11, 0xed, 0xe2, 0xf1, 0xc6, 0x2e, 0x76, 0xc3, 0x37, 0xe7, 0x9e, 0xb9, 0x34, - 0x22, 0x92, 0x2b, 0xc8, 0x4b, 0x9c, 0xbb, 0x36, 0x93, 0xe1, 0x29, 0xc5, 0xc6, 0xc9, 0x96, 0x05, - 0xee, 0x47, 0x14, 0x9a, 0x90, 0xc9, 0xb7, 0xb0, 0xef, 0xf8, 0xd2, 0xf5, 0xe5, 0xd0, 0xf5, 0x70, - 0x62, 0x3d, 0x69, 0x19, 0xe5, 0x71, 0x2f, 0x2c, 0x3e, 0xa8, 0x1a, 0xf9, 0x0f, 0xbe, 0xda, 0x78, - 0x4f, 0xe6, 0xd1, 0xd4, 0xb4, 0x1d, 0x75, 0xd8, 0x77, 0x2f, 0x1a, 0x31, 0xad, 0xc8, 0x6d, 0xe5, - 0xda, 0x0d, 0x90, 0xd5, 0x10, 0x84, 0xeb, 0x70, 0xa1, 0x9c, 0x79, 0x28, 0x1c, 0xdf, 0x33, 0x51, - 0x1d, 0xa7, 0xc2, 0xd8, 0xa3, 0x7b, 0x71, 0x31, 0x68, 0xaf, 0x51, 0x38, 0x68, 0xa3, 0x5c, 0x0d, - 0xef, 0x04, 0x0a, 0xca, 0xab, 0x5c, 0xba, 0x18, 0x0d, 0x21, 0x1f, 0x14, 0xfa, 0x4b, 0x77, 0x8b, - 0x66, 0x7a, 0x8b, 0x66, 0x1b, 0x0e, 0x13, 0xcd, 0xc8, 0xcb, 0xcf, 0x90, 0x8f, 0x29, 0xd1, 0x4c, - 0xb4, 0xcd, 0x1b, 0xd3, 0x08, 0xa7, 0x09, 0xb3, 0x66, 0x43, 0x3e, 0xae, 0x92, 0x1f, 0x21, 0x2b, - 0x64, 0x30, 0x9d, 0xa0, 0xfd, 0xa0, 0x51, 0xd9, 0x6c, 0x7f, 0x0c, 0x40, 0x1a, 0x72, 0xc8, 0x25, - 0xec, 0x86, 0xf9, 0x8b, 0x68, 0x98, 0x9f, 0xd8, 0x80, 0x98, 0x59, 0x1b, 0x40, 0xb9, 0x85, 0x36, - 0xae, 0xaf, 0xd2, 0xe7, 0xa7, 0x71, 0x04, 0x64, 0x55, 0x36, 0x0c, 0xe4, 0x87, 0xff, 0x21, 0xab, - 0x1c, 0x93, 0x0a, 0x94, 0xa9, 0xd1, 0xa7, 0xff, 0x34, 0x6f, 0xbb, 0xc6, 0xf0, 0xcf, 0x66, 0xa7, - 0x3b, 0xa0, 0x46, 0xe9, 0x8b, 0xa0, 0xfc, 0x60, 0xd0, 0xfb, 0x66, 0xcf, 0xe8, 0xf5, 0x93, 0x72, - 0x8a, 0x14, 0x61, 0xf7, 0xc1, 0xe8, 0xb5, 0x3a, 0xbd, 0x76, 0x29, 0x1d, 0x3c, 0xd0, 0x41, 0xaf, - 0x17, 0x3c, 0x64, 0xc8, 0x3e, 0x14, 0x1e, 0x07, 0x77, 0x77, 0x86, 0xd1, 0x32, 0x5a, 0xa5, 0x9d, - 0xdb, 0xab, 0x7f, 0x7f, 0x99, 0x5a, 0xf2, 0x8d, 0x3f, 0xd2, 0x4d, 0x67, 0x5e, 0x57, 0x97, 0x77, - 0xbc, 0x69, 0x3d, 0xf9, 0xd2, 0x4f, 0x91, 0xd7, 0xdd, 0xd1, 0x4f, 0x53, 0xa7, 0xbe, 0xfe, 0x07, - 0x34, 0xca, 0xa9, 0x6f, 0xfe, 0xe5, 0x87, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe4, 0x4c, 0xa8, 0x65, - 0x99, 0x06, 0x00, 0x00, + 0xab, 0x1a, 0x85, 0x54, 0x6d, 0xd2, 0xaa, 0xad, 0x48, 0x70, 0x11, 0x12, 0x41, 0xd1, 0x04, 0xaa, + 0xb6, 0xd2, 0x2e, 0x1a, 0xcc, 0x85, 0xb5, 0x30, 0x63, 0xaf, 0x67, 0x8c, 0xc2, 0xef, 0x7d, 0x89, + 0x7d, 0xdc, 0x95, 0xc7, 0x1f, 0x01, 0xc4, 0xae, 0x12, 0xed, 0x3f, 0xcf, 0x3d, 0xe7, 0x9e, 0x39, + 0x73, 0xee, 0xd8, 0x86, 0xea, 0xc4, 0x5e, 0x4a, 0xb4, 0xc6, 0x76, 0x9d, 0x8d, 0xe7, 0x16, 0xaf, + 0xb3, 0x29, 0x72, 0xa9, 0xbb, 0x9e, 0x23, 0x1d, 0x72, 0x10, 0x63, 0xba, 0xc2, 0xaa, 0xa7, 0x09, + 0xd7, 0x74, 0x3c, 0xac, 0xdb, 0x96, 0x44, 0x8f, 0xd9, 0x22, 0x64, 0x57, 0x8f, 0xd7, 0x51, 0xc9, + 0xc4, 0x2c, 0x86, 0xbe, 0x5e, 0x87, 0x2c, 0x2e, 0xd1, 0x9b, 0x30, 0x13, 0x23, 0xf8, 0x9b, 0x0d, + 0x78, 0x8c, 0x5c, 0x5a, 0x13, 0x0b, 0xbd, 0x10, 0xaf, 0xbd, 0xcf, 0x42, 0xa5, 0xcf, 0xc4, 0xcc, + 0x78, 0x44, 0xd3, 0x97, 0x96, 0xc3, 0xef, 0x50, 0xb2, 0x31, 0x93, 0x8c, 0x50, 0x28, 0x07, 0xfb, + 0x0c, 0x31, 0x46, 0x86, 0xd6, 0x58, 0x4b, 0x9d, 0xa5, 0xce, 0x8b, 0x8d, 0xef, 0xf5, 0xc4, 0x7d, + 0xa0, 0xaa, 0xaf, 0x09, 0x74, 0x92, 0x2d, 0xe8, 0xa1, 0x5c, 0x07, 0xc8, 0x29, 0x14, 0x38, 0x9b, + 0xa3, 0x70, 0x99, 0x89, 0x5a, 0xfa, 0x2c, 0x75, 0x5e, 0xa0, 0x4f, 0x05, 0xd2, 0x81, 0x9c, 0xcd, + 0x46, 0x68, 0x0b, 0x2d, 0x73, 0x96, 0x39, 0x2f, 0x36, 0x2e, 0xf4, 0xf5, 0x90, 0xf4, 0xad, 0x46, + 0xf5, 0xae, 0xea, 0x31, 0xb8, 0xf4, 0x96, 0x34, 0x12, 0x20, 0xff, 0x42, 0x91, 0x71, 0xee, 0x48, + 0x16, 0x30, 0x85, 0xb6, 0xa3, 0xf4, 0x7e, 0x79, 0x9e, 0x5e, 0xf3, 0xa9, 0x31, 0x14, 0x5d, 0x95, + 0x22, 0x3a, 0x7c, 0x39, 0xbb, 0x12, 0x43, 0x81, 0xde, 0xc2, 0x32, 0x71, 0xc8, 0x4c, 0xd3, 0xf1, + 0xb9, 0xd4, 0xb2, 0xea, 0x30, 0xe5, 0xd9, 0x95, 0x78, 0x08, 0x91, 0x66, 0x08, 0x10, 0x09, 0x15, + 0xe4, 0x0b, 0xcb, 0x73, 0xf8, 0x1c, 0xb9, 0x1c, 0x2e, 0x98, 0x67, 0xb1, 0x91, 0x8d, 0x42, 0xcb, + 0x29, 0x4f, 0x7f, 0x3d, 0xcf, 0x93, 0xf1, 0x24, 0xf1, 0x4f, 0xac, 0x10, 0x9a, 0x3b, 0xc2, 0x2d, + 0x50, 0xf5, 0x1a, 0x8a, 0x2b, 0xb1, 0x90, 0x12, 0x64, 0x66, 0xb8, 0x54, 0xd3, 0x2b, 0xd0, 0xe0, + 0x91, 0x1c, 0x41, 0x76, 0xc1, 0x6c, 0x3f, 0x9e, 0x42, 0xb8, 0xf8, 0x2d, 0x7d, 0x95, 0xaa, 0xfe, + 0x09, 0xa5, 0xcd, 0x04, 0x5e, 0xd4, 0xdf, 0x86, 0xe3, 0x8f, 0xba, 0x7d, 0x89, 0x50, 0xed, 0x5d, + 0x1a, 0xca, 0xb7, 0x1e, 0x32, 0x89, 0x41, 0x26, 0x14, 0xdf, 0xfa, 0x28, 0x24, 0xb9, 0x80, 0x9c, + 0xc5, 0x5d, 0x5f, 0x8a, 0xe8, 0x2e, 0x1e, 0x6f, 0xdc, 0xc5, 0x6e, 0xf8, 0xe6, 0xdc, 0x31, 0x97, + 0x46, 0x44, 0xf2, 0x2b, 0xe4, 0x25, 0xce, 0x5d, 0x9b, 0xc9, 0x70, 0x97, 0x62, 0xe3, 0x64, 0xcb, + 0x05, 0xee, 0x47, 0x14, 0x9a, 0x90, 0xc9, 0xb7, 0xb0, 0xef, 0xf8, 0xd2, 0xf5, 0xe5, 0xd0, 0xf5, + 0x70, 0x62, 0x3d, 0x6a, 0x19, 0xe5, 0x71, 0x2f, 0x2c, 0xde, 0xab, 0x1a, 0x79, 0x05, 0x5f, 0x6d, + 0xbc, 0x27, 0xf3, 0x68, 0x6a, 0xda, 0x8e, 0xda, 0xec, 0xbb, 0x67, 0x8d, 0x98, 0x56, 0xe4, 0xb6, + 0x72, 0xed, 0x1a, 0xc8, 0x6a, 0x08, 0xc2, 0x75, 0xb8, 0x50, 0xce, 0x3c, 0x14, 0x8e, 0xef, 0x99, + 0xa8, 0xb6, 0x53, 0x61, 0xec, 0xd1, 0xbd, 0xb8, 0x18, 0xb4, 0xd7, 0x28, 0x1c, 0xb4, 0x51, 0xae, + 0x86, 0x77, 0x02, 0x05, 0xe5, 0x55, 0x2e, 0x5d, 0x8c, 0x86, 0x90, 0x0f, 0x0a, 0xfd, 0xa5, 0xbb, + 0x45, 0x33, 0xbd, 0x45, 0xb3, 0x0d, 0x87, 0x89, 0x66, 0xe4, 0xe5, 0x67, 0xc8, 0xc7, 0x94, 0x68, + 0x26, 0xda, 0xe6, 0x89, 0x69, 0x84, 0xd3, 0x84, 0x59, 0xb3, 0x21, 0x1f, 0x57, 0xc9, 0x8f, 0x90, + 0x15, 0x32, 0x98, 0x4e, 0xd0, 0x7e, 0xd0, 0xa8, 0x6c, 0xb6, 0x3f, 0x04, 0x20, 0x0d, 0x39, 0xe4, + 0x12, 0x76, 0xc3, 0xfc, 0x45, 0x34, 0xcc, 0x4f, 0xdc, 0x80, 0x98, 0x59, 0x1b, 0x40, 0xb9, 0x85, + 0x36, 0xae, 0x5f, 0xa5, 0xcf, 0x4f, 0xe3, 0x08, 0xc8, 0xaa, 0x6c, 0x18, 0xc8, 0x0f, 0xaf, 0x21, + 0xab, 0x1c, 0x93, 0x0a, 0x94, 0xa9, 0xd1, 0xa7, 0xff, 0x35, 0x6f, 0xba, 0xc6, 0xf0, 0xef, 0x66, + 0xa7, 0x3b, 0xa0, 0x46, 0xe9, 0x8b, 0xa0, 0x7c, 0x6f, 0xd0, 0xbb, 0x66, 0xcf, 0xe8, 0xf5, 0x93, + 0x72, 0x8a, 0x14, 0x61, 0xf7, 0xde, 0xe8, 0xb5, 0x3a, 0xbd, 0x76, 0x29, 0x1d, 0x2c, 0xe8, 0xa0, + 0xd7, 0x0b, 0x16, 0x19, 0xb2, 0x0f, 0x85, 0x87, 0xc1, 0xed, 0xad, 0x61, 0xb4, 0x8c, 0x56, 0x69, + 0xe7, 0xe6, 0x8f, 0xff, 0x7f, 0x9f, 0x5a, 0xf2, 0x8d, 0x3f, 0xd2, 0x4d, 0x67, 0x5e, 0x57, 0x87, + 0x77, 0xbc, 0x69, 0xf8, 0x50, 0x4f, 0xbe, 0xf7, 0x53, 0xe4, 0x75, 0x77, 0xf4, 0xd3, 0xd4, 0xa9, + 0xaf, 0xff, 0x86, 0x46, 0x39, 0xf5, 0xe5, 0xbf, 0xfc, 0x10, 0x00, 0x00, 0xff, 0xff, 0x14, 0xef, + 0x1e, 0x8b, 0x9f, 0x06, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/cluster_assignment.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/cluster_assignment.pb.go index 088813b5fc..597052a8ea 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/cluster_assignment.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/cluster_assignment.pb.go @@ -5,8 +5,9 @@ package admin import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -69,7 +70,7 @@ func init() { } var fileDescriptor_c5699de6e686ea15 = []byte{ - // 168 bytes of a gzipped FileDescriptorProto + // 170 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4f, 0xcb, 0xa9, 0x2c, 0x49, 0xcd, 0x4c, 0xc9, 0xd1, 0x4f, 0x4c, 0xc9, 0xcd, 0xcc, 0xd3, 0x4f, 0xce, 0x29, 0x2d, 0x2e, 0x49, 0x2d, 0x8a, 0x4f, 0x2c, 0x2e, 0xce, 0x4c, 0xcf, 0xcb, 0x4d, 0xcd, 0x2b, 0xd1, 0x2b, 0x28, @@ -77,8 +78,8 @@ var fileDescriptor_c5699de6e686ea15 = []byte{ 0xa8, 0x75, 0x84, 0x2b, 0x15, 0xd2, 0xe2, 0x12, 0x84, 0x19, 0x50, 0x90, 0x9f, 0x9f, 0x13, 0x9f, 0x97, 0x98, 0x9b, 0x2a, 0xc1, 0xac, 0xc0, 0xa8, 0xc1, 0x19, 0xc4, 0x0f, 0x95, 0x08, 0xc8, 0xcf, 0xcf, 0xf1, 0x4b, 0xcc, 0x4d, 0xf5, 0x62, 0xe1, 0x60, 0x14, 0x60, 0xf2, 0x62, 0xe1, 0x60, 0x12, - 0x60, 0x76, 0x32, 0x8f, 0x32, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, - 0x07, 0xdb, 0x94, 0x5f, 0x94, 0xae, 0x0f, 0x77, 0x5b, 0x7a, 0x6a, 0x9e, 0x7e, 0x41, 0x92, 0x6e, - 0x7a, 0xbe, 0x3e, 0xaa, 0x73, 0x93, 0xd8, 0xc0, 0x8e, 0x33, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, - 0x25, 0xeb, 0xa6, 0xbd, 0xc7, 0x00, 0x00, 0x00, + 0x60, 0x76, 0xb2, 0x8d, 0xb2, 0x4e, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, + 0x07, 0xdb, 0x94, 0x5f, 0x94, 0x0e, 0x61, 0xe8, 0xc3, 0x5d, 0x98, 0x9e, 0x9a, 0xa7, 0x5f, 0x90, + 0xa4, 0x9b, 0x9e, 0xaf, 0x8f, 0xea, 0xe8, 0x24, 0x36, 0xb0, 0x13, 0x8d, 0x01, 0x01, 0x00, 0x00, + 0xff, 0xff, 0x38, 0x72, 0xe8, 0xf0, 0xcd, 0x00, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/common.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/common.pb.go index 93519b513b..3f1ac0c5a7 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/common.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/common.pb.go @@ -5,10 +5,11 @@ package admin import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" _ "github.com/golang/protobuf/ptypes/timestamp" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -1484,80 +1485,80 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/common.proto", fileDescriptor_7c2cf612a185829c) } var fileDescriptor_7c2cf612a185829c = []byte{ - // 1190 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xdf, 0x73, 0xdb, 0x44, - 0x10, 0x8e, 0x1c, 0xc7, 0xa9, 0x37, 0x6d, 0xea, 0x5e, 0xd2, 0xe2, 0x26, 0x50, 0x82, 0x18, 0x7e, - 0xb4, 0x43, 0xed, 0x99, 0x94, 0x50, 0x5a, 0x4a, 0x8b, 0x13, 0xab, 0x6d, 0xa6, 0xa9, 0x1b, 0xe4, - 0xb4, 0x4c, 0x19, 0x18, 0x71, 0x96, 0xce, 0xee, 0x11, 0x49, 0x27, 0xee, 0x4e, 0x6d, 0xc5, 0x0b, - 0x03, 0x6f, 0xbc, 0xf1, 0xc0, 0x3f, 0xc4, 0x13, 0xc3, 0x3b, 0x7f, 0x10, 0x73, 0x27, 0xc9, 0x91, - 0x15, 0xb7, 0x90, 0xb4, 0x33, 0xbc, 0x79, 0x6f, 0xbf, 0xbd, 0xfd, 0xf6, 0xbb, 0xbd, 0xf5, 0x09, - 0x56, 0x87, 0x7e, 0x22, 0x09, 0xf5, 0xfc, 0x36, 0xf6, 0x02, 0x1a, 0xb6, 0x5d, 0x16, 0x04, 0x2c, - 0x6c, 0x45, 0x9c, 0x49, 0x86, 0x16, 0x73, 0x67, 0x4b, 0x3b, 0x57, 0xde, 0x1a, 0x83, 0x5d, 0xc6, - 0x49, 0x9b, 0x3c, 0x27, 0x6e, 0x2c, 0x69, 0x0e, 0x5f, 0xb9, 0x30, 0xe9, 0xa6, 0x1e, 0x09, 0x25, - 0x1d, 0x52, 0xc2, 0x33, 0xff, 0x9b, 0x93, 0x7e, 0x9f, 0x4a, 0xc2, 0xb1, 0x2f, 0x32, 0xef, 0xdb, - 0x23, 0xc6, 0x46, 0x3e, 0x69, 0x6b, 0x6b, 0x10, 0x0f, 0xdb, 0x92, 0x06, 0x44, 0x48, 0x1c, 0x44, - 0x29, 0xc0, 0xfc, 0x16, 0xce, 0xf6, 0x70, 0x40, 0x3c, 0x2b, 0x94, 0x54, 0x26, 0xdb, 0xe3, 0xdd, - 0x51, 0x13, 0xe6, 0x23, 0xce, 0xbe, 0x27, 0xae, 0x6c, 0x1a, 0x6b, 0xc6, 0x87, 0x75, 0x3b, 0x37, - 0xd1, 0x39, 0xa8, 0x79, 0x2c, 0xc0, 0x34, 0x6c, 0x56, 0xb4, 0x23, 0xb3, 0x10, 0x82, 0x6a, 0x88, - 0x03, 0xd2, 0x9c, 0xd5, 0xab, 0xfa, 0xb7, 0xc9, 0x60, 0xa9, 0xb0, 0xfd, 0x7d, 0x22, 0xb1, 0x87, - 0x25, 0x46, 0x6b, 0xb0, 0xe0, 0x11, 0xe1, 0x72, 0x1a, 0xa9, 0x4a, 0xb3, 0x04, 0xc5, 0x25, 0xf4, - 0x09, 0xcc, 0x09, 0x89, 0x25, 0xd1, 0x39, 0x16, 0xd7, 0xd7, 0x5a, 0x93, 0xaa, 0xb5, 0x0a, 0xbb, - 0xf6, 0x15, 0xce, 0x4e, 0xe1, 0xe6, 0x9f, 0x06, 0x2c, 0x14, 0x7c, 0xe8, 0x0b, 0x38, 0xc5, 0x89, - 0x60, 0x31, 0x77, 0x89, 0x23, 0x93, 0x88, 0xe8, 0x5c, 0x8b, 0xeb, 0xab, 0x07, 0xfb, 0x29, 0xd9, - 0x5a, 0x76, 0x86, 0xd9, 0x4b, 0x22, 0x62, 0x9f, 0xe4, 0x05, 0x0b, 0x6d, 0x40, 0x85, 0x7a, 0x9a, - 0xc6, 0xc2, 0xfa, 0x7b, 0x2f, 0xa1, 0x71, 0xa0, 0x9d, 0x5d, 0xa1, 0x1e, 0xba, 0x05, 0x27, 0x82, - 0xac, 0x5c, 0xad, 0xc8, 0xc2, 0xfa, 0xbb, 0x2f, 0x09, 0xce, 0x95, 0xb1, 0xc7, 0x41, 0xe6, 0x2f, - 0x06, 0x54, 0xfb, 0x8c, 0x4b, 0xd4, 0x80, 0xd9, 0x7d, 0x92, 0x64, 0x22, 0xa9, 0x9f, 0xe8, 0x06, - 0xd4, 0x3d, 0xca, 0x89, 0xab, 0xc5, 0x4b, 0x05, 0xba, 0x50, 0xde, 0x5c, 0x85, 0xb6, 0xba, 0x39, - 0xca, 0x3e, 0x08, 0x30, 0x2f, 0x41, 0x7d, 0xbc, 0x8e, 0x16, 0x01, 0xba, 0x56, 0x7f, 0xcb, 0xea, - 0x75, 0xb7, 0x7b, 0x77, 0x1a, 0x33, 0xe8, 0x14, 0xd4, 0x3b, 0x63, 0xd3, 0x30, 0xff, 0x32, 0x60, - 0x6d, 0x6a, 0x8d, 0x3b, 0x54, 0x48, 0x9b, 0xfc, 0x10, 0x13, 0x21, 0x8f, 0xd1, 0x2a, 0xcb, 0x30, - 0xe7, 0xd3, 0x80, 0x4a, 0xad, 0xcc, 0x29, 0x3b, 0x35, 0xd4, 0xaa, 0x64, 0xfb, 0x24, 0x6c, 0x56, - 0x35, 0x38, 0x35, 0xd0, 0x65, 0x98, 0x17, 0x8c, 0x4b, 0x67, 0x90, 0x34, 0xe7, 0xb4, 0x8e, 0xcb, - 0xd3, 0x4a, 0xb5, 0x6b, 0x0a, 0xb4, 0x99, 0x28, 0x32, 0x43, 0xea, 0x4b, 0xc2, 0x45, 0xb3, 0x96, - 0x92, 0xc9, 0x4c, 0xf3, 0xe7, 0x0a, 0x9c, 0x2b, 0xd4, 0x52, 0xac, 0xe0, 0xd5, 0xbb, 0xa4, 0xa0, - 0x41, 0xe5, 0x45, 0x1a, 0xcc, 0x4e, 0xd7, 0xa0, 0x3a, 0x55, 0x83, 0xb9, 0x17, 0x68, 0x50, 0x3b, - 0x9a, 0x06, 0xf3, 0x93, 0x1a, 0x48, 0x38, 0xff, 0xc2, 0xe3, 0x44, 0x1d, 0x38, 0xa1, 0x6c, 0x49, - 0x89, 0x68, 0x1a, 0x6b, 0xb3, 0xff, 0xbd, 0xdf, 0xc7, 0x61, 0x07, 0xf4, 0x2b, 0x05, 0xfa, 0xe6, - 0x77, 0x70, 0xba, 0x24, 0x3c, 0xba, 0x7a, 0x28, 0xd7, 0xea, 0x4b, 0x72, 0xfd, 0x6b, 0x86, 0xdf, - 0x8c, 0x89, 0x39, 0x76, 0x87, 0xbc, 0xc6, 0xa3, 0x3d, 0xde, 0x00, 0x30, 0xff, 0x36, 0xa0, 0x59, - 0xf0, 0x3e, 0x8c, 0x3c, 0x35, 0xa6, 0xfe, 0x67, 0x56, 0xaf, 0x3e, 0x96, 0x56, 0x27, 0x3a, 0x28, - 0xaf, 0x4a, 0x44, 0x2c, 0x14, 0xc4, 0xfc, 0x1c, 0x1a, 0x0f, 0x06, 0xaa, 0xeb, 0x0b, 0x07, 0x70, - 0x51, 0x13, 0x35, 0x74, 0xae, 0xf3, 0xa5, 0xfa, 0x4a, 0x92, 0xfd, 0x61, 0xc0, 0x52, 0x5e, 0x72, - 0xf1, 0x7a, 0x6e, 0x14, 0xb6, 0x38, 0x42, 0xad, 0xe3, 0x1b, 0x56, 0x99, 0x7a, 0xc3, 0x66, 0x8b, - 0x37, 0xac, 0x70, 0x65, 0xaa, 0x13, 0x57, 0xe6, 0x88, 0xf3, 0xc7, 0xbc, 0x09, 0x67, 0xac, 0x00, - 0x53, 0xbf, 0xc7, 0x14, 0x13, 0x17, 0xeb, 0x29, 0x7b, 0x11, 0x1a, 0x9c, 0xb8, 0x34, 0xa2, 0x24, - 0x94, 0xc2, 0x21, 0xca, 0xaf, 0xbb, 0xbe, 0x6e, 0x9f, 0x3e, 0x58, 0xd7, 0x61, 0xe6, 0x26, 0x9c, - 0xdd, 0xc5, 0x23, 0xc2, 0xbb, 0xb1, 0x4c, 0x8e, 0xbb, 0xc7, 0x4d, 0x38, 0xd3, 0xf7, 0xb1, 0xbb, - 0x7f, 0xdc, 0xf8, 0xdf, 0x2b, 0x70, 0x72, 0x22, 0xf6, 0x26, 0xd4, 0xa2, 0x27, 0x58, 0x64, 0x77, - 0x75, 0x71, 0xfd, 0xfd, 0xd2, 0x39, 0x7e, 0xc5, 0xf8, 0xfe, 0xd0, 0x67, 0xcf, 0xac, 0xf1, 0xe3, - 0x65, 0x57, 0xc1, 0xed, 0x2c, 0x0a, 0x5d, 0x83, 0xb9, 0x34, 0x61, 0xda, 0xaf, 0xef, 0x94, 0x15, - 0x3c, 0xa4, 0xd8, 0xdd, 0x19, 0x3b, 0x8d, 0x40, 0xb7, 0x01, 0x22, 0xa5, 0x87, 0xe3, 0xc5, 0x32, - 0xc9, 0x5a, 0xf6, 0x50, 0x0f, 0x4c, 0x55, 0xec, 0xee, 0x8c, 0x5d, 0x8f, 0x72, 0x87, 0xa2, 0x20, - 0x94, 0x26, 0xfa, 0x78, 0xa7, 0x50, 0x38, 0x24, 0x98, 0xa2, 0xa0, 0x23, 0x36, 0x6b, 0x50, 0x55, - 0x77, 0xd4, 0xdc, 0x80, 0xf9, 0x87, 0xdc, 0xdf, 0xf4, 0xd9, 0x40, 0xfd, 0x27, 0xc7, 0xdc, 0xcf, - 0xff, 0x93, 0x63, 0xee, 0xab, 0xb6, 0x1a, 0x24, 0x92, 0x08, 0x5d, 0xe2, 0xac, 0x9d, 0x1a, 0xd7, - 0x2b, 0x4d, 0xc3, 0xfc, 0x09, 0x6a, 0x3b, 0x78, 0x40, 0x7c, 0x81, 0xae, 0x43, 0xed, 0x29, 0xf6, - 0xe3, 0xf1, 0xc8, 0x33, 0xcb, 0x24, 0x52, 0x5c, 0xeb, 0x91, 0x06, 0x59, 0xa1, 0xe4, 0x89, 0x9d, - 0x45, 0xac, 0x5c, 0x83, 0x85, 0xc2, 0xf2, 0x94, 0x47, 0xc1, 0x32, 0xcc, 0x69, 0x68, 0x3e, 0x18, - 0xb5, 0x71, 0xbd, 0xf2, 0xa9, 0x61, 0xfe, 0x6a, 0xc0, 0x42, 0x27, 0x0c, 0x99, 0xd4, 0x75, 0x09, - 0x74, 0xab, 0x44, 0xe3, 0x83, 0x32, 0x8d, 0x02, 0xf8, 0x75, 0x73, 0xf9, 0x0c, 0xaa, 0x56, 0xf8, - 0x54, 0xa0, 0x2b, 0x25, 0x0e, 0xe5, 0xc9, 0x77, 0x8f, 0x24, 0x3a, 0xc5, 0x2e, 0xa6, 0x3c, 0xcf, - 0x6b, 0xfe, 0x08, 0x27, 0x3a, 0xb1, 0x7c, 0x62, 0x33, 0x9f, 0xa0, 0x8f, 0x00, 0x61, 0x21, 0xe2, - 0x00, 0x0f, 0x7c, 0xe2, 0x50, 0x1c, 0x38, 0x9c, 0xf9, 0x24, 0xe3, 0xd0, 0x18, 0x7b, 0xb6, 0x71, - 0xa0, 0xd1, 0x37, 0x60, 0x65, 0x3f, 0x1e, 0x10, 0x1e, 0x12, 0x49, 0x84, 0x23, 0x08, 0x7f, 0x4a, - 0x5d, 0xe2, 0x60, 0xd7, 0x65, 0x71, 0x98, 0xff, 0x63, 0x37, 0x0f, 0x10, 0xfd, 0x14, 0xd0, 0x49, - 0xfd, 0xfa, 0x14, 0xef, 0xc1, 0x92, 0x8d, 0x9f, 0x3d, 0x88, 0x65, 0x14, 0xcb, 0x2e, 0x96, 0x78, - 0x8b, 0x85, 0x43, 0x3a, 0x42, 0x1f, 0xc3, 0x39, 0xa6, 0xd7, 0x1c, 0x9f, 0xa5, 0x7d, 0xe3, 0x44, - 0x9c, 0x0c, 0xe9, 0xf3, 0x8c, 0xca, 0x72, 0xea, 0xdd, 0xc9, 0x9c, 0xbb, 0xda, 0x67, 0x7e, 0x09, - 0xf5, 0xdb, 0xaa, 0xdc, 0x87, 0xf6, 0x8e, 0x50, 0x0f, 0x04, 0x1a, 0x46, 0xb1, 0x14, 0x59, 0x48, - 0x66, 0xa9, 0x91, 0x94, 0x06, 0x8b, 0xfc, 0x49, 0x91, 0x99, 0xea, 0xa5, 0xed, 0x11, 0x77, 0x3f, - 0x7f, 0x69, 0xab, 0xdf, 0x97, 0xbe, 0x81, 0x46, 0xf9, 0x4d, 0x8c, 0xde, 0x80, 0xa5, 0x5e, 0xe7, - 0xbe, 0xd5, 0x75, 0xac, 0xde, 0xde, 0xf6, 0xde, 0x63, 0xa7, 0xb3, 0xb5, 0xb7, 0xfd, 0xc8, 0x6a, - 0xcc, 0xa0, 0xf3, 0x70, 0x76, 0xd2, 0x61, 0x6f, 0xdd, 0xdd, 0x7e, 0x64, 0x75, 0x1b, 0x06, 0x5a, - 0x86, 0x46, 0xff, 0x71, 0x7f, 0xcf, 0xba, 0xef, 0xdc, 0xb1, 0x7a, 0x96, 0xdd, 0xd9, 0xb3, 0xba, - 0x8d, 0xca, 0xe6, 0xd5, 0xaf, 0x37, 0x46, 0x54, 0x3e, 0x89, 0x07, 0x2d, 0x97, 0x05, 0x6d, 0x7d, - 0x54, 0x8c, 0x8f, 0xda, 0xe3, 0x6f, 0x8f, 0x11, 0x09, 0xdb, 0xd1, 0xe0, 0xf2, 0x88, 0xb5, 0x27, - 0x3f, 0x7d, 0x06, 0x35, 0xfd, 0x99, 0x71, 0xe5, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf2, 0xc4, - 0xfe, 0xc2, 0x13, 0x0d, 0x00, 0x00, + // 1192 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xdf, 0x73, 0xdb, 0xc4, + 0x13, 0x8f, 0x1c, 0xc7, 0xa9, 0x37, 0x6d, 0xea, 0x5e, 0xd2, 0x7e, 0xdd, 0xe4, 0x4b, 0x09, 0x62, + 0xf8, 0xd1, 0x0e, 0xb5, 0x67, 0x52, 0x0a, 0xf4, 0x37, 0x4e, 0xac, 0xb6, 0x99, 0xa6, 0x6e, 0x90, + 0xd3, 0x32, 0x65, 0x60, 0xc4, 0x59, 0x3a, 0xbb, 0x47, 0x24, 0x9d, 0xb8, 0x3b, 0xb5, 0x15, 0x2f, + 0x0c, 0xbc, 0xf1, 0xc6, 0x03, 0xff, 0x10, 0x4f, 0x0c, 0xef, 0xfc, 0x41, 0xcc, 0x9d, 0x24, 0x5b, + 0x56, 0xdc, 0x42, 0xd3, 0xce, 0xf0, 0x76, 0x7b, 0xbb, 0x7b, 0xfb, 0xd9, 0xcf, 0xed, 0xae, 0x4e, + 0xb0, 0x3e, 0xf4, 0x13, 0x49, 0xa8, 0xe7, 0xb7, 0xb1, 0x17, 0xd0, 0xb0, 0xed, 0xb2, 0x20, 0x60, + 0x61, 0x2b, 0xe2, 0x4c, 0x32, 0xb4, 0x9c, 0x2b, 0x5b, 0x5a, 0xb9, 0xf6, 0xd6, 0xd8, 0xd8, 0x65, + 0x9c, 0xb4, 0xc9, 0x73, 0xe2, 0xc6, 0x92, 0xe6, 0xe6, 0x6b, 0xe7, 0xa6, 0xd5, 0xd4, 0x23, 0xa1, + 0xa4, 0x43, 0x4a, 0x78, 0xa6, 0xff, 0xff, 0xb4, 0xde, 0xa7, 0x92, 0x70, 0xec, 0x8b, 0x4c, 0xfb, + 0xf6, 0x88, 0xb1, 0x91, 0x4f, 0xda, 0x5a, 0x1a, 0xc4, 0xc3, 0xb6, 0xa4, 0x01, 0x11, 0x12, 0x07, + 0x51, 0x6a, 0x60, 0x7e, 0x03, 0xa7, 0x7b, 0x38, 0x20, 0x9e, 0x15, 0x4a, 0x2a, 0x93, 0x9d, 0xf1, + 0xe9, 0xa8, 0x09, 0x8b, 0x11, 0x67, 0xdf, 0x11, 0x57, 0x36, 0x8d, 0x0d, 0xe3, 0xc3, 0xba, 0x9d, + 0x8b, 0xe8, 0x0c, 0xd4, 0x3c, 0x16, 0x60, 0x1a, 0x36, 0x2b, 0x5a, 0x91, 0x49, 0x08, 0x41, 0x35, + 0xc4, 0x01, 0x69, 0xce, 0xeb, 0x5d, 0xbd, 0x36, 0x19, 0xac, 0x14, 0x8e, 0xbf, 0x4f, 0x24, 0xf6, + 0xb0, 0xc4, 0x68, 0x03, 0x96, 0x3c, 0x22, 0x5c, 0x4e, 0x23, 0x95, 0x69, 0x16, 0xa0, 0xb8, 0x85, + 0x3e, 0x81, 0x05, 0x21, 0xb1, 0x24, 0x3a, 0xc6, 0xf2, 0xe6, 0x46, 0x6b, 0x9a, 0xb5, 0x56, 0xe1, + 0xd4, 0xbe, 0xb2, 0xb3, 0x53, 0x73, 0xf3, 0x0f, 0x03, 0x96, 0x0a, 0x3a, 0xf4, 0x39, 0x9c, 0xe0, + 0x44, 0xb0, 0x98, 0xbb, 0xc4, 0x91, 0x49, 0x44, 0x74, 0xac, 0xe5, 0xcd, 0xf5, 0xc9, 0x79, 0x8a, + 0xb6, 0x96, 0x9d, 0xd9, 0xec, 0x27, 0x11, 0xb1, 0x8f, 0xf3, 0x82, 0x84, 0x2e, 0x43, 0x85, 0x7a, + 0x1a, 0xc6, 0xd2, 0xe6, 0x7b, 0x2f, 0x81, 0x31, 0xe1, 0xce, 0xae, 0x50, 0x0f, 0xdd, 0x82, 0x63, + 0x41, 0x96, 0xae, 0x66, 0x64, 0x69, 0xf3, 0xdd, 0x97, 0x38, 0xe7, 0xcc, 0xd8, 0x63, 0x27, 0xf3, + 0x67, 0x03, 0xaa, 0x7d, 0xc6, 0x25, 0x6a, 0xc0, 0xfc, 0x01, 0x49, 0x32, 0x92, 0xd4, 0x12, 0x5d, + 0x87, 0xba, 0x47, 0x39, 0x71, 0x35, 0x79, 0x29, 0x41, 0xe7, 0xca, 0x87, 0x2b, 0xd7, 0x56, 0x37, + 0xb7, 0xb2, 0x27, 0x0e, 0xe6, 0x05, 0xa8, 0x8f, 0xf7, 0xd1, 0x32, 0x40, 0xd7, 0xea, 0x6f, 0x5b, + 0xbd, 0xee, 0x4e, 0xef, 0x4e, 0x63, 0x0e, 0x9d, 0x80, 0x7a, 0x67, 0x2c, 0x1a, 0xe6, 0x9f, 0x06, + 0x6c, 0xcc, 0xcc, 0x71, 0x97, 0x0a, 0x69, 0x93, 0xef, 0x63, 0x22, 0xe4, 0x11, 0x4a, 0x65, 0x15, + 0x16, 0x7c, 0x1a, 0x50, 0xa9, 0x99, 0x39, 0x61, 0xa7, 0x82, 0xda, 0x95, 0xec, 0x80, 0x84, 0xcd, + 0xaa, 0x36, 0x4e, 0x05, 0x74, 0x11, 0x16, 0x05, 0xe3, 0xd2, 0x19, 0x24, 0xcd, 0x05, 0xcd, 0xe3, + 0xea, 0xac, 0x54, 0xed, 0x9a, 0x32, 0xda, 0x4a, 0x14, 0x98, 0x21, 0xf5, 0x25, 0xe1, 0xa2, 0x59, + 0x4b, 0xc1, 0x64, 0xa2, 0xf9, 0x53, 0x05, 0xce, 0x14, 0x72, 0x29, 0x66, 0xf0, 0xfa, 0x55, 0x52, + 0xe0, 0xa0, 0xf2, 0x22, 0x0e, 0xe6, 0x67, 0x73, 0x50, 0x9d, 0xc9, 0xc1, 0xc2, 0x0b, 0x38, 0xa8, + 0xbd, 0x1a, 0x07, 0x8b, 0xd3, 0x1c, 0x48, 0x38, 0xfb, 0xc2, 0xeb, 0x44, 0x1d, 0x38, 0xa6, 0x64, + 0x49, 0x89, 0x68, 0x1a, 0x1b, 0xf3, 0xff, 0xbe, 0xde, 0xc7, 0x6e, 0x13, 0xf8, 0x95, 0x02, 0x7c, + 0xf3, 0x5b, 0x38, 0x59, 0x22, 0x1e, 0x7d, 0x7a, 0x28, 0xd6, 0xfa, 0x4b, 0x62, 0xfd, 0x63, 0x84, + 0x5f, 0x8d, 0xa9, 0x39, 0x76, 0x87, 0xbc, 0xc1, 0xab, 0x3d, 0xda, 0x00, 0x30, 0xff, 0x32, 0xa0, + 0x59, 0xd0, 0x3e, 0x8c, 0x3c, 0x35, 0xa6, 0xfe, 0x63, 0x54, 0xaf, 0x3f, 0x96, 0xd6, 0xa7, 0x2a, + 0x28, 0xcf, 0x4a, 0x44, 0x2c, 0x14, 0xc4, 0xbc, 0x01, 0x8d, 0x07, 0x03, 0x55, 0xf5, 0x85, 0x0b, + 0x38, 0xaf, 0x81, 0x1a, 0x3a, 0xd6, 0xd9, 0x52, 0x7e, 0x25, 0xca, 0x7e, 0x37, 0x60, 0x25, 0x4f, + 0xb9, 0xd8, 0x9e, 0x97, 0x0b, 0x47, 0xbc, 0x42, 0xae, 0xe3, 0x0e, 0xab, 0xcc, 0xec, 0xb0, 0xf9, + 0x62, 0x87, 0x15, 0x5a, 0xa6, 0x3a, 0xd5, 0x32, 0xaf, 0x38, 0x7f, 0xcc, 0x9b, 0x70, 0xca, 0x0a, + 0x30, 0xf5, 0x7b, 0x4c, 0x21, 0x71, 0xb1, 0x9e, 0xb2, 0xe7, 0xa1, 0xc1, 0x89, 0x4b, 0x23, 0x4a, + 0x42, 0x29, 0x1c, 0xa2, 0xf4, 0xba, 0xea, 0xeb, 0xf6, 0xc9, 0xc9, 0xbe, 0x76, 0x33, 0xb7, 0xe0, + 0xf4, 0x1e, 0x1e, 0x11, 0xde, 0x8d, 0x65, 0x72, 0xd4, 0x33, 0x6e, 0xc2, 0xa9, 0xbe, 0x8f, 0xdd, + 0x83, 0xa3, 0xfa, 0xff, 0x56, 0x81, 0xe3, 0x53, 0xbe, 0x37, 0xa1, 0x16, 0x3d, 0xc1, 0x22, 0xeb, + 0xd5, 0xe5, 0xcd, 0xf7, 0x4b, 0xf7, 0xf8, 0x25, 0xe3, 0x07, 0x43, 0x9f, 0x3d, 0xb3, 0xc6, 0x8f, + 0x97, 0x3d, 0x65, 0x6e, 0x67, 0x5e, 0xe8, 0x0a, 0x2c, 0xa4, 0x01, 0xd3, 0x7a, 0x7d, 0xa7, 0xcc, + 0xe0, 0x21, 0xc6, 0xee, 0xce, 0xd9, 0xa9, 0x07, 0xba, 0x0d, 0x10, 0x29, 0x3e, 0x1c, 0x2f, 0x96, + 0x49, 0x56, 0xb2, 0x87, 0x6a, 0x60, 0x26, 0x63, 0x77, 0xe7, 0xec, 0x7a, 0x94, 0x2b, 0x14, 0x04, + 0xa1, 0x38, 0xd1, 0xd7, 0x3b, 0x03, 0xc2, 0x21, 0xc2, 0x14, 0x04, 0xed, 0xb1, 0x55, 0x83, 0xaa, + 0xea, 0x51, 0xf3, 0x32, 0x2c, 0x3e, 0xe4, 0xfe, 0x96, 0xcf, 0x06, 0xea, 0x9b, 0x1c, 0x73, 0x3f, + 0xff, 0x26, 0xc7, 0xdc, 0x57, 0x65, 0x35, 0x48, 0x24, 0x11, 0x3a, 0xc5, 0x79, 0x3b, 0x15, 0xae, + 0x56, 0x9a, 0x86, 0xf9, 0x23, 0xd4, 0x76, 0xf1, 0x80, 0xf8, 0x02, 0x5d, 0x85, 0xda, 0x53, 0xec, + 0xc7, 0xe3, 0x91, 0x67, 0x96, 0x41, 0xa4, 0x76, 0xad, 0x47, 0xda, 0xc8, 0x0a, 0x25, 0x4f, 0xec, + 0xcc, 0x63, 0xed, 0x0a, 0x2c, 0x15, 0xb6, 0x67, 0x3c, 0x0a, 0x56, 0x61, 0x41, 0x9b, 0xe6, 0x83, + 0x51, 0x0b, 0x57, 0x2b, 0x9f, 0x19, 0xe6, 0x2f, 0x06, 0x2c, 0x75, 0xc2, 0x90, 0x49, 0x9d, 0x97, + 0x40, 0xb7, 0x4a, 0x30, 0x3e, 0x28, 0xc3, 0x28, 0x18, 0xbf, 0x69, 0x2c, 0xd7, 0xa0, 0x6a, 0x85, + 0x4f, 0x05, 0xba, 0x54, 0xc2, 0x50, 0x9e, 0x7c, 0xf7, 0x48, 0xa2, 0x43, 0xec, 0x61, 0xca, 0xf3, + 0xb8, 0xe6, 0x0f, 0x70, 0xac, 0x13, 0xcb, 0x27, 0x36, 0xf3, 0x09, 0xfa, 0x08, 0x10, 0x16, 0x22, + 0x0e, 0xf0, 0xc0, 0x27, 0x0e, 0xc5, 0x81, 0xc3, 0x99, 0x4f, 0x32, 0x0c, 0x8d, 0xb1, 0x66, 0x07, + 0x07, 0xda, 0xfa, 0x3a, 0xac, 0x1d, 0xc4, 0x03, 0xc2, 0x43, 0x22, 0x89, 0x70, 0x04, 0xe1, 0x4f, + 0xa9, 0x4b, 0x1c, 0xec, 0xba, 0x2c, 0x0e, 0xf3, 0x2f, 0x76, 0x73, 0x62, 0xd1, 0x4f, 0x0d, 0x3a, + 0xa9, 0x5e, 0xdf, 0xe2, 0x3d, 0x58, 0xb1, 0xf1, 0xb3, 0x07, 0xb1, 0x8c, 0x62, 0xd9, 0xc5, 0x12, + 0x6f, 0xb3, 0x70, 0x48, 0x47, 0xe8, 0x63, 0x38, 0xc3, 0xf4, 0x9e, 0xe3, 0xb3, 0xb4, 0x6e, 0x9c, + 0x88, 0x93, 0x21, 0x7d, 0x9e, 0x41, 0x59, 0x4d, 0xb5, 0xbb, 0x99, 0x72, 0x4f, 0xeb, 0xcc, 0x2f, + 0xa0, 0x7e, 0x5b, 0xa5, 0xfb, 0xd0, 0xde, 0x15, 0xea, 0x81, 0x40, 0xc3, 0x28, 0x96, 0x22, 0x73, + 0xc9, 0x24, 0x35, 0x92, 0x52, 0x67, 0x91, 0x3f, 0x29, 0x32, 0x51, 0xbd, 0xb4, 0x3d, 0xe2, 0x1e, + 0xe4, 0x2f, 0x6d, 0xb5, 0xbe, 0xf0, 0x35, 0x34, 0xca, 0x6f, 0x62, 0xf4, 0x3f, 0x58, 0xe9, 0x75, + 0xee, 0x5b, 0x5d, 0xc7, 0xea, 0xed, 0xef, 0xec, 0x3f, 0x76, 0x3a, 0xdb, 0xfb, 0x3b, 0x8f, 0xac, + 0xc6, 0x1c, 0x3a, 0x0b, 0xa7, 0xa7, 0x15, 0xf6, 0xf6, 0xdd, 0x9d, 0x47, 0x56, 0xb7, 0x61, 0xa0, + 0x55, 0x68, 0xf4, 0x1f, 0xf7, 0xf7, 0xad, 0xfb, 0xce, 0x1d, 0xab, 0x67, 0xd9, 0x9d, 0x7d, 0xab, + 0xdb, 0xa8, 0x6c, 0xdd, 0xf8, 0xea, 0xda, 0x88, 0xca, 0x27, 0xf1, 0xa0, 0xe5, 0xb2, 0xa0, 0xad, + 0xaf, 0x8a, 0xf1, 0x51, 0xba, 0x68, 0x8f, 0xff, 0x40, 0x46, 0x24, 0x6c, 0x47, 0x83, 0x8b, 0x23, + 0xd6, 0x9e, 0xfe, 0x01, 0x1a, 0xd4, 0xf4, 0xcf, 0xc6, 0xa5, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, + 0x5a, 0xee, 0x56, 0xed, 0x19, 0x0d, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/common.pb.validate.go b/flyteidl/gen/pb-go/flyteidl/admin/common.pb.validate.go index 5cfa0fb979..9cdccf378e 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/common.pb.validate.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/common.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/flyteidl/gen/pb-go/flyteidl/admin/description_entity.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/description_entity.pb.go index 7d3bb0b9e9..7b4d552fb6 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/description_entity.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/description_entity.pb.go @@ -5,9 +5,10 @@ package admin import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - proto "github.com/golang/protobuf/proto" math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -434,43 +435,43 @@ func init() { } var fileDescriptor_2715f55631fe48ea = []byte{ - // 598 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x54, 0xdf, 0x6f, 0xd2, 0x50, - 0x14, 0x5e, 0xcb, 0x60, 0xf6, 0xe0, 0x90, 0x5d, 0x71, 0x56, 0x30, 0x13, 0x49, 0x8c, 0xa8, 0x59, - 0x9b, 0xcc, 0x2c, 0xc6, 0xf8, 0xe2, 0x18, 0x23, 0x90, 0xf1, 0xc3, 0x5c, 0x30, 0x26, 0xbe, 0x34, - 0xd0, 0x5e, 0xba, 0x1b, 0xda, 0x5e, 0xbc, 0xbd, 0x98, 0xf4, 0xd5, 0xf8, 0xa8, 0xff, 0x81, 0x7f, - 0xac, 0xe9, 0x2d, 0xb0, 0xc2, 0xc8, 0xde, 0xee, 0xe9, 0xf9, 0xce, 0x77, 0xce, 0x77, 0xbf, 0xd3, - 0x0b, 0xaf, 0xa7, 0x5e, 0x24, 0x08, 0x75, 0x3c, 0x73, 0xec, 0xf8, 0x34, 0x30, 0x1d, 0x12, 0xda, - 0x9c, 0xce, 0x05, 0x65, 0x81, 0x45, 0x02, 0x41, 0x45, 0x64, 0xcc, 0x39, 0x13, 0x0c, 0x15, 0x56, - 0x40, 0x43, 0x02, 0xcb, 0x27, 0xeb, 0x42, 0x9b, 0x71, 0x62, 0x52, 0x27, 0x46, 0x4f, 0x29, 0xe1, - 0x09, 0xbe, 0x5c, 0xd9, 0x22, 0xb6, 0x99, 0xef, 0xb3, 0x20, 0x49, 0xd6, 0x7e, 0xab, 0x70, 0xd4, - 0xbc, 0xed, 0x74, 0x25, 0x1b, 0xa1, 0x37, 0xa0, 0x52, 0x47, 0x57, 0xaa, 0x4a, 0x3d, 0x7f, 0xf6, - 0xcc, 0x58, 0xf7, 0x8b, 0xf9, 0x8d, 0xce, 0x9a, 0x1f, 0xab, 0xd4, 0x41, 0xef, 0xe0, 0x28, 0xbc, - 0x61, 0x5c, 0x58, 0xa9, 0x79, 0x75, 0xb5, 0xaa, 0xd4, 0x35, 0x5c, 0x94, 0x89, 0x14, 0x3b, 0x6a, - 0x41, 0xd1, 0x63, 0x81, 0xbb, 0x81, 0xcd, 0xc8, 0x2e, 0x15, 0x63, 0x53, 0x95, 0x91, 0x2a, 0xc3, - 0x8f, 0xe2, 0xa2, 0x34, 0xcf, 0x27, 0xc8, 0x87, 0x6c, 0xc1, 0x6d, 0x62, 0xd9, 0xcc, 0x21, 0xfa, - 0xbe, 0xa4, 0x28, 0x6f, 0x53, 0x0c, 0x25, 0xe4, 0x92, 0x39, 0x04, 0x43, 0xb8, 0x3e, 0x23, 0x04, - 0xfb, 0x62, 0xec, 0x86, 0x7a, 0xb6, 0x9a, 0xa9, 0x6b, 0x58, 0x9e, 0x6b, 0xff, 0x14, 0xc8, 0xa7, - 0x1b, 0x1c, 0x43, 0xf6, 0xe7, 0xd8, 0x5b, 0x10, 0x79, 0x07, 0x5a, 0x7b, 0x0f, 0x27, 0x21, 0x42, - 0x90, 0x59, 0x70, 0x9a, 0xe8, 0x6b, 0xef, 0xe1, 0x38, 0x40, 0x1f, 0x21, 0x37, 0x65, 0xdc, 0x1f, - 0x0b, 0x29, 0xa5, 0x70, 0xf6, 0xf2, 0x1e, 0x29, 0x2d, 0x09, 0xc4, 0xcb, 0x02, 0x54, 0x01, 0x8d, - 0xda, 0x2c, 0xb0, 0x3c, 0x1a, 0xcc, 0xa4, 0x0a, 0x0d, 0x3f, 0x88, 0x3f, 0x74, 0x69, 0x30, 0x6b, - 0x68, 0x70, 0x60, 0xb3, 0x40, 0x90, 0x40, 0xd4, 0xaa, 0x00, 0xc3, 0x0d, 0x01, 0xb2, 0x40, 0xce, - 0x86, 0xe5, 0xb9, 0xf6, 0x4b, 0x81, 0x27, 0x77, 0x7c, 0xec, 0xd2, 0x50, 0xa0, 0x21, 0x3c, 0x76, - 0xb6, 0x12, 0x94, 0x84, 0xba, 0x52, 0xcd, 0xd4, 0xf3, 0xf7, 0xce, 0x9a, 0x70, 0xe0, 0x5d, 0xd5, - 0xa8, 0x04, 0x59, 0xc1, 0x66, 0x64, 0xe5, 0x74, 0x12, 0xd4, 0xfe, 0xa8, 0xf0, 0x7c, 0xe7, 0x10, - 0x98, 0xfc, 0x58, 0x90, 0x50, 0xa0, 0xcf, 0x70, 0xc8, 0xc9, 0xd2, 0x39, 0x11, 0xcd, 0x93, 0xeb, - 0x2d, 0xa4, 0xcd, 0x97, 0x2b, 0x86, 0x97, 0x98, 0x51, 0x34, 0x27, 0xf8, 0x21, 0x4f, 0x45, 0xe8, - 0x5c, 0x6e, 0xa6, 0x2a, 0x0d, 0x7f, 0xb5, 0x3d, 0x7c, 0x7f, 0xec, 0x13, 0x27, 0xe9, 0xba, 0xb5, - 0xa5, 0x25, 0xc8, 0x7a, 0xd4, 0xa7, 0x89, 0x45, 0x87, 0x38, 0x09, 0x6e, 0x55, 0xec, 0xa7, 0x54, - 0x20, 0x1d, 0x0e, 0xa6, 0xd4, 0x13, 0x84, 0xc7, 0x2b, 0x12, 0x7f, 0x5f, 0x85, 0xe8, 0x14, 0x0e, - 0xc2, 0x78, 0xd5, 0x27, 0x91, 0x9e, 0x93, 0x13, 0x94, 0xee, 0xae, 0x1c, 0x17, 0x38, 0x17, 0x83, - 0x1a, 0xd1, 0xdb, 0xbf, 0xca, 0xc6, 0xbf, 0x95, 0x78, 0x8f, 0x4e, 0xa0, 0xdc, 0xbc, 0x1a, 0x5e, - 0xe2, 0xce, 0x97, 0x51, 0x67, 0xd0, 0xb7, 0x5a, 0x03, 0xdc, 0xbb, 0x18, 0x59, 0x5f, 0xfb, 0xd7, - 0xfd, 0xc1, 0xb7, 0x7e, 0x71, 0x0f, 0xbd, 0x80, 0xca, 0x8e, 0x7c, 0xef, 0x02, 0x5f, 0x37, 0x63, - 0x80, 0x82, 0x2a, 0xf0, 0x74, 0x07, 0xa0, 0x3d, 0xea, 0x75, 0x8b, 0x2a, 0x2a, 0xc3, 0xf1, 0x8e, - 0x24, 0x1e, 0x8e, 0x8a, 0x99, 0xc6, 0x87, 0xef, 0xe7, 0x2e, 0x15, 0x37, 0x8b, 0x89, 0x61, 0x33, - 0xdf, 0x94, 0x93, 0x33, 0xee, 0x9a, 0xeb, 0xe7, 0xc1, 0x25, 0x81, 0x39, 0x9f, 0x9c, 0xba, 0xcc, - 0xdc, 0x7c, 0x31, 0x26, 0x39, 0xf9, 0x56, 0xbc, 0xff, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x03, 0x73, - 0x74, 0x66, 0xa3, 0x04, 0x00, 0x00, + // 600 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x54, 0x5d, 0x6f, 0xd3, 0x30, + 0x14, 0x5d, 0xd2, 0xb5, 0x23, 0xb7, 0x6c, 0x74, 0x66, 0x8c, 0xd0, 0xa2, 0x51, 0x2a, 0x21, 0x0a, + 0x68, 0x89, 0x34, 0xc4, 0x03, 0x9a, 0x90, 0xd8, 0x57, 0xd5, 0x6a, 0xfd, 0x40, 0x6e, 0x11, 0x12, + 0x2f, 0x51, 0x9b, 0xb8, 0x99, 0xd5, 0x24, 0x2e, 0x8e, 0x8b, 0x94, 0x57, 0xc4, 0x23, 0xfc, 0x03, + 0x7e, 0x2c, 0x8a, 0xdd, 0x76, 0x69, 0x57, 0xed, 0xcd, 0x37, 0xf7, 0xdc, 0x73, 0xef, 0xf1, 0xb9, + 0x31, 0xbc, 0x1e, 0x07, 0x89, 0x20, 0xd4, 0x0b, 0xec, 0xa1, 0x17, 0xd2, 0xc8, 0xf6, 0x48, 0xec, + 0x72, 0x3a, 0x15, 0x94, 0x45, 0x0e, 0x89, 0x04, 0x15, 0x89, 0x35, 0xe5, 0x4c, 0x30, 0xb4, 0xb7, + 0x00, 0x5a, 0x12, 0x58, 0x3e, 0x5a, 0x16, 0xba, 0x8c, 0x13, 0x9b, 0x7a, 0x29, 0x7a, 0x4c, 0x09, + 0x57, 0xf8, 0x72, 0x65, 0x8d, 0xd8, 0x65, 0x61, 0xc8, 0x22, 0x95, 0xac, 0xfd, 0xd6, 0x61, 0xff, + 0xf2, 0xb6, 0xd3, 0x95, 0x6c, 0x84, 0xde, 0x80, 0x4e, 0x3d, 0x53, 0xab, 0x6a, 0xf5, 0xe2, 0xc9, + 0x33, 0x6b, 0xd9, 0x2f, 0xe5, 0xb7, 0x5a, 0x4b, 0x7e, 0xac, 0x53, 0x0f, 0xbd, 0x83, 0xfd, 0xf8, + 0x86, 0x71, 0xe1, 0x64, 0xe6, 0x35, 0xf5, 0xaa, 0x56, 0x37, 0x70, 0x49, 0x26, 0x32, 0xec, 0xa8, + 0x01, 0xa5, 0x80, 0x45, 0xfe, 0x0a, 0x36, 0x27, 0xbb, 0x54, 0xac, 0x55, 0x55, 0x56, 0xa6, 0x0c, + 0x3f, 0x4a, 0x8b, 0xb2, 0x3c, 0xa7, 0x50, 0x8c, 0xd9, 0x8c, 0xbb, 0xc4, 0x71, 0x99, 0x47, 0xcc, + 0x6d, 0x49, 0x51, 0x5e, 0xa7, 0xe8, 0x4b, 0xc8, 0x05, 0xf3, 0x08, 0x86, 0x78, 0x79, 0x46, 0x08, + 0xb6, 0xc5, 0xd0, 0x8f, 0xcd, 0x7c, 0x35, 0x57, 0x37, 0xb0, 0x3c, 0xd7, 0xfe, 0x69, 0x50, 0xcc, + 0x36, 0x38, 0x84, 0xfc, 0xcf, 0x61, 0x30, 0x23, 0xf2, 0x0e, 0x8c, 0xe6, 0x16, 0x56, 0x21, 0x42, + 0x90, 0x9b, 0x71, 0xaa, 0xf4, 0x35, 0xb7, 0x70, 0x1a, 0xa0, 0x8f, 0x50, 0x18, 0x33, 0x1e, 0x0e, + 0x85, 0x94, 0xb2, 0x77, 0xf2, 0xf2, 0x1e, 0x29, 0x0d, 0x09, 0xc4, 0xf3, 0x02, 0x54, 0x01, 0x83, + 0xba, 0x2c, 0x72, 0x02, 0x1a, 0x4d, 0xa4, 0x0a, 0x03, 0x3f, 0x48, 0x3f, 0xb4, 0x69, 0x34, 0x39, + 0x37, 0x60, 0xc7, 0x65, 0x91, 0x20, 0x91, 0xa8, 0x55, 0x01, 0xfa, 0x2b, 0x02, 0x64, 0x81, 0x9c, + 0x0d, 0xcb, 0x73, 0xed, 0x97, 0x06, 0x4f, 0xee, 0xf8, 0xd8, 0xa6, 0xb1, 0x40, 0x7d, 0x78, 0xec, + 0xad, 0x25, 0x28, 0x89, 0x4d, 0xad, 0x9a, 0xab, 0x17, 0xef, 0x9d, 0x55, 0x71, 0xe0, 0x4d, 0xd5, + 0xe8, 0x00, 0xf2, 0x82, 0x4d, 0xc8, 0xc2, 0x69, 0x15, 0xd4, 0xfe, 0xe8, 0xf0, 0x7c, 0xe3, 0x10, + 0x98, 0xfc, 0x98, 0x91, 0x58, 0xa0, 0xcf, 0xb0, 0xcb, 0xc9, 0xdc, 0x39, 0x91, 0x4c, 0xd5, 0xf5, + 0xee, 0x65, 0xcd, 0x97, 0x2b, 0x86, 0xe7, 0x98, 0x41, 0x32, 0x25, 0xf8, 0x21, 0xcf, 0x44, 0xe8, + 0x83, 0xdc, 0x4c, 0x5d, 0x1a, 0xfe, 0x6a, 0x7d, 0xf8, 0xee, 0x30, 0x24, 0x9e, 0xea, 0xba, 0xb6, + 0xa5, 0x07, 0x90, 0x0f, 0x68, 0x48, 0x95, 0x45, 0xbb, 0x58, 0x05, 0xb7, 0x2a, 0xb6, 0x33, 0x2a, + 0x90, 0x09, 0x3b, 0x63, 0x1a, 0x08, 0xc2, 0xd3, 0x15, 0x49, 0xbf, 0x2f, 0x42, 0x74, 0x0c, 0x3b, + 0x71, 0xba, 0xea, 0xa3, 0xc4, 0x2c, 0xc8, 0x09, 0x0e, 0xee, 0xae, 0x1c, 0x17, 0xb8, 0x90, 0x82, + 0xce, 0x93, 0xb7, 0x7f, 0xb5, 0x95, 0x7f, 0x4b, 0x79, 0x8f, 0x8e, 0xa0, 0x7c, 0x79, 0xd5, 0xbf, + 0xc0, 0xad, 0x2f, 0x83, 0x56, 0xaf, 0xeb, 0x34, 0x7a, 0xb8, 0x73, 0x36, 0x70, 0xbe, 0x76, 0xaf, + 0xbb, 0xbd, 0x6f, 0xdd, 0xd2, 0x16, 0x7a, 0x01, 0x95, 0x0d, 0xf9, 0xce, 0x19, 0xbe, 0xbe, 0x4c, + 0x01, 0x1a, 0xaa, 0xc0, 0xd3, 0x0d, 0x80, 0xe6, 0xa0, 0xd3, 0x2e, 0xe9, 0xa8, 0x0c, 0x87, 0x1b, + 0x92, 0xb8, 0x3f, 0x28, 0xe5, 0xce, 0x3f, 0x7d, 0x3f, 0xf5, 0xa9, 0xb8, 0x99, 0x8d, 0x2c, 0x97, + 0x85, 0xb6, 0x9c, 0x9c, 0x71, 0x5f, 0x1d, 0xec, 0xe5, 0x23, 0xe1, 0x93, 0xc8, 0x9e, 0x8e, 0x8e, + 0x7d, 0x66, 0xaf, 0xbe, 0x1b, 0xa3, 0x82, 0x7c, 0x31, 0xde, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, + 0x01, 0x53, 0xea, 0xcd, 0xa9, 0x04, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/description_entity.pb.validate.go b/flyteidl/gen/pb-go/flyteidl/admin/description_entity.pb.validate.go index 3bfe3935b2..d1a462e0e8 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/description_entity.pb.validate.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/description_entity.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/flyteidl/gen/pb-go/flyteidl/admin/event.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/event.pb.go index 4e2edecb9f..e1a2d8b538 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/event.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/event.pb.go @@ -5,9 +5,10 @@ package admin import ( fmt "fmt" - event "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" - proto "github.com/golang/protobuf/proto" math "math" + + event "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -448,31 +449,31 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/event.proto", fileDescriptor_4581752dea61f248) } var fileDescriptor_4581752dea61f248 = []byte{ - // 404 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0x5f, 0x6b, 0xdb, 0x30, - 0x14, 0xc5, 0x93, 0xc1, 0xb2, 0xe5, 0xee, 0xcf, 0x83, 0x37, 0x46, 0x12, 0x96, 0x11, 0x3c, 0x18, - 0x7b, 0x89, 0x3d, 0x36, 0x46, 0x5b, 0xe8, 0x4b, 0x53, 0xd2, 0x26, 0x2f, 0xa5, 0xb8, 0x81, 0x42, - 0x5f, 0x8c, 0x6c, 0xdf, 0x38, 0x22, 0xb2, 0xe4, 0x4a, 0x72, 0xdb, 0x40, 0xbf, 0x74, 0xbf, 0x41, - 0x89, 0xec, 0xd4, 0x49, 0xeb, 0x50, 0x28, 0xf4, 0xcd, 0xba, 0xba, 0xf7, 0x9c, 0xdf, 0xb1, 0xb8, - 0xd0, 0x99, 0xb2, 0x85, 0x46, 0x1a, 0x31, 0x97, 0x44, 0x09, 0xe5, 0x2e, 0x5e, 0x21, 0xd7, 0x4e, - 0x2a, 0x85, 0x16, 0xd6, 0xe7, 0xd5, 0x9d, 0x63, 0xee, 0x3a, 0x65, 0xaf, 0xe9, 0x5a, 0xef, 0xb5, - 0x8f, 0xa1, 0x37, 0x5c, 0x1e, 0x87, 0x52, 0x0a, 0x79, 0xc0, 0x24, 0x92, 0x68, 0x31, 0xe6, 0x13, - 0x94, 0x09, 0xe5, 0x84, 0x9d, 0x69, 0xa2, 0xd1, 0xfa, 0x09, 0x9f, 0xc2, 0x4c, 0x4a, 0xe4, 0xda, - 0x4f, 0x67, 0x44, 0x61, 0xab, 0xde, 0xab, 0xff, 0x6e, 0x7a, 0x1f, 0x8b, 0xe2, 0xe9, 0xb2, 0x66, - 0xef, 0x41, 0xb7, 0x14, 0x1a, 0xf3, 0x50, 0x24, 0x29, 0xd1, 0x34, 0x60, 0x78, 0xc8, 0x32, 0xa5, - 0x51, 0x5a, 0x2d, 0x78, 0x17, 0xe6, 0x9f, 0xc5, 0xfc, 0xea, 0x68, 0xdf, 0xd5, 0xc1, 0x32, 0xb3, + // 406 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xdf, 0x6b, 0xdb, 0x30, + 0x10, 0xc7, 0x93, 0xc1, 0xb2, 0xe5, 0xf6, 0xe3, 0xc1, 0x1b, 0x23, 0x09, 0xcb, 0x08, 0x1e, 0x8c, + 0xbd, 0xc4, 0x1e, 0xdb, 0xcb, 0x4a, 0xdb, 0x87, 0xa6, 0xa4, 0x4d, 0x5e, 0x4a, 0x71, 0x03, 0x85, + 0xbe, 0x18, 0xd9, 0xbe, 0x38, 0x22, 0xb2, 0xe4, 0x4a, 0x72, 0xdb, 0x40, 0xff, 0xe9, 0xfe, 0x07, + 0x25, 0xb2, 0x53, 0x27, 0xad, 0x43, 0xa1, 0xd0, 0xb7, 0xd3, 0xe9, 0xee, 0x7b, 0x9f, 0xaf, 0xc4, + 0x41, 0x67, 0xca, 0x16, 0x1a, 0x69, 0xc4, 0x5c, 0x12, 0x25, 0x94, 0xbb, 0x78, 0x85, 0x5c, 0x3b, + 0xa9, 0x14, 0x5a, 0x58, 0x9f, 0x57, 0x77, 0x8e, 0xb9, 0xeb, 0x94, 0xb5, 0xa6, 0x6a, 0xbd, 0xd6, + 0x3e, 0x86, 0xde, 0x70, 0x79, 0x1c, 0x4a, 0x29, 0xe4, 0x01, 0x93, 0x48, 0xa2, 0xc5, 0x98, 0x4f, + 0x50, 0x26, 0x94, 0x13, 0x76, 0xa6, 0x89, 0x46, 0xeb, 0x27, 0x7c, 0x0a, 0x33, 0x29, 0x91, 0x6b, + 0x3f, 0x9d, 0x11, 0x85, 0xad, 0x7a, 0xaf, 0xfe, 0xbb, 0xe9, 0x7d, 0x2c, 0x92, 0xa7, 0xcb, 0x9c, + 0xbd, 0x03, 0xdd, 0x52, 0x68, 0xcc, 0x43, 0x91, 0xa4, 0x44, 0xd3, 0x80, 0xe1, 0x21, 0xcb, 0x94, + 0x46, 0x69, 0xb5, 0xe0, 0x5d, 0x98, 0x87, 0x45, 0xff, 0xea, 0x68, 0xdf, 0xd5, 0xc1, 0x32, 0xbd, 0x47, 0x84, 0xb2, 0x4c, 0xa2, 0x87, 0x44, 0x09, 0x6e, 0x25, 0xd0, 0x26, 0x39, 0x90, 0x4f, 0xb9, - 0xaf, 0x0b, 0x24, 0x5f, 0x2d, 0x99, 0x8c, 0xc4, 0x87, 0xbf, 0x7f, 0x9c, 0xcd, 0xa8, 0xce, 0x73, - 0x59, 0x46, 0x35, 0xef, 0x1b, 0xa9, 0x4e, 0x19, 0xc0, 0x57, 0xba, 0x86, 0xed, 0xaf, 0x60, 0xdf, - 0x18, 0xa7, 0xfe, 0x76, 0xa7, 0x8a, 0xb0, 0xa3, 0x9a, 0xf7, 0x85, 0x3e, 0x2d, 0x0f, 0xde, 0x43, - 0x43, 0x9a, 0x70, 0xf6, 0x2d, 0x74, 0xcf, 0x85, 0x9c, 0x4f, 0x99, 0xb8, 0x1e, 0xde, 0x60, 0x98, - 0x69, 0x2a, 0xb8, 0x91, 0xf4, 0xf0, 0x32, 0x43, 0xa5, 0xad, 0x2e, 0x80, 0xcc, 0x3f, 0x7d, 0x1a, - 0x15, 0x7f, 0xac, 0x59, 0x54, 0xc6, 0x91, 0xb5, 0x0f, 0x6f, 0xcd, 0x33, 0x16, 0x78, 0xbf, 0x4a, - 0xbc, 0xfc, 0x75, 0xb7, 0x88, 0xe7, 0x43, 0x76, 0x0f, 0x7e, 0x6c, 0x73, 0x57, 0xa9, 0xe0, 0x0a, - 0x6d, 0x0d, 0xed, 0x13, 0x11, 0xe1, 0x8b, 0xd8, 0x76, 0x37, 0xd9, 0xec, 0xc7, 0x6c, 0x15, 0xc2, - 0x05, 0xd7, 0x77, 0xe8, 0x54, 0xb9, 0x96, 0x4c, 0x13, 0xa2, 0xe6, 0xaf, 0xc2, 0x54, 0x21, 0x5c, - 0x32, 0x55, 0xb9, 0xe6, 0x4c, 0x83, 0x9d, 0x8b, 0xff, 0x31, 0xd5, 0xb3, 0x2c, 0x70, 0x42, 0x91, - 0xb8, 0x46, 0x54, 0xc8, 0xd8, 0x7d, 0xd8, 0xb8, 0x18, 0xb9, 0x9b, 0x06, 0xfd, 0x58, 0xb8, 0x9b, - 0x0b, 0x1b, 0x34, 0xcc, 0xfe, 0xfd, 0xbb, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x10, 0x23, 0xbf, 0x80, - 0xc9, 0x03, 0x00, 0x00, + 0xaf, 0x0b, 0x24, 0x5f, 0x2d, 0x99, 0x8c, 0xc4, 0x87, 0xbf, 0x7f, 0x9c, 0x4d, 0xab, 0xce, 0x73, + 0x5e, 0x46, 0x35, 0xef, 0x1b, 0xa9, 0x76, 0x19, 0xc0, 0x57, 0xba, 0x86, 0xed, 0xaf, 0x60, 0xdf, + 0x98, 0x49, 0xfd, 0xed, 0x93, 0x2a, 0xcc, 0x8e, 0x6a, 0xde, 0x17, 0xfa, 0x34, 0x3d, 0x78, 0x0f, + 0x0d, 0x69, 0xcc, 0xd9, 0xb7, 0xd0, 0x3d, 0x17, 0x72, 0x3e, 0x65, 0xe2, 0x7a, 0x78, 0x83, 0x61, + 0xa6, 0xa9, 0xe0, 0x46, 0xd2, 0xc3, 0xcb, 0x0c, 0x95, 0xb6, 0xba, 0x00, 0x32, 0x0f, 0x7d, 0x1a, + 0x15, 0x2f, 0xd6, 0x2c, 0x32, 0xe3, 0xc8, 0xda, 0x83, 0xb7, 0xe6, 0x1b, 0x0b, 0xbc, 0x5f, 0x25, + 0x5e, 0xfe, 0xbb, 0x5b, 0xc4, 0xf3, 0x26, 0xbb, 0x07, 0x3f, 0xb6, 0x4d, 0x57, 0xa9, 0xe0, 0x0a, + 0x6d, 0x0d, 0xed, 0x13, 0x11, 0xe1, 0x8b, 0xd8, 0xfe, 0x6f, 0xb2, 0xd9, 0x8f, 0xd9, 0x2a, 0x84, + 0x0b, 0xae, 0xef, 0xd0, 0xa9, 0x9a, 0x5a, 0x32, 0x4d, 0x88, 0x9a, 0xbf, 0x0a, 0x53, 0x85, 0x70, + 0xc9, 0x54, 0x35, 0x35, 0x67, 0x1a, 0xec, 0x5f, 0xec, 0xc6, 0x54, 0xcf, 0xb2, 0xc0, 0x09, 0x45, + 0xe2, 0x1a, 0x51, 0x21, 0xe3, 0x3c, 0x70, 0x1f, 0xf6, 0x2e, 0x46, 0xee, 0xa6, 0x41, 0x3f, 0x16, + 0xee, 0xe6, 0xda, 0x06, 0x0d, 0xb3, 0x85, 0xff, 0xee, 0x03, 0x00, 0x00, 0xff, 0xff, 0xea, 0x29, + 0x98, 0x7c, 0xcf, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/execution.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/execution.pb.go index 8cf8b91846..834447e8e2 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/execution.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/execution.pb.go @@ -5,12 +5,13 @@ package admin import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + math "math" + + core "github.com/flyteorg/flyte/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" wrappers "github.com/golang/protobuf/ptypes/wrappers" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -1731,118 +1732,118 @@ func init() { proto.RegisterFile("flyteidl/admin/execution.proto", fileDescripto var fileDescriptor_4e2785d91b3809ec = []byte{ // 1827 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0x5b, 0x73, 0xdb, 0xc6, - 0xf5, 0x17, 0x29, 0x52, 0xa2, 0x0e, 0x2d, 0x8a, 0x5e, 0x29, 0x32, 0x2c, 0x3b, 0xb6, 0x82, 0xcc, - 0xff, 0x6f, 0x4f, 0x32, 0x25, 0x27, 0x4a, 0x35, 0x99, 0xb8, 0x75, 0x26, 0x14, 0x45, 0x47, 0x4a, - 0x75, 0x71, 0x57, 0x17, 0xe7, 0x32, 0x19, 0x74, 0x05, 0xac, 0x48, 0x34, 0x00, 0x16, 0xde, 0x5d, - 0x48, 0xf6, 0x37, 0xe8, 0xf4, 0xa9, 0x8f, 0xed, 0x37, 0xe8, 0x53, 0x1f, 0xfb, 0xd0, 0xe7, 0x7e, - 0xb0, 0x0e, 0x16, 0x0b, 0x10, 0x00, 0x29, 0x4b, 0x1e, 0xeb, 0x0d, 0xbb, 0xe7, 0x77, 0x2e, 0x7b, - 0xf6, 0xdc, 0x16, 0xf0, 0xe8, 0xdc, 0x7b, 0x2b, 0xa9, 0xeb, 0x78, 0x5d, 0xe2, 0xf8, 0x6e, 0xd0, - 0xa5, 0x6f, 0xa8, 0x1d, 0x49, 0x97, 0x05, 0x9d, 0x90, 0x33, 0xc9, 0x50, 0x2b, 0xa5, 0x77, 0x14, - 0x7d, 0xed, 0x49, 0x09, 0x6f, 0x7b, 0x91, 0x90, 0x94, 0x5b, 0x44, 0x08, 0x77, 0x18, 0xf8, 0x34, - 0x90, 0x09, 0xe3, 0xda, 0x83, 0x32, 0x90, 0xf9, 0x7e, 0x2a, 0x75, 0xed, 0x61, 0x46, 0xb4, 0x19, - 0xa7, 0x5d, 0xcf, 0x95, 0x94, 0x13, 0x4f, 0x68, 0xea, 0xc7, 0x45, 0x6a, 0xc9, 0xa4, 0xb5, 0x47, - 0x45, 0xb2, 0xeb, 0xd0, 0x40, 0xba, 0xe7, 0x2e, 0xe5, 0x13, 0x9a, 0x15, 0xdd, 0xa7, 0x92, 0xbb, - 0xb6, 0x98, 0xae, 0x59, 0x50, 0x3b, 0xe2, 0xae, 0x7c, 0x9b, 0x8a, 0x1e, 0x32, 0x36, 0xf4, 0x68, - 0x57, 0xad, 0xce, 0xa2, 0xf3, 0xae, 0x13, 0x71, 0x92, 0x53, 0xfd, 0xb8, 0x4c, 0x97, 0xae, 0x4f, - 0x85, 0x24, 0x7e, 0x78, 0x95, 0x80, 0x4b, 0x4e, 0xc2, 0x90, 0x72, 0xad, 0xde, 0xfc, 0x6f, 0x05, - 0x56, 0x07, 0xe9, 0x79, 0xfa, 0x9c, 0x12, 0x49, 0x31, 0x7d, 0x1d, 0x51, 0x21, 0x91, 0x01, 0xf3, - 0x21, 0x67, 0x7f, 0xa6, 0xb6, 0x34, 0x2a, 0xeb, 0x95, 0xa7, 0x0b, 0x38, 0x5d, 0xa2, 0x55, 0x98, - 0x73, 0x98, 0x4f, 0xdc, 0xc0, 0xa8, 0x2a, 0x82, 0x5e, 0x21, 0x04, 0xb5, 0x80, 0xf8, 0xd4, 0x98, - 0x55, 0xbb, 0xea, 0x1b, 0x7d, 0x01, 0x35, 0x11, 0x52, 0xdb, 0xa8, 0xad, 0x57, 0x9e, 0x36, 0x37, - 0x3e, 0xee, 0x14, 0xaf, 0xaf, 0x93, 0xe9, 0x3e, 0x0a, 0xa9, 0x8d, 0x15, 0x14, 0x7d, 0x01, 0x73, - 0x6e, 0x10, 0x46, 0x52, 0x18, 0x75, 0xc5, 0x74, 0x7f, 0xcc, 0x14, 0xfb, 0xa8, 0xb3, 0x97, 0xdc, - 0xce, 0x3e, 0x09, 0xb1, 0x06, 0x9a, 0xff, 0xa8, 0x80, 0x91, 0x89, 0xc2, 0xd4, 0x23, 0x51, 0x60, - 0x8f, 0xd2, 0x83, 0x3c, 0x83, 0xaa, 0xeb, 0xa8, 0x33, 0x34, 0x37, 0x3e, 0x2b, 0xc9, 0x7a, 0xc5, - 0xf8, 0xaf, 0xe7, 0x1e, 0xbb, 0xcc, 0x98, 0x77, 0xb3, 0xdb, 0xc3, 0x55, 0xd7, 0x99, 0x7a, 0xa4, - 0x27, 0xb0, 0xc4, 0x2e, 0x28, 0xbf, 0xe4, 0xae, 0xa4, 0x96, 0x4d, 0xec, 0x11, 0x55, 0xa7, 0x6b, - 0xe0, 0x56, 0xb6, 0xdd, 0x8f, 0x77, 0xbf, 0xaf, 0x35, 0xaa, 0xed, 0x59, 0xf3, 0x9f, 0x15, 0xb8, - 0x97, 0xb3, 0xcd, 0x8e, 0x41, 0xb7, 0x69, 0x5a, 0x35, 0x67, 0xda, 0x73, 0x68, 0xf8, 0x54, 0x12, - 0x87, 0x48, 0xa2, 0x4c, 0x6e, 0x6e, 0x7c, 0x72, 0xa5, 0xc7, 0xf7, 0x35, 0x10, 0x67, 0x2c, 0xe6, - 0x49, 0xce, 0xd2, 0x34, 0x18, 0x44, 0xc8, 0x02, 0x41, 0x3f, 0xc4, 0x52, 0xf3, 0x47, 0x78, 0x30, - 0x01, 0xf9, 0x8e, 0xca, 0x5b, 0x70, 0x82, 0xf9, 0xef, 0x0a, 0x2c, 0x64, 0xb4, 0x0f, 0x72, 0x67, - 0x1a, 0xa8, 0xd5, 0x9b, 0x07, 0xea, 0x33, 0x98, 0xb7, 0x3d, 0x26, 0x22, 0x4e, 0xb5, 0xb3, 0xd7, - 0xaf, 0xe4, 0xea, 0x27, 0x38, 0x9c, 0x32, 0x98, 0x7f, 0x82, 0xc5, 0x8c, 0xb8, 0xe7, 0x0a, 0x89, - 0xbe, 0x06, 0xc8, 0x0a, 0x8b, 0x30, 0x2a, 0xeb, 0xb3, 0xc5, 0xc8, 0x2f, 0xc9, 0xc3, 0x39, 0x30, - 0x5a, 0x81, 0xba, 0x64, 0xbf, 0xd2, 0x34, 0x1d, 0x93, 0x85, 0x49, 0xa1, 0x35, 0xce, 0x94, 0x2d, - 0x8f, 0x9d, 0xa1, 0xaf, 0x60, 0xee, 0x82, 0x78, 0x11, 0x15, 0xda, 0x45, 0x57, 0x27, 0xd6, 0x56, - 0xd5, 0xa8, 0xec, 0xcc, 0x60, 0x0d, 0x47, 0x08, 0x66, 0x23, 0xee, 0x26, 0xe2, 0x77, 0x66, 0x70, - 0xbc, 0xd8, 0x9a, 0x83, 0x9a, 0x8a, 0x99, 0x3e, 0x2c, 0xf6, 0xce, 0x18, 0x97, 0x69, 0x38, 0xc5, - 0xd6, 0xd8, 0x24, 0x12, 0x54, 0x57, 0x8d, 0x64, 0x81, 0x1e, 0xc2, 0x42, 0xc8, 0xdd, 0xc0, 0x76, - 0x43, 0xe2, 0x69, 0x3b, 0xc7, 0x1b, 0xe6, 0xdf, 0xe7, 0xa1, 0x5d, 0xf6, 0x15, 0xfa, 0x06, 0xe6, - 0x59, 0x24, 0x55, 0x21, 0x48, 0xec, 0x7d, 0x54, 0x76, 0x47, 0xf1, 0x7c, 0xda, 0xe8, 0x94, 0x09, - 0x6d, 0x42, 0x9d, 0x72, 0xce, 0xf8, 0xe4, 0x95, 0xaa, 0xd3, 0x66, 0xfa, 0x06, 0x31, 0x68, 0x67, - 0x06, 0x27, 0x68, 0xf4, 0x7f, 0xd0, 0x24, 0xf1, 0x81, 0xac, 0xe4, 0x14, 0x10, 0xdb, 0xaa, 0x45, - 0x83, 0x22, 0xf4, 0xd5, 0x81, 0x5e, 0x40, 0x2b, 0x81, 0x65, 0x09, 0x77, 0x67, 0x7a, 0xe4, 0x14, - 0xbc, 0xb3, 0x33, 0x83, 0x17, 0x49, 0xc1, 0x5d, 0xdf, 0x42, 0x33, 0x31, 0xd8, 0x52, 0x42, 0x16, - 0x6f, 0x76, 0x33, 0x90, 0xf0, 0x6c, 0xc7, 0x12, 0x5e, 0xc0, 0x92, 0xcd, 0xfc, 0x30, 0x92, 0xd4, - 0xb1, 0x74, 0xe1, 0x9c, 0xbd, 0x81, 0x14, 0xdc, 0x4a, 0xb9, 0x76, 0x15, 0x13, 0xfa, 0x3d, 0xd4, - 0xc3, 0x11, 0x11, 0x49, 0x35, 0x6b, 0x6d, 0xfc, 0xff, 0x75, 0x09, 0xd4, 0x79, 0x19, 0xa3, 0x71, - 0xc2, 0x14, 0xc7, 0xaf, 0x90, 0x84, 0xc7, 0x46, 0x10, 0xa9, 0x2b, 0xf7, 0x5a, 0x27, 0x69, 0x3f, - 0x9d, 0xb4, 0xfd, 0x74, 0x8e, 0xd3, 0xfe, 0x84, 0x17, 0x34, 0xba, 0x27, 0xd1, 0x26, 0x34, 0xd2, - 0xbe, 0x66, 0xcc, 0x69, 0xcb, 0xcb, 0x8c, 0xdb, 0x1a, 0x80, 0x33, 0x68, 0xac, 0xd1, 0x56, 0x45, - 0x4a, 0x69, 0x9c, 0xbf, 0x5e, 0xa3, 0x46, 0xf7, 0x54, 0xb2, 0x45, 0xa1, 0x93, 0xb2, 0x36, 0xae, - 0x67, 0xd5, 0xe8, 0x9e, 0x44, 0x5b, 0xb0, 0x18, 0xb0, 0xb8, 0x6e, 0xd8, 0x24, 0x49, 0xd5, 0x05, - 0x95, 0xaa, 0x0f, 0xcb, 0xd7, 0x7e, 0x90, 0x03, 0xe1, 0x22, 0x0b, 0x7a, 0x06, 0xcd, 0x4b, 0xed, - 0x4d, 0xcb, 0x75, 0x8c, 0xe6, 0xd4, 0xdb, 0xca, 0xd5, 0x27, 0x48, 0xd1, 0xbb, 0x0e, 0xfa, 0x05, - 0x56, 0x84, 0x24, 0x71, 0xe7, 0x19, 0x91, 0x60, 0x48, 0x2d, 0x87, 0x4a, 0xe2, 0x7a, 0xc2, 0x68, - 0x29, 0x21, 0x9f, 0x5f, 0x5d, 0xb7, 0x62, 0xa6, 0xbe, 0xe2, 0xd9, 0x4e, 0x58, 0x30, 0x12, 0x13, - 0x7b, 0x5b, 0x4b, 0xb0, 0xa8, 0xc3, 0x91, 0x53, 0x11, 0x79, 0xd2, 0xfc, 0x19, 0x5a, 0x47, 0x6f, - 0x85, 0xa4, 0x7e, 0x16, 0xb1, 0x9f, 0xc3, 0xdd, 0xac, 0xf8, 0x58, 0x7a, 0xde, 0xd2, 0xc9, 0xde, - 0xa6, 0xe3, 0x24, 0x56, 0xfb, 0x71, 0xde, 0xc7, 0x9d, 0x49, 0x84, 0xc4, 0x4e, 0x5b, 0xd5, 0x78, - 0xc3, 0xfc, 0x4f, 0x0d, 0xee, 0x4e, 0x34, 0x24, 0xd4, 0x87, 0x9a, 0xcf, 0x9c, 0xa4, 0x80, 0xb4, - 0x36, 0xba, 0xd7, 0x76, 0xb0, 0xdc, 0x0e, 0x73, 0x28, 0x56, 0xcc, 0xef, 0x2e, 0x38, 0xf1, 0x70, - 0x13, 0x50, 0x21, 0xdd, 0x60, 0xa8, 0x72, 0x65, 0x11, 0xa7, 0x4b, 0xf4, 0x1c, 0xee, 0x08, 0x7b, - 0x44, 0x9d, 0xc8, 0x4b, 0x82, 0xa3, 0x76, 0x6d, 0x70, 0x34, 0x33, 0x7c, 0x4f, 0xa2, 0x9f, 0xe0, - 0xa3, 0x90, 0x70, 0x1a, 0x48, 0x2b, 0x60, 0x0e, 0xb5, 0x32, 0x7f, 0xe8, 0x8c, 0x28, 0x27, 0xd5, - 0x01, 0x73, 0xe8, 0xb4, 0x8e, 0xb4, 0x9c, 0x08, 0x29, 0x90, 0xd1, 0xcf, 0xb0, 0xcc, 0xe9, 0x39, - 0xe5, 0x34, 0xb0, 0xf3, 0x92, 0xdb, 0xef, 0xdd, 0xef, 0x50, 0x26, 0x66, 0x2c, 0xfc, 0x3b, 0x58, - 0x12, 0xea, 0x9e, 0xc7, 0x05, 0xed, 0xee, 0xf4, 0xaa, 0x5b, 0x0c, 0x07, 0xdc, 0x12, 0x85, 0xb5, - 0x39, 0xcc, 0x75, 0xb6, 0xf8, 0x3e, 0x10, 0xc0, 0xdc, 0x7e, 0xef, 0xe0, 0xa4, 0xb7, 0xd7, 0x9e, - 0x41, 0x8b, 0xb0, 0x70, 0xd4, 0xdf, 0x19, 0x6c, 0x9f, 0xec, 0x0d, 0xb6, 0xdb, 0x95, 0x98, 0x74, - 0xf4, 0xe3, 0xd1, 0xf1, 0x60, 0xbf, 0x5d, 0x45, 0x77, 0xa0, 0x81, 0x07, 0x7b, 0xbd, 0x93, 0x83, - 0xfe, 0x4e, 0x7b, 0x16, 0x21, 0x68, 0xf5, 0x77, 0x76, 0xf7, 0xb6, 0xad, 0x57, 0x87, 0xf8, 0x0f, - 0x2f, 0xf6, 0x0e, 0x5f, 0xb5, 0x6b, 0x31, 0x33, 0x1e, 0xf4, 0x0f, 0x4f, 0x07, 0x78, 0xb0, 0xdd, - 0xae, 0x9b, 0xa7, 0xd0, 0xce, 0x27, 0x99, 0xea, 0xa2, 0x13, 0xd9, 0x59, 0x79, 0xef, 0xec, 0x34, - 0xff, 0xd6, 0xc8, 0x9d, 0xe0, 0x28, 0x69, 0xf4, 0xcd, 0x64, 0xa4, 0xb4, 0x42, 0x8f, 0x04, 0x57, - 0x74, 0xcf, 0x7c, 0xbe, 0x26, 0xe8, 0x97, 0x1e, 0x09, 0xd0, 0x66, 0x36, 0xcd, 0x56, 0x6f, 0x52, - 0x94, 0x35, 0xf8, 0x03, 0x27, 0x39, 0xb4, 0x53, 0xf6, 0x43, 0x7d, 0xfa, 0x80, 0x52, 0x76, 0x60, - 0xdc, 0x9f, 0x8a, 0xb5, 0xea, 0x13, 0x68, 0x3a, 0xae, 0x20, 0x67, 0x1e, 0xb5, 0x88, 0xe7, 0xa9, - 0xfa, 0xdc, 0x88, 0x1b, 0x90, 0xde, 0xec, 0x79, 0x1e, 0xea, 0xc0, 0x9c, 0x47, 0xce, 0xa8, 0x27, - 0x74, 0x11, 0x5e, 0x9d, 0xe8, 0xd3, 0x8a, 0x8a, 0x35, 0x0a, 0x3d, 0x87, 0x26, 0x09, 0x02, 0x26, - 0xb5, 0x69, 0x49, 0xf9, 0x7d, 0x30, 0xd1, 0x37, 0xc7, 0x10, 0x9c, 0xc7, 0xa3, 0x5d, 0x68, 0xa7, - 0xcf, 0x24, 0xcb, 0x66, 0x81, 0xa4, 0x6f, 0xa4, 0xea, 0xd2, 0x85, 0x50, 0x55, 0xbe, 0x3d, 0xd2, - 0xb0, 0x7e, 0x82, 0xc2, 0x4b, 0xa2, 0xb8, 0x81, 0xbe, 0x86, 0x05, 0x12, 0xc9, 0x91, 0xc5, 0x99, - 0x47, 0x75, 0x1e, 0x19, 0x13, 0x76, 0x44, 0x72, 0x84, 0x99, 0x47, 0xd5, 0xf5, 0x34, 0x88, 0x5e, - 0xa1, 0x7d, 0x40, 0xaf, 0x23, 0xe2, 0xc5, 0x46, 0xb0, 0x73, 0x4b, 0x50, 0x7e, 0xe1, 0xda, 0x54, - 0xa7, 0xcc, 0xe3, 0x92, 0x1d, 0x7f, 0x4c, 0x80, 0x87, 0xe7, 0x47, 0x09, 0x0c, 0xb7, 0x5f, 0x97, - 0x76, 0xe2, 0x47, 0x85, 0x4f, 0xde, 0x58, 0x21, 0xe1, 0xc4, 0xf3, 0xa8, 0xe7, 0x0a, 0xdf, 0x40, - 0xeb, 0x95, 0xa7, 0x75, 0xdc, 0xf2, 0xc9, 0x9b, 0x97, 0xe3, 0x5d, 0xf4, 0x03, 0xac, 0x72, 0x72, - 0x69, 0xe5, 0x66, 0x86, 0xd8, 0x09, 0xe7, 0xee, 0xd0, 0x58, 0x56, 0xba, 0x3f, 0x2d, 0xdb, 0x8f, - 0xc9, 0xe5, 0x61, 0x36, 0x2c, 0xf4, 0x15, 0x14, 0x2f, 0xf3, 0xc9, 0x4d, 0xf4, 0x12, 0xd0, 0xe4, - 0xeb, 0xd9, 0x58, 0x99, 0x1e, 0x7c, 0xba, 0xbe, 0xf7, 0x32, 0x20, 0xbe, 0x6b, 0x97, 0xb7, 0xd0, - 0xb7, 0xb0, 0xe8, 0x06, 0x92, 0x72, 0x1e, 0x85, 0xd2, 0x3d, 0xf3, 0xa8, 0xf1, 0xd1, 0x15, 0xc5, - 0x74, 0x8b, 0x31, 0xef, 0x34, 0x9e, 0x35, 0x71, 0x91, 0x61, 0xda, 0x5b, 0x6b, 0x75, 0xda, 0x5b, - 0x0b, 0x3d, 0x85, 0x1a, 0x0d, 0x2e, 0x84, 0x71, 0x4f, 0x69, 0x58, 0x99, 0xc8, 0x95, 0xe0, 0x42, - 0x60, 0x85, 0x88, 0xdf, 0x4d, 0x92, 0x0c, 0x85, 0x61, 0xac, 0xcf, 0xc6, 0xef, 0xa6, 0xf8, 0x7b, - 0xcb, 0x80, 0xd5, 0x7c, 0xd4, 0x5b, 0xb1, 0x70, 0xee, 0x3a, 0x54, 0x7c, 0x5f, 0x6b, 0xd4, 0xda, - 0x75, 0xd3, 0x87, 0xfb, 0x59, 0xb6, 0x1d, 0x53, 0xee, 0xbb, 0x41, 0xee, 0xa1, 0xfc, 0x21, 0xaf, - 0x8e, 0x6c, 0x58, 0xae, 0xe6, 0x86, 0x65, 0xf3, 0x21, 0xac, 0x4d, 0x53, 0x97, 0x3c, 0xc5, 0xcc, - 0x5f, 0xe0, 0xf1, 0xb4, 0xe7, 0x54, 0x7c, 0x93, 0xb7, 0xf1, 0xa4, 0xfa, 0x4b, 0x15, 0xd6, 0xaf, - 0x96, 0xaf, 0x9f, 0x83, 0x9b, 0xe5, 0xd9, 0xfc, 0x5e, 0xd9, 0xe3, 0x27, 0xdc, 0x4b, 0x87, 0xf2, - 0xf1, 0x48, 0xfe, 0x65, 0xa9, 0x18, 0xbe, 0x93, 0x2b, 0x2d, 0x85, 0xcf, 0xa0, 0x79, 0x1e, 0x79, - 0xde, 0x4d, 0x67, 0x5b, 0x0c, 0x31, 0x3a, 0x9b, 0x69, 0xef, 0x28, 0xde, 0xd4, 0xd8, 0xda, 0x75, - 0xcc, 0x4a, 0x55, 0x92, 0x1a, 0xc2, 0xfc, 0x6b, 0xfe, 0xef, 0xc8, 0x89, 0x1a, 0x01, 0x6f, 0xe3, - 0xd2, 0x7f, 0x0b, 0x75, 0x35, 0x79, 0x29, 0x27, 0xb4, 0x26, 0x1b, 0x6c, 0x71, 0x66, 0xc3, 0x09, - 0xd8, 0xfc, 0x57, 0x05, 0x1e, 0xbc, 0x63, 0x9a, 0x1b, 0x4b, 0xad, 0xbc, 0x87, 0x54, 0xf4, 0x3b, - 0x68, 0x32, 0xdb, 0x8e, 0x38, 0x4f, 0xa6, 0x9d, 0xea, 0xb5, 0xd3, 0x0e, 0xa4, 0xf0, 0x9e, 0x2c, - 0xce, 0x58, 0xb3, 0xe5, 0x47, 0xdd, 0xfd, 0xdc, 0xdf, 0x84, 0xd4, 0x79, 0x3a, 0x84, 0x2f, 0xc0, - 0x9c, 0x16, 0x62, 0xfb, 0xc9, 0xaf, 0xb1, 0x5b, 0x4a, 0x2c, 0x87, 0x86, 0x72, 0xa4, 0x4e, 0x54, - 0xc7, 0xc9, 0xc2, 0x3c, 0x80, 0x4f, 0xdf, 0xa9, 0x57, 0x47, 0xf7, 0x13, 0xa8, 0x89, 0x30, 0x6b, - 0xf4, 0xcb, 0xe5, 0xae, 0x12, 0x92, 0x00, 0x2b, 0xc0, 0x67, 0xdf, 0x40, 0xab, 0xe8, 0x56, 0xb4, - 0x02, 0xed, 0xc1, 0x0f, 0x83, 0xfe, 0xc9, 0xf1, 0xee, 0xe1, 0x81, 0xd5, 0xeb, 0x1f, 0xef, 0x9e, - 0x0e, 0xda, 0x33, 0x68, 0x15, 0x50, 0x6e, 0x17, 0xf7, 0x77, 0x76, 0x4f, 0xe3, 0xf9, 0x67, 0xeb, - 0xab, 0x9f, 0x36, 0x87, 0xae, 0x1c, 0x45, 0x67, 0x1d, 0x9b, 0xf9, 0x5d, 0xa5, 0x86, 0xf1, 0x61, - 0x37, 0xfb, 0x27, 0x38, 0xa4, 0x41, 0x37, 0x3c, 0xfb, 0xcd, 0x90, 0x75, 0x8b, 0x7f, 0x2f, 0xcf, - 0xe6, 0xd4, 0xcd, 0x7c, 0xf9, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xbe, 0xd1, 0xc1, 0xb5, 0x2f, + 0x15, 0x16, 0x29, 0x52, 0xa2, 0x0e, 0x2d, 0x8a, 0x5e, 0x29, 0x32, 0x2c, 0x3b, 0xb6, 0x82, 0x4c, + 0x6b, 0x4f, 0x32, 0x25, 0x27, 0x4a, 0x3d, 0x9d, 0x38, 0x75, 0x26, 0x14, 0x45, 0x47, 0x4a, 0x75, + 0x71, 0x57, 0x17, 0xe7, 0x32, 0x19, 0x74, 0x05, 0xac, 0x48, 0xd4, 0x00, 0x16, 0xde, 0x5d, 0x48, + 0xf6, 0x3f, 0xe8, 0xf4, 0xa9, 0x8f, 0xed, 0x3f, 0xe8, 0x53, 0x1f, 0xfb, 0xd0, 0xe7, 0xfe, 0xb0, + 0x0c, 0x16, 0x0b, 0x10, 0x00, 0x29, 0x4b, 0x1e, 0xeb, 0x0d, 0xbb, 0xe7, 0x3b, 0x97, 0x3d, 0x7b, + 0x6e, 0x0b, 0x78, 0x70, 0xe6, 0xbd, 0x95, 0xd4, 0x75, 0xbc, 0x2e, 0x71, 0x7c, 0x37, 0xe8, 0xd2, + 0x37, 0xd4, 0x8e, 0xa4, 0xcb, 0x82, 0x4e, 0xc8, 0x99, 0x64, 0xa8, 0x95, 0xd2, 0x3b, 0x8a, 0xbe, + 0xf6, 0xa8, 0x84, 0xb7, 0xbd, 0x48, 0x48, 0xca, 0x2d, 0x22, 0x84, 0x3b, 0x0c, 0x7c, 0x1a, 0xc8, + 0x84, 0x71, 0xed, 0x5e, 0x19, 0xc8, 0x7c, 0x3f, 0x95, 0xba, 0x76, 0x3f, 0x23, 0xda, 0x8c, 0xd3, + 0xae, 0xe7, 0x4a, 0xca, 0x89, 0x27, 0x34, 0xf5, 0xe3, 0x22, 0xb5, 0x64, 0xd2, 0xda, 0x83, 0x22, + 0xd9, 0x75, 0x68, 0x20, 0xdd, 0x33, 0x97, 0xf2, 0x09, 0xcd, 0x8a, 0xee, 0x53, 0xc9, 0x5d, 0x5b, + 0x4c, 0xd7, 0x2c, 0xa8, 0x1d, 0x71, 0x57, 0xbe, 0x4d, 0x45, 0x0f, 0x19, 0x1b, 0x7a, 0xb4, 0xab, + 0x56, 0xa7, 0xd1, 0x59, 0xd7, 0x89, 0x38, 0xc9, 0xa9, 0x7e, 0x58, 0xa6, 0x4b, 0xd7, 0xa7, 0x42, + 0x12, 0x3f, 0xbc, 0x4c, 0xc0, 0x05, 0x27, 0x61, 0x48, 0xb9, 0x56, 0x6f, 0xfe, 0xbf, 0x02, 0xab, + 0x83, 0xf4, 0x3c, 0x7d, 0x4e, 0x89, 0xa4, 0x98, 0xbe, 0x8e, 0xa8, 0x90, 0xc8, 0x80, 0xf9, 0x90, + 0xb3, 0xbf, 0x52, 0x5b, 0x1a, 0x95, 0xf5, 0xca, 0xe3, 0x05, 0x9c, 0x2e, 0xd1, 0x2a, 0xcc, 0x39, + 0xcc, 0x27, 0x6e, 0x60, 0x54, 0x15, 0x41, 0xaf, 0x10, 0x82, 0x5a, 0x40, 0x7c, 0x6a, 0xcc, 0xaa, + 0x5d, 0xf5, 0x8d, 0xbe, 0x80, 0x9a, 0x08, 0xa9, 0x6d, 0xd4, 0xd6, 0x2b, 0x8f, 0x9b, 0x1b, 0x1f, + 0x77, 0x8a, 0xd7, 0xd7, 0xc9, 0x74, 0x1f, 0x86, 0xd4, 0xc6, 0x0a, 0x8a, 0xbe, 0x80, 0x39, 0x37, + 0x08, 0x23, 0x29, 0x8c, 0xba, 0x62, 0xba, 0x3b, 0x66, 0x8a, 0x7d, 0xd4, 0xd9, 0x4d, 0x6e, 0x67, + 0x8f, 0x84, 0x58, 0x03, 0xcd, 0x7f, 0x55, 0xc0, 0xc8, 0x44, 0x61, 0xea, 0x91, 0x28, 0xb0, 0x47, + 0xe9, 0x41, 0x9e, 0x42, 0xd5, 0x75, 0xd4, 0x19, 0x9a, 0x1b, 0x9f, 0x95, 0x64, 0xbd, 0x64, 0xfc, + 0xd5, 0x99, 0xc7, 0x2e, 0x32, 0xe6, 0x9d, 0xec, 0xf6, 0x70, 0xd5, 0x75, 0xa6, 0x1e, 0xe9, 0x11, + 0x2c, 0xb1, 0x73, 0xca, 0x2f, 0xb8, 0x2b, 0xa9, 0x65, 0x13, 0x7b, 0x44, 0xd5, 0xe9, 0x1a, 0xb8, + 0x95, 0x6d, 0xf7, 0xe3, 0xdd, 0xef, 0x6b, 0x8d, 0x6a, 0x7b, 0xd6, 0xfc, 0x77, 0x05, 0xee, 0xe4, + 0x6c, 0xb3, 0x63, 0xd0, 0x4d, 0x9a, 0x56, 0xcd, 0x99, 0xf6, 0x0c, 0x1a, 0x3e, 0x95, 0xc4, 0x21, + 0x92, 0x28, 0x93, 0x9b, 0x1b, 0x9f, 0x5c, 0xea, 0xf1, 0x3d, 0x0d, 0xc4, 0x19, 0x8b, 0x79, 0x9c, + 0xb3, 0x34, 0x0d, 0x06, 0x11, 0xb2, 0x40, 0xd0, 0x0f, 0xb1, 0xd4, 0xfc, 0x11, 0xee, 0x4d, 0x40, + 0xbe, 0xa3, 0xf2, 0x06, 0x9c, 0x60, 0xfe, 0xb7, 0x02, 0x0b, 0x19, 0xed, 0x83, 0xdc, 0x99, 0x06, + 0x6a, 0xf5, 0xfa, 0x81, 0xfa, 0x14, 0xe6, 0x6d, 0x8f, 0x89, 0x88, 0x53, 0xed, 0xec, 0xf5, 0x4b, + 0xb9, 0xfa, 0x09, 0x0e, 0xa7, 0x0c, 0xe6, 0x5f, 0x60, 0x31, 0x23, 0xee, 0xba, 0x42, 0xa2, 0xaf, + 0x00, 0xb2, 0xc2, 0x22, 0x8c, 0xca, 0xfa, 0x6c, 0x31, 0xf2, 0x4b, 0xf2, 0x70, 0x0e, 0x8c, 0x56, + 0xa0, 0x2e, 0xd9, 0x2b, 0x9a, 0xa6, 0x63, 0xb2, 0x30, 0x29, 0xb4, 0xc6, 0x99, 0xb2, 0xe9, 0xb1, + 0x53, 0xf4, 0x07, 0x98, 0x3b, 0x27, 0x5e, 0x44, 0x85, 0x76, 0xd1, 0xe5, 0x89, 0xb5, 0x59, 0x35, + 0x2a, 0xdb, 0x33, 0x58, 0xc3, 0x11, 0x82, 0xd9, 0x88, 0xbb, 0x89, 0xf8, 0xed, 0x19, 0x1c, 0x2f, + 0x36, 0xe7, 0xa0, 0xa6, 0x62, 0xa6, 0x0f, 0x8b, 0xbd, 0x53, 0xc6, 0x65, 0x1a, 0x4e, 0xb1, 0x35, + 0x36, 0x89, 0x04, 0xd5, 0x55, 0x23, 0x59, 0xa0, 0xfb, 0xb0, 0x10, 0x72, 0x37, 0xb0, 0xdd, 0x90, + 0x78, 0xda, 0xce, 0xf1, 0x86, 0xf9, 0xcf, 0x79, 0x68, 0x97, 0x7d, 0x85, 0xbe, 0x81, 0x79, 0x16, + 0x49, 0x55, 0x08, 0x12, 0x7b, 0x1f, 0x94, 0xdd, 0x51, 0x3c, 0x9f, 0x36, 0x3a, 0x65, 0x42, 0x4f, + 0xa0, 0x4e, 0x39, 0x67, 0x7c, 0xf2, 0x4a, 0xd5, 0x69, 0x33, 0x7d, 0x83, 0x18, 0xb4, 0x3d, 0x83, + 0x13, 0x34, 0xfa, 0x0d, 0x34, 0x49, 0x7c, 0x20, 0x2b, 0x39, 0x05, 0xc4, 0xb6, 0x6a, 0xd1, 0xa0, + 0x08, 0x7d, 0x75, 0xa0, 0xe7, 0xd0, 0x4a, 0x60, 0x59, 0xc2, 0xdd, 0x9a, 0x1e, 0x39, 0x05, 0xef, + 0x6c, 0xcf, 0xe0, 0x45, 0x52, 0x70, 0xd7, 0xb7, 0xd0, 0x4c, 0x0c, 0xb6, 0x94, 0x90, 0xc5, 0xeb, + 0xdd, 0x0c, 0x24, 0x3c, 0x5b, 0xb1, 0x84, 0xe7, 0xb0, 0x64, 0x33, 0x3f, 0x8c, 0x24, 0x75, 0x2c, + 0x5d, 0x38, 0x67, 0xaf, 0x21, 0x05, 0xb7, 0x52, 0xae, 0x1d, 0xc5, 0x84, 0xfe, 0x08, 0xf5, 0x70, + 0x44, 0x44, 0x52, 0xcd, 0x5a, 0x1b, 0xbf, 0xbd, 0x2a, 0x81, 0x3a, 0x2f, 0x62, 0x34, 0x4e, 0x98, + 0xe2, 0xf8, 0x15, 0x92, 0xf0, 0xd8, 0x08, 0x22, 0x75, 0xe5, 0x5e, 0xeb, 0x24, 0xed, 0xa7, 0x93, + 0xb6, 0x9f, 0xce, 0x51, 0xda, 0x9f, 0xf0, 0x82, 0x46, 0xf7, 0x24, 0x7a, 0x02, 0x8d, 0xb4, 0xaf, + 0x19, 0x73, 0xda, 0xf2, 0x32, 0xe3, 0x96, 0x06, 0xe0, 0x0c, 0x1a, 0x6b, 0xb4, 0x55, 0x91, 0x52, + 0x1a, 0xe7, 0xaf, 0xd6, 0xa8, 0xd1, 0x3d, 0x95, 0x6c, 0x51, 0xe8, 0xa4, 0xac, 0x8d, 0xab, 0x59, + 0x35, 0xba, 0x27, 0xd1, 0x26, 0x2c, 0x06, 0x2c, 0xae, 0x1b, 0x36, 0x49, 0x52, 0x75, 0x41, 0xa5, + 0xea, 0xfd, 0xf2, 0xb5, 0xef, 0xe7, 0x40, 0xb8, 0xc8, 0x82, 0x9e, 0x42, 0xf3, 0x42, 0x7b, 0xd3, + 0x72, 0x1d, 0xa3, 0x39, 0xf5, 0xb6, 0x72, 0xf5, 0x09, 0x52, 0xf4, 0x8e, 0x83, 0x7e, 0x81, 0x15, + 0x21, 0x49, 0xdc, 0x79, 0x46, 0x24, 0x18, 0x52, 0xcb, 0xa1, 0x92, 0xb8, 0x9e, 0x30, 0x5a, 0x4a, + 0xc8, 0xe7, 0x97, 0xd7, 0xad, 0x98, 0xa9, 0xaf, 0x78, 0xb6, 0x12, 0x16, 0x8c, 0xc4, 0xc4, 0xde, + 0xe6, 0x12, 0x2c, 0xea, 0x70, 0xe4, 0x54, 0x44, 0x9e, 0x34, 0x7f, 0x86, 0xd6, 0xe1, 0x5b, 0x21, + 0xa9, 0x9f, 0x45, 0xec, 0xe7, 0x70, 0x3b, 0x2b, 0x3e, 0x96, 0x9e, 0xb7, 0x74, 0xb2, 0xb7, 0xe9, + 0x38, 0x89, 0xd5, 0x7e, 0x9c, 0xf7, 0x71, 0x67, 0x12, 0x21, 0xb1, 0xd3, 0x56, 0x35, 0xde, 0x30, + 0xff, 0x57, 0x83, 0xdb, 0x13, 0x0d, 0x09, 0xf5, 0xa1, 0xe6, 0x33, 0x27, 0x29, 0x20, 0xad, 0x8d, + 0xee, 0x95, 0x1d, 0x2c, 0xb7, 0xc3, 0x1c, 0x8a, 0x15, 0xf3, 0xbb, 0x0b, 0x4e, 0x3c, 0xdc, 0x04, + 0x54, 0x48, 0x37, 0x18, 0xaa, 0x5c, 0x59, 0xc4, 0xe9, 0x12, 0x3d, 0x83, 0x5b, 0xc2, 0x1e, 0x51, + 0x27, 0xf2, 0x92, 0xe0, 0xa8, 0x5d, 0x19, 0x1c, 0xcd, 0x0c, 0xdf, 0x93, 0xe8, 0x27, 0xf8, 0x28, + 0x24, 0x9c, 0x06, 0xd2, 0x0a, 0x98, 0x43, 0xad, 0xcc, 0x1f, 0x3a, 0x23, 0xca, 0x49, 0xb5, 0xcf, + 0x1c, 0x3a, 0xad, 0x23, 0x2d, 0x27, 0x42, 0x0a, 0x64, 0xf4, 0x33, 0x2c, 0x73, 0x7a, 0x46, 0x39, + 0x0d, 0xec, 0xbc, 0xe4, 0xf6, 0x7b, 0xf7, 0x3b, 0x94, 0x89, 0x19, 0x0b, 0xff, 0x0e, 0x96, 0x84, + 0xba, 0xe7, 0x71, 0x41, 0xbb, 0x3d, 0xbd, 0xea, 0x16, 0xc3, 0x01, 0xb7, 0x44, 0x61, 0x6d, 0x0e, + 0x73, 0x9d, 0x2d, 0xbe, 0x0f, 0x04, 0x30, 0xb7, 0xd7, 0xdb, 0x3f, 0xee, 0xed, 0xb6, 0x67, 0xd0, + 0x22, 0x2c, 0x1c, 0xf6, 0xb7, 0x07, 0x5b, 0xc7, 0xbb, 0x83, 0xad, 0x76, 0x25, 0x26, 0x1d, 0xfe, + 0x78, 0x78, 0x34, 0xd8, 0x6b, 0x57, 0xd1, 0x2d, 0x68, 0xe0, 0xc1, 0x6e, 0xef, 0x78, 0xbf, 0xbf, + 0xdd, 0x9e, 0x45, 0x08, 0x5a, 0xfd, 0xed, 0x9d, 0xdd, 0x2d, 0xeb, 0xe5, 0x01, 0xfe, 0xd3, 0xf3, + 0xdd, 0x83, 0x97, 0xed, 0x5a, 0xcc, 0x8c, 0x07, 0xfd, 0x83, 0x93, 0x01, 0x1e, 0x6c, 0xb5, 0xeb, + 0xe6, 0x09, 0xb4, 0xf3, 0x49, 0xa6, 0xba, 0xe8, 0x44, 0x76, 0x56, 0xde, 0x3b, 0x3b, 0xcd, 0x7f, + 0x34, 0x72, 0x27, 0x38, 0x4c, 0x1a, 0x7d, 0x33, 0x19, 0x29, 0xad, 0xd0, 0x23, 0xc1, 0x25, 0xdd, + 0x33, 0x9f, 0xaf, 0x09, 0xfa, 0x85, 0x47, 0x02, 0xf4, 0x24, 0x9b, 0x66, 0xab, 0xd7, 0x29, 0xca, + 0x1a, 0xfc, 0x81, 0x93, 0x1c, 0xda, 0x2e, 0xfb, 0xa1, 0x3e, 0x7d, 0x40, 0x29, 0x3b, 0x30, 0xee, + 0x4f, 0xc5, 0x5a, 0xf5, 0x09, 0x34, 0x1d, 0x57, 0x90, 0x53, 0x8f, 0x5a, 0xc4, 0xf3, 0x54, 0x7d, + 0x6e, 0xc4, 0x0d, 0x48, 0x6f, 0xf6, 0x3c, 0x0f, 0x75, 0x60, 0xce, 0x23, 0xa7, 0xd4, 0x13, 0xba, + 0x08, 0xaf, 0x4e, 0xf4, 0x69, 0x45, 0xc5, 0x1a, 0x85, 0x9e, 0x41, 0x93, 0x04, 0x01, 0x93, 0xda, + 0xb4, 0xa4, 0xfc, 0xde, 0x9b, 0xe8, 0x9b, 0x63, 0x08, 0xce, 0xe3, 0xd1, 0x0e, 0xb4, 0xd3, 0x67, + 0x92, 0x65, 0xb3, 0x40, 0xd2, 0x37, 0x52, 0x75, 0xe9, 0x42, 0xa8, 0x2a, 0xdf, 0x1e, 0x6a, 0x58, + 0x3f, 0x41, 0xe1, 0x25, 0x51, 0xdc, 0x40, 0x5f, 0xc1, 0x02, 0x89, 0xe4, 0xc8, 0xe2, 0xcc, 0xa3, + 0x3a, 0x8f, 0x8c, 0x09, 0x3b, 0x22, 0x39, 0xc2, 0xcc, 0xa3, 0xea, 0x7a, 0x1a, 0x44, 0xaf, 0xd0, + 0x1e, 0xa0, 0xd7, 0x11, 0xf1, 0x62, 0x23, 0xd8, 0x99, 0x25, 0x28, 0x3f, 0x77, 0x6d, 0xaa, 0x53, + 0xe6, 0x61, 0xc9, 0x8e, 0x3f, 0x27, 0xc0, 0x83, 0xb3, 0xc3, 0x04, 0x86, 0xdb, 0xaf, 0x4b, 0x3b, + 0xf1, 0xa3, 0xc2, 0x27, 0x6f, 0xac, 0x90, 0x70, 0xe2, 0x79, 0xd4, 0x73, 0x85, 0x6f, 0xa0, 0xf5, + 0xca, 0xe3, 0x3a, 0x6e, 0xf9, 0xe4, 0xcd, 0x8b, 0xf1, 0x2e, 0xfa, 0x01, 0x56, 0x39, 0xb9, 0xb0, + 0x72, 0x33, 0x43, 0xec, 0x84, 0x33, 0x77, 0x68, 0x2c, 0x2b, 0xdd, 0x9f, 0x96, 0xed, 0xc7, 0xe4, + 0xe2, 0x20, 0x1b, 0x16, 0xfa, 0x0a, 0x8a, 0x97, 0xf9, 0xe4, 0x26, 0x7a, 0x01, 0x68, 0xf2, 0xf5, + 0x6c, 0xac, 0x4c, 0x0f, 0x3e, 0x5d, 0xdf, 0x7b, 0x19, 0x10, 0xdf, 0xb6, 0xcb, 0x5b, 0xe8, 0x5b, + 0x58, 0x74, 0x03, 0x49, 0x39, 0x8f, 0x42, 0xe9, 0x9e, 0x7a, 0xd4, 0xf8, 0xe8, 0x92, 0x62, 0xba, + 0xc9, 0x98, 0x77, 0x12, 0xcf, 0x9a, 0xb8, 0xc8, 0x30, 0xed, 0xad, 0xb5, 0x3a, 0xed, 0xad, 0x85, + 0x1e, 0x43, 0x8d, 0x06, 0xe7, 0xc2, 0xb8, 0xa3, 0x34, 0xac, 0x4c, 0xe4, 0x4a, 0x70, 0x2e, 0xb0, + 0x42, 0xc4, 0xef, 0x26, 0x49, 0x86, 0xc2, 0x30, 0xd6, 0x67, 0xe3, 0x77, 0x53, 0xfc, 0xbd, 0x69, + 0xc0, 0x6a, 0x3e, 0xea, 0xad, 0x58, 0x38, 0x77, 0x1d, 0x2a, 0xbe, 0xaf, 0x35, 0x6a, 0xed, 0xba, + 0xe9, 0xc3, 0xdd, 0x2c, 0xdb, 0x8e, 0x28, 0xf7, 0xdd, 0x20, 0xf7, 0x50, 0xfe, 0x90, 0x57, 0x47, + 0x36, 0x2c, 0x57, 0x73, 0xc3, 0xb2, 0x79, 0x1f, 0xd6, 0xa6, 0xa9, 0x4b, 0x9e, 0x62, 0xe6, 0x2f, + 0xf0, 0x70, 0xda, 0x73, 0x2a, 0xbe, 0xc9, 0x9b, 0x78, 0x52, 0xfd, 0xad, 0x0a, 0xeb, 0x97, 0xcb, + 0xd7, 0xcf, 0xc1, 0x27, 0xe5, 0xd9, 0xfc, 0x4e, 0xd9, 0xe3, 0xc7, 0xdc, 0x4b, 0x87, 0xf2, 0xf1, + 0x48, 0xfe, 0x65, 0xa9, 0x18, 0xbe, 0x93, 0x2b, 0x2d, 0x85, 0x4f, 0xa1, 0x79, 0x16, 0x79, 0xde, + 0x75, 0x67, 0x5b, 0x0c, 0x31, 0x3a, 0x9b, 0x69, 0x6f, 0x29, 0xde, 0xd4, 0xd8, 0xda, 0x55, 0xcc, + 0x4a, 0x55, 0x92, 0x1a, 0xc2, 0xfc, 0x7b, 0xfe, 0xef, 0xc8, 0xb1, 0x1a, 0x01, 0x6f, 0xe2, 0xd2, + 0x7f, 0x0f, 0x75, 0x35, 0x79, 0x29, 0x27, 0xb4, 0x26, 0x1b, 0x6c, 0x71, 0x66, 0xc3, 0x09, 0xd8, + 0xfc, 0x4f, 0x05, 0xee, 0xbd, 0x63, 0x9a, 0x1b, 0x4b, 0xad, 0xbc, 0x87, 0x54, 0xf4, 0x35, 0x34, + 0x99, 0x6d, 0x47, 0x9c, 0x27, 0xd3, 0x4e, 0xf5, 0xca, 0x69, 0x07, 0x52, 0x78, 0x4f, 0x16, 0x67, + 0xac, 0xd9, 0xf2, 0xa3, 0xee, 0x6e, 0xee, 0x6f, 0x42, 0xea, 0x3c, 0x1d, 0xc2, 0xe7, 0x60, 0x4e, + 0x0b, 0xb1, 0xbd, 0xe4, 0xd7, 0xd8, 0x0d, 0x25, 0x96, 0x43, 0x43, 0x39, 0x52, 0x27, 0xaa, 0xe3, + 0x64, 0x61, 0xee, 0xc3, 0xa7, 0xef, 0xd4, 0xab, 0xa3, 0xfb, 0x11, 0xd4, 0x44, 0x98, 0x35, 0xfa, + 0xe5, 0x72, 0x57, 0x09, 0x49, 0x80, 0x15, 0xe0, 0xb3, 0x6f, 0xa0, 0x55, 0x74, 0x2b, 0x5a, 0x81, + 0xf6, 0xe0, 0x87, 0x41, 0xff, 0xf8, 0x68, 0xe7, 0x60, 0xdf, 0xea, 0xf5, 0x8f, 0x76, 0x4e, 0x06, + 0xed, 0x19, 0xb4, 0x0a, 0x28, 0xb7, 0x8b, 0xfb, 0xdb, 0x3b, 0x27, 0xf1, 0xfc, 0xb3, 0xf9, 0xec, + 0xa7, 0xaf, 0x87, 0xae, 0x1c, 0x45, 0xa7, 0x1d, 0x9b, 0xf9, 0x5d, 0xa5, 0x86, 0xf1, 0x61, 0xf2, + 0xd1, 0xcd, 0xfe, 0x0c, 0x0e, 0x69, 0xd0, 0x0d, 0x4f, 0x7f, 0x37, 0x64, 0xdd, 0xe2, 0x3f, 0xcc, + 0xd3, 0x39, 0x75, 0x3f, 0x5f, 0xfe, 0x1a, 0x00, 0x00, 0xff, 0xff, 0x9d, 0xaa, 0x3a, 0xc4, 0x35, 0x15, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/execution.pb.validate.go b/flyteidl/gen/pb-go/flyteidl/admin/execution.pb.validate.go index a0a80f8483..6ca7ee0f43 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/execution.pb.validate.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/execution.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/flyteidl/gen/pb-go/flyteidl/admin/launch_plan.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/launch_plan.pb.go index c8280a86f1..17ec7e41d8 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/launch_plan.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/launch_plan.pb.go @@ -5,11 +5,12 @@ package admin import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" timestamp "github.com/golang/protobuf/ptypes/timestamp" wrappers "github.com/golang/protobuf/ptypes/wrappers" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -310,10 +311,10 @@ type LaunchPlanSpec struct { // Metadata for the Launch Plan EntityMetadata *LaunchPlanMetadata `protobuf:"bytes,2,opt,name=entity_metadata,json=entityMetadata,proto3" json:"entity_metadata,omitempty"` // Input values to be passed for the execution. - // These can be overriden when an execution is created with this launch plan. + // These can be overridden when an execution is created with this launch plan. DefaultInputs *core.ParameterMap `protobuf:"bytes,3,opt,name=default_inputs,json=defaultInputs,proto3" json:"default_inputs,omitempty"` // Fixed, non-overridable inputs for the Launch Plan. - // These can not be overriden when an execution is created with this launch plan. + // These can not be overridden when an execution is created with this launch plan. FixedInputs *core.LiteralMap `protobuf:"bytes,4,opt,name=fixed_inputs,json=fixedInputs,proto3" json:"fixed_inputs,omitempty"` // String to indicate the role to use to execute the workflow underneath Role string `protobuf:"bytes,5,opt,name=role,proto3" json:"role,omitempty"` // Deprecated: Do not use. @@ -850,77 +851,77 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/launch_plan.proto", fileDescriptor_368a863574f5e699) } var fileDescriptor_368a863574f5e699 = []byte{ - // 1151 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x6d, 0x6f, 0x1b, 0xc5, - 0x13, 0xff, 0xdb, 0x75, 0x9e, 0x26, 0x8d, 0x93, 0x6e, 0xfb, 0x4f, 0x0f, 0xb7, 0xb4, 0xc1, 0x08, - 0x11, 0xa0, 0xb5, 0xa5, 0x42, 0x85, 0x5a, 0x5a, 0x09, 0x27, 0xcd, 0x0b, 0x8b, 0x3e, 0x84, 0x4d, - 0xa9, 0x10, 0x6f, 0x4e, 0xeb, 0xbb, 0xb1, 0xbd, 0x74, 0xef, 0xf6, 0xba, 0xbb, 0x97, 0x38, 0xe2, - 0x3b, 0xf0, 0x39, 0x10, 0xdf, 0x81, 0x8f, 0xc0, 0x77, 0x42, 0xb7, 0xb7, 0x77, 0xb6, 0xef, 0x12, - 0x15, 0x90, 0x78, 0x65, 0xcf, 0xce, 0xef, 0x37, 0x3b, 0x33, 0x3b, 0x0f, 0x07, 0x7b, 0x63, 0x71, - 0x6e, 0x90, 0x87, 0xa2, 0xcf, 0xc2, 0x88, 0xc7, 0x7d, 0xc1, 0xd2, 0x38, 0x98, 0xfa, 0x89, 0x60, - 0x71, 0x2f, 0x51, 0xd2, 0x48, 0xd2, 0x2e, 0x10, 0x3d, 0x8b, 0xe8, 0x7c, 0x58, 0x32, 0x02, 0xa9, - 0xb0, 0x8f, 0x33, 0x0c, 0x52, 0xc3, 0xa5, 0x83, 0x77, 0x6e, 0x2f, 0xab, 0x05, 0x37, 0xa8, 0x98, - 0xd0, 0x4e, 0x7b, 0x67, 0x59, 0xcb, 0x43, 0x8c, 0x0d, 0x1f, 0x73, 0x54, 0x4e, 0x5f, 0x31, 0xce, - 0x63, 0x83, 0x6a, 0xcc, 0x02, 0xbc, 0xd8, 0xb8, 0xc6, 0x20, 0x55, 0xdc, 0x9c, 0xd7, 0xc8, 0x79, - 0x2c, 0x3a, 0x98, 0x62, 0x98, 0x8a, 0x82, 0x7c, 0xab, 0xa2, 0x0e, 0x64, 0x14, 0x95, 0x6e, 0xdf, - 0x9d, 0x48, 0x39, 0x11, 0xd8, 0xb7, 0xd2, 0x28, 0x1d, 0xf7, 0x0d, 0x8f, 0x50, 0x1b, 0x16, 0x25, - 0x85, 0xe7, 0x55, 0xc0, 0x99, 0x62, 0x49, 0x82, 0xca, 0x45, 0xd6, 0x9d, 0xc1, 0xcd, 0xe7, 0x36, - 0x77, 0xc7, 0x82, 0xc5, 0x87, 0x0a, 0x99, 0x41, 0x8a, 0xef, 0x52, 0xd4, 0x86, 0x7c, 0x06, 0x4d, - 0x1e, 0x7a, 0x8d, 0xbd, 0xc6, 0xfe, 0xe6, 0x83, 0x0f, 0x7a, 0x65, 0x3a, 0xb3, 0x10, 0x7a, 0xc3, - 0x32, 0x03, 0xb4, 0xc9, 0x43, 0xf2, 0x00, 0x5a, 0x3a, 0xc1, 0xc0, 0x6b, 0x5a, 0xf0, 0x9d, 0xde, - 0x72, 0xee, 0x7b, 0xf3, 0x1b, 0x4e, 0x12, 0x0c, 0xa8, 0xc5, 0x76, 0x3b, 0xe0, 0xd5, 0x6f, 0xd6, - 0x89, 0x8c, 0x35, 0x76, 0x7f, 0x6b, 0x00, 0xcc, 0x95, 0xff, 0xb1, 0x27, 0xe4, 0x1b, 0x58, 0x0b, - 0x84, 0xd4, 0xa9, 0x42, 0xef, 0x8a, 0xa5, 0x7d, 0x74, 0x39, 0xed, 0x30, 0x07, 0xd2, 0x82, 0xd1, - 0x45, 0x68, 0xcf, 0xb5, 0xcf, 0xb9, 0x36, 0xe4, 0x29, 0x5c, 0x5d, 0x28, 0x47, 0xed, 0x35, 0xf6, - 0xae, 0xec, 0x6f, 0x3e, 0xe8, 0x5c, 0x6e, 0x93, 0x6e, 0x8a, 0xf2, 0xbf, 0x26, 0x37, 0x60, 0xc5, - 0xc8, 0xb7, 0x18, 0xdb, 0x10, 0x36, 0x68, 0x2e, 0x74, 0x4f, 0xa1, 0x35, 0x48, 0xcd, 0x94, 0xdc, - 0x03, 0xc2, 0xb4, 0x4e, 0x23, 0x36, 0x12, 0xe8, 0x73, 0x16, 0xf9, 0x4a, 0x0a, 0xb4, 0xa9, 0xd9, - 0xa0, 0x3b, 0xa5, 0x66, 0xc8, 0x22, 0x2a, 0x05, 0x92, 0x27, 0xd0, 0x79, 0x9b, 0x8e, 0x50, 0xc5, - 0x68, 0x50, 0xfb, 0x1a, 0xd5, 0x29, 0x0f, 0xd0, 0x67, 0x41, 0x20, 0xd3, 0xd8, 0xb8, 0x0b, 0xbc, - 0x39, 0xe2, 0x24, 0x07, 0x0c, 0x72, 0xfd, 0xe3, 0xa6, 0xd7, 0xe8, 0xfe, 0xb1, 0xb6, 0x18, 0x5f, - 0x96, 0x34, 0xf2, 0x18, 0x36, 0xcf, 0xa4, 0x7a, 0x3b, 0x16, 0xf2, 0xcc, 0xff, 0x3b, 0xcf, 0x02, - 0x05, 0x7a, 0x18, 0x92, 0xef, 0x60, 0x3b, 0x3b, 0x37, 0xe7, 0x7e, 0x84, 0x86, 0x85, 0xcc, 0x30, - 0xf7, 0x52, 0xdd, 0xcb, 0xd3, 0xf3, 0xc2, 0x21, 0x69, 0x3b, 0xa7, 0x16, 0x32, 0x39, 0x80, 0x76, - 0x88, 0x63, 0x96, 0x0a, 0xe3, 0xf3, 0x38, 0x49, 0x8d, 0x76, 0xcf, 0x77, 0xab, 0xe2, 0xcb, 0x31, - 0x53, 0x2c, 0x42, 0x83, 0xea, 0x05, 0x4b, 0xe8, 0x96, 0xa3, 0x0c, 0x2d, 0x83, 0x3c, 0x81, 0xab, - 0x63, 0x3e, 0xc3, 0xb0, 0xb0, 0xd0, 0xba, 0x30, 0x9a, 0xe7, 0xf9, 0x38, 0xc8, 0xf8, 0x9b, 0x16, - 0xee, 0xd8, 0xbb, 0xd0, 0xb2, 0xf9, 0x5f, 0xc9, 0x32, 0x79, 0xd0, 0xf4, 0x1a, 0xd4, 0xca, 0xa4, - 0x07, 0xab, 0x82, 0x8d, 0x50, 0x68, 0x6f, 0xd5, 0xda, 0xdb, 0xad, 0x47, 0x97, 0x69, 0xa9, 0x43, - 0x91, 0xa7, 0xb0, 0xc9, 0xe2, 0x58, 0x1a, 0x96, 0x4d, 0x24, 0xed, 0xad, 0x55, 0xc3, 0xc8, 0x49, - 0x83, 0x39, 0x84, 0x2e, 0xe2, 0xc9, 0x3d, 0x68, 0xb1, 0xd4, 0x4c, 0xbd, 0x75, 0xcb, 0xbb, 0x51, - 0xe3, 0xa5, 0x66, 0x9a, 0x3b, 0x97, 0xa1, 0xc8, 0x23, 0xd8, 0xc8, 0x7e, 0xf3, 0xca, 0xd9, 0xb0, - 0x14, 0xef, 0x22, 0x4a, 0x56, 0x41, 0x96, 0xb6, 0xce, 0x9c, 0x44, 0x86, 0xb0, 0x53, 0x0c, 0x2f, - 0x3f, 0x90, 0xb1, 0xc1, 0x99, 0xf1, 0xa0, 0xda, 0x69, 0x36, 0x63, 0x27, 0x0e, 0x76, 0x98, 0xa3, - 0xe8, 0xb6, 0x5e, 0x3e, 0x20, 0x2f, 0x80, 0xbc, 0x4b, 0x99, 0xc8, 0x2c, 0xc9, 0x71, 0x51, 0x9a, - 0xde, 0x8e, 0x35, 0x76, 0xb7, 0x62, 0xec, 0xfb, 0x1c, 0xf8, 0x6a, 0xec, 0x0a, 0x94, 0xee, 0xbc, - 0xab, 0x9c, 0x90, 0x1f, 0x61, 0x57, 0xb1, 0x33, 0x5f, 0xa6, 0x26, 0x49, 0x8d, 0x9f, 0x95, 0x47, - 0xe6, 0xe0, 0x98, 0x4f, 0xbc, 0x6b, 0xd6, 0xe4, 0xc7, 0xd5, 0x08, 0x29, 0x3b, 0x7b, 0x65, 0xc1, - 0xcf, 0x98, 0x61, 0x87, 0x16, 0x4a, 0xaf, 0xab, 0xfa, 0x21, 0xf9, 0x14, 0xb6, 0x23, 0x36, 0xf3, - 0x13, 0xa6, 0x98, 0x10, 0x28, 0xb8, 0x8e, 0x3c, 0xb2, 0xd7, 0xd8, 0x5f, 0xa1, 0xed, 0x88, 0xcd, - 0x8e, 0xe7, 0xa7, 0xe4, 0x5b, 0xd8, 0xb2, 0x83, 0x5f, 0xa5, 0x89, 0xe1, 0x23, 0x81, 0xde, 0x75, - 0x7b, 0x73, 0xa7, 0x97, 0x8f, 0xe0, 0x5e, 0x31, 0x82, 0x7b, 0x07, 0x52, 0x8a, 0x37, 0x4c, 0xa4, - 0x48, 0x97, 0x09, 0xd9, 0x55, 0xf2, 0x14, 0xd5, 0x99, 0xe2, 0x06, 0xfd, 0x80, 0x05, 0x53, 0xf4, - 0x6e, 0xec, 0x35, 0xf6, 0xd7, 0x69, 0xbb, 0x3c, 0x3e, 0xcc, 0x4e, 0xc9, 0x3e, 0xb4, 0x30, 0x3e, - 0xd5, 0xde, 0xff, 0x2f, 0x7e, 0xf0, 0xa3, 0xf8, 0x54, 0x53, 0x8b, 0xe8, 0xfe, 0xd9, 0x84, 0x6b, - 0xb5, 0xe9, 0x45, 0x1e, 0xc2, 0x8a, 0x36, 0xcc, 0xe4, 0x83, 0xa3, 0xbd, 0x98, 0xef, 0xda, 0x98, - 0xcc, 0x60, 0x34, 0x47, 0x93, 0x67, 0xb0, 0x8d, 0xb3, 0x04, 0x03, 0x33, 0xef, 0x97, 0xe6, 0xfb, - 0x3b, 0xae, 0x5d, 0x70, 0x5c, 0xd3, 0x1c, 0xc1, 0x4e, 0x69, 0x25, 0x7f, 0xaf, 0xa2, 0x71, 0x3b, - 0x15, 0x33, 0x6f, 0x98, 0xe2, 0xd9, 0x38, 0xcb, 0xac, 0x94, 0x37, 0xe7, 0x0f, 0xa4, 0xc9, 0x23, - 0x80, 0xc0, 0x6e, 0x8d, 0xd0, 0x67, 0xc6, 0xf5, 0x6d, 0x3d, 0xd7, 0xaf, 0x8b, 0x7d, 0x48, 0x37, - 0x1c, 0x7a, 0x60, 0x32, 0x6a, 0x9a, 0x84, 0x05, 0x75, 0xe5, 0xfd, 0x54, 0x87, 0x1e, 0x98, 0xee, - 0xaf, 0x0d, 0x20, 0xf5, 0xd1, 0x44, 0xbe, 0x82, 0xf5, 0x62, 0x6d, 0xbb, 0x81, 0x58, 0x6b, 0xa9, - 0x13, 0xa7, 0xa7, 0x25, 0x92, 0x1c, 0xc0, 0x56, 0x2c, 0xb3, 0x29, 0x19, 0xb8, 0xc6, 0x6f, 0xda, - 0x55, 0x71, 0xbb, 0x4a, 0x7d, 0xb9, 0x00, 0xa2, 0xcb, 0x94, 0xee, 0x2f, 0x8b, 0x0b, 0xfc, 0x07, - 0xeb, 0xe7, 0xbf, 0x58, 0xe0, 0x65, 0x41, 0x34, 0xff, 0x49, 0x41, 0x2c, 0xef, 0xf0, 0xe2, 0x72, - 0xb7, 0xc3, 0x8f, 0xe1, 0xe6, 0x20, 0x30, 0xfc, 0x14, 0x17, 0x16, 0x9d, 0x73, 0xec, 0xe1, 0x82, - 0x63, 0x9f, 0xd4, 0x82, 0x65, 0x11, 0x86, 0x47, 0x76, 0xd2, 0x2f, 0x3b, 0xd9, 0xfd, 0xbd, 0x01, - 0xb7, 0xaa, 0x26, 0xb3, 0x8d, 0x5b, 0x98, 0xf5, 0x60, 0x2d, 0x51, 0xf2, 0x67, 0x0c, 0x8c, 0x5b, - 0x88, 0x85, 0x48, 0x76, 0x61, 0x35, 0x94, 0x11, 0xe3, 0xc5, 0x52, 0x75, 0x52, 0xb6, 0x6b, 0x05, - 0x8f, 0xb8, 0xb1, 0xf5, 0xb7, 0x45, 0x73, 0x61, 0xbe, 0x81, 0x5b, 0x0b, 0x1b, 0x98, 0xdc, 0x87, - 0x35, 0x2d, 0x95, 0xf1, 0x47, 0xe7, 0xae, 0x62, 0x6a, 0x6d, 0x77, 0x22, 0x95, 0xa1, 0xab, 0x19, - 0xe8, 0xe0, 0xfc, 0xf3, 0x2f, 0x60, 0xbb, 0x92, 0x34, 0x72, 0x15, 0xd6, 0x87, 0x2f, 0x07, 0x87, - 0xaf, 0x87, 0x6f, 0x8e, 0x76, 0xfe, 0x47, 0x00, 0x56, 0xdd, 0xff, 0xc6, 0xc1, 0xd7, 0x3f, 0x3d, - 0x9c, 0x70, 0x33, 0x4d, 0x47, 0xbd, 0x40, 0x46, 0x7d, 0x6b, 0x56, 0xaa, 0x49, 0xbf, 0xfc, 0xf2, - 0x9b, 0x60, 0xdc, 0x4f, 0x46, 0xf7, 0x27, 0xb2, 0xbf, 0xfc, 0x31, 0x38, 0x5a, 0xb5, 0xd5, 0xfa, - 0xe5, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xde, 0x54, 0x4c, 0x65, 0x10, 0x0b, 0x00, 0x00, + // 1152 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xdb, 0x6e, 0xdb, 0x46, + 0x13, 0xfe, 0xa5, 0xc8, 0xa7, 0x71, 0x2c, 0x3b, 0x9b, 0xfc, 0x0e, 0xab, 0xa4, 0x89, 0xab, 0xa2, + 0xa8, 0xdb, 0x26, 0x12, 0x90, 0x36, 0x17, 0x39, 0x01, 0x95, 0x1d, 0x5f, 0x08, 0xcd, 0xc1, 0x5d, + 0xa7, 0x41, 0xd1, 0x1b, 0x62, 0x45, 0x8e, 0xa4, 0x6d, 0x96, 0x5c, 0x66, 0x77, 0x69, 0xcb, 0xe8, + 0x3b, 0xf4, 0x39, 0x8a, 0xbe, 0x43, 0x1f, 0xa1, 0xef, 0x54, 0x70, 0xb9, 0xa4, 0x24, 0xd2, 0x46, + 0xda, 0x02, 0xbd, 0x12, 0x67, 0xe7, 0xfb, 0x66, 0x67, 0x66, 0xe7, 0x20, 0xd8, 0x1b, 0x8b, 0x73, + 0x83, 0x3c, 0x14, 0x7d, 0x16, 0x46, 0x3c, 0xee, 0x0b, 0x96, 0xc6, 0xc1, 0xd4, 0x4f, 0x04, 0x8b, + 0x7b, 0x89, 0x92, 0x46, 0x92, 0x76, 0x81, 0xe8, 0x59, 0x44, 0xe7, 0xe3, 0x92, 0x11, 0x48, 0x85, + 0x7d, 0x9c, 0x61, 0x90, 0x1a, 0x2e, 0x1d, 0xbc, 0x73, 0x7b, 0x59, 0x2d, 0xb8, 0x41, 0xc5, 0x84, + 0x76, 0xda, 0x3b, 0xcb, 0x5a, 0x1e, 0x62, 0x6c, 0xf8, 0x98, 0xa3, 0x72, 0xfa, 0x8a, 0x71, 0x1e, + 0x1b, 0x54, 0x63, 0x16, 0xe0, 0xc5, 0xc6, 0x35, 0x06, 0xa9, 0xe2, 0xe6, 0xbc, 0x46, 0xce, 0x63, + 0xd1, 0xc1, 0x14, 0xc3, 0x54, 0x14, 0xe4, 0x5b, 0x15, 0x75, 0x20, 0xa3, 0xa8, 0x74, 0xfb, 0xee, + 0x44, 0xca, 0x89, 0xc0, 0xbe, 0x95, 0x46, 0xe9, 0xb8, 0x6f, 0x78, 0x84, 0xda, 0xb0, 0x28, 0x29, + 0x3c, 0xaf, 0x02, 0xce, 0x14, 0x4b, 0x12, 0x54, 0x2e, 0xb2, 0xee, 0x0c, 0x6e, 0xbe, 0xb0, 0xb9, + 0x3b, 0x16, 0x2c, 0x3e, 0x54, 0xc8, 0x0c, 0x52, 0x7c, 0x9f, 0xa2, 0x36, 0xe4, 0x0b, 0x68, 0xf2, + 0xd0, 0x6b, 0xec, 0x35, 0xf6, 0x37, 0x1f, 0x7c, 0xd4, 0x2b, 0xd3, 0x99, 0x85, 0xd0, 0x1b, 0x96, + 0x19, 0xa0, 0x4d, 0x1e, 0x92, 0x07, 0xd0, 0xd2, 0x09, 0x06, 0x5e, 0xd3, 0x82, 0xef, 0xf4, 0x96, + 0x73, 0xdf, 0x9b, 0xdf, 0x70, 0x92, 0x60, 0x40, 0x2d, 0xb6, 0xdb, 0x01, 0xaf, 0x7e, 0xb3, 0x4e, + 0x64, 0xac, 0xb1, 0xfb, 0x5b, 0x03, 0x60, 0xae, 0xfc, 0x8f, 0x3d, 0x21, 0x4f, 0x60, 0x2d, 0x10, + 0x52, 0xa7, 0x0a, 0xbd, 0x2b, 0x96, 0xf6, 0xc9, 0xe5, 0xb4, 0xc3, 0x1c, 0x48, 0x0b, 0x46, 0x17, + 0xa1, 0x3d, 0xd7, 0xbe, 0xe0, 0xda, 0x90, 0x67, 0x70, 0x75, 0xa1, 0x1c, 0xb5, 0xd7, 0xd8, 0xbb, + 0xb2, 0xbf, 0xf9, 0xa0, 0x73, 0xb9, 0x4d, 0xba, 0x29, 0xca, 0x6f, 0x4d, 0x6e, 0xc0, 0x8a, 0x91, + 0xef, 0x30, 0xb6, 0x21, 0x6c, 0xd0, 0x5c, 0xe8, 0x9e, 0x42, 0x6b, 0x90, 0x9a, 0x29, 0xb9, 0x07, + 0x84, 0x69, 0x9d, 0x46, 0x6c, 0x24, 0xd0, 0xe7, 0x2c, 0xf2, 0x95, 0x14, 0x68, 0x53, 0xb3, 0x41, + 0x77, 0x4a, 0xcd, 0x90, 0x45, 0x54, 0x0a, 0x24, 0x4f, 0xa1, 0xf3, 0x2e, 0x1d, 0xa1, 0x8a, 0xd1, + 0xa0, 0xf6, 0x35, 0xaa, 0x53, 0x1e, 0xa0, 0xcf, 0x82, 0x40, 0xa6, 0xb1, 0x71, 0x17, 0x78, 0x73, + 0xc4, 0x49, 0x0e, 0x18, 0xe4, 0xfa, 0xc7, 0x4d, 0xaf, 0xd1, 0xfd, 0x63, 0x6d, 0x31, 0xbe, 0x2c, + 0x69, 0xe4, 0x31, 0x6c, 0x9e, 0x49, 0xf5, 0x6e, 0x2c, 0xe4, 0x99, 0xff, 0x77, 0x9e, 0x05, 0x0a, + 0xf4, 0x30, 0x24, 0xdf, 0xc1, 0x76, 0x76, 0x6e, 0xce, 0xfd, 0x08, 0x0d, 0x0b, 0x99, 0x61, 0xee, + 0xa5, 0xba, 0x97, 0xa7, 0xe7, 0xa5, 0x43, 0xd2, 0x76, 0x4e, 0x2d, 0x64, 0x72, 0x00, 0xed, 0x10, + 0xc7, 0x2c, 0x15, 0xc6, 0xe7, 0x71, 0x92, 0x1a, 0xed, 0x9e, 0xef, 0x56, 0xc5, 0x97, 0x63, 0xa6, + 0x58, 0x84, 0x06, 0xd5, 0x4b, 0x96, 0xd0, 0x2d, 0x47, 0x19, 0x5a, 0x06, 0x79, 0x0a, 0x57, 0xc7, + 0x7c, 0x86, 0x61, 0x61, 0xa1, 0x75, 0x61, 0x34, 0x2f, 0xf2, 0x71, 0x90, 0xf1, 0x37, 0x2d, 0xdc, + 0xb1, 0x77, 0xa1, 0x65, 0xf3, 0xbf, 0x92, 0x65, 0xf2, 0xa0, 0xe9, 0x35, 0xa8, 0x95, 0x49, 0x0f, + 0x56, 0x05, 0x1b, 0xa1, 0xd0, 0xde, 0xaa, 0xb5, 0xb7, 0x5b, 0x8f, 0x2e, 0xd3, 0x52, 0x87, 0x22, + 0xcf, 0x60, 0x93, 0xc5, 0xb1, 0x34, 0x2c, 0x9b, 0x48, 0xda, 0x5b, 0xab, 0x86, 0x91, 0x93, 0x06, + 0x73, 0x08, 0x5d, 0xc4, 0x93, 0x7b, 0xd0, 0x62, 0xa9, 0x99, 0x7a, 0xeb, 0x96, 0x77, 0xa3, 0xc6, + 0x4b, 0xcd, 0x34, 0x77, 0x2e, 0x43, 0x91, 0x47, 0xb0, 0x91, 0xfd, 0xe6, 0x95, 0xb3, 0x61, 0x29, + 0xde, 0x45, 0x94, 0xac, 0x82, 0x2c, 0x6d, 0x9d, 0x39, 0x89, 0x0c, 0x61, 0xa7, 0x18, 0x5e, 0x7e, + 0x20, 0x63, 0x83, 0x33, 0xe3, 0x41, 0xb5, 0xd3, 0x6c, 0xc6, 0x4e, 0x1c, 0xec, 0x30, 0x47, 0xd1, + 0x6d, 0xbd, 0x7c, 0x40, 0x5e, 0x02, 0x79, 0x9f, 0x32, 0x91, 0x59, 0x92, 0xe3, 0xa2, 0x34, 0xbd, + 0x1d, 0x6b, 0xec, 0x6e, 0xc5, 0xd8, 0xf7, 0x39, 0xf0, 0xf5, 0xd8, 0x15, 0x28, 0xdd, 0x79, 0x5f, + 0x39, 0x21, 0x3f, 0xc2, 0xae, 0x62, 0x67, 0xbe, 0x4c, 0x4d, 0x92, 0x1a, 0x3f, 0x2b, 0x8f, 0xcc, + 0xc1, 0x31, 0x9f, 0x78, 0xd7, 0xac, 0xc9, 0x4f, 0xab, 0x11, 0x52, 0x76, 0xf6, 0xda, 0x82, 0x9f, + 0x33, 0xc3, 0x0e, 0x2d, 0x94, 0x5e, 0x57, 0xf5, 0x43, 0xf2, 0x39, 0x6c, 0x47, 0x6c, 0xe6, 0x27, + 0x4c, 0x31, 0x21, 0x50, 0x70, 0x1d, 0x79, 0x64, 0xaf, 0xb1, 0xbf, 0x42, 0xdb, 0x11, 0x9b, 0x1d, + 0xcf, 0x4f, 0xc9, 0xb7, 0xb0, 0x65, 0x07, 0xbf, 0x4a, 0x13, 0xc3, 0x47, 0x02, 0xbd, 0xeb, 0xf6, + 0xe6, 0x4e, 0x2f, 0x1f, 0xc1, 0xbd, 0x62, 0x04, 0xf7, 0x0e, 0xa4, 0x14, 0x6f, 0x99, 0x48, 0x91, + 0x2e, 0x13, 0xb2, 0xab, 0xe4, 0x29, 0xaa, 0x33, 0xc5, 0x0d, 0xfa, 0x01, 0x0b, 0xa6, 0xe8, 0xdd, + 0xd8, 0x6b, 0xec, 0xaf, 0xd3, 0x76, 0x79, 0x7c, 0x98, 0x9d, 0x92, 0x7d, 0x68, 0x61, 0x7c, 0xaa, + 0xbd, 0xff, 0x5f, 0xfc, 0xe0, 0x47, 0xf1, 0xa9, 0xa6, 0x16, 0xd1, 0xfd, 0xb3, 0x09, 0xd7, 0x6a, + 0xd3, 0x8b, 0x3c, 0x84, 0x15, 0x6d, 0x98, 0xc9, 0x07, 0x47, 0x7b, 0x31, 0xdf, 0xb5, 0x31, 0x99, + 0xc1, 0x68, 0x8e, 0x26, 0xcf, 0x61, 0x1b, 0x67, 0x09, 0x06, 0x66, 0xde, 0x2f, 0xcd, 0x0f, 0x77, + 0x5c, 0xbb, 0xe0, 0xb8, 0xa6, 0x39, 0x82, 0x9d, 0xd2, 0x4a, 0xfe, 0x5e, 0x45, 0xe3, 0x76, 0x2a, + 0x66, 0xde, 0x32, 0xc5, 0xb3, 0x71, 0x96, 0x59, 0x29, 0x6f, 0xce, 0x1f, 0x48, 0x93, 0x47, 0x00, + 0x81, 0xdd, 0x1a, 0xa1, 0xcf, 0x8c, 0xeb, 0xdb, 0x7a, 0xae, 0xdf, 0x14, 0xfb, 0x90, 0x6e, 0x38, + 0xf4, 0xc0, 0x64, 0xd4, 0x34, 0x09, 0x0b, 0xea, 0xca, 0x87, 0xa9, 0x0e, 0x3d, 0x30, 0xdd, 0x5f, + 0x1b, 0x40, 0xea, 0xa3, 0x89, 0x7c, 0x03, 0xeb, 0xc5, 0xda, 0x76, 0x03, 0xb1, 0xd6, 0x52, 0x27, + 0x4e, 0x4f, 0x4b, 0x24, 0x39, 0x80, 0xad, 0x58, 0x66, 0x53, 0x32, 0x70, 0x8d, 0xdf, 0xb4, 0xab, + 0xe2, 0x76, 0x95, 0xfa, 0x6a, 0x01, 0x44, 0x97, 0x29, 0xdd, 0x5f, 0x16, 0x17, 0xf8, 0x0f, 0xd6, + 0xcf, 0x7f, 0xb1, 0xc0, 0xcb, 0x82, 0x68, 0xfe, 0x93, 0x82, 0x58, 0xde, 0xe1, 0xc5, 0xe5, 0x6e, + 0x87, 0x1f, 0xc3, 0xcd, 0x41, 0x60, 0xf8, 0x29, 0x2e, 0x2c, 0x3a, 0xe7, 0xd8, 0xc3, 0x05, 0xc7, + 0x3e, 0xab, 0x05, 0xcb, 0x22, 0x0c, 0x8f, 0xec, 0xa4, 0x5f, 0x76, 0xb2, 0xfb, 0x7b, 0x03, 0x6e, + 0x55, 0x4d, 0x66, 0x1b, 0xb7, 0x30, 0xeb, 0xc1, 0x5a, 0xa2, 0xe4, 0xcf, 0x18, 0x18, 0xb7, 0x10, + 0x0b, 0x91, 0xec, 0xc2, 0x6a, 0x28, 0x23, 0xc6, 0x8b, 0xa5, 0xea, 0xa4, 0x6c, 0xd7, 0x0a, 0x1e, + 0x71, 0x63, 0xeb, 0x6f, 0x8b, 0xe6, 0xc2, 0x7c, 0x03, 0xb7, 0x16, 0x36, 0x30, 0xb9, 0x0f, 0x6b, + 0x5a, 0x2a, 0xe3, 0x8f, 0xce, 0x5d, 0xc5, 0xd4, 0xda, 0xee, 0x44, 0x2a, 0x43, 0x57, 0x33, 0xd0, + 0xc1, 0xf9, 0x97, 0x5f, 0xc1, 0x76, 0x25, 0x69, 0xe4, 0x2a, 0xac, 0x0f, 0x5f, 0x0d, 0x0e, 0xdf, + 0x0c, 0xdf, 0x1e, 0xed, 0xfc, 0x8f, 0x00, 0xac, 0xba, 0xef, 0xc6, 0xc1, 0xb3, 0x9f, 0x9e, 0x4c, + 0xb8, 0x99, 0xa6, 0xa3, 0x5e, 0x20, 0xa3, 0xbe, 0x35, 0x2b, 0xd5, 0x24, 0xff, 0xe8, 0x97, 0xff, + 0xff, 0x26, 0x18, 0xf7, 0x93, 0xd1, 0xfd, 0x89, 0xec, 0x2f, 0xff, 0x25, 0x1c, 0xad, 0xda, 0x9a, + 0xfd, 0xfa, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf3, 0xc1, 0x72, 0x27, 0x16, 0x0b, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/matchable_resource.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/matchable_resource.pb.go index 1e5363d064..93b299d266 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/matchable_resource.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/matchable_resource.pb.go @@ -5,10 +5,11 @@ package admin import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" wrappers "github.com/golang/protobuf/ptypes/wrappers" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -905,89 +906,89 @@ func init() { } var fileDescriptor_1d15bcabb02640f4 = []byte{ - // 1339 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xdb, 0x72, 0x1a, 0x47, - 0x13, 0x66, 0x75, 0x40, 0xa8, 0xf9, 0x0d, 0xab, 0xb1, 0x25, 0x21, 0xe9, 0xb7, 0xad, 0x6c, 0x0e, - 0x56, 0x92, 0x32, 0xa4, 0x48, 0x52, 0x71, 0x52, 0x71, 0x55, 0x10, 0x5e, 0x0c, 0x65, 0x24, 0xa4, - 0x01, 0x7c, 0xc8, 0xcd, 0xd6, 0xb0, 0x0c, 0xcb, 0x46, 0x7b, 0xd2, 0xec, 0xac, 0x10, 0x95, 0x97, - 0xc8, 0x45, 0xf2, 0x28, 0x79, 0x94, 0xdc, 0xe7, 0x3e, 0x79, 0x88, 0xd4, 0x1e, 0x81, 0x15, 0xb8, - 0x7c, 0xb7, 0xd3, 0xf3, 0xf5, 0x61, 0x7b, 0xba, 0xbf, 0x6e, 0x78, 0x32, 0x32, 0xa6, 0x9c, 0xea, - 0x43, 0xa3, 0x42, 0x86, 0xa6, 0x6e, 0x55, 0x4c, 0xc2, 0xd5, 0x31, 0x19, 0x18, 0x54, 0x61, 0xd4, - 0xb5, 0x3d, 0xa6, 0xd2, 0xb2, 0xc3, 0x6c, 0x6e, 0xa3, 0x42, 0x0c, 0x2c, 0x07, 0xc0, 0xc3, 0xa3, - 0x94, 0xa2, 0x6a, 0x9b, 0xa6, 0x6d, 0x85, 0xe0, 0xc3, 0xb4, 0x55, 0xd5, 0xf0, 0x5c, 0x4e, 0x99, - 0x42, 0x5c, 0x57, 0xd7, 0x2c, 0x93, 0x5a, 0x3c, 0x02, 0x3e, 0x4c, 0x80, 0xaa, 0xcd, 0x68, 0x85, - 0xde, 0x52, 0xd5, 0xe3, 0x7a, 0x62, 0xe7, 0xff, 0x8b, 0xd7, 0x2e, 0x55, 0x3d, 0xa6, 0xf3, 0x69, - 0x74, 0xfb, 0x48, 0xb3, 0x6d, 0xcd, 0xa0, 0x95, 0xe0, 0x34, 0xf0, 0x46, 0x95, 0x09, 0x23, 0x8e, - 0x43, 0x99, 0x1b, 0xde, 0x4b, 0x7f, 0x08, 0x20, 0xf6, 0x88, 0x7b, 0x85, 0xa3, 0x3f, 0xe9, 0x3a, - 0x54, 0x45, 0x22, 0xac, 0xab, 0x8e, 0x57, 0x12, 0x8e, 0x85, 0x93, 0x6d, 0xec, 0x7f, 0xfa, 0x12, - 0xcd, 0xf1, 0x4a, 0x6b, 0xa1, 0x44, 0x73, 0x3c, 0xb4, 0x07, 0x59, 0x93, 0x9a, 0x36, 0x9b, 0x96, - 0xd6, 0x03, 0x61, 0x74, 0x42, 0x25, 0xd8, 0x72, 0xb9, 0xcd, 0x88, 0x46, 0x4b, 0x1b, 0xc1, 0x45, - 0x7c, 0x44, 0x5f, 0xc2, 0x0e, 0x75, 0xc6, 0xd4, 0xa4, 0x8c, 0x18, 0x4a, 0x8c, 0xd9, 0x0c, 0x30, - 0x62, 0x72, 0xd1, 0x0d, 0xe5, 0xd2, 0x6f, 0x02, 0xec, 0xcd, 0xc7, 0x55, 0xe3, 0x9c, 0xe9, 0x03, - 0x8f, 0x53, 0x17, 0xfd, 0x08, 0xb9, 0x21, 0x1d, 0x11, 0xcf, 0xe0, 0x6e, 0x10, 0x62, 0xbe, 0x7a, - 0x5c, 0x5e, 0x4c, 0x7c, 0x39, 0xfd, 0x47, 0x38, 0xd1, 0x40, 0xcf, 0x20, 0x6b, 0xe8, 0xa6, 0xce, - 0xdd, 0xe0, 0x67, 0x3e, 0x44, 0x37, 0xc2, 0x4b, 0x7f, 0x0a, 0x70, 0x50, 0x0f, 0x1f, 0x69, 0x49, - 0x54, 0xef, 0x00, 0x48, 0x72, 0x2a, 0x09, 0xc7, 0xeb, 0x27, 0xf9, 0xea, 0xf7, 0x69, 0xdb, 0x2b, - 0xd5, 0xcb, 0xb3, 0x4f, 0xd9, 0xe2, 0x6c, 0x8a, 0xe7, 0x8c, 0x1d, 0x3e, 0x87, 0x62, 0xea, 0xda, - 0x7f, 0x8f, 0x2b, 0x3a, 0x8d, 0x5f, 0xe8, 0x8a, 0x4e, 0xd1, 0x03, 0xd8, 0xbc, 0x21, 0x86, 0x47, - 0xa3, 0x37, 0x0a, 0x0f, 0x3f, 0xac, 0x3d, 0x13, 0xa4, 0x32, 0x94, 0xe4, 0xb8, 0x66, 0x2e, 0x3d, - 0xea, 0xcd, 0x47, 0x8d, 0x60, 0x83, 0x13, 0x2d, 0x8c, 0x77, 0x1b, 0x07, 0xdf, 0xd2, 0x53, 0xd8, - 0x4d, 0xf0, 0x51, 0xc0, 0x6d, 0x32, 0xa0, 0xc6, 0xcc, 0x85, 0x30, 0xe7, 0x42, 0xfa, 0x57, 0x80, - 0xc2, 0x85, 0xe1, 0x69, 0xba, 0xd5, 0xb9, 0xa1, 0x8c, 0xe9, 0x43, 0x8a, 0x8e, 0x60, 0x9b, 0x13, - 0xf7, 0x4a, 0xe1, 0x53, 0x27, 0x06, 0xe7, 0x7c, 0x41, 0x6f, 0xea, 0x04, 0x97, 0x4e, 0x00, 0x57, - 0xf4, 0x61, 0x69, 0x2d, 0xf0, 0x9b, 0x0b, 0x05, 0xad, 0x21, 0x32, 0x60, 0xdf, 0xd4, 0x5d, 0x57, - 0xb7, 0x34, 0x25, 0x02, 0x0d, 0xe8, 0x98, 0xdc, 0xe8, 0x36, 0x0b, 0xaa, 0xa9, 0x50, 0xfd, 0x26, - 0x9d, 0xd2, 0x45, 0xd7, 0xe5, 0xb3, 0x50, 0x3b, 0x94, 0x9e, 0x46, 0xba, 0x78, 0xd7, 0x5c, 0x26, - 0x96, 0xaa, 0xb0, 0xbb, 0x14, 0x8f, 0x72, 0xb0, 0xd1, 0xa8, 0xb5, 0xda, 0x62, 0x06, 0x15, 0x21, - 0xdf, 0xef, 0xca, 0xca, 0x0b, 0xb9, 0x51, 0xeb, 0xb7, 0x7b, 0xa2, 0x20, 0x75, 0xa0, 0xb8, 0xe8, - 0xd2, 0x2f, 0xc8, 0x6d, 0x3b, 0x3e, 0x44, 0x2f, 0xff, 0xe8, 0xfd, 0x61, 0xe2, 0x99, 0x82, 0xf4, - 0xcf, 0x3a, 0xec, 0xbf, 0xb1, 0xd9, 0xd5, 0xc8, 0xb0, 0x27, 0xb3, 0xbc, 0xdb, 0xd6, 0x48, 0xd7, - 0xd0, 0x13, 0x28, 0x9a, 0xe4, 0x56, 0x71, 0x08, 0x23, 0x86, 0x41, 0x0d, 0xdd, 0x35, 0x83, 0x74, - 0x6e, 0xe2, 0x82, 0x49, 0x6e, 0x2f, 0x66, 0x52, 0xd4, 0x02, 0x31, 0x6e, 0x7c, 0x45, 0xb5, 0x2d, - 0x4e, 0x6f, 0x79, 0x54, 0xdf, 0x73, 0x91, 0xf8, 0xfc, 0x50, 0xee, 0x46, 0xb0, 0x7a, 0x88, 0xc2, - 0x45, 0x77, 0x51, 0x80, 0xde, 0xc2, 0x1e, 0x23, 0x13, 0xc5, 0xf6, 0xb8, 0xe3, 0x71, 0x65, 0x48, - 0x38, 0xf1, 0x2d, 0x8e, 0x74, 0x2d, 0x68, 0xf4, 0x7c, 0xf5, 0xe3, 0xf4, 0xaf, 0x61, 0x32, 0xe9, - 0x04, 0xe0, 0x17, 0x84, 0x93, 0x30, 0x70, 0x7c, 0x9f, 0xdd, 0x15, 0xa2, 0x32, 0x64, 0x0d, 0xbf, - 0x90, 0xdc, 0xe0, 0x2d, 0xf3, 0xd5, 0xbd, 0xb4, 0xa5, 0xa0, 0xcc, 0x5c, 0x1c, 0xa1, 0xd0, 0x73, - 0xc8, 0x13, 0xcb, 0xb2, 0x39, 0xf1, 0x33, 0xe2, 0x06, 0x54, 0x91, 0xaf, 0x1e, 0xa5, 0x95, 0x6a, - 0x33, 0x08, 0x9e, 0xc7, 0xa3, 0x9f, 0xe0, 0x9e, 0x6e, 0x71, 0xca, 0x98, 0xe7, 0x70, 0x7d, 0x60, - 0xd0, 0x52, 0x36, 0x30, 0x70, 0x58, 0x0e, 0x29, 0xb1, 0x1c, 0x53, 0x62, 0xf9, 0xd4, 0xb6, 0x8d, - 0xd7, 0x7e, 0x2d, 0xe3, 0x45, 0x05, 0x3f, 0xfd, 0xfe, 0x3b, 0x4d, 0x98, 0xce, 0xa9, 0xa2, 0x12, - 0x75, 0x4c, 0x4b, 0x5b, 0xc7, 0xc2, 0x49, 0x0e, 0x17, 0x12, 0x71, 0xdd, 0x97, 0xa2, 0x13, 0xd8, - 0xa0, 0xd6, 0x8d, 0x5b, 0xca, 0x05, 0x1e, 0x1e, 0xa4, 0x43, 0x94, 0xad, 0x1b, 0x17, 0x07, 0x08, - 0xe9, 0xf7, 0x2c, 0xa0, 0x33, 0x7f, 0x7e, 0xe8, 0x96, 0x36, 0xd7, 0x87, 0x03, 0x28, 0x05, 0x1d, - 0x13, 0x0f, 0x14, 0x65, 0x81, 0x4b, 0x7c, 0xa3, 0x9f, 0xbd, 0x8f, 0xa7, 0x66, 0x96, 0x9a, 0x19, - 0xbc, 0xc7, 0x97, 0xf3, 0xe6, 0x15, 0x1c, 0xc5, 0x33, 0x66, 0x99, 0x9b, 0xb0, 0x5c, 0x3e, 0xff, - 0x60, 0xca, 0x6a, 0x66, 0xf0, 0x81, 0xba, 0x92, 0x0e, 0xc7, 0x70, 0x98, 0x0c, 0x2a, 0xe5, 0xda, - 0x67, 0x9d, 0x79, 0x5f, 0x61, 0x25, 0x9d, 0xdc, 0xc9, 0xd3, 0x0a, 0x9a, 0x6a, 0x66, 0x70, 0x89, - 0xae, 0xa2, 0x30, 0x05, 0xf6, 0x67, 0x9e, 0xe2, 0x1f, 0x0c, 0x2a, 0x28, 0x2a, 0xb3, 0x4f, 0x57, - 0xba, 0x99, 0x67, 0xb7, 0x66, 0x06, 0xef, 0xd2, 0xa5, 0xb4, 0xd7, 0x01, 0x74, 0xed, 0x11, 0xc3, - 0x6f, 0x2d, 0x7b, 0xa4, 0xb8, 0x94, 0xdd, 0xe8, 0x2a, 0x8d, 0xaa, 0xf1, 0x71, 0xaa, 0xbb, 0x2e, - 0x43, 0x60, 0x67, 0xd4, 0x0d, 0x61, 0xcd, 0x0c, 0x16, 0xaf, 0x53, 0x32, 0xd4, 0x06, 0x31, 0x22, - 0xb7, 0x19, 0x6d, 0x64, 0xd3, 0xe6, 0x96, 0xd1, 0x86, 0x9f, 0x88, 0xa2, 0x93, 0x62, 0x1f, 0x0a, - 0x07, 0x93, 0x88, 0x3e, 0x94, 0xb9, 0x44, 0x84, 0x2d, 0xbb, 0x15, 0x98, 0x7d, 0x92, 0x36, 0xbb, - 0x82, 0x6f, 0x9a, 0x19, 0xbc, 0x3f, 0x59, 0x41, 0x45, 0x18, 0xd0, 0xdd, 0x0d, 0x25, 0x2a, 0xf8, - 0x8f, 0x56, 0x14, 0x4d, 0x2d, 0x01, 0x36, 0x33, 0x78, 0x47, 0x4d, 0x0b, 0x4f, 0x73, 0x90, 0xe5, - 0x84, 0x69, 0x94, 0x4b, 0x7f, 0x09, 0x70, 0x7c, 0x16, 0xaf, 0x55, 0xb3, 0xc7, 0x0d, 0x7d, 0x7b, - 0x2c, 0xe8, 0x68, 0x74, 0x9a, 0x1a, 0xb1, 0xbe, 0x6b, 0x29, 0xed, 0xfa, 0x6e, 0x73, 0xcd, 0xcf, - 0x52, 0x7f, 0x6d, 0x19, 0xda, 0x26, 0xd1, 0xad, 0x68, 0x4e, 0x46, 0x27, 0x7f, 0x6d, 0x71, 0x98, - 0xfd, 0x0b, 0x55, 0x79, 0xb4, 0xcf, 0xc4, 0x47, 0x74, 0x08, 0xb9, 0x38, 0x27, 0xd1, 0x46, 0x93, - 0x9c, 0xd1, 0x63, 0xc8, 0x1b, 0xc4, 0xb3, 0xd4, 0xb1, 0xe2, 0x18, 0xc4, 0x8a, 0x96, 0x19, 0x08, - 0x45, 0x17, 0x06, 0xb1, 0xa4, 0x31, 0x3c, 0x6a, 0xeb, 0x2e, 0x5f, 0xf2, 0x6b, 0x98, 0x5e, 0x7b, - 0xd4, 0xe5, 0xa8, 0x01, 0xf7, 0x92, 0x6e, 0x4c, 0xe6, 0x65, 0xe1, 0x6e, 0x4a, 0x13, 0x13, 0x71, - 0xb3, 0xe1, 0xff, 0xc5, 0x7a, 0xfe, 0x58, 0x95, 0x7e, 0x85, 0xc7, 0x2b, 0x3d, 0xb9, 0x8e, 0x6d, - 0xb9, 0x14, 0xbd, 0x85, 0x82, 0x3a, 0x9f, 0xd0, 0x78, 0x58, 0x7d, 0xb5, 0xd2, 0xd7, 0x8a, 0x97, - 0xc0, 0x29, 0x3b, 0x5f, 0xfc, 0x2d, 0xc0, 0xce, 0x9d, 0x00, 0xd1, 0x0e, 0xdc, 0xeb, 0xd5, 0xba, - 0xaf, 0x14, 0x2c, 0x77, 0x3b, 0x7d, 0x5c, 0x97, 0xc5, 0x0c, 0x7a, 0x00, 0x62, 0xbd, 0xdd, 0xef, - 0xf6, 0x64, 0x3c, 0x93, 0x0a, 0xe8, 0x3e, 0x14, 0xe5, 0xb7, 0x72, 0xbd, 0xdf, 0x6b, 0x75, 0xce, - 0x95, 0xcb, 0xbe, 0xdc, 0x97, 0xc5, 0x35, 0x74, 0x04, 0xfb, 0x33, 0x61, 0xac, 0xd4, 0xae, 0x9d, - 0xca, 0x6d, 0x71, 0x1d, 0x7d, 0x02, 0xc7, 0x97, 0xfd, 0x5a, 0xbb, 0xd5, 0x7b, 0xa7, 0x74, 0x1a, - 0x4a, 0x57, 0xc6, 0xaf, 0x5b, 0x75, 0x59, 0xe9, 0x5e, 0xc8, 0xf5, 0x56, 0xa3, 0x55, 0xaf, 0xf9, - 0x3a, 0xe2, 0x86, 0x6f, 0xf7, 0xa2, 0xdd, 0x7f, 0xd9, 0x3a, 0x57, 0x3a, 0xaf, 0x65, 0x8c, 0x5b, - 0x2f, 0x64, 0x71, 0x13, 0x3d, 0x84, 0x83, 0x37, 0x1d, 0xfc, 0xaa, 0xd1, 0xee, 0xbc, 0x51, 0xe6, - 0x1c, 0x74, 0xce, 0x1b, 0xad, 0x97, 0x62, 0x16, 0xed, 0x01, 0x8a, 0x9d, 0xd5, 0xba, 0xdd, 0xd6, - 0xcb, 0xf3, 0x33, 0xf9, 0xbc, 0x27, 0x6e, 0x9d, 0x7e, 0xf7, 0xf3, 0xb7, 0x9a, 0xce, 0xc7, 0xde, - 0xa0, 0xac, 0xda, 0x66, 0x25, 0x48, 0x98, 0xcd, 0xb4, 0x4a, 0xb2, 0x7c, 0x6b, 0xd4, 0xaa, 0x38, - 0x83, 0xa7, 0x9a, 0x5d, 0x59, 0xdc, 0xeb, 0x07, 0xd9, 0x60, 0xce, 0x7c, 0xfd, 0x5f, 0x00, 0x00, - 0x00, 0xff, 0xff, 0xb4, 0x80, 0xda, 0x35, 0x46, 0x0c, 0x00, 0x00, + // 1338 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0x59, 0x73, 0x1a, 0x47, + 0x10, 0x66, 0x75, 0x20, 0xd4, 0xc4, 0xb0, 0x1a, 0x5b, 0x12, 0x92, 0x62, 0x5b, 0xd9, 0x1c, 0x56, + 0x92, 0x32, 0xa4, 0x48, 0x1e, 0x9c, 0xc3, 0x55, 0x41, 0x78, 0x31, 0x94, 0x91, 0x90, 0x06, 0xf0, + 0x91, 0x97, 0xad, 0x61, 0x19, 0x96, 0x8d, 0xf6, 0xd2, 0xec, 0xac, 0x10, 0x95, 0x3f, 0x91, 0x87, + 0xe4, 0xa7, 0xe4, 0xa7, 0xe4, 0x3d, 0xef, 0xc9, 0x8f, 0x48, 0xed, 0x09, 0xac, 0xc0, 0xe5, 0xb7, + 0x99, 0x9e, 0xaf, 0x8f, 0xe9, 0xe9, 0xfe, 0x7a, 0xe0, 0xc9, 0xc8, 0x98, 0x72, 0xaa, 0x0f, 0x8d, + 0x0a, 0x19, 0x9a, 0xba, 0x55, 0x31, 0x09, 0x57, 0xc7, 0x64, 0x60, 0x50, 0x85, 0x51, 0xd7, 0xf6, + 0x98, 0x4a, 0xcb, 0x0e, 0xb3, 0xb9, 0x8d, 0x0a, 0x31, 0xb0, 0x1c, 0x00, 0x0f, 0x8f, 0x52, 0x8a, + 0xaa, 0x6d, 0x9a, 0xb6, 0x15, 0x82, 0x0f, 0xd3, 0x56, 0x55, 0xc3, 0x73, 0x39, 0x65, 0x0a, 0x71, + 0x5d, 0x5d, 0xb3, 0x4c, 0x6a, 0xf1, 0x08, 0xf8, 0x30, 0x01, 0xaa, 0x36, 0xa3, 0x15, 0x7a, 0x4b, + 0x55, 0x8f, 0xeb, 0x89, 0x9d, 0x8f, 0x17, 0x8f, 0x5d, 0xaa, 0x7a, 0x4c, 0xe7, 0xd3, 0xe8, 0xf4, + 0x91, 0x66, 0xdb, 0x9a, 0x41, 0x2b, 0xc1, 0x6e, 0xe0, 0x8d, 0x2a, 0x13, 0x46, 0x1c, 0x87, 0x32, + 0x37, 0x3c, 0x97, 0xfe, 0x14, 0x40, 0xec, 0x11, 0xf7, 0x0a, 0x47, 0x37, 0xe9, 0x3a, 0x54, 0x45, + 0x22, 0xac, 0xab, 0x8e, 0x57, 0x12, 0x8e, 0x85, 0x93, 0x6d, 0xec, 0x2f, 0x7d, 0x89, 0xe6, 0x78, + 0xa5, 0xb5, 0x50, 0xa2, 0x39, 0x1e, 0xda, 0x83, 0xac, 0x49, 0x4d, 0x9b, 0x4d, 0x4b, 0xeb, 0x81, + 0x30, 0xda, 0xa1, 0x12, 0x6c, 0xb9, 0xdc, 0x66, 0x44, 0xa3, 0xa5, 0x8d, 0xe0, 0x20, 0xde, 0xa2, + 0xaf, 0x61, 0x87, 0x3a, 0x63, 0x6a, 0x52, 0x46, 0x0c, 0x25, 0xc6, 0x6c, 0x06, 0x18, 0x31, 0x39, + 0xe8, 0x86, 0x72, 0xe9, 0x77, 0x01, 0xf6, 0xe6, 0xe3, 0xaa, 0x71, 0xce, 0xf4, 0x81, 0xc7, 0xa9, + 0x8b, 0x7e, 0x82, 0xdc, 0x90, 0x8e, 0x88, 0x67, 0x70, 0x37, 0x08, 0x31, 0x5f, 0x3d, 0x2e, 0x2f, + 0x26, 0xbe, 0x9c, 0xbe, 0x11, 0x4e, 0x34, 0xd0, 0x33, 0xc8, 0x1a, 0xba, 0xa9, 0x73, 0x37, 0xb8, + 0xcc, 0x87, 0xe8, 0x46, 0x78, 0xe9, 0x2f, 0x01, 0x0e, 0xea, 0xe1, 0x23, 0x2d, 0x89, 0xea, 0x1d, + 0x00, 0x49, 0x76, 0x25, 0xe1, 0x78, 0xfd, 0x24, 0x5f, 0xfd, 0x3e, 0x6d, 0x7b, 0xa5, 0x7a, 0x79, + 0xb6, 0x94, 0x2d, 0xce, 0xa6, 0x78, 0xce, 0xd8, 0xe1, 0x73, 0x28, 0xa6, 0x8e, 0xfd, 0xf7, 0xb8, + 0xa2, 0xd3, 0xf8, 0x85, 0xae, 0xe8, 0x14, 0x3d, 0x80, 0xcd, 0x1b, 0x62, 0x78, 0x34, 0x7a, 0xa3, + 0x70, 0xf3, 0xc3, 0xda, 0x33, 0x41, 0x2a, 0x43, 0x49, 0x8e, 0x6b, 0xe6, 0xd2, 0xa3, 0xde, 0x7c, + 0xd4, 0x08, 0x36, 0x38, 0xd1, 0xc2, 0x78, 0xb7, 0x71, 0xb0, 0x96, 0x9e, 0xc2, 0x6e, 0x82, 0x8f, + 0x02, 0x6e, 0x93, 0x01, 0x35, 0x66, 0x2e, 0x84, 0x39, 0x17, 0xd2, 0x7f, 0x02, 0x14, 0x2e, 0x0c, + 0x4f, 0xd3, 0xad, 0xce, 0x0d, 0x65, 0x4c, 0x1f, 0x52, 0x74, 0x04, 0xdb, 0x9c, 0xb8, 0x57, 0x0a, + 0x9f, 0x3a, 0x31, 0x38, 0xe7, 0x0b, 0x7a, 0x53, 0x27, 0x38, 0x74, 0x02, 0xb8, 0xa2, 0x0f, 0x4b, + 0x6b, 0x81, 0xdf, 0x5c, 0x28, 0x68, 0x0d, 0x91, 0x01, 0xfb, 0xa6, 0xee, 0xba, 0xba, 0xa5, 0x29, + 0x11, 0x68, 0x40, 0xc7, 0xe4, 0x46, 0xb7, 0x59, 0x50, 0x4d, 0x85, 0xea, 0x77, 0xe9, 0x94, 0x2e, + 0xba, 0x2e, 0x9f, 0x85, 0xda, 0xa1, 0xf4, 0x34, 0xd2, 0xc5, 0xbb, 0xe6, 0x32, 0xb1, 0x54, 0x85, + 0xdd, 0xa5, 0x78, 0x94, 0x83, 0x8d, 0x46, 0xad, 0xd5, 0x16, 0x33, 0xa8, 0x08, 0xf9, 0x7e, 0x57, + 0x56, 0x5e, 0xc8, 0x8d, 0x5a, 0xbf, 0xdd, 0x13, 0x05, 0xa9, 0x03, 0xc5, 0x45, 0x97, 0x7e, 0x41, + 0x6e, 0xdb, 0xf1, 0x26, 0x7a, 0xf9, 0x47, 0xef, 0x0f, 0x13, 0xcf, 0x14, 0xa4, 0x7f, 0xd7, 0x61, + 0xff, 0x8d, 0xcd, 0xae, 0x46, 0x86, 0x3d, 0x99, 0xe5, 0xdd, 0xb6, 0x46, 0xba, 0x86, 0x9e, 0x40, + 0xd1, 0x24, 0xb7, 0x8a, 0x43, 0x18, 0x31, 0x0c, 0x6a, 0xe8, 0xae, 0x19, 0xa4, 0x73, 0x13, 0x17, + 0x4c, 0x72, 0x7b, 0x31, 0x93, 0xa2, 0x16, 0x88, 0x71, 0xe3, 0x2b, 0xaa, 0x6d, 0x71, 0x7a, 0xcb, + 0xa3, 0xfa, 0x9e, 0x8b, 0xc4, 0xe7, 0x87, 0x72, 0x37, 0x82, 0xd5, 0x43, 0x14, 0x2e, 0xba, 0x8b, + 0x02, 0xf4, 0x16, 0xf6, 0x18, 0x99, 0x28, 0xb6, 0xc7, 0x1d, 0x8f, 0x2b, 0x43, 0xc2, 0x89, 0x6f, + 0x71, 0xa4, 0x6b, 0x41, 0xa3, 0xe7, 0xab, 0x9f, 0xa6, 0xaf, 0x86, 0xc9, 0xa4, 0x13, 0x80, 0x5f, + 0x10, 0x4e, 0xc2, 0xc0, 0xf1, 0x7d, 0x76, 0x57, 0x88, 0xca, 0x90, 0x35, 0xfc, 0x42, 0x72, 0x83, + 0xb7, 0xcc, 0x57, 0xf7, 0xd2, 0x96, 0x82, 0x32, 0x73, 0x71, 0x84, 0x42, 0xcf, 0x21, 0x4f, 0x2c, + 0xcb, 0xe6, 0xc4, 0xcf, 0x88, 0x1b, 0x50, 0x45, 0xbe, 0x7a, 0x94, 0x56, 0xaa, 0xcd, 0x20, 0x78, + 0x1e, 0x8f, 0x7e, 0x86, 0x7b, 0xba, 0xc5, 0x29, 0x63, 0x9e, 0xc3, 0xf5, 0x81, 0x41, 0x4b, 0xd9, + 0xc0, 0xc0, 0x61, 0x39, 0xa4, 0xc4, 0x72, 0x4c, 0x89, 0xe5, 0x53, 0xdb, 0x36, 0x5e, 0xfb, 0xb5, + 0x8c, 0x17, 0x15, 0xfc, 0xf4, 0xfb, 0xef, 0x34, 0x61, 0x3a, 0xa7, 0x8a, 0x4a, 0xd4, 0x31, 0x2d, + 0x6d, 0x1d, 0x0b, 0x27, 0x39, 0x5c, 0x48, 0xc4, 0x75, 0x5f, 0x8a, 0x4e, 0x60, 0x83, 0x5a, 0x37, + 0x6e, 0x29, 0x17, 0x78, 0x78, 0x90, 0x0e, 0x51, 0xb6, 0x6e, 0x5c, 0x1c, 0x20, 0xa4, 0x3f, 0xb2, + 0x80, 0xce, 0xfc, 0xf9, 0xa1, 0x5b, 0xda, 0x5c, 0x1f, 0x0e, 0xa0, 0x14, 0x74, 0x4c, 0x3c, 0x50, + 0x94, 0x05, 0x2e, 0xf1, 0x8d, 0x7e, 0xf1, 0x3e, 0x9e, 0x9a, 0x59, 0x6a, 0x66, 0xf0, 0x1e, 0x5f, + 0xce, 0x9b, 0x57, 0x70, 0x14, 0xcf, 0x98, 0x65, 0x6e, 0xc2, 0x72, 0xf9, 0xf2, 0x83, 0x29, 0xab, + 0x99, 0xc1, 0x07, 0xea, 0x4a, 0x3a, 0x1c, 0xc3, 0x61, 0x32, 0xa8, 0x94, 0x6b, 0x9f, 0x75, 0xe6, + 0x7d, 0x85, 0x95, 0x74, 0x72, 0x27, 0x4f, 0x2b, 0x68, 0xaa, 0x99, 0xc1, 0x25, 0xba, 0x8a, 0xc2, + 0x14, 0xd8, 0x9f, 0x79, 0x8a, 0x2f, 0x18, 0x54, 0x50, 0x54, 0x66, 0x9f, 0xaf, 0x74, 0x33, 0xcf, + 0x6e, 0xcd, 0x0c, 0xde, 0xa5, 0x4b, 0x69, 0xaf, 0x03, 0xe8, 0xda, 0x23, 0x86, 0xdf, 0x5a, 0xf6, + 0x48, 0x71, 0x29, 0xbb, 0xd1, 0x55, 0x1a, 0x55, 0xe3, 0xe3, 0x54, 0x77, 0x5d, 0x86, 0xc0, 0xce, + 0xa8, 0x1b, 0xc2, 0x9a, 0x19, 0x2c, 0x5e, 0xa7, 0x64, 0xa8, 0x0d, 0x62, 0x44, 0x6e, 0x33, 0xda, + 0xc8, 0xa6, 0xcd, 0x2d, 0xa3, 0x0d, 0x3f, 0x11, 0x45, 0x27, 0xc5, 0x3e, 0x14, 0x0e, 0x26, 0x11, + 0x7d, 0x28, 0x73, 0x89, 0x08, 0x5b, 0x76, 0x2b, 0x30, 0xfb, 0x24, 0x6d, 0x76, 0x05, 0xdf, 0x34, + 0x33, 0x78, 0x7f, 0xb2, 0x82, 0x8a, 0x30, 0xa0, 0xbb, 0x3f, 0x94, 0xa8, 0xe0, 0x3f, 0x59, 0x51, + 0x34, 0xb5, 0x04, 0xd8, 0xcc, 0xe0, 0x1d, 0x35, 0x2d, 0x3c, 0xcd, 0x41, 0x96, 0x13, 0xa6, 0x51, + 0x2e, 0xfd, 0x2d, 0xc0, 0xf1, 0x59, 0xfc, 0xad, 0x9a, 0x3d, 0x6e, 0xe8, 0xdb, 0x63, 0x41, 0x47, + 0xa3, 0xd3, 0xd4, 0x88, 0xf5, 0x5d, 0x4b, 0x69, 0xd7, 0x77, 0x9b, 0x6b, 0x7e, 0x96, 0xfa, 0xdf, + 0x96, 0xa1, 0x6d, 0x12, 0xdd, 0x8a, 0xe6, 0x64, 0xb4, 0xf3, 0xbf, 0x2d, 0x0e, 0xb3, 0x7f, 0xa5, + 0x2a, 0x8f, 0xfe, 0x33, 0xf1, 0x16, 0x1d, 0x42, 0x2e, 0xce, 0x49, 0xf4, 0xa3, 0x49, 0xf6, 0xe8, + 0x31, 0xe4, 0x0d, 0xe2, 0x59, 0xea, 0x58, 0x71, 0x0c, 0x62, 0x45, 0x9f, 0x19, 0x08, 0x45, 0x17, + 0x06, 0xb1, 0xa4, 0x31, 0x3c, 0x6a, 0xeb, 0x2e, 0x5f, 0x72, 0x35, 0x4c, 0xaf, 0x3d, 0xea, 0x72, + 0xd4, 0x80, 0x7b, 0x49, 0x37, 0x26, 0xf3, 0xb2, 0x70, 0x37, 0xa5, 0x89, 0x89, 0xb8, 0xd9, 0xf0, + 0x47, 0xb1, 0x9e, 0x3f, 0x56, 0xa5, 0xdf, 0xe0, 0xf1, 0x4a, 0x4f, 0xae, 0x63, 0x5b, 0x2e, 0x45, + 0x6f, 0xa1, 0xa0, 0xce, 0x27, 0x34, 0x1e, 0x56, 0xdf, 0xac, 0xf4, 0xb5, 0xe2, 0x25, 0x70, 0xca, + 0xce, 0x57, 0xff, 0x08, 0xb0, 0x73, 0x27, 0x40, 0xb4, 0x03, 0xf7, 0x7a, 0xb5, 0xee, 0x2b, 0x05, + 0xcb, 0xdd, 0x4e, 0x1f, 0xd7, 0x65, 0x31, 0x83, 0x1e, 0x80, 0x58, 0x6f, 0xf7, 0xbb, 0x3d, 0x19, + 0xcf, 0xa4, 0x02, 0xba, 0x0f, 0x45, 0xf9, 0xad, 0x5c, 0xef, 0xf7, 0x5a, 0x9d, 0x73, 0xe5, 0xb2, + 0x2f, 0xf7, 0x65, 0x71, 0x0d, 0x1d, 0xc1, 0xfe, 0x4c, 0x18, 0x2b, 0xb5, 0x6b, 0xa7, 0x72, 0x5b, + 0x5c, 0x47, 0x9f, 0xc1, 0xf1, 0x65, 0xbf, 0xd6, 0x6e, 0xf5, 0xde, 0x29, 0x9d, 0x86, 0xd2, 0x95, + 0xf1, 0xeb, 0x56, 0x5d, 0x56, 0xba, 0x17, 0x72, 0xbd, 0xd5, 0x68, 0xd5, 0x6b, 0xbe, 0x8e, 0xb8, + 0xe1, 0xdb, 0xbd, 0x68, 0xf7, 0x5f, 0xb6, 0xce, 0x95, 0xce, 0x6b, 0x19, 0xe3, 0xd6, 0x0b, 0x59, + 0xdc, 0x44, 0x0f, 0xe1, 0xe0, 0x4d, 0x07, 0xbf, 0x6a, 0xb4, 0x3b, 0x6f, 0x94, 0x39, 0x07, 0x9d, + 0xf3, 0x46, 0xeb, 0xa5, 0x98, 0x45, 0x7b, 0x80, 0x62, 0x67, 0xb5, 0x6e, 0xb7, 0xf5, 0xf2, 0xfc, + 0x4c, 0x3e, 0xef, 0x89, 0x5b, 0xa7, 0xcf, 0x7f, 0xf9, 0x51, 0xd3, 0xf9, 0xd8, 0x1b, 0x94, 0x55, + 0xdb, 0xac, 0x04, 0x09, 0xb3, 0x99, 0x16, 0x2e, 0x2a, 0xc9, 0x17, 0x5c, 0xa3, 0x56, 0xc5, 0x19, + 0x3c, 0xd5, 0xec, 0xca, 0xe2, 0xef, 0x7e, 0x90, 0x0d, 0xa6, 0xcd, 0xb7, 0xff, 0x07, 0x00, 0x00, + 0xff, 0xff, 0x9e, 0xa4, 0xff, 0x06, 0x4c, 0x0c, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.go index 4e69dbc4d9..b0f42492e6 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.go @@ -5,11 +5,12 @@ package admin import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + math "math" + + core "github.com/flyteorg/flyte/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" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -960,80 +961,80 @@ func init() { } var fileDescriptor_f73b3eae493fd736 = []byte{ - // 1187 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xdd, 0x6e, 0x1b, 0x45, - 0x14, 0xee, 0x26, 0x4d, 0x62, 0x1f, 0x27, 0x4e, 0x32, 0xb8, 0xd4, 0x6d, 0xfa, 0x63, 0xb6, 0x2d, - 0x0a, 0xa0, 0xda, 0x92, 0xab, 0x40, 0x41, 0x08, 0x88, 0x93, 0xfe, 0x04, 0x52, 0x28, 0x93, 0x1a, - 0x24, 0x84, 0x58, 0x8d, 0x77, 0xc7, 0xce, 0xe0, 0xf5, 0xce, 0x76, 0x66, 0x56, 0xc1, 0x2f, 0x82, - 0xc4, 0x15, 0xaf, 0xc2, 0x13, 0xf0, 0x1a, 0x48, 0x3c, 0x00, 0xd7, 0x68, 0x66, 0x67, 0xd7, 0xde, - 0xad, 0x9b, 0x48, 0xe5, 0x82, 0xcb, 0x39, 0xe7, 0x3b, 0xbf, 0xf3, 0x9d, 0x33, 0xbb, 0x70, 0x67, - 0x18, 0x4e, 0x15, 0x65, 0x41, 0xd8, 0x21, 0xc1, 0x84, 0x45, 0x9d, 0x88, 0x07, 0xd4, 0xa3, 0xbf, - 0x50, 0x3f, 0x51, 0x8c, 0x47, 0xed, 0x58, 0x70, 0xc5, 0x51, 0x3d, 0x03, 0xb5, 0x0d, 0xe8, 0xfa, - 0x4e, 0xc9, 0xc8, 0xe7, 0x93, 0x49, 0x06, 0xbe, 0x7e, 0x33, 0x57, 0xfa, 0x5c, 0xd0, 0x4e, 0xc9, - 0xd7, 0x9c, 0xad, 0x51, 0xfb, 0x44, 0x91, 0x90, 0x8f, 0xac, 0xf2, 0x46, 0x49, 0xc9, 0x27, 0x31, - 0x0b, 0xa9, 0xb0, 0xda, 0x5b, 0x45, 0x2d, 0x0b, 0x68, 0xa4, 0xd8, 0x90, 0xe5, 0xfa, 0x92, 0x75, - 0xc8, 0x14, 0x15, 0x24, 0x94, 0x56, 0x7b, 0x7b, 0xc4, 0xf9, 0x28, 0xa4, 0x1d, 0x73, 0x1a, 0x24, - 0xc3, 0x8e, 0x62, 0x13, 0x2a, 0x15, 0x99, 0xc4, 0x99, 0xfb, 0x32, 0x20, 0x48, 0x04, 0x99, 0x65, - 0xee, 0x7e, 0x0b, 0x57, 0xbf, 0xe6, 0x01, 0x7d, 0x94, 0x15, 0xf4, 0x84, 0x2a, 0x4c, 0x5f, 0x26, - 0x54, 0x2a, 0xf4, 0x21, 0x2c, 0xb1, 0xa0, 0xe9, 0xb4, 0x9c, 0xdd, 0x5a, 0xf7, 0xdd, 0x76, 0xde, - 0x2d, 0x9d, 0x46, 0xbb, 0x60, 0x73, 0x94, 0xe7, 0x8c, 0x97, 0x58, 0xe0, 0xfe, 0xb6, 0x04, 0xcd, - 0x82, 0xfe, 0x98, 0xc9, 0xdc, 0xe9, 0x4f, 0x70, 0xe5, 0x8c, 0x8b, 0xf1, 0x30, 0xe4, 0x67, 0xb3, - 0x1b, 0xf1, 0xf2, 0x38, 0xef, 0x97, 0xe2, 0x7c, 0x6f, 0xb1, 0x8b, 0x62, 0xbd, 0x75, 0xf6, 0xaa, - 0x12, 0x35, 0x60, 0x25, 0x64, 0x13, 0xa6, 0x9a, 0x4b, 0x2d, 0x67, 0x77, 0x03, 0xa7, 0x07, 0x2d, - 0x55, 0x7c, 0x4c, 0xa3, 0xe6, 0x72, 0xcb, 0xd9, 0xad, 0xe2, 0xf4, 0x80, 0x9a, 0xb0, 0x36, 0x64, - 0xa1, 0xa2, 0x42, 0x36, 0x2f, 0x1b, 0x79, 0x76, 0x44, 0xf7, 0x61, 0x4d, 0x72, 0xa1, 0xbc, 0xc1, - 0xb4, 0xb9, 0x62, 0xf2, 0x6a, 0xb4, 0x8b, 0x6c, 0x69, 0x9f, 0x70, 0xa1, 0xf0, 0xaa, 0x06, 0xf5, - 0xa6, 0x68, 0x17, 0xb6, 0x92, 0x88, 0xbd, 0x4c, 0xa8, 0x17, 0x13, 0x41, 0x23, 0xa5, 0xeb, 0x59, - 0x35, 0x1e, 0xeb, 0xa9, 0xfc, 0xb9, 0x11, 0x1f, 0x05, 0xee, 0xdf, 0x0e, 0xdc, 0x2e, 0xf4, 0xe6, - 0x31, 0x17, 0x2f, 0x88, 0x1c, 0xcf, 0xb7, 0x08, 0xc3, 0xb6, 0x22, 0x72, 0xbc, 0xa8, 0x3d, 0xe5, - 0x6b, 0xd0, 0xa6, 0x8b, 0x5a, 0xb3, 0xa9, 0x8a, 0x8a, 0xff, 0xa5, 0x2d, 0xee, 0x5f, 0x0e, 0x6c, - 0x14, 0x8a, 0x7d, 0x53, 0x4a, 0xa1, 0x1d, 0xa8, 0xb2, 0x28, 0x4e, 0x94, 0x97, 0x08, 0x66, 0x4a, - 0xa8, 0xe2, 0x8a, 0x11, 0xf4, 0x05, 0x43, 0x9f, 0xc1, 0x9a, 0x1f, 0x72, 0x99, 0x08, 0x6a, 0xea, - 0xa8, 0x75, 0xef, 0x96, 0xb3, 0x2a, 0xb8, 0x3e, 0x48, 0xb1, 0x38, 0x33, 0x42, 0xfb, 0x50, 0x99, - 0x50, 0x45, 0x02, 0xa2, 0x88, 0x29, 0xb8, 0xd6, 0xbd, 0x77, 0xae, 0x83, 0x67, 0x54, 0x91, 0x43, - 0xa2, 0x08, 0xce, 0xcd, 0xdc, 0xdf, 0x1d, 0xb8, 0xb2, 0x10, 0x83, 0x6e, 0x43, 0x4d, 0x50, 0x25, - 0xa6, 0xde, 0x48, 0xf0, 0x24, 0x36, 0xa5, 0x57, 0x31, 0x18, 0xd1, 0x13, 0x2d, 0x41, 0x77, 0xa1, - 0xce, 0x64, 0xc6, 0x1b, 0xbd, 0xa8, 0x4c, 0x7d, 0x15, 0xbc, 0xce, 0x64, 0xca, 0x1a, 0xed, 0x17, - 0xb5, 0x60, 0x5d, 0xc6, 0xd4, 0x37, 0x00, 0x4d, 0x87, 0xf4, 0xc2, 0x40, 0xcb, 0xb4, 0xfe, 0x28, - 0x40, 0x37, 0x01, 0x98, 0xf4, 0x82, 0x69, 0x44, 0x26, 0xcc, 0x37, 0x75, 0x54, 0x70, 0x95, 0xc9, - 0xc3, 0x54, 0xe0, 0xbe, 0x84, 0xed, 0x57, 0x66, 0x12, 0x3d, 0x86, 0xcd, 0xe2, 0x6a, 0x94, 0x4d, - 0xa7, 0xb5, 0xbc, 0x5b, 0xeb, 0xde, 0x3c, 0xb7, 0x01, 0xb8, 0x1e, 0xcd, 0x1f, 0xe5, 0x8c, 0x47, - 0x4b, 0x73, 0x3c, 0x72, 0xff, 0x59, 0x81, 0xc6, 0xa2, 0xce, 0xa3, 0x3b, 0x00, 0x3c, 0x51, 0xd9, - 0x75, 0x9a, 0x96, 0xf4, 0x96, 0x9a, 0xce, 0xd3, 0x4b, 0xb8, 0x9a, 0xca, 0xf5, 0xad, 0xee, 0xc1, - 0x0a, 0x15, 0x82, 0x0b, 0xe3, 0xb3, 0x90, 0x91, 0x61, 0x4b, 0xee, 0xf4, 0x91, 0x06, 0x3d, 0xbd, - 0x84, 0x53, 0x34, 0xfa, 0x02, 0x6a, 0xd6, 0xb7, 0xb9, 0x4f, 0x30, 0xc6, 0xd7, 0x4a, 0xc6, 0xc7, - 0xe9, 0x12, 0x7d, 0x46, 0x62, 0x1b, 0xd7, 0xe6, 0x63, 0x6e, 0xec, 0x21, 0xac, 0xc4, 0xa7, 0x44, - 0xa6, 0x64, 0xaa, 0x77, 0xdd, 0xf3, 0x68, 0xda, 0x7e, 0xae, 0x91, 0x38, 0x35, 0x40, 0x1f, 0x03, - 0x48, 0x45, 0x84, 0xa2, 0x81, 0x47, 0x94, 0xa5, 0xd2, 0xf5, 0x76, 0xba, 0x80, 0xdb, 0xd9, 0x02, - 0x6e, 0xbf, 0xc8, 0x36, 0x34, 0xae, 0x5a, 0xf4, 0xbe, 0x42, 0x7b, 0x50, 0xc9, 0x16, 0xb3, 0x1d, - 0xad, 0x6b, 0xaf, 0x18, 0x1e, 0x5a, 0x00, 0xce, 0xa1, 0x3a, 0xa2, 0x2f, 0x28, 0xb1, 0x11, 0x57, - 0x2f, 0x8e, 0x68, 0xd1, 0xfb, 0x4a, 0x9b, 0x26, 0x71, 0x90, 0x99, 0xae, 0x5d, 0x6c, 0x6a, 0xd1, - 0xfb, 0x0a, 0xfd, 0x08, 0x6f, 0xe7, 0x3b, 0xdc, 0xf0, 0x27, 0x1f, 0x9f, 0xca, 0xe2, 0xf9, 0xcb, - 0xb6, 0xb8, 0xee, 0xdd, 0x33, 0x8b, 0x7d, 0xea, 0xe0, 0xc6, 0xd9, 0x02, 0x39, 0x7a, 0x0e, 0xc8, - 0xac, 0xbf, 0xa2, 0xe7, 0xaa, 0xf1, 0xdc, 0x2a, 0x7b, 0xd6, 0x0b, 0xb0, 0xe4, 0x75, 0x4b, 0x95, - 0x64, 0xe8, 0x1a, 0x54, 0x02, 0xea, 0x8f, 0x0d, 0xdb, 0x6a, 0xe9, 0x46, 0xd3, 0x67, 0xcd, 0xb2, - 0x0e, 0x34, 0xec, 0xc8, 0x78, 0x3f, 0xf3, 0x81, 0x67, 0x66, 0x4c, 0xc3, 0xd6, 0x0d, 0x6c, 0xdb, - 0xea, 0xbe, 0xe4, 0x83, 0x93, 0x98, 0xfa, 0x7d, 0xc1, 0x7a, 0x9b, 0xb0, 0x61, 0xf9, 0x25, 0xa8, - 0x4c, 0x42, 0xd5, 0xdb, 0x86, 0x4d, 0x45, 0xc4, 0x88, 0xaa, 0x3c, 0x57, 0x37, 0x80, 0xc6, 0xa2, - 0x8a, 0xd1, 0x31, 0xd4, 0xe8, 0x6c, 0xc1, 0xbd, 0xc1, 0x8b, 0x37, 0x6f, 0xee, 0xfe, 0xe1, 0xc0, - 0x56, 0xb9, 0x7c, 0x74, 0x08, 0xeb, 0x3e, 0xf1, 0x4f, 0xa9, 0x27, 0x15, 0x51, 0x89, 0x34, 0x31, - 0xea, 0xdd, 0x77, 0x4a, 0x31, 0x0e, 0xd2, 0xef, 0x93, 0x03, 0x8d, 0x3c, 0x31, 0x40, 0x5c, 0xf3, - 0x67, 0x07, 0xf4, 0x39, 0xd4, 0xec, 0x27, 0x8c, 0x37, 0xa6, 0x53, 0x3b, 0x81, 0xb7, 0x16, 0x3b, - 0xc9, 0x42, 0x63, 0xb0, 0x26, 0x5f, 0xd1, 0x29, 0xba, 0x07, 0x75, 0xff, 0x94, 0xfa, 0xe3, 0x98, - 0xb3, 0x28, 0x9d, 0xf2, 0xf4, 0x25, 0xd9, 0x98, 0x49, 0xfb, 0x82, 0xb9, 0x7f, 0x3a, 0xb0, 0x63, - 0x17, 0xd4, 0xc2, 0x86, 0xbd, 0x37, 0xf7, 0x5c, 0x94, 0x67, 0xb8, 0xf4, 0x42, 0x9c, 0xc0, 0xb6, - 0xfd, 0xb0, 0x0a, 0xbc, 0x8c, 0x56, 0x36, 0xf1, 0xf2, 0x43, 0x73, 0x60, 0x71, 0x59, 0xc8, 0xec, - 0x41, 0xd8, 0xf2, 0x4b, 0x8a, 0xd7, 0xb2, 0x63, 0xf9, 0x35, 0xec, 0x70, 0xfb, 0xb0, 0x53, 0xfe, - 0x9a, 0x32, 0x2f, 0xc5, 0x7f, 0xfc, 0xa2, 0xfa, 0x75, 0x19, 0x6e, 0x2c, 0xf6, 0x2b, 0x63, 0x1e, - 0x49, 0x8a, 0x1e, 0xc0, 0xaa, 0x79, 0x0e, 0xa5, 0x75, 0x7e, 0xb5, 0x3c, 0x27, 0x7d, 0x11, 0xf6, - 0x42, 0x3e, 0xd0, 0xeb, 0x0e, 0x5b, 0x28, 0xda, 0x83, 0xb5, 0x94, 0xca, 0xd2, 0x36, 0xea, 0x5c, - 0xab, 0x0c, 0x8b, 0x3e, 0x81, 0xda, 0x30, 0x09, 0x43, 0xcf, 0x06, 0x5c, 0xbe, 0x60, 0xc3, 0x62, - 0xd0, 0xe8, 0xa3, 0x34, 0xe4, 0xa7, 0xb0, 0x6e, 0x6c, 0xb3, 0xb8, 0x97, 0x2f, 0x32, 0x36, 0xa1, - 0xbe, 0xb1, 0x91, 0xbf, 0x83, 0xad, 0xec, 0x3a, 0xf2, 0x2b, 0xde, 0x32, 0x1e, 0x3e, 0x28, 0x67, - 0x7e, 0x0e, 0xab, 0xf0, 0x66, 0x50, 0x54, 0xa2, 0x87, 0x00, 0xc6, 0xdc, 0x4b, 0x44, 0x28, 0x9b, - 0xdb, 0xe5, 0x9c, 0x52, 0x8f, 0x8f, 0xf5, 0xb1, 0x8f, 0x8f, 0x25, 0xae, 0x1a, 0x4d, 0x5f, 0x84, - 0xb2, 0xf7, 0xd1, 0x0f, 0x7b, 0x23, 0xa6, 0x4e, 0x93, 0x41, 0xdb, 0xe7, 0x93, 0x8e, 0x91, 0x73, - 0x31, 0xea, 0xe4, 0x9f, 0xec, 0x23, 0x1a, 0x75, 0xe2, 0xc1, 0xfd, 0x11, 0xef, 0x14, 0x7f, 0x2e, - 0x06, 0xab, 0x66, 0xc3, 0x3e, 0xf8, 0x37, 0x00, 0x00, 0xff, 0xff, 0x26, 0xae, 0x74, 0xa3, 0xaa, - 0x0c, 0x00, 0x00, + // 1191 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xdd, 0x6e, 0x1b, 0xc5, + 0x17, 0xef, 0x26, 0x4d, 0x62, 0x1f, 0x27, 0x4e, 0x32, 0x7f, 0xf7, 0x5f, 0xb7, 0xe9, 0x87, 0xd9, + 0xb6, 0x28, 0x80, 0x6a, 0x4b, 0xae, 0x8a, 0xca, 0x37, 0x71, 0xd2, 0x8f, 0x40, 0x0a, 0x65, 0x52, + 0x83, 0x84, 0x10, 0xab, 0xf1, 0xee, 0xd8, 0x19, 0xbc, 0xde, 0xd9, 0xce, 0xcc, 0x2a, 0xf8, 0x45, + 0x90, 0xb8, 0xe2, 0x55, 0x78, 0x02, 0x5e, 0x03, 0x89, 0x07, 0xe0, 0x1a, 0xcd, 0xec, 0xec, 0xda, + 0xbb, 0x71, 0x13, 0xa9, 0x5c, 0x70, 0xe7, 0x39, 0xe7, 0x77, 0x3e, 0xe7, 0x77, 0xce, 0xac, 0xe1, + 0xce, 0x30, 0x9c, 0x2a, 0xca, 0x82, 0xb0, 0x43, 0x82, 0x09, 0x8b, 0x3a, 0x11, 0x0f, 0xa8, 0x47, + 0x7f, 0xa6, 0x7e, 0xa2, 0x18, 0x8f, 0xda, 0xb1, 0xe0, 0x8a, 0xa3, 0x7a, 0x06, 0x6a, 0x1b, 0xd0, + 0xf5, 0x9d, 0x92, 0x91, 0xcf, 0x27, 0x93, 0x0c, 0x7c, 0xfd, 0x66, 0xae, 0xf4, 0xb9, 0xa0, 0x9d, + 0x92, 0xaf, 0x39, 0x5b, 0xa3, 0xf6, 0x89, 0x22, 0x21, 0x1f, 0x59, 0xe5, 0x8d, 0x92, 0x92, 0x4f, + 0x62, 0x16, 0x52, 0x61, 0xb5, 0xb7, 0x8a, 0x5a, 0x16, 0xd0, 0x48, 0xb1, 0x21, 0xcb, 0xf5, 0x25, + 0xeb, 0x90, 0x29, 0x2a, 0x48, 0x28, 0xad, 0xf6, 0xf6, 0x88, 0xf3, 0x51, 0x48, 0x3b, 0xe6, 0x34, + 0x48, 0x86, 0x1d, 0xc5, 0x26, 0x54, 0x2a, 0x32, 0x89, 0x33, 0xf7, 0x65, 0x40, 0x90, 0x08, 0x32, + 0xcb, 0xdc, 0xfd, 0x06, 0xae, 0x7e, 0xc5, 0x03, 0xfa, 0x38, 0x2b, 0xe8, 0x29, 0x55, 0x98, 0xbe, + 0x4a, 0xa8, 0x54, 0xe8, 0x7d, 0x58, 0x62, 0x41, 0xd3, 0x69, 0x39, 0xbb, 0xb5, 0xee, 0xdb, 0xed, + 0xbc, 0x5b, 0x3a, 0x8d, 0x76, 0xc1, 0xe6, 0x30, 0xcf, 0x19, 0x2f, 0xb1, 0xc0, 0xfd, 0x75, 0x09, + 0x9a, 0x05, 0xfd, 0x11, 0x93, 0xb9, 0xd3, 0x1f, 0xe1, 0xca, 0x29, 0x17, 0xe3, 0x61, 0xc8, 0x4f, + 0x67, 0x37, 0xe2, 0xe5, 0x71, 0xde, 0x2d, 0xc5, 0xf9, 0xce, 0x62, 0x17, 0xc5, 0xfa, 0xdf, 0xe9, + 0x59, 0x25, 0x6a, 0xc0, 0x4a, 0xc8, 0x26, 0x4c, 0x35, 0x97, 0x5a, 0xce, 0xee, 0x06, 0x4e, 0x0f, + 0x5a, 0xaa, 0xf8, 0x98, 0x46, 0xcd, 0xe5, 0x96, 0xb3, 0x5b, 0xc5, 0xe9, 0x01, 0x35, 0x61, 0x6d, + 0xc8, 0x42, 0x45, 0x85, 0x6c, 0x5e, 0x36, 0xf2, 0xec, 0x88, 0xee, 0xc3, 0x9a, 0xe4, 0x42, 0x79, + 0x83, 0x69, 0x73, 0xc5, 0xe4, 0xd5, 0x68, 0x17, 0xd9, 0xd2, 0x3e, 0xe6, 0x42, 0xe1, 0x55, 0x0d, + 0xea, 0x4d, 0xd1, 0x2e, 0x6c, 0x25, 0x11, 0x7b, 0x95, 0x50, 0x2f, 0x26, 0x82, 0x46, 0x4a, 0xd7, + 0xb3, 0x6a, 0x3c, 0xd6, 0x53, 0xf9, 0x0b, 0x23, 0x3e, 0x0c, 0xdc, 0xbf, 0x1c, 0xb8, 0x5d, 0xe8, + 0xcd, 0x13, 0x2e, 0x5e, 0x12, 0x39, 0x9e, 0x6f, 0x11, 0x86, 0x6d, 0x45, 0xe4, 0x78, 0x51, 0x7b, + 0xca, 0xd7, 0xa0, 0x4d, 0x17, 0xb5, 0x66, 0x53, 0x15, 0x15, 0xff, 0x49, 0x5b, 0xdc, 0x3f, 0x1d, + 0xd8, 0x28, 0x14, 0xfb, 0xa6, 0x94, 0x42, 0x3b, 0x50, 0x65, 0x51, 0x9c, 0x28, 0x2f, 0x11, 0xcc, + 0x94, 0x50, 0xc5, 0x15, 0x23, 0xe8, 0x0b, 0x86, 0x3e, 0x85, 0x35, 0x3f, 0xe4, 0x32, 0x11, 0xd4, + 0xd4, 0x51, 0xeb, 0xde, 0x2d, 0x67, 0x55, 0x70, 0xbd, 0x9f, 0x62, 0x71, 0x66, 0x84, 0xf6, 0xa0, + 0x32, 0xa1, 0x8a, 0x04, 0x44, 0x11, 0x53, 0x70, 0xad, 0x7b, 0xef, 0x5c, 0x07, 0xcf, 0xa9, 0x22, + 0x07, 0x44, 0x11, 0x9c, 0x9b, 0xb9, 0xbf, 0x39, 0x70, 0x65, 0x21, 0x06, 0xdd, 0x86, 0x9a, 0xa0, + 0x4a, 0x4c, 0xbd, 0x91, 0xe0, 0x49, 0x6c, 0x4a, 0xaf, 0x62, 0x30, 0xa2, 0xa7, 0x5a, 0x82, 0xee, + 0x42, 0x9d, 0xc9, 0x8c, 0x37, 0x7a, 0x51, 0x99, 0xfa, 0x2a, 0x78, 0x9d, 0xc9, 0x94, 0x35, 0xda, + 0x2f, 0x6a, 0xc1, 0xba, 0x8c, 0xa9, 0x6f, 0x00, 0x9a, 0x0e, 0xe9, 0x85, 0x81, 0x96, 0x69, 0xfd, + 0x61, 0x80, 0x6e, 0x02, 0x30, 0xe9, 0x05, 0xd3, 0x88, 0x4c, 0x98, 0x6f, 0xea, 0xa8, 0xe0, 0x2a, + 0x93, 0x07, 0xa9, 0xc0, 0x7d, 0x05, 0xdb, 0x67, 0x66, 0x12, 0x3d, 0x81, 0xcd, 0xe2, 0x6a, 0x94, + 0x4d, 0xa7, 0xb5, 0xbc, 0x5b, 0xeb, 0xde, 0x3c, 0xb7, 0x01, 0xb8, 0x1e, 0xcd, 0x1f, 0xe5, 0x8c, + 0x47, 0x4b, 0x73, 0x3c, 0x72, 0xff, 0x5e, 0x81, 0xc6, 0xa2, 0xce, 0xa3, 0x3b, 0x00, 0x3c, 0x51, + 0xd9, 0x75, 0x9a, 0x96, 0xf4, 0x96, 0x9a, 0xce, 0xb3, 0x4b, 0xb8, 0x9a, 0xca, 0xf5, 0xad, 0x3e, + 0x84, 0x15, 0x2a, 0x04, 0x17, 0xc6, 0x67, 0x21, 0x23, 0xc3, 0x96, 0xdc, 0xe9, 0x63, 0x0d, 0x7a, + 0x76, 0x09, 0xa7, 0x68, 0xf4, 0x39, 0xd4, 0xac, 0x6f, 0x73, 0x9f, 0x60, 0x8c, 0xaf, 0x95, 0x8c, + 0x8f, 0xd2, 0x25, 0xfa, 0x9c, 0xc4, 0x36, 0xae, 0xcd, 0xc7, 0xdc, 0xd8, 0x23, 0x58, 0x89, 0x4f, + 0x88, 0x4c, 0xc9, 0x54, 0xef, 0xba, 0xe7, 0xd1, 0xb4, 0xfd, 0x42, 0x23, 0x71, 0x6a, 0x80, 0x3e, + 0x00, 0x90, 0x8a, 0x08, 0x45, 0x03, 0x8f, 0x28, 0x4b, 0xa5, 0xeb, 0xed, 0x74, 0x01, 0xb7, 0xb3, + 0x05, 0xdc, 0x7e, 0x99, 0x6d, 0x68, 0x5c, 0xb5, 0xe8, 0x3d, 0x85, 0x1e, 0x42, 0x25, 0x5b, 0xcc, + 0x76, 0xb4, 0xae, 0x9d, 0x31, 0x3c, 0xb0, 0x00, 0x9c, 0x43, 0x75, 0x44, 0x5f, 0x50, 0x62, 0x23, + 0xae, 0x5e, 0x1c, 0xd1, 0xa2, 0xf7, 0x94, 0x36, 0x4d, 0xe2, 0x20, 0x33, 0x5d, 0xbb, 0xd8, 0xd4, + 0xa2, 0xf7, 0x14, 0xfa, 0x01, 0xfe, 0x9f, 0xef, 0x70, 0xc3, 0x9f, 0x7c, 0x7c, 0x2a, 0x8b, 0xe7, + 0x2f, 0xdb, 0xe2, 0xba, 0x77, 0xcf, 0x2d, 0xf6, 0x99, 0x83, 0x1b, 0xa7, 0x0b, 0xe4, 0xe8, 0x05, + 0x20, 0xb3, 0xfe, 0x8a, 0x9e, 0xab, 0xc6, 0x73, 0xab, 0xec, 0x59, 0x2f, 0xc0, 0x92, 0xd7, 0x2d, + 0x55, 0x92, 0xa1, 0x6b, 0x50, 0x09, 0xa8, 0x3f, 0x36, 0x6c, 0xab, 0xa5, 0x1b, 0x4d, 0x9f, 0x35, + 0xcb, 0x3a, 0xd0, 0xb0, 0x23, 0xe3, 0xfd, 0xc4, 0x07, 0x9e, 0x99, 0x31, 0x0d, 0x5b, 0x37, 0xb0, + 0x6d, 0xab, 0xfb, 0x82, 0x0f, 0x8e, 0x63, 0xea, 0xf7, 0x05, 0xeb, 0x6d, 0xc2, 0x86, 0xe5, 0x97, + 0xa0, 0x32, 0x09, 0x55, 0x6f, 0x1b, 0x36, 0x15, 0x11, 0x23, 0xaa, 0xf2, 0x5c, 0xdd, 0x00, 0x1a, + 0x8b, 0x2a, 0x46, 0x47, 0x50, 0xa3, 0xb3, 0x05, 0xf7, 0x06, 0x2f, 0xde, 0xbc, 0xb9, 0xfb, 0xbb, + 0x03, 0x5b, 0xe5, 0xf2, 0xd1, 0x01, 0xac, 0xfb, 0xc4, 0x3f, 0xa1, 0x9e, 0x54, 0x44, 0x25, 0xd2, + 0xc4, 0xa8, 0x77, 0xdf, 0x2a, 0xc5, 0xd8, 0x4f, 0xbf, 0x4f, 0xf6, 0x35, 0xf2, 0xd8, 0x00, 0x71, + 0xcd, 0x9f, 0x1d, 0xd0, 0x67, 0x50, 0xb3, 0x9f, 0x30, 0xde, 0x98, 0x4e, 0xed, 0x04, 0xde, 0x5a, + 0xec, 0x24, 0x0b, 0x8d, 0xc1, 0x9a, 0x7c, 0x49, 0xa7, 0xe8, 0x1e, 0xd4, 0xfd, 0x13, 0xea, 0x8f, + 0x63, 0xce, 0xa2, 0x74, 0xca, 0xd3, 0x97, 0x64, 0x63, 0x26, 0xed, 0x0b, 0xe6, 0xfe, 0xe1, 0xc0, + 0x8e, 0x5d, 0x50, 0x0b, 0x1b, 0xf6, 0xce, 0xdc, 0x73, 0x51, 0x9e, 0xe1, 0xd2, 0x0b, 0x71, 0x0c, + 0xdb, 0xf6, 0xc3, 0x2a, 0xf0, 0x32, 0x5a, 0xd9, 0xc4, 0xcb, 0x0f, 0xcd, 0xbe, 0xc5, 0x65, 0x21, + 0xb3, 0x07, 0x61, 0xcb, 0x2f, 0x29, 0x5e, 0xcb, 0x8e, 0xe5, 0xd7, 0xb0, 0xc3, 0xed, 0xc3, 0x4e, + 0xf9, 0x6b, 0xca, 0xbc, 0x14, 0xff, 0xf2, 0x8b, 0xea, 0x97, 0x65, 0xb8, 0xb1, 0xd8, 0xaf, 0x8c, + 0x79, 0x24, 0x29, 0x7a, 0x00, 0xab, 0xe6, 0x39, 0x94, 0xd6, 0xf9, 0xd5, 0xf2, 0x9c, 0xf4, 0x45, + 0xd8, 0x0b, 0xf9, 0x40, 0xaf, 0x3b, 0x6c, 0xa1, 0xe8, 0x21, 0xac, 0xa5, 0x54, 0x96, 0xb6, 0x51, + 0xe7, 0x5a, 0x65, 0x58, 0xf4, 0x21, 0xd4, 0x86, 0x49, 0x18, 0x7a, 0x36, 0xe0, 0xf2, 0x05, 0x1b, + 0x16, 0x83, 0x46, 0x1f, 0xa6, 0x21, 0x3f, 0x86, 0x75, 0x63, 0x9b, 0xc5, 0xbd, 0x7c, 0x91, 0xb1, + 0x09, 0xf5, 0xb5, 0x8d, 0xfc, 0x2d, 0x6c, 0x65, 0xd7, 0x91, 0x5f, 0xf1, 0x96, 0xf1, 0xf0, 0x5e, + 0x39, 0xf3, 0x73, 0x58, 0x85, 0x37, 0x83, 0xa2, 0x12, 0x3d, 0x02, 0x30, 0xe6, 0x5e, 0x22, 0x42, + 0xd9, 0xdc, 0x2e, 0xe7, 0x94, 0x7a, 0x7c, 0xa2, 0x8f, 0x7d, 0x7c, 0x24, 0x71, 0xd5, 0x68, 0xfa, + 0x22, 0x94, 0xbd, 0x4f, 0xbe, 0xff, 0x68, 0xc4, 0xd4, 0x49, 0x32, 0x68, 0xfb, 0x7c, 0xd2, 0x31, + 0x72, 0x2e, 0x46, 0xe9, 0x8f, 0x4e, 0xfe, 0xe1, 0x3e, 0xa2, 0x51, 0x27, 0x1e, 0xdc, 0x1f, 0xf1, + 0x4e, 0xf1, 0x2f, 0xc6, 0x60, 0xd5, 0xec, 0xd9, 0x07, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xc7, + 0x28, 0x8a, 0x7c, 0xb0, 0x0c, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.validate.go b/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.validate.go index 72b85d59fe..86602d7ee1 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.validate.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/flyteidl/gen/pb-go/flyteidl/admin/notification.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/notification.pb.go index 954a303a6c..9256eb3ba0 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/notification.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/notification.pb.go @@ -5,8 +5,9 @@ package admin import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -102,18 +103,19 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/notification.proto", fileDescriptor_cbe32eb21e00da05) } var fileDescriptor_cbe32eb21e00da05 = []byte{ - // 208 bytes of a gzipped FileDescriptorProto + // 210 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, + 0x10, 0xc5, 0x15, 0x5a, 0x21, 0xd5, 0x54, 0x80, 0x3c, 0x65, 0x6c, 0x99, 0xca, 0x40, 0x3c, 0x30, + 0x22, 0x16, 0x24, 0x36, 0x58, 0x3a, 0xb2, 0x54, 0xfe, 0x73, 0x31, 0x87, 0x9c, 0xbb, 0xc8, 0x76, + 0x86, 0x7c, 0x0e, 0xbe, 0x30, 0xc2, 0x09, 0x44, 0xdd, 0x9e, 0xde, 0xfb, 0x9d, 0x74, 0x3f, 0xb1, + 0x6f, 0xc3, 0x98, 0x01, 0x5d, 0x50, 0xda, 0x75, 0x48, 0x8a, 0x38, 0x63, 0x8b, 0x56, 0x67, 0x64, + 0x6a, 0xfa, 0xc8, 0x99, 0xe5, 0xf5, 0x1f, 0xd2, 0x14, 0xe4, 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, 0xa5, 0x2f, 0x17, 0x72, 0x2f, 0xb6, 0x09, + 0xc8, 0x41, 0x9c, 0xb1, 0x8b, 0x5d, 0x75, 0xd8, 0x1c, 0xaf, 0xa6, 0x6e, 0x41, 0x06, 0xf3, 0x05, + 0x36, 0x9f, 0x02, 0x12, 0xd4, 0xab, 0x19, 0x99, 0xba, 0x37, 0x24, 0x90, 0x52, 0xac, 0x0d, 0xbb, + 0xb1, 0x5e, 0x97, 0xa9, 0xe4, 0x97, 0xe7, 0x8f, 0x27, 0x8f, 0xf9, 0x73, 0x30, 0x8d, 0xe5, 0x4e, + 0x95, 0x97, 0x39, 0xfa, 0x29, 0xa8, 0x7f, 0x49, 0x0f, 0xa4, 0x7a, 0xf3, 0xe0, 0x59, 0x9d, 0x7b, + 0x9b, 0xcb, 0xe2, 0xfa, 0xf8, 0x13, 0x00, 0x00, 0xff, 0xff, 0xc1, 0x54, 0x10, 0xff, 0x10, 0x01, + 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/project.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/project.pb.go index 9c5e2a88c0..1280093f14 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/project.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/project.pb.go @@ -5,8 +5,9 @@ package admin import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -436,31 +437,31 @@ var fileDescriptor_2db065ce03bf106d = []byte{ // 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, + 0x39, 0x50, 0x1b, 0xd2, 0x1b, 0x08, 0xa4, 0xb4, 0xb1, 0xa0, 0xa2, 0x20, 0xb4, 0x49, 0x2b, 0xc1, + 0xa5, 0xf2, 0xc7, 0xd6, 0x2c, 0xd8, 0x5e, 0xe3, 0xdd, 0x1e, 0xf2, 0x08, 0x3c, 0x0c, 0xef, 0x88, + 0xbc, 0x5e, 0x57, 0x6d, 0x08, 0xa8, 0x27, 0xef, 0xcc, 0xfc, 0x76, 0xe6, 0x3f, 0x33, 0x5e, 0x78, + 0x7a, 0x99, 0xaf, 0x25, 0x65, 0x69, 0x1e, 0x44, 0x69, 0xc1, 0xca, 0xa0, 0xaa, 0xf9, 0x77, 0x9a, + 0x48, 0xbf, 0xaa, 0xb9, 0xe4, 0x38, 0xec, 0xa2, 0xbe, 0x8a, 0x3e, 0x7e, 0xb2, 0x41, 0x27, 0xbc, + 0x28, 0x78, 0xd9, 0xc2, 0xde, 0x73, 0xb0, 0x16, 0xbc, 0x88, 0x58, 0x89, 0x43, 0x30, 0x59, 0xea, + 0x18, 0xae, 0x31, 0xbd, 0x4f, 0x4c, 0x96, 0x22, 0xc2, 0x6e, 0x19, 0x15, 0xd4, 0x31, 0x95, 0x47, + 0x9d, 0xbd, 0xdf, 0x26, 0xd8, 0x9f, 0xdb, 0x62, 0x77, 0xe1, 0xf1, 0x05, 0xd8, 0xa9, 0xca, 0x2e, + 0x9c, 0x1d, 0x77, 0x67, 0x3a, 0x98, 0xed, 0xfb, 0xb7, 0xc5, 0xf9, 0x6d, 0x71, 0xd2, 0x61, 0xe8, + 0xc2, 0x20, 0xa5, 0x22, 0xa9, 0x59, 0x25, 0x19, 0x2f, 0x9d, 0x5d, 0x95, 0xec, 0xa6, 0x0b, 0x7d, + 0xb0, 0xf2, 0x28, 0xa6, 0xb9, 0x70, 0x7a, 0xae, 0xb1, 0x2d, 0xe5, 0xa9, 0x8a, 0x12, 0x4d, 0xe1, + 0x2b, 0xe8, 0x09, 0x19, 0x49, 0xea, 0x58, 0xae, 0x31, 0x1d, 0xce, 0x9e, 0x6d, 0xe2, 0xba, 0x9f, + 0xee, 0xbb, 0x6c, 0x58, 0xd2, 0x5e, 0xf1, 0xde, 0xc2, 0xde, 0x4d, 0x37, 0x02, 0x58, 0xf3, 0xe3, + 0xd5, 0xc9, 0x79, 0x38, 0xba, 0x87, 0x7b, 0xd0, 0x9f, 0x93, 0xe3, 0xf7, 0x27, 0xe7, 0xe1, 0x62, + 0x64, 0xe0, 0x18, 0x46, 0xcb, 0x2f, 0xcb, 0x55, 0xf8, 0xf1, 0xe2, 0x5d, 0xf8, 0x29, 0x24, 0xf3, + 0x55, 0xb8, 0x18, 0x99, 0xde, 0x19, 0xf4, 0xf5, 0x7d, 0x81, 0x87, 0xd0, 0xd7, 0x7b, 0x12, 0x8e, + 0xa1, 0x86, 0x31, 0xf9, 0x87, 0x14, 0x72, 0x0d, 0xe2, 0x18, 0x7a, 0x92, 0xff, 0xa0, 0xa5, 0x9e, + 0x6a, 0x6b, 0x78, 0xbf, 0x0c, 0x40, 0xcd, 0x9e, 0x32, 0x21, 0x09, 0xfd, 0x79, 0x45, 0x85, 0x6c, + 0xe0, 0x9c, 0x15, 0x4c, 0xaa, 0xa5, 0x3c, 0x20, 0xad, 0xb1, 0x3d, 0x05, 0x3a, 0x60, 0x5f, 0xb2, + 0x5c, 0xd2, 0xba, 0xd9, 0x4c, 0xe3, 0xef, 0x4c, 0x3c, 0x00, 0x5b, 0xf0, 0x5a, 0x5e, 0xc4, 0x6b, + 0x35, 0xfd, 0xc1, 0x6c, 0xbc, 0x29, 0x73, 0xc9, 0x6b, 0x49, 0xac, 0x06, 0x3a, 0x5a, 0x7b, 0x1f, + 0x60, 0xbf, 0x93, 0x4d, 0x33, 0x26, 0x24, 0xad, 0x3b, 0x39, 0x2f, 0xc1, 0xd6, 0x7d, 0x28, 0x41, + 0xff, 0xe9, 0xb7, 0xe3, 0xbc, 0x47, 0x30, 0xf9, 0x2b, 0x99, 0xa8, 0x78, 0x29, 0xa8, 0x37, 0x81, + 0x87, 0x3a, 0x74, 0x56, 0xa5, 0xcd, 0x8a, 0x74, 0xe0, 0xe8, 0xcd, 0xd7, 0xd7, 0x19, 0x93, 0xdf, + 0xae, 0x62, 0x3f, 0xe1, 0x45, 0xa0, 0x2a, 0xf0, 0x3a, 0x6b, 0x0f, 0xc1, 0xf5, 0xaf, 0x9f, 0xd1, + 0x32, 0xa8, 0xe2, 0x83, 0x8c, 0x07, 0xb7, 0x5f, 0x43, 0x6c, 0xa9, 0x77, 0x70, 0xf8, 0x27, 0x00, + 0x00, 0xff, 0xff, 0x33, 0x79, 0x69, 0x68, 0x54, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/project_attributes.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/project_attributes.pb.go index 4cccaec61d..6546cc0c5a 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/project_attributes.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/project_attributes.pb.go @@ -5,8 +5,9 @@ package admin import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -338,25 +339,25 @@ func init() { } var fileDescriptor_cb8dc9faa9640256 = []byte{ - // 314 bytes of a gzipped FileDescriptorProto + // 317 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0x31, 0x4f, 0xc3, 0x30, 0x10, 0x85, 0x65, 0x06, 0x10, 0x06, 0x2a, 0x11, 0x96, 0x0a, 0x10, 0xb4, 0x5e, 0xe8, 0x42, 0x2c, - 0x81, 0x10, 0x73, 0x11, 0x82, 0xa9, 0x12, 0x32, 0xb0, 0xb0, 0x54, 0x4e, 0x7a, 0xa4, 0x41, 0x49, - 0x6c, 0x9c, 0xcb, 0x90, 0x09, 0xa9, 0xbf, 0x1c, 0xc9, 0x89, 0xdb, 0xb4, 0x49, 0x37, 0x18, 0x13, - 0xbd, 0x7b, 0xef, 0xf3, 0xbb, 0xa3, 0x57, 0x9f, 0x49, 0x89, 0x10, 0xcf, 0x12, 0x2e, 0x67, 0x69, - 0x9c, 0x71, 0x6d, 0xd4, 0x17, 0x84, 0x38, 0x95, 0x88, 0x26, 0x0e, 0x0a, 0x84, 0xdc, 0xd7, 0x46, - 0xa1, 0xf2, 0x7a, 0x4e, 0xe8, 0x5b, 0xe1, 0xe9, 0xe6, 0x60, 0x2a, 0x31, 0x9c, 0xcb, 0x20, 0x81, - 0xa9, 0x81, 0x5c, 0x15, 0x26, 0x84, 0x6a, 0x90, 0x2d, 0x08, 0x3d, 0x7e, 0xa9, 0x5c, 0xc7, 0x4b, - 0x53, 0xaf, 0x4f, 0xf7, 0xea, 0xa8, 0x3e, 0x19, 0x90, 0xd1, 0xbe, 0x70, 0x9f, 0xde, 0x2b, 0x3d, - 0xb1, 0x5e, 0x71, 0x16, 0x35, 0x28, 0xfa, 0x3b, 0x03, 0x32, 0x3a, 0xb8, 0x61, 0xfe, 0x3a, 0x86, - 0x3f, 0xa9, 0xa5, 0x2b, 0x6b, 0xe1, 0xa5, 0xad, 0x7f, 0x2c, 0xa4, 0x17, 0x2d, 0x86, 0x77, 0x3d, - 0x93, 0x08, 0x02, 0xbe, 0x0b, 0xc8, 0xd1, 0x1b, 0x53, 0xda, 0x48, 0x23, 0x36, 0x6d, 0xb8, 0x99, - 0xd6, 0xf2, 0x10, 0x8d, 0x21, 0x36, 0xa4, 0x97, 0x5b, 0x43, 0x72, 0xad, 0xb2, 0x1c, 0xd8, 0x0f, - 0x3d, 0x6b, 0x49, 0x9e, 0x01, 0x1d, 0xc4, 0xf6, 0x56, 0x9e, 0xe8, 0x91, 0xeb, 0x75, 0x8a, 0xa5, - 0x06, 0xdb, 0x47, 0xaf, 0x4d, 0x38, 0x71, 0x6b, 0x10, 0xb5, 0x5a, 0x1c, 0xba, 0xb9, 0xb7, 0x52, - 0x03, 0x93, 0xf4, 0xbc, 0x1b, 0xa0, 0x02, 0xfc, 0x8b, 0x1a, 0x16, 0xa4, 0xa3, 0xec, 0x47, 0x48, - 0x60, 0x55, 0xf6, 0xff, 0xbf, 0xb3, 0x6b, 0x17, 0x8e, 0xa1, 0x7a, 0xea, 0xc3, 0xfd, 0xc7, 0x5d, - 0x14, 0xe3, 0xbc, 0x08, 0xfc, 0x50, 0xa5, 0xdc, 0xfa, 0x2b, 0x13, 0xf1, 0xe5, 0x5d, 0x47, 0x90, - 0x71, 0x1d, 0x5c, 0x47, 0x8a, 0xaf, 0x9f, 0x7a, 0xb0, 0x6b, 0x0f, 0xfb, 0xf6, 0x37, 0x00, 0x00, - 0xff, 0xff, 0x34, 0x6f, 0x88, 0x40, 0x3c, 0x03, 0x00, 0x00, + 0xc1, 0x88, 0x18, 0x8a, 0x10, 0x4c, 0x95, 0x90, 0x81, 0x85, 0xa5, 0x72, 0xd2, 0x23, 0x0d, 0x4a, + 0x62, 0xe3, 0x5c, 0x86, 0x4c, 0x48, 0xfd, 0xe5, 0x48, 0x4e, 0xdc, 0xa6, 0x4d, 0xba, 0xc1, 0x96, + 0x58, 0xef, 0xde, 0xfb, 0xfc, 0x7c, 0xf4, 0xea, 0x33, 0x29, 0x11, 0xe2, 0x59, 0xc2, 0xe5, 0x2c, + 0x8d, 0x33, 0xae, 0x8d, 0xfa, 0x82, 0x10, 0xa7, 0x12, 0xd1, 0xc4, 0x41, 0x81, 0x90, 0xfb, 0xda, + 0x28, 0x54, 0x5e, 0xcf, 0x09, 0x7d, 0x2b, 0x3c, 0xdd, 0x1c, 0x4c, 0x25, 0x86, 0x73, 0x19, 0x24, + 0x30, 0x35, 0x90, 0xab, 0xc2, 0x84, 0x50, 0x0d, 0xb2, 0x05, 0xa1, 0xc7, 0x2f, 0x95, 0xeb, 0x78, + 0x69, 0xea, 0xf5, 0xe9, 0x5e, 0x1d, 0xd5, 0x27, 0x03, 0x32, 0xda, 0x17, 0xee, 0xd7, 0x7b, 0xa5, + 0x27, 0xd6, 0x2b, 0xce, 0xa2, 0x06, 0x45, 0x7f, 0x67, 0x40, 0x46, 0x07, 0x37, 0xcc, 0x5f, 0xc7, + 0xf0, 0x27, 0xb5, 0x74, 0x65, 0x2d, 0xbc, 0xb4, 0x75, 0xc6, 0x42, 0x7a, 0xd1, 0x62, 0x78, 0xd7, + 0x33, 0x89, 0x20, 0xe0, 0xbb, 0x80, 0x1c, 0xbd, 0x31, 0xa5, 0x8d, 0x34, 0x62, 0xd3, 0x86, 0x9b, + 0x69, 0x2d, 0x0f, 0xd1, 0x18, 0x62, 0x43, 0x7a, 0xb9, 0x35, 0x24, 0xd7, 0x2a, 0xcb, 0x81, 0xfd, + 0xd0, 0xb3, 0x96, 0xe4, 0x19, 0xd0, 0x41, 0x6c, 0x6f, 0xe5, 0x89, 0x1e, 0xb9, 0x5e, 0xa7, 0x58, + 0x6a, 0xb0, 0x7d, 0xf4, 0xda, 0x84, 0x13, 0xf7, 0x0c, 0xa2, 0x56, 0x8b, 0x43, 0x37, 0xf7, 0x56, + 0x6a, 0x60, 0x92, 0x9e, 0x77, 0x03, 0x54, 0x80, 0x7f, 0x51, 0xc3, 0x82, 0x74, 0x94, 0xfd, 0x08, + 0x09, 0xac, 0xca, 0xfe, 0xff, 0x7b, 0x76, 0xbd, 0x85, 0x63, 0xa8, 0xae, 0xfa, 0x70, 0xff, 0x71, + 0x17, 0xc5, 0x38, 0x2f, 0x02, 0x3f, 0x54, 0x29, 0xb7, 0xfe, 0xca, 0x44, 0xd5, 0x07, 0x5f, 0x6e, + 0x77, 0x04, 0x19, 0xd7, 0xc1, 0x75, 0xa4, 0xf8, 0xfa, 0xc2, 0x07, 0xbb, 0x76, 0xbd, 0x6f, 0x7f, + 0x03, 0x00, 0x00, 0xff, 0xff, 0xda, 0x8d, 0xf5, 0x81, 0x42, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/project_domain_attributes.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/project_domain_attributes.pb.go index 3fc2bdc3f3..598e70f7dc 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/project_domain_attributes.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/project_domain_attributes.pb.go @@ -5,8 +5,9 @@ package admin import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -367,27 +368,27 @@ func init() { } var fileDescriptor_e8ab0b551a649f05 = []byte{ - // 339 bytes of a gzipped FileDescriptorProto + // 342 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, + 0x40, 0x3d, 0x8a, 0x07, 0xa5, 0xd8, 0x93, 0x20, 0x51, 0x2f, 0x5e, 0x42, 0xfe, 0x8c, 0x69, 0x24, + 0xc9, 0xae, 0xc9, 0xe4, 0xd0, 0x0f, 0x23, 0xf4, 0xa3, 0x8a, 0xbb, 0xd9, 0xfe, 0xd3, 0x28, 0x82, + 0xe0, 0x2d, 0x93, 0xbc, 0x79, 0xef, 0xe5, 0x3d, 0x06, 0x9c, 0xa7, 0x6c, 0x46, 0x98, 0xc6, 0x99, + 0x1b, 0xc4, 0x79, 0x5a, 0xb8, 0xb2, 0x14, 0xcf, 0x18, 0x91, 0x1f, 0x8b, 0x3c, 0x48, 0x0b, 0x3f, + 0x20, 0x2a, 0xd3, 0xb0, 0x26, 0xac, 0x1c, 0x59, 0x0a, 0x12, 0x56, 0xd7, 0xe0, 0x1d, 0x85, 0x3f, + 0x1a, 0x6c, 0xec, 0xe7, 0x01, 0x45, 0xd3, 0x20, 0xcc, 0xd0, 0x2f, 0xb1, 0x12, 0x75, 0x19, 0xa1, + 0x5e, 0xe4, 0x73, 0x06, 0x87, 0xb7, 0x9a, 0x7c, 0xac, 0xb8, 0x2f, 0x17, 0xd4, 0x96, 0x0d, 0x5b, + 0x8d, 0xae, 0xcd, 0x7a, 0x6c, 0xb8, 0xed, 0x99, 0xd1, 0x3a, 0x80, 0x8e, 0x76, 0x62, 0xff, 0x53, + 0x1f, 0x9a, 0xc9, 0xba, 0x83, 0x7d, 0xa5, 0x94, 0x16, 0xc9, 0x8a, 0x47, 0xfb, 0x7f, 0x8f, 0x0d, + 0x77, 0x46, 0xdc, 0x59, 0x37, 0xe9, 0xdc, 0x34, 0xd0, 0xa5, 0xa4, 0x67, 0xe5, 0x1f, 0xde, 0x71, + 0x01, 0xc7, 0x2d, 0x0e, 0x1f, 0x64, 0x1c, 0x10, 0x7a, 0xf8, 0x52, 0x63, 0x45, 0xd6, 0x04, 0x60, + 0x45, 0x93, 0x29, 0xcd, 0xc1, 0xa6, 0x66, 0x0b, 0x93, 0xb7, 0xb2, 0xca, 0x07, 0x70, 0xf2, 0x8d, + 0x60, 0x25, 0x45, 0x51, 0x21, 0x7f, 0x65, 0xd0, 0x6f, 0x41, 0x4e, 0x90, 0x8c, 0xaf, 0x9f, 0xc7, + 0x78, 0x0d, 0x7b, 0xa6, 0x26, 0x9f, 0x66, 0x12, 0x55, 0x80, 0xdd, 0x51, 0xff, 0xd3, 0x00, 0xdf, + 0x5b, 0xf5, 0x1a, 0xb4, 0xb7, 0x6b, 0xf6, 0xee, 0x67, 0x12, 0x79, 0x0e, 0xfc, 0x2b, 0x7b, 0xfa, + 0x2f, 0x7e, 0x2f, 0xb7, 0x39, 0x6b, 0x6d, 0x6a, 0x8c, 0x19, 0x2e, 0x9b, 0xfa, 0xbb, 0x44, 0xda, + 0xab, 0x35, 0x0e, 0x75, 0x28, 0x57, 0x17, 0x8f, 0xe7, 0x49, 0x4a, 0xd3, 0x3a, 0x74, 0x22, 0x91, + 0xbb, 0x4a, 0x45, 0x94, 0x89, 0x7e, 0x70, 0x17, 0xc7, 0x95, 0x60, 0xe1, 0xca, 0xf0, 0x34, 0x11, + 0xee, 0xfa, 0xbd, 0x85, 0x1d, 0x75, 0x5d, 0x67, 0x6f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd5, 0x3f, + 0x53, 0x68, 0xc8, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/schedule.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/schedule.pb.go index 96b5d2d039..3d572e9082 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/schedule.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/schedule.pb.go @@ -5,8 +5,9 @@ package admin import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -266,28 +267,28 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/schedule.proto", fileDescriptor_a71cf75647fcd25a) } var fileDescriptor_a71cf75647fcd25a = []byte{ - // 358 bytes of a gzipped FileDescriptorProto + // 361 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, + 0x50, 0x3d, 0x96, 0x1e, 0x8c, 0xb5, 0xc4, 0x43, 0x5b, 0x98, 0xea, 0x61, 0xf7, 0x12, 0x62, 0x32, + 0x89, 0x83, 0xc9, 0x4c, 0x98, 0x4c, 0x16, 0xf7, 0x5f, 0xdf, 0xd3, 0xe2, 0x44, 0xb3, 0xba, 0xb0, + 0xb7, 0x79, 0x7c, 0xef, 0xfd, 0xde, 0xf7, 0x0d, 0x0f, 0x86, 0x51, 0xf2, 0x28, 0x09, 0x0d, 0x13, + 0xdb, 0x0f, 0x53, 0xca, 0xec, 0x3c, 0xd8, 0x93, 0xb0, 0x48, 0x88, 0x95, 0x09, 0x2e, 0x39, 0xea, + 0x5e, 0x64, 0x4b, 0xc9, 0xe3, 0x0d, 0xb4, 0x7e, 0xd3, 0x23, 0x09, 0xb1, 0x2f, 0x09, 0xea, 0xc3, + 0xbb, 0x07, 0x3f, 0x29, 0x88, 0xa9, 0x8f, 0xf4, 0x49, 0x07, 0x97, 0x05, 0xfa, 0x0e, 0x46, 0xc1, + 0xa8, 0x34, 0x6b, 0x23, 0x7d, 0xd2, 0x9d, 0x0d, 0xad, 0x5b, 0x82, 0x55, 0x8d, 0x6f, 0x19, 0x95, + 0x58, 0xb5, 0x8e, 0x1d, 0x68, 0x2f, 0x05, 0x67, 0xff, 0xcf, 0xbb, 0xd1, 0x17, 0x68, 0x5e, 0x7c, + 0x28, 0x76, 0x0b, 0x57, 0x35, 0x1a, 0x40, 0x83, 0x47, 0x51, 0x4e, 0xca, 0x05, 0x2d, 0x7c, 0xae, + 0xc6, 0x4f, 0x3a, 0x34, 0x2b, 0xc0, 0x14, 0x3e, 0x06, 0x82, 0x33, 0x8f, 0x1c, 0x33, 0x41, 0xf2, + 0x9c, 0x72, 0x56, 0x72, 0x9c, 0x9a, 0xa9, 0xbb, 0x1a, 0xee, 0x9e, 0xc4, 0x55, 0xa5, 0x21, 0x1b, + 0x0c, 0xe1, 0x4b, 0xa2, 0x88, 0x1f, 0x66, 0x9f, 0xdf, 0xb4, 0xec, 0x6a, 0x58, 0x35, 0xa2, 0x25, + 0x74, 0x14, 0xbf, 0x72, 0x69, 0xa8, 0xc9, 0xaf, 0xaf, 0x27, 0xaf, 0x53, 0xb9, 0x1a, 0x6e, 0x07, + 0xd7, 0x29, 0xe7, 0x30, 0x38, 0xd0, 0xe0, 0xc0, 0xa3, 0xc8, 0x93, 0x34, 0x25, 0x1e, 0x65, 0x59, + 0x21, 0x3d, 0x5f, 0xc4, 0x66, 0x5d, 0x25, 0xfb, 0x74, 0x56, 0x37, 0x34, 0x25, 0xeb, 0x93, 0xb6, + 0x10, 0xb1, 0xd3, 0x07, 0x74, 0x01, 0xbc, 0x04, 0xf8, 0x66, 0x41, 0xe7, 0xe6, 0x5f, 0x11, 0x40, + 0xe3, 0xcf, 0xfa, 0xef, 0x76, 0xb3, 0xea, 0x69, 0xa8, 0x09, 0x86, 0xfb, 0x6f, 0x8b, 0x7b, 0x3a, + 0x7a, 0x0f, 0xf5, 0x5f, 0x8b, 0xbb, 0x5e, 0xcd, 0xf9, 0x79, 0xff, 0x23, 0xa6, 0x72, 0x5f, 0xec, + 0xac, 0x80, 0xa7, 0xb6, 0x32, 0xcd, 0x45, 0x5c, 0x3e, 0xec, 0xea, 0x22, 0x62, 0xc2, 0xec, 0x6c, + 0x37, 0x8d, 0xb9, 0x7d, 0x7b, 0x24, 0xbb, 0x86, 0x3a, 0x8e, 0xf9, 0x73, 0x00, 0x00, 0x00, 0xff, + 0xff, 0xab, 0xa0, 0xaf, 0x50, 0x3d, 0x02, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/signal.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/signal.pb.go index 52c3dcc4f1..89c6df5575 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/signal.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/signal.pb.go @@ -5,9 +5,10 @@ package admin import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - proto "github.com/golang/protobuf/proto" math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -21,7 +22,7 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package -// SignalGetOrCreateRequest represents a request structure to retrive or create a signal. +// SignalGetOrCreateRequest represents a request structure to retrieve or create a signal. // See :ref:`ref_flyteidl.admin.Signal` for more details type SignalGetOrCreateRequest struct { // A unique identifier for the requested signal. @@ -366,32 +367,32 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/signal.proto", fileDescriptor_4b1c2d4aa3794afa) } var fileDescriptor_4b1c2d4aa3794afa = []byte{ - // 429 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0x51, 0x8b, 0xd3, 0x40, - 0x10, 0xc7, 0x49, 0x7b, 0x6d, 0x71, 0x0f, 0x45, 0x73, 0xe7, 0xb1, 0x56, 0xd1, 0x92, 0xa7, 0x22, - 0xde, 0xae, 0x9c, 0x88, 0xef, 0x27, 0x22, 0xc2, 0x81, 0xb0, 0x3d, 0x10, 0x7c, 0xb0, 0xa4, 0xcd, - 0x34, 0x2e, 0xb7, 0xd9, 0xcd, 0xed, 0x4e, 0xad, 0xc1, 0x0f, 0xe2, 0x57, 0xf4, 0x63, 0x48, 0x77, - 0x93, 0xf4, 0xd2, 0xf3, 0x41, 0x04, 0x1f, 0x67, 0xfe, 0xff, 0x99, 0xfc, 0xc2, 0x7f, 0x87, 0x3c, - 0x5e, 0xa9, 0x0a, 0x41, 0x66, 0x8a, 0xa7, 0x59, 0x21, 0x35, 0x77, 0x32, 0xd7, 0xa9, 0x62, 0xa5, - 0x35, 0x68, 0xe2, 0x7b, 0x8d, 0xc8, 0xbc, 0x38, 0xde, 0x37, 0x2f, 0x4d, 0x51, 0x18, 0x1d, 0xcc, - 0xe3, 0xa7, 0xad, 0xb8, 0x34, 0x16, 0xb8, 0xcc, 0x40, 0xa3, 0x5c, 0x49, 0xb0, 0xb5, 0xfe, 0xa4, - 0xab, 0x2b, 0x89, 0x60, 0x53, 0xe5, 0x6a, 0xf5, 0x51, 0x57, 0xc5, 0xaa, 0x84, 0x5a, 0x4a, 0x7e, - 0x10, 0x3a, 0xf3, 0x54, 0xef, 0x01, 0x3f, 0xda, 0xb7, 0x16, 0x52, 0x04, 0x01, 0xd7, 0x6b, 0x70, - 0x18, 0x73, 0xd2, 0x93, 0x19, 0x8d, 0x26, 0xd1, 0xf4, 0xf0, 0xec, 0x19, 0x6b, 0x71, 0xb7, 0x3b, - 0x58, 0x18, 0xfa, 0xd0, 0x72, 0x88, 0x9e, 0xcc, 0x62, 0x46, 0x0e, 0xb6, 0xbb, 0x69, 0xcf, 0x8f, - 0x8c, 0xf7, 0x46, 0x2e, 0x02, 0xd4, 0x65, 0x55, 0x82, 0xf0, 0xbe, 0xe4, 0x57, 0x44, 0x1e, 0x84, - 0x45, 0x17, 0xd2, 0x61, 0xf3, 0xd9, 0x2f, 0xe4, 0xe1, 0xc6, 0xd8, 0xab, 0x95, 0x32, 0x9b, 0x39, - 0x7c, 0x87, 0xe5, 0x1a, 0xa5, 0xd1, 0xf3, 0x96, 0xe4, 0xf9, 0xde, 0xda, 0x4f, 0xb5, 0xf7, 0x5d, - 0x63, 0xbd, 0x01, 0x75, 0xb4, 0xb9, 0x2d, 0xc6, 0xc7, 0x64, 0xa0, 0x64, 0x21, 0xd1, 0x63, 0xde, - 0x15, 0xa1, 0xd8, 0x76, 0xd1, 0x5c, 0x81, 0xa6, 0xfd, 0x49, 0x34, 0xbd, 0x23, 0x42, 0x11, 0x53, - 0x32, 0x5a, 0x49, 0x85, 0x60, 0x1d, 0x3d, 0xf0, 0xfd, 0xa6, 0x8c, 0x4f, 0xc9, 0xc8, 0x19, 0x8b, - 0xf3, 0x45, 0x45, 0x07, 0x9e, 0xeb, 0x98, 0x75, 0x03, 0x65, 0x33, 0x63, 0x51, 0x0c, 0xb7, 0xa6, - 0xf3, 0x2a, 0xb9, 0x24, 0x64, 0xf7, 0xa7, 0xf1, 0x4b, 0x32, 0x0a, 0x6f, 0xc1, 0xd1, 0x68, 0xd2, - 0x9f, 0x1e, 0x9e, 0x9d, 0xdc, 0x1a, 0xf6, 0xb2, 0x68, 0x6c, 0x3b, 0xbc, 0xde, 0x0d, 0xbc, 0xe4, - 0x9a, 0xdc, 0x0f, 0xc6, 0x19, 0xe0, 0x3f, 0xa7, 0xf6, 0x82, 0x0c, 0xbe, 0xa5, 0x6a, 0xdd, 0xc4, - 0x76, 0xf2, 0xe7, 0xd8, 0x44, 0x30, 0x25, 0x47, 0x4d, 0x64, 0xfe, 0x93, 0xae, 0x34, 0xda, 0x41, - 0xf2, 0x33, 0x22, 0xc3, 0xd0, 0xfd, 0xef, 0x8f, 0x66, 0x87, 0xdb, 0xff, 0x0b, 0xdc, 0xf3, 0x37, - 0x9f, 0x5f, 0xe7, 0x12, 0xbf, 0xae, 0x17, 0x6c, 0x69, 0x0a, 0xee, 0xad, 0xc6, 0xe6, 0xbc, 0x3d, - 0x88, 0x1c, 0x34, 0x2f, 0x17, 0xa7, 0xb9, 0xe1, 0xdd, 0xf3, 0x5b, 0x0c, 0xfd, 0x7d, 0xbc, 0xfa, - 0x1d, 0x00, 0x00, 0xff, 0xff, 0xcf, 0x2a, 0x71, 0x78, 0xc4, 0x03, 0x00, 0x00, + // 432 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xd1, 0x8a, 0x13, 0x31, + 0x14, 0x86, 0x99, 0x76, 0xdb, 0x62, 0x16, 0x45, 0x67, 0xd7, 0x25, 0x56, 0xd1, 0x32, 0x57, 0x45, + 0xdc, 0x44, 0xd6, 0x4b, 0xf1, 0x66, 0x45, 0x44, 0x58, 0x10, 0xd2, 0x05, 0xc1, 0x0b, 0xcb, 0xb4, + 0x73, 0x3a, 0x86, 0xcd, 0x24, 0xb3, 0xc9, 0xa9, 0x75, 0xf0, 0x41, 0x7c, 0x45, 0x1f, 0x43, 0x9a, + 0xcc, 0x4c, 0x77, 0xba, 0x5e, 0x88, 0xe0, 0xdd, 0xe4, 0xfc, 0xff, 0x39, 0xf9, 0x86, 0x3f, 0x87, + 0x3c, 0x5e, 0xa9, 0x0a, 0x41, 0x66, 0x8a, 0xa7, 0x59, 0x21, 0x35, 0x77, 0x32, 0xd7, 0xa9, 0x62, + 0xa5, 0x35, 0x68, 0xe2, 0x7b, 0x8d, 0xc8, 0xbc, 0x38, 0xde, 0x37, 0x2f, 0x4d, 0x51, 0x18, 0x1d, + 0xcc, 0xe3, 0xa7, 0xad, 0xb8, 0x34, 0x16, 0xb8, 0xcc, 0x40, 0xa3, 0x5c, 0x49, 0xb0, 0xb5, 0xfe, + 0xa4, 0xab, 0x2b, 0x89, 0x60, 0x53, 0xe5, 0x6a, 0xf5, 0x51, 0x57, 0xc5, 0xaa, 0x84, 0x5a, 0x4a, + 0x7e, 0x10, 0x3a, 0xf3, 0x54, 0xef, 0x01, 0x3f, 0xda, 0xb7, 0x16, 0x52, 0x04, 0x01, 0xd7, 0x6b, + 0x70, 0x18, 0x73, 0xd2, 0x93, 0x19, 0x8d, 0x26, 0xd1, 0xf4, 0xf0, 0xec, 0x19, 0x6b, 0x71, 0xb7, + 0x33, 0x58, 0x68, 0xfa, 0xd0, 0x72, 0x88, 0x9e, 0xcc, 0x62, 0x46, 0x0e, 0xb6, 0xb3, 0x69, 0xcf, + 0xb7, 0x8c, 0xf7, 0x5a, 0x2e, 0x02, 0xd4, 0x65, 0x55, 0x82, 0xf0, 0xbe, 0xe4, 0x57, 0x44, 0x1e, + 0x84, 0x41, 0x17, 0xd2, 0x61, 0x73, 0xed, 0x17, 0xf2, 0x70, 0x63, 0xec, 0xd5, 0x4a, 0x99, 0xcd, + 0x1c, 0xbe, 0xc3, 0x72, 0x8d, 0xd2, 0xe8, 0x79, 0x4b, 0xf2, 0x7c, 0x6f, 0xec, 0xa7, 0xda, 0xfb, + 0xae, 0xb1, 0xde, 0x80, 0x3a, 0xda, 0xdc, 0x16, 0xe3, 0x63, 0x32, 0x50, 0xb2, 0x90, 0xe8, 0x31, + 0xef, 0x8a, 0x70, 0xd8, 0x56, 0xd1, 0x5c, 0x81, 0xa6, 0xfd, 0x49, 0x34, 0xbd, 0x23, 0xc2, 0x21, + 0xa6, 0x64, 0xb4, 0x92, 0x0a, 0xc1, 0x3a, 0x7a, 0xe0, 0xeb, 0xcd, 0x31, 0x3e, 0x25, 0x23, 0x67, + 0x2c, 0xce, 0x17, 0x15, 0x1d, 0x78, 0xae, 0x63, 0xd6, 0x0d, 0x94, 0xcd, 0x8c, 0x45, 0x31, 0xdc, + 0x9a, 0xce, 0xab, 0xe4, 0x92, 0x90, 0xdd, 0x9f, 0xc6, 0x2f, 0xc9, 0x28, 0xbc, 0x05, 0x47, 0xa3, + 0x49, 0x7f, 0x7a, 0x78, 0x76, 0x72, 0xab, 0xd9, 0xcb, 0xa2, 0xb1, 0xed, 0xf0, 0x7a, 0x37, 0xf0, + 0x92, 0x6b, 0x72, 0x3f, 0x18, 0x67, 0x80, 0xff, 0x9c, 0xda, 0x0b, 0x32, 0xf8, 0x96, 0xaa, 0x75, + 0x13, 0xdb, 0xc9, 0x9f, 0x63, 0x13, 0xc1, 0x94, 0x1c, 0x35, 0x91, 0xf9, 0x2b, 0x5d, 0x69, 0xb4, + 0x83, 0xe4, 0x67, 0x44, 0x86, 0xa1, 0xfa, 0xdf, 0x1f, 0xcd, 0x0e, 0xb7, 0xff, 0x17, 0xb8, 0xe7, + 0x6f, 0x3e, 0xbf, 0xce, 0x25, 0x7e, 0x5d, 0x2f, 0xd8, 0xd2, 0x14, 0xdc, 0x5b, 0x8d, 0xcd, 0xc3, + 0x07, 0x6f, 0xd7, 0x22, 0x07, 0xcd, 0xcb, 0xc5, 0x69, 0x6e, 0x78, 0x77, 0x09, 0x17, 0x43, 0xbf, + 0x25, 0xaf, 0x7e, 0x07, 0x00, 0x00, 0xff, 0xff, 0x3c, 0x5e, 0xa5, 0xbf, 0xca, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/task.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/task.pb.go index b17dedc5f8..08ac9dd351 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/task.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/task.pb.go @@ -5,10 +5,11 @@ package admin import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" timestamp "github.com/golang/protobuf/ptypes/timestamp" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -333,34 +334,34 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/task.proto", fileDescriptor_9204120d588b2162) } var fileDescriptor_9204120d588b2162 = []byte{ - // 454 bytes of a gzipped FileDescriptorProto + // 457 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x4f, 0x8f, 0xd3, 0x30, - 0x10, 0xc5, 0x95, 0xee, 0x2e, 0x6c, 0x5d, 0x40, 0xac, 0xd5, 0x43, 0xda, 0x45, 0x50, 0x72, 0xa1, - 0xfc, 0xb3, 0xa5, 0x45, 0xab, 0x15, 0x37, 0xa0, 0x70, 0x40, 0xda, 0x93, 0xe9, 0x89, 0x4b, 0x95, - 0x3a, 0xd3, 0xac, 0xd5, 0x24, 0x36, 0xf1, 0xf4, 0xb0, 0xdf, 0x00, 0x71, 0xe7, 0xfb, 0x22, 0x3b, - 0x6e, 0x48, 0xaa, 0xe5, 0xc0, 0xd1, 0x9e, 0x9f, 0x67, 0xde, 0x1b, 0x3f, 0x32, 0xd9, 0x14, 0xb7, - 0x08, 0x2a, 0x2b, 0x78, 0x9a, 0x95, 0xaa, 0xe2, 0x98, 0xda, 0x2d, 0x33, 0xb5, 0x46, 0x4d, 0x1f, - 0xed, 0x4b, 0xcc, 0x97, 0xa6, 0x4f, 0x5b, 0x54, 0xea, 0x1a, 0xb8, 0xca, 0xa0, 0x42, 0xb5, 0x51, - 0x50, 0x37, 0xfc, 0x74, 0xd2, 0xaf, 0xbb, 0x4e, 0x36, 0x94, 0x9e, 0xf4, 0x4b, 0x52, 0x97, 0x46, - 0x15, 0xed, 0xc3, 0x17, 0x07, 0x1a, 0x32, 0xb0, 0xb2, 0x56, 0x06, 0x95, 0xae, 0x56, 0x6e, 0x06, - 0xde, 0x06, 0xf0, 0x59, 0xae, 0x75, 0x5e, 0x00, 0xf7, 0xa7, 0xf5, 0x6e, 0xc3, 0x51, 0x95, 0x60, - 0x31, 0x2d, 0x4d, 0x03, 0x24, 0x05, 0x39, 0x5b, 0xa6, 0x76, 0xbb, 0xa8, 0x21, 0x45, 0x10, 0xf0, - 0x63, 0x07, 0x16, 0xe9, 0x4b, 0x32, 0x50, 0x59, 0x1c, 0xcd, 0xa2, 0xf9, 0xe8, 0x62, 0xc2, 0x5a, - 0x53, 0x4e, 0x09, 0xfb, 0xda, 0x9a, 0x10, 0x03, 0x95, 0xd1, 0x37, 0xe4, 0xd8, 0x1a, 0x90, 0xf1, - 0xc0, 0xc3, 0x31, 0xeb, 0x6f, 0x80, 0xb9, 0xde, 0xdf, 0x0c, 0x48, 0xe1, 0xa9, 0x64, 0x4c, 0x68, - 0x77, 0x9a, 0x35, 0xba, 0xb2, 0x90, 0xfc, 0x8e, 0xc8, 0xb1, 0xbb, 0xfe, 0x9f, 0xb9, 0x97, 0xe4, - 0xbe, 0x2c, 0xb4, 0xdd, 0xd5, 0x10, 0x46, 0x9f, 0xdf, 0x35, 0x7a, 0xd1, 0x20, 0x62, 0xcf, 0xd2, - 0xd7, 0xe4, 0xcc, 0xde, 0xe8, 0x1a, 0x57, 0x9d, 0x8d, 0xc5, 0x47, 0xb3, 0x68, 0x3e, 0x14, 0x8f, - 0x7d, 0xe1, 0xf3, 0xdf, 0xfb, 0xe4, 0x9a, 0x9c, 0xba, 0x26, 0xd7, 0xca, 0x22, 0x7d, 0x45, 0x4e, - 0xfc, 0xf7, 0xc4, 0xd1, 0xec, 0x68, 0x3e, 0xba, 0x18, 0xdf, 0x35, 0x4d, 0x34, 0x08, 0x1d, 0x93, - 0x13, 0xd4, 0x5b, 0xa8, 0xbc, 0xb2, 0xa1, 0x68, 0x0e, 0xc9, 0xcf, 0xa8, 0x69, 0xe7, 0xd6, 0x41, - 0xaf, 0xc8, 0x29, 0x42, 0x69, 0x8a, 0x14, 0x21, 0xf8, 0x3d, 0x3f, 0xf0, 0xeb, 0xd0, 0x65, 0x40, - 0x44, 0x0b, 0xd3, 0x05, 0x19, 0x75, 0xa5, 0x37, 0xde, 0x9f, 0x1f, 0xaa, 0xe9, 0xb8, 0xf8, 0xe2, - 0xe3, 0x20, 0xba, 0xaf, 0x92, 0x5f, 0x11, 0x19, 0x75, 0xd6, 0x43, 0x3f, 0x90, 0x87, 0x21, 0x60, - 0xd9, 0xca, 0x59, 0xf8, 0x87, 0xa4, 0x45, 0x60, 0xbc, 0xd7, 0x07, 0xb2, 0x73, 0xa2, 0xef, 0x09, - 0x91, 0xfe, 0x53, 0xb3, 0x55, 0x8a, 0x41, 0xd5, 0x94, 0x35, 0xe1, 0x63, 0xfb, 0xf0, 0xb1, 0xe5, - 0x3e, 0x7c, 0x62, 0x18, 0xe8, 0x8f, 0xf8, 0xe9, 0xea, 0xfb, 0x65, 0xae, 0xf0, 0x66, 0xb7, 0x66, - 0x52, 0x97, 0xdc, 0x4f, 0xd4, 0x75, 0xce, 0xdb, 0x84, 0xe7, 0x50, 0x71, 0xb3, 0x7e, 0x9b, 0x6b, - 0xde, 0x0f, 0xfd, 0xfa, 0x9e, 0xef, 0xfb, 0xee, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xef, 0xf4, - 0x1d, 0x42, 0x91, 0x03, 0x00, 0x00, + 0x10, 0xc5, 0x95, 0xee, 0x2e, 0x6c, 0x5d, 0x40, 0xac, 0xd5, 0x43, 0xdb, 0x45, 0x50, 0x72, 0xa1, + 0xfc, 0xb3, 0xa5, 0x45, 0x08, 0x21, 0x84, 0x04, 0x14, 0x0e, 0x48, 0x7b, 0x32, 0x3d, 0x71, 0xa9, + 0x52, 0x67, 0x9a, 0xb5, 0x9a, 0xc4, 0x26, 0x9e, 0x1e, 0xf6, 0x1b, 0x20, 0xee, 0x7c, 0x5f, 0xe4, + 0x3f, 0x0d, 0x69, 0xb5, 0x1c, 0xb8, 0xc5, 0x99, 0x9f, 0x67, 0xde, 0x1b, 0x3f, 0x32, 0x5e, 0x97, + 0xd7, 0x08, 0x2a, 0x2f, 0x79, 0x96, 0x57, 0xaa, 0xe6, 0x98, 0xd9, 0x0d, 0x33, 0x8d, 0x46, 0x4d, + 0xef, 0xed, 0x4a, 0xcc, 0x97, 0x26, 0x0f, 0x5b, 0x54, 0xea, 0x06, 0xb8, 0xca, 0xa1, 0x46, 0xb5, + 0x56, 0xd0, 0x04, 0x7e, 0x32, 0xde, 0xaf, 0xbb, 0x4e, 0x36, 0x96, 0x1e, 0xec, 0x97, 0xa4, 0xae, + 0x8c, 0x2a, 0xdb, 0x8b, 0x4f, 0x0e, 0x34, 0xe4, 0x60, 0x65, 0xa3, 0x0c, 0x2a, 0x5d, 0x2f, 0xdd, + 0x0c, 0xbc, 0x8e, 0xe0, 0xa3, 0x42, 0xeb, 0xa2, 0x04, 0xee, 0x4f, 0xab, 0xed, 0x9a, 0xa3, 0xaa, + 0xc0, 0x62, 0x56, 0x99, 0x00, 0xa4, 0x25, 0x39, 0x5b, 0x64, 0x76, 0x33, 0x6f, 0x20, 0x43, 0x10, + 0xf0, 0x63, 0x0b, 0x16, 0xe9, 0x53, 0xd2, 0x53, 0xf9, 0x28, 0x99, 0x26, 0xb3, 0xc1, 0xc5, 0x98, + 0xb5, 0xa6, 0x9c, 0x12, 0xf6, 0xb5, 0x35, 0x21, 0x7a, 0x2a, 0xa7, 0x2f, 0xc8, 0xb1, 0x35, 0x20, + 0x47, 0x3d, 0x0f, 0x8f, 0xd8, 0xfe, 0x06, 0x98, 0xeb, 0xfd, 0xcd, 0x80, 0x14, 0x9e, 0x4a, 0x87, + 0x84, 0x76, 0xa7, 0x59, 0xa3, 0x6b, 0x0b, 0xe9, 0xef, 0x84, 0x1c, 0xbb, 0xdf, 0xff, 0x33, 0xf7, + 0x35, 0xb9, 0x2d, 0x4b, 0x6d, 0xb7, 0x0d, 0xc4, 0xd1, 0xe7, 0x37, 0x8d, 0x9e, 0x07, 0x44, 0xec, + 0x58, 0xfa, 0x9c, 0x9c, 0xd9, 0x2b, 0xdd, 0xe0, 0xb2, 0xb3, 0xb1, 0xd1, 0xd1, 0x34, 0x99, 0xf5, + 0xc5, 0x7d, 0x5f, 0xf8, 0xfc, 0xf7, 0x7f, 0x7a, 0x49, 0x4e, 0x5d, 0x93, 0x4b, 0x65, 0x91, 0x3e, + 0x23, 0x27, 0xfe, 0x79, 0x46, 0xc9, 0xf4, 0x68, 0x36, 0xb8, 0x18, 0xde, 0x34, 0x4d, 0x04, 0x84, + 0x0e, 0xc9, 0x09, 0xea, 0x0d, 0xd4, 0x5e, 0x59, 0x5f, 0x84, 0x43, 0xfa, 0x33, 0x09, 0xed, 0xdc, + 0x3a, 0xe8, 0x1b, 0x72, 0x8a, 0x50, 0x99, 0x32, 0x43, 0x88, 0x7e, 0xcf, 0x0f, 0xfc, 0x3a, 0x74, + 0x11, 0x11, 0xd1, 0xc2, 0x74, 0x4e, 0x06, 0x5d, 0xe9, 0xc1, 0xfb, 0xe3, 0x43, 0x35, 0x1d, 0x17, + 0x5f, 0x7c, 0x1c, 0x44, 0xf7, 0x56, 0xfa, 0x2b, 0x21, 0x83, 0xce, 0x7a, 0xe8, 0x07, 0x72, 0x37, + 0x06, 0x2c, 0x5f, 0x3a, 0x0b, 0xff, 0x90, 0x34, 0x8f, 0x8c, 0xf7, 0x7a, 0x47, 0x76, 0x4e, 0xf4, + 0x2d, 0x21, 0xd2, 0x3f, 0x6a, 0xbe, 0xcc, 0x30, 0xaa, 0x9a, 0xb0, 0x10, 0x3e, 0xb6, 0x0b, 0x1f, + 0x5b, 0xec, 0xc2, 0x27, 0xfa, 0x91, 0xfe, 0x88, 0x9f, 0xde, 0x7f, 0x7f, 0x57, 0x28, 0xbc, 0xda, + 0xae, 0x98, 0xd4, 0x15, 0xf7, 0x13, 0x75, 0x53, 0x84, 0x0f, 0xde, 0xe6, 0xbc, 0x80, 0x9a, 0x9b, + 0xd5, 0xcb, 0x42, 0xf3, 0xfd, 0xe8, 0xaf, 0x6e, 0xf9, 0xee, 0xaf, 0xfe, 0x04, 0x00, 0x00, 0xff, + 0xff, 0xcf, 0xb2, 0xc0, 0xd6, 0x97, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/task_execution.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/task_execution.pb.go index a68b8936ce..81cdad8cdb 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/task_execution.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/task_execution.pb.go @@ -5,13 +5,14 @@ package admin import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - event "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" + math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + event "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" 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" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -675,63 +676,63 @@ func init() { } var fileDescriptor_8cde4c3aa101642e = []byte{ - // 925 bytes of a gzipped FileDescriptorProto + // 927 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xeb, 0x6e, 0x1b, 0x45, - 0x14, 0xee, 0xba, 0x89, 0x2f, 0xc7, 0xb9, 0x90, 0x51, 0xd4, 0x6c, 0x9d, 0x14, 0x2c, 0x07, 0x90, - 0x85, 0xd4, 0x35, 0x4a, 0x15, 0x08, 0x17, 0x21, 0x6c, 0xda, 0xd2, 0x48, 0x29, 0x94, 0x69, 0xcc, + 0x14, 0xee, 0x3a, 0x89, 0x2f, 0xc7, 0xb9, 0x90, 0x51, 0xd4, 0x6c, 0x93, 0x14, 0x2c, 0x07, 0x90, + 0x85, 0xd4, 0x35, 0x4a, 0x15, 0x14, 0x28, 0x20, 0x6c, 0xda, 0xd2, 0x48, 0x29, 0x94, 0x69, 0xcc, 0x0f, 0xfe, 0xac, 0xc6, 0xbb, 0x63, 0x77, 0x94, 0xdd, 0x9d, 0xed, 0xcc, 0x6c, 0x85, 0xdf, 0x85, - 0x67, 0x41, 0xe2, 0x59, 0x78, 0x11, 0x34, 0x97, 0x75, 0xb2, 0xdb, 0x10, 0x4b, 0xf0, 0x67, 0xa5, - 0x73, 0xce, 0xf7, 0x9d, 0xfb, 0x19, 0x2d, 0x1c, 0xcf, 0x93, 0xa5, 0xa2, 0x2c, 0x4e, 0x46, 0x24, - 0x4e, 0x59, 0x36, 0x52, 0x44, 0x5e, 0x85, 0xf4, 0x77, 0x1a, 0x15, 0x8a, 0xf1, 0x2c, 0xc8, 0x05, - 0x57, 0x1c, 0xed, 0x94, 0xa0, 0xc0, 0x80, 0x7a, 0x87, 0x35, 0x52, 0xc4, 0xd3, 0xb4, 0x04, 0xf7, - 0x1e, 0xad, 0x8c, 0x11, 0x17, 0x74, 0x54, 0xf3, 0xd5, 0xfb, 0xb0, 0x6a, 0x66, 0x31, 0xcd, 0x14, - 0x9b, 0x33, 0x2a, 0x9c, 0xfd, 0xa8, 0x6a, 0x4f, 0x98, 0xa2, 0x82, 0x24, 0xd2, 0x59, 0x7b, 0x2b, - 0x2b, 0x7d, 0x47, 0x33, 0x65, 0xbf, 0xce, 0xf6, 0xd1, 0x82, 0xf3, 0x45, 0x42, 0x47, 0x46, 0x9a, - 0x15, 0xf3, 0x91, 0x62, 0x29, 0x95, 0x8a, 0xa4, 0x79, 0x19, 0xba, 0x0e, 0x88, 0x0b, 0x41, 0x6e, - 0xa4, 0x76, 0x54, 0xb7, 0x4b, 0x25, 0x8a, 0xc8, 0xb9, 0x1f, 0xfc, 0x02, 0x07, 0x97, 0x44, 0x5e, - 0x3d, 0x2b, 0xeb, 0xf9, 0x91, 0x2a, 0x4c, 0xdf, 0x16, 0x54, 0x2a, 0xf4, 0x05, 0x34, 0x58, 0xec, - 0x7b, 0x7d, 0x6f, 0xd8, 0x3d, 0xf9, 0x34, 0x58, 0x35, 0x4b, 0x17, 0x10, 0x54, 0x38, 0xe7, 0xab, - 0x6a, 0x71, 0x83, 0xc5, 0x83, 0xbf, 0x3d, 0xf0, 0x2b, 0xf6, 0x0b, 0x26, 0x57, 0x4e, 0x31, 0xec, - 0x65, 0x3c, 0xa6, 0xd7, 0xc3, 0x08, 0xff, 0x35, 0xc6, 0x4f, 0x3c, 0xa6, 0xb7, 0xc5, 0xd8, 0xcd, - 0xaa, 0x06, 0xb4, 0x0f, 0x9b, 0x09, 0x4b, 0x99, 0xf2, 0x1b, 0x7d, 0x6f, 0xb8, 0x8d, 0xad, 0xa0, - 0xb5, 0x8a, 0x5f, 0xd1, 0xcc, 0xbf, 0xdf, 0xf7, 0x86, 0x1d, 0x6c, 0x05, 0xe4, 0x43, 0x6b, 0xce, - 0x12, 0x45, 0x85, 0xf4, 0x37, 0x8c, 0xbe, 0x14, 0xd1, 0x63, 0x68, 0x49, 0x2e, 0x54, 0x38, 0x5b, - 0xfa, 0x9b, 0x26, 0x9f, 0xfd, 0xa0, 0xba, 0x20, 0xc1, 0x6b, 0x2e, 0x14, 0x6e, 0x6a, 0xd0, 0x64, - 0x39, 0xf8, 0xcb, 0x83, 0xed, 0x4a, 0x95, 0xff, 0xb5, 0x5f, 0xe8, 0x10, 0x3a, 0x2c, 0xcb, 0x0b, - 0x15, 0x16, 0x82, 0x99, 0x12, 0x3a, 0xb8, 0x6d, 0x14, 0x53, 0xc1, 0xd0, 0x77, 0xd0, 0x8a, 0x12, - 0x2e, 0x0b, 0x41, 0x4d, 0x1d, 0xdd, 0x93, 0x8f, 0xeb, 0x59, 0x55, 0x5c, 0xff, 0x60, 0xb1, 0xb8, - 0x24, 0x19, 0xe7, 0x32, 0xcc, 0x89, 0xa0, 0x99, 0x32, 0x15, 0xb7, 0x71, 0x9b, 0xc9, 0x57, 0x46, - 0x1e, 0xbc, 0x85, 0xbd, 0xf7, 0x06, 0x85, 0x9e, 0xc3, 0x6e, 0xf5, 0x5c, 0xa4, 0xef, 0xf5, 0xef, - 0x0f, 0xbb, 0x27, 0x8f, 0xee, 0x8c, 0x8c, 0x77, 0xd4, 0x4d, 0x51, 0x5e, 0xf7, 0xbf, 0x71, 0xa3, - 0xff, 0x83, 0x3f, 0x9a, 0xb0, 0x7f, 0x5b, 0xc6, 0xe8, 0x18, 0x80, 0x17, 0xaa, 0x6c, 0x83, 0xee, - 0x62, 0x67, 0xd2, 0xf0, 0xbd, 0x17, 0xf7, 0x70, 0xc7, 0xea, 0x75, 0x37, 0x4e, 0x61, 0x93, 0x0a, - 0xc1, 0x85, 0xf1, 0x59, 0xc9, 0xc8, 0x74, 0x79, 0xe5, 0xf4, 0x99, 0x06, 0xbd, 0xb8, 0x87, 0x2d, - 0x1a, 0x7d, 0x0f, 0x5d, 0xe7, 0x3b, 0x26, 0x8a, 0xf8, 0x5b, 0x86, 0xfc, 0xb0, 0x46, 0xbe, 0xb0, - 0x37, 0xf9, 0x92, 0xe4, 0x2e, 0xae, 0xcb, 0xe7, 0x29, 0x51, 0x04, 0x9d, 0xc1, 0x66, 0xfe, 0x86, - 0x48, 0x3b, 0x84, 0x9d, 0x93, 0xc1, 0x5d, 0xe3, 0x0d, 0x5e, 0x69, 0x24, 0xb6, 0x04, 0xf4, 0x19, - 0x6c, 0x24, 0x7c, 0xa1, 0xb7, 0x4d, 0xf7, 0xf0, 0xc1, 0x2d, 0xc4, 0x0b, 0xbe, 0xc0, 0x06, 0x83, - 0xbe, 0x02, 0x90, 0x8a, 0x08, 0x45, 0xe3, 0x90, 0x28, 0xb7, 0x85, 0xbd, 0xc0, 0xde, 0x6f, 0x50, - 0xde, 0x6f, 0x70, 0x59, 0x3e, 0x00, 0xb8, 0xe3, 0xd0, 0x63, 0x85, 0x4e, 0xa1, 0x5d, 0xde, 0xbd, - 0xdf, 0x74, 0xf5, 0xd5, 0x89, 0x4f, 0x1d, 0x00, 0xaf, 0xa0, 0x3a, 0x62, 0x24, 0x28, 0x71, 0x11, - 0x5b, 0xeb, 0x23, 0x3a, 0xf4, 0x58, 0x69, 0x6a, 0x91, 0xc7, 0x25, 0xb5, 0xbd, 0x9e, 0xea, 0xd0, - 0x63, 0x85, 0xce, 0xa0, 0x1b, 0x15, 0x52, 0xf1, 0x34, 0x64, 0xd9, 0x9c, 0xfb, 0x1d, 0xc3, 0x3d, - 0x78, 0x8f, 0xfb, 0xda, 0x3c, 0x54, 0x18, 0x2c, 0xf6, 0x3c, 0x9b, 0x73, 0xf4, 0x00, 0x9a, 0x82, - 0x12, 0xc9, 0x33, 0x1f, 0xcc, 0x56, 0x39, 0x49, 0xaf, 0xb9, 0x59, 0x5a, 0xb5, 0xcc, 0xa9, 0xdf, - 0xb5, 0x37, 0xa4, 0x15, 0x97, 0xcb, 0x9c, 0xa2, 0x31, 0xb4, 0x53, 0xaa, 0x88, 0x99, 0xfd, 0x07, - 0x26, 0xd6, 0x27, 0xd7, 0x63, 0xb0, 0x6f, 0x6d, 0x65, 0x80, 0x2f, 0x1d, 0x18, 0xaf, 0x68, 0xe8, - 0x18, 0xb6, 0x0d, 0x30, 0x7c, 0x47, 0x85, 0xd4, 0x3d, 0xde, 0xeb, 0x7b, 0xc3, 0x4d, 0xbc, 0x65, - 0x94, 0xbf, 0x5a, 0x1d, 0xfa, 0x1c, 0x5a, 0x36, 0x1d, 0xe9, 0xa3, 0xfa, 0xb4, 0xed, 0xc5, 0x60, - 0x63, 0xc6, 0x25, 0x6c, 0xb2, 0x0b, 0xdb, 0x6e, 0x31, 0x05, 0x95, 0x45, 0xa2, 0x06, 0x21, 0x34, - 0x2d, 0x06, 0x7d, 0x03, 0x5d, 0x1e, 0x45, 0x85, 0x10, 0xb6, 0xbf, 0xde, 0xda, 0xfe, 0x42, 0x09, - 0x1f, 0x2b, 0xfd, 0xca, 0xa5, 0x54, 0x4a, 0xb2, 0xa0, 0xee, 0xfa, 0x4a, 0x71, 0x30, 0x85, 0xc3, - 0xfa, 0x7b, 0xaf, 0x17, 0xfc, 0xff, 0xbe, 0xf9, 0x7f, 0x36, 0xe0, 0xe8, 0x76, 0xbf, 0x32, 0xe7, - 0x99, 0xa4, 0xe8, 0x09, 0x34, 0xcd, 0x9b, 0x26, 0x9d, 0xf3, 0x83, 0x7a, 0x6b, 0xa6, 0x22, 0x99, - 0x24, 0x7c, 0xa6, 0x6f, 0x0f, 0x3b, 0x28, 0x3a, 0x85, 0x96, 0x6d, 0x8f, 0x74, 0x07, 0x7f, 0x27, - 0xab, 0xc4, 0xa2, 0xaf, 0xa1, 0x3b, 0x2f, 0x92, 0x24, 0x74, 0x01, 0xef, 0xaf, 0x39, 0x77, 0x0c, - 0x1a, 0x7d, 0x6e, 0x43, 0x7e, 0x0b, 0x5b, 0x86, 0x5b, 0xc6, 0xdd, 0x58, 0x47, 0x36, 0xa1, 0x7e, - 0x76, 0x91, 0xcf, 0x00, 0x0c, 0x30, 0x2c, 0x44, 0x22, 0xdd, 0x01, 0x3f, 0xac, 0xe7, 0xfc, 0x5c, - 0x8b, 0x53, 0x7c, 0x21, 0x71, 0xc7, 0x58, 0xa6, 0x22, 0x91, 0x93, 0x2f, 0x7f, 0x3b, 0x5d, 0x30, - 0xf5, 0xa6, 0x98, 0x05, 0x11, 0x4f, 0x47, 0x46, 0xcf, 0xc5, 0x62, 0xb4, 0xfa, 0x31, 0x58, 0xd0, - 0x6c, 0x94, 0xcf, 0x1e, 0x2f, 0xf8, 0xa8, 0xfa, 0x97, 0x32, 0x6b, 0x9a, 0x55, 0x78, 0xf2, 0x4f, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xb8, 0xae, 0x02, 0x8d, 0xf3, 0x08, 0x00, 0x00, + 0x67, 0x41, 0xe2, 0x59, 0x78, 0x11, 0x34, 0x97, 0x75, 0xb2, 0xdb, 0x10, 0x4b, 0xf4, 0x8f, 0xe5, + 0x73, 0xce, 0xf7, 0x9d, 0xfb, 0x19, 0x2d, 0x1c, 0xcf, 0x92, 0x85, 0xa2, 0x2c, 0x4e, 0x86, 0x24, + 0x4e, 0x59, 0x36, 0x54, 0x44, 0x5e, 0x85, 0xf4, 0x0f, 0x1a, 0x15, 0x8a, 0xf1, 0x2c, 0xc8, 0x05, + 0x57, 0x1c, 0x6d, 0x97, 0xa0, 0xc0, 0x80, 0x0e, 0x0e, 0x6b, 0xa4, 0x88, 0xa7, 0x69, 0x09, 0x3e, + 0x78, 0xb8, 0x34, 0x46, 0x5c, 0xd0, 0x61, 0xcd, 0xd7, 0xc1, 0xc7, 0x55, 0x33, 0x8b, 0x69, 0xa6, + 0xd8, 0x8c, 0x51, 0xe1, 0xec, 0x47, 0x55, 0x7b, 0xc2, 0x14, 0x15, 0x24, 0x91, 0xce, 0x7a, 0xb0, + 0xb4, 0xd2, 0x77, 0x34, 0x53, 0xf6, 0xd7, 0xd9, 0x3e, 0x99, 0x73, 0x3e, 0x4f, 0xe8, 0xd0, 0x48, + 0xd3, 0x62, 0x36, 0x54, 0x2c, 0xa5, 0x52, 0x91, 0x34, 0x2f, 0x43, 0xd7, 0x01, 0x71, 0x21, 0xc8, + 0x8d, 0xd4, 0x8e, 0xea, 0x76, 0xa9, 0x44, 0x11, 0x39, 0xf7, 0xfd, 0x5f, 0x61, 0xff, 0x92, 0xc8, + 0xab, 0x67, 0x65, 0x3d, 0x3f, 0x51, 0x85, 0xe9, 0xdb, 0x82, 0x4a, 0x85, 0xbe, 0x82, 0x06, 0x8b, + 0x7d, 0xaf, 0xe7, 0x0d, 0xba, 0x27, 0x9f, 0x07, 0xcb, 0x66, 0xe9, 0x02, 0x82, 0x0a, 0xe7, 0x7c, + 0x59, 0x2d, 0x6e, 0xb0, 0xb8, 0xff, 0x8f, 0x07, 0x7e, 0xc5, 0x7e, 0xc1, 0xe4, 0xd2, 0x29, 0x86, + 0xdd, 0x8c, 0xc7, 0xf4, 0x7a, 0x18, 0xe1, 0x7f, 0xc6, 0xf8, 0x99, 0xc7, 0xf4, 0xb6, 0x18, 0x3b, + 0x59, 0xd5, 0x80, 0xf6, 0x60, 0x23, 0x61, 0x29, 0x53, 0x7e, 0xa3, 0xe7, 0x0d, 0xb6, 0xb0, 0x15, + 0xb4, 0x56, 0xf1, 0x2b, 0x9a, 0xf9, 0x6b, 0x3d, 0x6f, 0xd0, 0xc1, 0x56, 0x40, 0x3e, 0xb4, 0x66, + 0x2c, 0x51, 0x54, 0x48, 0x7f, 0xdd, 0xe8, 0x4b, 0x11, 0x3d, 0x82, 0x96, 0xe4, 0x42, 0x85, 0xd3, + 0x85, 0xbf, 0x61, 0xf2, 0xd9, 0x0b, 0xaa, 0x0b, 0x12, 0xbc, 0xe6, 0x42, 0xe1, 0xa6, 0x06, 0x8d, + 0x17, 0xfd, 0xbf, 0x3d, 0xd8, 0xaa, 0x54, 0xf9, 0x7f, 0xfb, 0x85, 0x0e, 0xa1, 0xc3, 0xb2, 0xbc, + 0x50, 0x61, 0x21, 0x98, 0x29, 0xa1, 0x83, 0xdb, 0x46, 0x31, 0x11, 0x0c, 0x7d, 0x0f, 0xad, 0x28, + 0xe1, 0xb2, 0x10, 0xd4, 0xd4, 0xd1, 0x3d, 0xf9, 0xb4, 0x9e, 0x55, 0xc5, 0xf5, 0x8f, 0x16, 0x8b, + 0x4b, 0x92, 0x71, 0x2e, 0xc3, 0x9c, 0x08, 0x9a, 0x29, 0x53, 0x71, 0x1b, 0xb7, 0x99, 0x7c, 0x65, + 0xe4, 0xfe, 0x5b, 0xd8, 0x7d, 0x6f, 0x50, 0xe8, 0x39, 0xec, 0x54, 0xcf, 0x45, 0xfa, 0x5e, 0x6f, + 0x6d, 0xd0, 0x3d, 0x79, 0x78, 0x67, 0x64, 0xbc, 0xad, 0x6e, 0x8a, 0xf2, 0xba, 0xff, 0x8d, 0x1b, + 0xfd, 0xef, 0xff, 0xd9, 0x84, 0xbd, 0xdb, 0x32, 0x46, 0xc7, 0x00, 0xbc, 0x50, 0x65, 0x1b, 0x74, + 0x17, 0x3b, 0xe3, 0x86, 0xef, 0xbd, 0xb8, 0x87, 0x3b, 0x56, 0xaf, 0xbb, 0x71, 0x0a, 0x1b, 0x54, + 0x08, 0x2e, 0x8c, 0xcf, 0x4a, 0x46, 0xa6, 0xcb, 0x4b, 0xa7, 0xcf, 0x34, 0xe8, 0xc5, 0x3d, 0x6c, + 0xd1, 0xe8, 0x07, 0xe8, 0x3a, 0xdf, 0x31, 0x51, 0xc4, 0xdf, 0x34, 0xe4, 0x07, 0x35, 0xf2, 0x85, + 0xbd, 0xc9, 0x97, 0x24, 0x77, 0x71, 0x5d, 0x3e, 0x4f, 0x89, 0x22, 0xe8, 0x0c, 0x36, 0xf2, 0x37, + 0x44, 0xda, 0x21, 0x6c, 0x9f, 0xf4, 0xef, 0x1a, 0x6f, 0xf0, 0x4a, 0x23, 0xb1, 0x25, 0xa0, 0x2f, + 0x60, 0x3d, 0xe1, 0x73, 0xbd, 0x6d, 0xba, 0x87, 0xf7, 0x6f, 0x21, 0x5e, 0xf0, 0x39, 0x36, 0x18, + 0xf4, 0x35, 0x80, 0x54, 0x44, 0x28, 0x1a, 0x87, 0x44, 0xb9, 0x2d, 0x3c, 0x08, 0xec, 0xfd, 0x06, + 0xe5, 0xfd, 0x06, 0x97, 0xe5, 0x03, 0x80, 0x3b, 0x0e, 0x3d, 0x52, 0xe8, 0x14, 0xda, 0xe5, 0xdd, + 0xfb, 0x4d, 0x57, 0x5f, 0x9d, 0xf8, 0xd4, 0x01, 0xf0, 0x12, 0xaa, 0x23, 0x46, 0x82, 0x12, 0x17, + 0xb1, 0xb5, 0x3a, 0xa2, 0x43, 0x8f, 0x94, 0xa6, 0x16, 0x79, 0x5c, 0x52, 0xdb, 0xab, 0xa9, 0x0e, + 0x3d, 0x52, 0xe8, 0x0c, 0xba, 0x51, 0x21, 0x15, 0x4f, 0x43, 0x96, 0xcd, 0xb8, 0xdf, 0x31, 0xdc, + 0xfd, 0xf7, 0xb8, 0xaf, 0xcd, 0x43, 0x85, 0xc1, 0x62, 0xcf, 0xb3, 0x19, 0x47, 0xf7, 0xa1, 0x29, + 0x28, 0x91, 0x3c, 0xf3, 0xc1, 0x6c, 0x95, 0x93, 0xf4, 0x9a, 0x9b, 0xa5, 0x55, 0x8b, 0x9c, 0xfa, + 0x5d, 0x7b, 0x43, 0x5a, 0x71, 0xb9, 0xc8, 0x29, 0x1a, 0x41, 0x3b, 0xa5, 0x8a, 0x98, 0xd9, 0x7f, + 0x64, 0x62, 0x7d, 0x76, 0x3d, 0x06, 0xfb, 0xd6, 0x56, 0x06, 0xf8, 0xd2, 0x81, 0xf1, 0x92, 0x86, + 0x8e, 0x61, 0xcb, 0x00, 0xc3, 0x77, 0x54, 0x48, 0xdd, 0xe3, 0xdd, 0x9e, 0x37, 0xd8, 0xc0, 0x9b, + 0x46, 0xf9, 0x9b, 0xd5, 0xa1, 0x2f, 0xa1, 0x65, 0xd3, 0x91, 0x3e, 0xaa, 0x4f, 0xdb, 0x5e, 0x0c, + 0x36, 0x66, 0x5c, 0xc2, 0xc6, 0x3b, 0xb0, 0xe5, 0x16, 0x53, 0x50, 0x59, 0x24, 0xaa, 0x1f, 0x42, + 0xd3, 0x62, 0xd0, 0x13, 0xe8, 0xf2, 0x28, 0x2a, 0x84, 0xb0, 0xfd, 0xf5, 0x56, 0xf6, 0x17, 0x4a, + 0xf8, 0x48, 0xe9, 0x57, 0x2e, 0xa5, 0x52, 0x92, 0x39, 0x75, 0xd7, 0x57, 0x8a, 0xfd, 0x09, 0x1c, + 0xd6, 0xdf, 0x7b, 0xbd, 0xe0, 0x1f, 0xfa, 0xe6, 0xff, 0xd5, 0x80, 0xa3, 0xdb, 0xfd, 0xca, 0x9c, + 0x67, 0x92, 0xa2, 0xc7, 0xd0, 0x34, 0x6f, 0x9a, 0x74, 0xce, 0xf7, 0xeb, 0xad, 0x99, 0x88, 0x64, + 0x9c, 0xf0, 0xa9, 0xbe, 0x3d, 0xec, 0xa0, 0xe8, 0x14, 0x5a, 0xb6, 0x3d, 0xd2, 0x1d, 0xfc, 0x9d, + 0xac, 0x12, 0x8b, 0xbe, 0x81, 0xee, 0xac, 0x48, 0x92, 0xd0, 0x05, 0x5c, 0x5b, 0x71, 0xee, 0x18, + 0x34, 0xfa, 0xdc, 0x86, 0xfc, 0x16, 0x36, 0x0d, 0xb7, 0x8c, 0xbb, 0xbe, 0x8a, 0x6c, 0x42, 0xfd, + 0xe2, 0x22, 0x9f, 0x01, 0x18, 0x60, 0x58, 0x88, 0x44, 0xba, 0x03, 0x7e, 0x50, 0xcf, 0xf9, 0xb9, + 0x16, 0x27, 0xf8, 0x42, 0xe2, 0x8e, 0xb1, 0x4c, 0x44, 0x22, 0xc7, 0xdf, 0xfd, 0xfe, 0x64, 0xce, + 0xd4, 0x9b, 0x62, 0x1a, 0x44, 0x3c, 0x1d, 0x1a, 0x3d, 0x17, 0x73, 0xfb, 0x67, 0xb8, 0xfc, 0x3c, + 0x98, 0xd3, 0x6c, 0x98, 0x4f, 0x1f, 0xcd, 0xf9, 0xb0, 0xfa, 0xad, 0x32, 0x6d, 0x9a, 0x85, 0x78, + 0xfc, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5e, 0xcb, 0x61, 0x27, 0xf9, 0x08, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/task_execution.pb.validate.go b/flyteidl/gen/pb-go/flyteidl/admin/task_execution.pb.validate.go index 625e73bacc..34040d213f 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/task_execution.pb.validate.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/task_execution.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/flyteidl/gen/pb-go/flyteidl/admin/version.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/version.pb.go index c51cf4d8d5..eeacc9bc50 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/version.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/version.pb.go @@ -5,8 +5,9 @@ package admin import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -163,18 +164,18 @@ func init() { proto.RegisterFile("flyteidl/admin/version.proto", fileDescriptor_ var fileDescriptor_a025621cd13402e3 = []byte{ // 219 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x49, 0xcb, 0xa9, 0x2c, - 0x49, 0xcd, 0x4c, 0xc9, 0xd1, 0x4f, 0x4c, 0xc9, 0xcd, 0xcc, 0xd3, 0x2f, 0x4b, 0x2d, 0x2a, 0xce, - 0xcc, 0xcf, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x83, 0xc9, 0xea, 0x81, 0x65, 0x95, - 0x12, 0xb9, 0x84, 0xdc, 0x53, 0x4b, 0xc2, 0x20, 0x6a, 0x82, 0x52, 0x8b, 0x0b, 0xf2, 0xf3, 0x8a, - 0x53, 0x85, 0xbc, 0xb9, 0x44, 0x93, 0xf3, 0xf3, 0x4a, 0x8a, 0xf2, 0x73, 0xe2, 0x0b, 0x72, 0x12, - 0xf3, 0x52, 0xe3, 0xa1, 0x86, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x1b, 0x89, 0xeb, 0xa1, 0x9a, - 0xa2, 0x07, 0xd3, 0x2f, 0x0c, 0xd5, 0x15, 0x00, 0xd2, 0x04, 0x15, 0x54, 0x0a, 0xe7, 0x62, 0x87, - 0x32, 0x85, 0x44, 0xb8, 0x58, 0x9d, 0x4a, 0x33, 0x73, 0x52, 0xc0, 0xe6, 0x70, 0x06, 0x41, 0x38, - 0x42, 0x12, 0x70, 0x05, 0x12, 0x4c, 0x60, 0x71, 0xb8, 0x7a, 0x19, 0x2e, 0x4e, 0xb0, 0x92, 0x90, - 0xcc, 0xdc, 0x54, 0x09, 0x66, 0xb0, 0x1c, 0x42, 0x40, 0x49, 0x98, 0x4b, 0x10, 0xd9, 0xed, 0x85, - 0xa5, 0xa9, 0xc5, 0x25, 0x4e, 0xe6, 0x51, 0xa6, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, - 0xf9, 0xb9, 0xfa, 0x60, 0x77, 0xe6, 0x17, 0xa5, 0xeb, 0xc3, 0x03, 0x25, 0x3d, 0x35, 0x4f, 0xbf, - 0x20, 0x49, 0x37, 0x3d, 0x5f, 0x1f, 0x35, 0x9c, 0x92, 0xd8, 0xc0, 0x01, 0x64, 0x0c, 0x08, 0x00, - 0x00, 0xff, 0xff, 0x77, 0x9b, 0x1b, 0x7c, 0x40, 0x01, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x50, 0xbd, 0x4b, 0xc7, 0x30, + 0x10, 0xe5, 0xa7, 0xa8, 0x34, 0x82, 0x60, 0xaa, 0x98, 0xa1, 0x83, 0x74, 0x72, 0x31, 0x01, 0x1d, + 0xc5, 0xa5, 0x8b, 0x83, 0x8b, 0x14, 0x51, 0x70, 0x29, 0xfd, 0x38, 0x63, 0x20, 0xcd, 0xc5, 0x24, + 0x15, 0xfc, 0xef, 0xc5, 0x34, 0xad, 0x76, 0xbb, 0x7b, 0x5f, 0x3c, 0x1e, 0x29, 0xde, 0xf5, 0x77, + 0x00, 0x35, 0x68, 0xd1, 0x0e, 0xa3, 0x32, 0xe2, 0x0b, 0x9c, 0x57, 0x68, 0xb8, 0x75, 0x18, 0x90, + 0x9e, 0x2c, 0x2c, 0x8f, 0x6c, 0xd9, 0x12, 0xfa, 0x00, 0xe1, 0x65, 0xd6, 0xd4, 0xe0, 0x2d, 0x1a, + 0x0f, 0xf4, 0x91, 0x9c, 0xf7, 0x68, 0x82, 0x43, 0xdd, 0x58, 0xdd, 0x1a, 0x68, 0x52, 0x08, 0xdb, + 0x5d, 0xee, 0xae, 0x8e, 0x6f, 0x2e, 0xf8, 0x36, 0x85, 0x2f, 0xfe, 0x3c, 0xb9, 0x9e, 0x7e, 0x4d, + 0x09, 0x2c, 0x5f, 0xc9, 0x51, 0x3a, 0xe9, 0x19, 0x39, 0xa8, 0x26, 0xa5, 0x87, 0x98, 0x93, 0xd5, + 0xf3, 0x43, 0xd9, 0x2a, 0x60, 0x7b, 0x11, 0x5f, 0xf5, 0x05, 0xc9, 0xa2, 0xe4, 0x59, 0x8d, 0xc0, + 0xf6, 0x23, 0xf7, 0x07, 0x94, 0x39, 0x39, 0xfd, 0xdf, 0xfd, 0x73, 0x02, 0x1f, 0xaa, 0xfb, 0xb7, + 0x3b, 0xa9, 0xc2, 0xc7, 0xd4, 0xf1, 0x1e, 0x47, 0x11, 0x7b, 0xa2, 0x93, 0xf3, 0x21, 0xd6, 0x69, + 0x24, 0x18, 0x61, 0xbb, 0x6b, 0x89, 0x62, 0xbb, 0x56, 0x77, 0x18, 0x67, 0xba, 0xfd, 0x09, 0x00, + 0x00, 0xff, 0xff, 0x3b, 0x51, 0x09, 0x37, 0x46, 0x01, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/workflow.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/workflow.pb.go index 756045f43b..5b93b6bcdb 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/workflow.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/workflow.pb.go @@ -5,10 +5,11 @@ package admin import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" timestamp "github.com/golang/protobuf/ptypes/timestamp" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -410,7 +411,7 @@ func (m *WorkflowErrorExistsIdenticalStructure) GetId() *core.Identifier { return nil } -// When a CreateWorkflowRequest failes due to matching id +// When a CreateWorkflowRequest fails due to matching id type CreateWorkflowFailureReason struct { // Types that are valid to be assigned to Reason: // *CreateWorkflowFailureReason_ExistsDifferentStructure @@ -506,42 +507,42 @@ func init() { func init() { proto.RegisterFile("flyteidl/admin/workflow.proto", fileDescriptor_827ade3f2372dc85) } var fileDescriptor_827ade3f2372dc85 = []byte{ - // 589 bytes of a gzipped FileDescriptorProto + // 592 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x5d, 0x6f, 0xd3, 0x30, 0x14, 0x25, 0x19, 0x8c, 0xd5, 0x1d, 0xb0, 0x45, 0x80, 0x42, 0x19, 0x6c, 0x44, 0x02, 0x8a, 0x10, - 0x09, 0x2a, 0x1a, 0x68, 0xe2, 0x89, 0xb5, 0x45, 0x20, 0xf1, 0xe4, 0x4e, 0x9a, 0x84, 0x90, 0xa2, - 0x7c, 0xdc, 0x64, 0xd6, 0x92, 0x38, 0xd8, 0x8e, 0xc6, 0x7e, 0x08, 0x8f, 0x3c, 0xf0, 0xa7, 0xf8, - 0x3d, 0xa8, 0x8e, 0x9d, 0xb4, 0x99, 0x0a, 0x83, 0xc7, 0xe4, 0x1e, 0x9f, 0x73, 0xee, 0xf1, 0xbd, - 0x46, 0x0f, 0x92, 0xec, 0x5c, 0x00, 0x89, 0x33, 0x2f, 0x88, 0x73, 0x52, 0x78, 0x67, 0x94, 0x9d, - 0x26, 0x19, 0x3d, 0x73, 0x4b, 0x46, 0x05, 0xb5, 0x6e, 0xea, 0xb2, 0x2b, 0xcb, 0x83, 0x9d, 0x06, - 0x1e, 0x51, 0x06, 0x5e, 0x44, 0xf3, 0x92, 0x64, 0xc0, 0x6a, 0xf4, 0xe0, 0xe1, 0x72, 0x95, 0xc4, - 0x50, 0x08, 0x92, 0x90, 0xa6, 0xde, 0x39, 0xbd, 0xac, 0x35, 0x78, 0xda, 0xb1, 0x12, 0x03, 0x8f, - 0x18, 0x29, 0x05, 0xa1, 0x85, 0x3f, 0x27, 0x12, 0xe7, 0x0a, 0xb8, 0x9b, 0x52, 0x9a, 0x66, 0xe0, - 0xc9, 0xaf, 0xb0, 0x4a, 0x3c, 0x41, 0x72, 0xe0, 0x22, 0xc8, 0xcb, 0x1a, 0xe0, 0x08, 0x74, 0xe7, - 0x58, 0x71, 0x8f, 0x19, 0x04, 0x02, 0x30, 0x7c, 0xad, 0x80, 0x0b, 0xeb, 0x19, 0x32, 0x49, 0x6c, - 0x1b, 0x7b, 0xc6, 0xb0, 0x3f, 0xba, 0xe7, 0x36, 0xbd, 0xcd, 0xdd, 0xb8, 0x1f, 0x1b, 0xb7, 0xd8, - 0x24, 0xb1, 0xf5, 0x12, 0x5d, 0xe5, 0x25, 0x44, 0xb6, 0x29, 0xc1, 0x3b, 0xee, 0x72, 0x10, 0xae, - 0xe6, 0x9f, 0x95, 0x10, 0x61, 0x89, 0x74, 0x6c, 0x74, 0xb7, 0xab, 0xca, 0x4b, 0x5a, 0x70, 0x70, - 0x7e, 0x18, 0x68, 0x43, 0x97, 0xfe, 0xc5, 0xc3, 0x01, 0xba, 0x1e, 0x65, 0x94, 0x57, 0x0c, 0x94, - 0x8d, 0xdd, 0x55, 0x36, 0xc6, 0x35, 0x0c, 0x6b, 0xbc, 0xf5, 0x1c, 0x6d, 0xf3, 0x13, 0xca, 0x84, - 0xbf, 0x90, 0xa2, 0xbd, 0xb6, 0x67, 0x0c, 0x7b, 0x78, 0x4b, 0x16, 0x26, 0xed, 0x7f, 0xe7, 0x0b, - 0xda, 0xd4, 0x44, 0x9f, 0x08, 0x17, 0xd6, 0x6b, 0xd4, 0xd3, 0x77, 0xc3, 0x6d, 0x63, 0x6f, 0x6d, - 0xd8, 0x1f, 0xd9, 0xab, 0x94, 0x71, 0x0b, 0xb5, 0x6e, 0xa3, 0x6b, 0x82, 0x9e, 0x42, 0x21, 0xdd, - 0xf6, 0x70, 0xfd, 0xe1, 0xfc, 0x32, 0x5a, 0xfa, 0x79, 0x5c, 0xd6, 0x5b, 0xb4, 0x21, 0x20, 0x2f, - 0xb3, 0x40, 0x80, 0xca, 0x61, 0xb7, 0x93, 0x83, 0x86, 0x1f, 0x29, 0x18, 0x6e, 0x0e, 0x58, 0x13, - 0x74, 0x83, 0x57, 0xa1, 0xdf, 0xfa, 0x33, 0xa5, 0xbf, 0xbf, 0x32, 0x6c, 0xf2, 0x2a, 0x3c, 0x6e, - 0x9c, 0x8e, 0x51, 0xbf, 0x1b, 0x4c, 0x7f, 0xf4, 0xa8, 0xdb, 0xe3, 0x42, 0x46, 0x53, 0x39, 0x80, - 0x78, 0xf1, 0x94, 0xf3, 0xd3, 0x40, 0xb7, 0x3a, 0x17, 0x60, 0xcd, 0xd0, 0xb6, 0x5a, 0x8a, 0xb8, - 0xf1, 0xa8, 0x9a, 0x7c, 0xd2, 0xb1, 0x38, 0x56, 0xb8, 0xee, 0x1d, 0x6e, 0x45, 0x9d, 0x82, 0x75, - 0x80, 0x50, 0x24, 0x27, 0x2a, 0xf6, 0x03, 0xa1, 0x46, 0x61, 0xe0, 0xd6, 0x5b, 0xe0, 0xea, 0x2d, - 0x70, 0x8f, 0xf4, 0x16, 0xe0, 0x9e, 0x42, 0xbf, 0x13, 0x0e, 0x46, 0x8f, 0x35, 0xcd, 0x94, 0x31, - 0xca, 0xa6, 0xdf, 0x08, 0x17, 0x7c, 0x42, 0x92, 0x04, 0x18, 0x14, 0x62, 0x26, 0x58, 0x15, 0x89, - 0xb9, 0xf1, 0xcb, 0x8f, 0xe5, 0x0a, 0xce, 0x1a, 0x14, 0x05, 0xd9, 0x7f, 0x71, 0x7e, 0x37, 0xd1, - 0xfd, 0x7a, 0x6b, 0x34, 0xf5, 0xfb, 0x80, 0x64, 0xf3, 0x38, 0x20, 0xe0, 0xb4, 0xb0, 0x2a, 0x34, - 0x00, 0x29, 0xe3, 0xc7, 0xda, 0xbb, 0xcf, 0xb5, 0x90, 0x92, 0xd8, 0x5f, 0x35, 0xa3, 0x7f, 0xec, - 0xfc, 0xc3, 0x15, 0x6c, 0xc3, 0xaa, 0x54, 0x5a, 0x59, 0xa2, 0xdb, 0x5b, 0x90, 0x35, 0x2f, 0x2d, - 0x7b, 0x31, 0x9c, 0x56, 0xf6, 0x62, 0xed, 0x70, 0x03, 0xad, 0x33, 0xd9, 0xf7, 0xe1, 0x9b, 0xcf, - 0xfb, 0x29, 0x11, 0x27, 0x55, 0xe8, 0x46, 0x34, 0xf7, 0xa4, 0x10, 0x65, 0xa9, 0xd7, 0x3c, 0x95, - 0x29, 0x14, 0x5e, 0x19, 0xbe, 0x48, 0xa9, 0xb7, 0xfc, 0x7a, 0x86, 0xeb, 0x72, 0x2e, 0x5e, 0xfd, - 0x0e, 0x00, 0x00, 0xff, 0xff, 0x55, 0xf4, 0x95, 0xe1, 0xe1, 0x05, 0x00, 0x00, + 0x09, 0x2a, 0x02, 0x69, 0x9a, 0x78, 0x60, 0x6d, 0x11, 0x48, 0x3c, 0xb9, 0x93, 0x26, 0x21, 0xa4, + 0x28, 0x1f, 0x37, 0x99, 0xb5, 0x24, 0x0e, 0xb6, 0xa3, 0xb1, 0x1f, 0xc2, 0x23, 0x0f, 0xfc, 0x29, + 0x7e, 0x0f, 0xaa, 0x63, 0x27, 0x6d, 0xa6, 0xc2, 0xe0, 0xad, 0xe9, 0x3d, 0x3e, 0xe7, 0xdc, 0xe3, + 0x7b, 0x8d, 0x1e, 0x24, 0xd9, 0xb9, 0x00, 0x12, 0x67, 0x5e, 0x10, 0xe7, 0xa4, 0xf0, 0xce, 0x28, + 0x3b, 0x4d, 0x32, 0x7a, 0xe6, 0x96, 0x8c, 0x0a, 0x6a, 0xdd, 0xd4, 0x65, 0x57, 0x96, 0x07, 0x3b, + 0x0d, 0x3c, 0xa2, 0x0c, 0xbc, 0x88, 0xe6, 0x25, 0xc9, 0x80, 0xd5, 0xe8, 0xc1, 0xc3, 0xe5, 0x2a, + 0x89, 0xa1, 0x10, 0x24, 0x21, 0x4d, 0xbd, 0x73, 0x7a, 0x59, 0x6b, 0xf0, 0xb4, 0x63, 0x25, 0x06, + 0x1e, 0x31, 0x52, 0x0a, 0x42, 0x0b, 0x7f, 0x4e, 0x24, 0xce, 0x15, 0x70, 0x37, 0xa5, 0x34, 0xcd, + 0xc0, 0x93, 0x5f, 0x61, 0x95, 0x78, 0x82, 0xe4, 0xc0, 0x45, 0x90, 0x97, 0x35, 0xc0, 0x11, 0xe8, + 0xce, 0xb1, 0xe2, 0x1e, 0x33, 0x08, 0x04, 0x60, 0xf8, 0x5a, 0x01, 0x17, 0xd6, 0x33, 0x64, 0x92, + 0xd8, 0x36, 0xf6, 0x8c, 0x61, 0x7f, 0x74, 0xcf, 0x6d, 0x7a, 0x9b, 0xbb, 0x71, 0x3f, 0x36, 0x6e, + 0xb1, 0x49, 0x62, 0xeb, 0x25, 0xba, 0xca, 0x4b, 0x88, 0x6c, 0x53, 0x82, 0x77, 0xdc, 0xe5, 0x20, + 0x5c, 0xcd, 0x3f, 0x2b, 0x21, 0xc2, 0x12, 0xe9, 0xd8, 0xe8, 0x6e, 0x57, 0x95, 0x97, 0xb4, 0xe0, + 0xe0, 0xfc, 0x30, 0xd0, 0x86, 0x2e, 0xfd, 0x8b, 0x87, 0x7d, 0x74, 0x3d, 0xca, 0x28, 0xaf, 0x18, + 0x28, 0x1b, 0xbb, 0xab, 0x6c, 0x8c, 0x6b, 0x18, 0xd6, 0x78, 0xeb, 0x39, 0xda, 0xe6, 0x27, 0x94, + 0x09, 0x7f, 0x21, 0x45, 0x7b, 0x6d, 0xcf, 0x18, 0xf6, 0xf0, 0x96, 0x2c, 0x4c, 0xda, 0xff, 0x9d, + 0x2f, 0x68, 0x53, 0x13, 0x7d, 0x22, 0x5c, 0x58, 0x6f, 0x50, 0x4f, 0xdf, 0x0d, 0xb7, 0x8d, 0xbd, + 0xb5, 0x61, 0x7f, 0x64, 0xaf, 0x52, 0xc6, 0x2d, 0xd4, 0xba, 0x8d, 0xae, 0x09, 0x7a, 0x0a, 0x85, + 0x74, 0xdb, 0xc3, 0xf5, 0x87, 0xf3, 0xcb, 0x68, 0xe9, 0xe7, 0x71, 0x59, 0x07, 0x68, 0x43, 0x40, + 0x5e, 0x66, 0x81, 0x00, 0x95, 0xc3, 0x6e, 0x27, 0x07, 0x0d, 0x3f, 0x52, 0x30, 0xdc, 0x1c, 0xb0, + 0x26, 0xe8, 0x06, 0xaf, 0x42, 0xbf, 0xf5, 0x67, 0x4a, 0x7f, 0x7f, 0x65, 0xd8, 0xe4, 0x55, 0x78, + 0xdc, 0x38, 0x1d, 0xa3, 0x7e, 0x37, 0x98, 0xfe, 0xe8, 0x51, 0xb7, 0xc7, 0x85, 0x8c, 0xa6, 0x72, + 0x00, 0xf1, 0xe2, 0x29, 0xe7, 0xa7, 0x81, 0x6e, 0x75, 0x2e, 0xc0, 0x9a, 0xa1, 0x6d, 0xb5, 0x14, + 0x71, 0xe3, 0x51, 0x35, 0xf9, 0xa4, 0x63, 0x71, 0xac, 0x70, 0xdd, 0x3b, 0xdc, 0x8a, 0x3a, 0x05, + 0x6b, 0x1f, 0xa1, 0x48, 0x4e, 0x54, 0xec, 0x07, 0x42, 0x8d, 0xc2, 0xc0, 0xad, 0xb7, 0xc0, 0xd5, + 0x5b, 0xe0, 0x1e, 0xe9, 0x2d, 0xc0, 0x3d, 0x85, 0x7e, 0x27, 0x1c, 0x8c, 0x1e, 0x6b, 0x9a, 0x29, + 0x63, 0x94, 0x4d, 0xbf, 0x11, 0x2e, 0xf8, 0x84, 0x24, 0x09, 0x30, 0x28, 0xc4, 0x4c, 0xb0, 0x2a, + 0x12, 0x73, 0xe3, 0x97, 0x1f, 0xcb, 0x15, 0x9c, 0x35, 0x28, 0x0a, 0xb2, 0xff, 0xe2, 0xfc, 0x6e, + 0xa2, 0xfb, 0xf5, 0xd6, 0x68, 0xea, 0xf7, 0x01, 0xc9, 0xe6, 0x71, 0x40, 0xc0, 0x69, 0x61, 0x55, + 0x68, 0x00, 0x52, 0xc6, 0x8f, 0xb5, 0x77, 0x9f, 0x6b, 0x21, 0x25, 0xf1, 0x7a, 0xd5, 0x8c, 0xfe, + 0xb1, 0xf3, 0x0f, 0x57, 0xb0, 0x0d, 0xab, 0x52, 0x69, 0x65, 0x89, 0x6e, 0x6f, 0x41, 0xd6, 0xbc, + 0xb4, 0xec, 0xc5, 0x70, 0x5a, 0xd9, 0x8b, 0xb5, 0xc3, 0x0d, 0xb4, 0xce, 0x64, 0xdf, 0x87, 0x6f, + 0x3f, 0x1f, 0xa4, 0x44, 0x9c, 0x54, 0xa1, 0x1b, 0xd1, 0xdc, 0x93, 0x42, 0x94, 0xa5, 0xf5, 0x0f, + 0xaf, 0x79, 0x30, 0x53, 0x28, 0xbc, 0x32, 0x7c, 0x91, 0x52, 0x6f, 0xf9, 0x0d, 0x0d, 0xd7, 0xe5, + 0x74, 0xbc, 0xfa, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x31, 0xff, 0x42, 0x9e, 0xe7, 0x05, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/workflow_attributes.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/workflow_attributes.pb.go index 3d5ef8bd62..da3657705b 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/workflow_attributes.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/workflow_attributes.pb.go @@ -5,8 +5,9 @@ package admin import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -394,27 +395,27 @@ func init() { } var fileDescriptor_8ba8a51ab86bc38c = []byte{ - // 346 bytes of a gzipped FileDescriptorProto + // 349 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, + 0x50, 0x8f, 0xe2, 0xc1, 0x22, 0x7a, 0xf2, 0x12, 0x15, 0xc1, 0x4b, 0xc9, 0x9f, 0x69, 0x1a, 0x4d, + 0xb2, 0xeb, 0x66, 0x43, 0xe9, 0xf7, 0x12, 0xfa, 0xf5, 0xc4, 0x4d, 0xb6, 0x7f, 0x4c, 0x7a, 0xeb, + 0xc1, 0x5b, 0xa7, 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, 0xb2, 0x91, 0xcd, + 0x08, 0xd0, 0xb7, 0x6a, 0xec, 0xdd, 0x7c, 0x2a, 0xb5, 0x60, 0x57, 0x48, 0xfe, 0x81, 0x81, 0xb2, + 0x48, 0x97, 0xf4, 0xf6, 0x5d, 0x53, 0xd2, 0x13, 0x68, 0x85, 0x3c, 0xf5, 0xe2, 0xcc, 0xda, 0xd2, + 0x0f, 0x55, 0x45, 0x3b, 0xb0, 0x67, 0xf0, 0xac, 0x6d, 0xfd, 0x32, 0xaf, 0xe9, 0x33, 0x1c, 0x6b, + 0x80, 0x38, 0x8b, 0x96, 0xd0, 0xad, 0x9d, 0x2e, 0xe9, 0x1d, 0xf4, 0x99, 0xbd, 0xca, 0x6e, 0x3f, + 0x55, 0xd2, 0x05, 0x8e, 0x4b, 0xd3, 0xda, 0x7f, 0x0c, 0xe1, 0xbc, 0x0e, 0xfe, 0x2a, 0x42, 0x4f, + 0xa1, 0x8b, 0x5f, 0x05, 0xe6, 0x8a, 0x0e, 0x00, 0x96, 0xd6, 0x91, 0xe6, 0x75, 0xf5, 0x21, 0xee, + 0x52, 0x17, 0x63, 0xd0, 0x5d, 0xbf, 0x26, 0x17, 0x3c, 0xcb, 0x91, 0x7d, 0x13, 0x38, 0xad, 0x8b, + 0x1e, 0x51, 0x19, 0x90, 0xcd, 0xda, 0xf9, 0x00, 0x47, 0x26, 0xc5, 0xa1, 0x9a, 0x0a, 0xd4, 0x46, + 0xb6, 0xfb, 0x17, 0x8d, 0x46, 0xfe, 0x86, 0xee, 0x56, 0x6a, 0xf7, 0xd0, 0xf4, 0xbd, 0x4c, 0x05, + 0xb2, 0x00, 0xce, 0xd6, 0x50, 0x97, 0xdf, 0xb5, 0x11, 0xff, 0x66, 0xa4, 0x29, 0xa7, 0x7b, 0x4c, + 0x70, 0x91, 0xd3, 0xff, 0xb4, 0xa7, 0x31, 0x79, 0x03, 0x5e, 0x3a, 0x34, 0xb8, 0x7d, 0xbf, 0x89, + 0x62, 0x35, 0x2e, 0x7c, 0x3b, 0xe0, 0xa9, 0xa3, 0x17, 0x70, 0x19, 0x95, 0x3f, 0x9c, 0xf9, 0x0d, + 0x46, 0x98, 0x39, 0xc2, 0xbf, 0x8a, 0xb8, 0xb3, 0x7a, 0x96, 0x7e, 0x4b, 0x1f, 0xe1, 0xf5, 0x4f, + 0x00, 0x00, 0x00, 0xff, 0xff, 0x90, 0x9e, 0xe0, 0xf5, 0xe9, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/catalog.pb.go b/flyteidl/gen/pb-go/flyteidl/core/catalog.pb.go index 39c64304a5..780a559b13 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/catalog.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/catalog.pb.go @@ -5,8 +5,9 @@ package core import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -285,35 +286,35 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/catalog.proto", fileDescriptor_534f5d1443565574) } var fileDescriptor_534f5d1443565574 = []byte{ - // 465 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x52, 0x5f, 0x6f, 0xd3, 0x3e, - 0x14, 0x5d, 0xba, 0xfd, 0x2a, 0xf5, 0xf6, 0xd7, 0xcd, 0x73, 0x37, 0x08, 0x20, 0xf1, 0xa7, 0x0f, - 0x08, 0x21, 0x91, 0x48, 0x03, 0x21, 0x5e, 0xd3, 0xc4, 0xa8, 0xd6, 0x32, 0x1a, 0xec, 0x04, 0x21, - 0x84, 0x54, 0xb9, 0x89, 0x9b, 0x45, 0xeb, 0xea, 0x29, 0x71, 0x11, 0x3c, 0xf3, 0xc0, 0xb7, 0x40, - 0x7c, 0x54, 0xd4, 0x24, 0x4d, 0xff, 0xf0, 0x94, 0xdc, 0x73, 0xce, 0x3d, 0xf7, 0xd8, 0xbe, 0xf0, - 0x68, 0x36, 0xff, 0xa1, 0x65, 0x96, 0xcc, 0xed, 0x58, 0xe5, 0xd2, 0x8e, 0x85, 0x16, 0x73, 0x95, - 0x5a, 0x77, 0xb9, 0xd2, 0x0a, 0xf7, 0xd6, 0xa4, 0xb5, 0x22, 0x1f, 0x3e, 0xde, 0xd5, 0x66, 0x89, - 0x5c, 0xe8, 0x6c, 0x96, 0xc9, 0xbc, 0x92, 0x0f, 0x28, 0x60, 0xb7, 0xea, 0x77, 0x72, 0x9d, 0xcd, - 0x44, 0xac, 0x43, 0x91, 0xe2, 0x27, 0xd0, 0x15, 0x75, 0x39, 0xc9, 0x12, 0xd3, 0x78, 0x6a, 0xbc, - 0xe8, 0x30, 0x58, 0x43, 0x34, 0xc1, 0x18, 0x8e, 0x16, 0xe2, 0x56, 0x9a, 0xad, 0x92, 0x29, 0xff, - 0x07, 0x3f, 0x5b, 0x70, 0x52, 0x7b, 0x5d, 0x49, 0x2d, 0x12, 0xa1, 0x05, 0x7e, 0x07, 0xb0, 0xfa, - 0x16, 0xb2, 0xf1, 0xe9, 0x5e, 0x3c, 0xb0, 0x76, 0x22, 0x5a, 0xb4, 0xc9, 0xc4, 0x3a, 0xb5, 0x98, - 0x26, 0xd8, 0x83, 0xff, 0x9b, 0x08, 0x5a, 0xa4, 0xe5, 0xa4, 0xee, 0xc5, 0xb3, 0xbd, 0xde, 0x7f, - 0xb3, 0xb3, 0x26, 0xf9, 0xea, 0x20, 0x5f, 0xe1, 0xbc, 0x50, 0xcb, 0x3c, 0x96, 0x13, 0x2d, 0x8a, - 0x9b, 0x89, 0xfc, 0x2e, 0xe3, 0xa5, 0xce, 0xd4, 0xc2, 0x3c, 0x2c, 0xed, 0x9e, 0xef, 0xd9, 0x85, - 0xa2, 0xb8, 0x21, 0x6b, 0xcd, 0x26, 0xd7, 0xe8, 0x80, 0xf5, 0x2b, 0x9b, 0x1d, 0xc1, 0x10, 0x03, - 0xaa, 0xdd, 0x1b, 0xe3, 0xc1, 0x6f, 0xa3, 0xb9, 0x51, 0x26, 0x0b, 0x99, 0x7f, 0x13, 0x25, 0xfc, - 0xcb, 0x80, 0x36, 0xd7, 0x42, 0x2f, 0x0b, 0x6c, 0xc2, 0x19, 0x23, 0x9c, 0xb0, 0x4f, 0x4e, 0x48, - 0xc7, 0x1f, 0x26, 0x1e, 0xe5, 0xce, 0xd0, 0x27, 0x1e, 0x3a, 0xd8, 0x67, 0x1c, 0xf7, 0x63, 0x44, - 0x19, 0xf1, 0x90, 0x81, 0xef, 0x01, 0xde, 0x66, 0xc8, 0x67, 0xca, 0x43, 0x8e, 0x5a, 0xfb, 0x1d, - 0x8c, 0xf8, 0xc4, 0xe1, 0xc4, 0x43, 0x87, 0xf8, 0x3e, 0xf4, 0xb7, 0x99, 0xf7, 0x0e, 0xf5, 0x23, - 0x46, 0xd0, 0xd1, 0xcb, 0x3f, 0x9b, 0x80, 0xae, 0x88, 0xaf, 0x65, 0x9d, 0x0a, 0xc3, 0xb1, 0xeb, - 0xb8, 0x23, 0xb2, 0x9d, 0xe7, 0x18, 0xa0, 0xc2, 0xae, 0x28, 0xe7, 0xc8, 0xc0, 0x3d, 0xe8, 0x54, - 0xf5, 0x88, 0x86, 0xa8, 0x85, 0xfb, 0x70, 0x52, 0x95, 0xc1, 0x38, 0x88, 0x7c, 0x27, 0x2c, 0xe7, - 0x9a, 0x70, 0x56, 0x81, 0xfe, 0x78, 0x7c, 0x19, 0x05, 0x9b, 0xc1, 0xf8, 0x1c, 0x4e, 0x6b, 0x79, - 0x14, 0x36, 0xf0, 0x7f, 0xf8, 0x14, 0x7a, 0x15, 0xcc, 0x2f, 0x69, 0x10, 0x10, 0x0f, 0xb5, 0x87, - 0x6f, 0xbf, 0xbc, 0x49, 0x33, 0x7d, 0xbd, 0x9c, 0x5a, 0xb1, 0xba, 0xb5, 0xcb, 0x27, 0x52, 0x79, - 0x6a, 0x37, 0xab, 0x9c, 0xca, 0x85, 0x7d, 0x37, 0x7d, 0x95, 0x2a, 0x7b, 0x67, 0xbb, 0xa7, 0xed, - 0x72, 0xa7, 0x5f, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x8b, 0x98, 0xf7, 0xa0, 0x21, 0x03, 0x00, - 0x00, + // 468 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x52, 0x4f, 0x6f, 0xd3, 0x4e, + 0x10, 0xad, 0xd3, 0xfe, 0x22, 0x65, 0xf2, 0x4b, 0xeb, 0x6e, 0x5a, 0x30, 0x20, 0xf1, 0x27, 0x07, + 0x84, 0x90, 0xb0, 0xa5, 0x72, 0x41, 0x88, 0x8b, 0x63, 0x2f, 0xca, 0xaa, 0x2e, 0x31, 0xbb, 0x36, + 0x42, 0x08, 0x29, 0xda, 0xd8, 0x1b, 0xd7, 0x6a, 0x9a, 0xad, 0xec, 0x0d, 0x82, 0x33, 0x07, 0xbe, + 0x05, 0xe2, 0xa3, 0xa2, 0x78, 0x1d, 0xe7, 0x0f, 0x27, 0xcf, 0xbc, 0xf7, 0xe6, 0xcd, 0xb3, 0x3d, + 0xf0, 0x68, 0x36, 0xff, 0xa1, 0x44, 0x9e, 0xce, 0x9d, 0x44, 0x16, 0xc2, 0x49, 0xb8, 0xe2, 0x73, + 0x99, 0xd9, 0x77, 0x85, 0x54, 0x12, 0xf5, 0xd6, 0xa4, 0xbd, 0x22, 0x1f, 0x3e, 0xde, 0xd5, 0xe6, + 0xa9, 0x58, 0xa8, 0x7c, 0x96, 0x8b, 0x42, 0xcb, 0x07, 0x04, 0x90, 0xa7, 0xe7, 0xdd, 0x42, 0xe5, + 0x33, 0x9e, 0xa8, 0x88, 0x67, 0xe8, 0x09, 0x74, 0x79, 0xdd, 0x4e, 0xf2, 0xd4, 0x32, 0x9e, 0x1a, + 0x2f, 0x3a, 0x14, 0xd6, 0x10, 0x49, 0x11, 0x82, 0xa3, 0x05, 0xbf, 0x15, 0x56, 0xab, 0x62, 0xaa, + 0x7a, 0xf0, 0xb3, 0x05, 0x27, 0xb5, 0xd7, 0x95, 0x50, 0x3c, 0xe5, 0x8a, 0xa3, 0x37, 0x00, 0xab, + 0x67, 0x29, 0x1a, 0x9f, 0xee, 0xc5, 0x03, 0x7b, 0x27, 0xa2, 0x4d, 0x9a, 0x4c, 0xb4, 0x53, 0x8b, + 0x49, 0x8a, 0x7c, 0xf8, 0xbf, 0x89, 0xa0, 0x78, 0x56, 0x6d, 0xea, 0x5e, 0x3c, 0xdb, 0x9b, 0xfd, + 0x37, 0x3b, 0x6d, 0x92, 0xaf, 0x5e, 0xe4, 0x2b, 0x9c, 0x97, 0x72, 0x59, 0x24, 0x62, 0xa2, 0x78, + 0x79, 0x33, 0x11, 0xdf, 0x45, 0xb2, 0x54, 0xb9, 0x5c, 0x58, 0x87, 0x95, 0xdd, 0xf3, 0x3d, 0xbb, + 0x88, 0x97, 0x37, 0x78, 0xad, 0xd9, 0xe4, 0x1a, 0x1d, 0xd0, 0xbe, 0xb6, 0xd9, 0x11, 0x0c, 0x11, + 0x98, 0xb5, 0x7b, 0x63, 0x3c, 0xf8, 0x6d, 0x34, 0x5f, 0x94, 0x8a, 0x52, 0x14, 0xdf, 0x78, 0x05, + 0xff, 0x32, 0xa0, 0xcd, 0x14, 0x57, 0xcb, 0x12, 0x59, 0x70, 0x46, 0x31, 0xc3, 0xf4, 0x93, 0x1b, + 0x91, 0xf1, 0x87, 0x89, 0x4f, 0x98, 0x3b, 0x0c, 0xb0, 0x6f, 0x1e, 0xec, 0x33, 0xae, 0xf7, 0x31, + 0x26, 0x14, 0xfb, 0xa6, 0x81, 0xee, 0x01, 0xda, 0x66, 0xf0, 0x67, 0xc2, 0x22, 0x66, 0xb6, 0xf6, + 0x27, 0x28, 0x0e, 0xb0, 0xcb, 0xb0, 0x6f, 0x1e, 0xa2, 0xfb, 0xd0, 0xdf, 0x66, 0xde, 0xbb, 0x24, + 0x88, 0x29, 0x36, 0x8f, 0x5e, 0xfe, 0xd9, 0x04, 0xf4, 0x78, 0x72, 0x2d, 0xea, 0x54, 0x08, 0x8e, + 0x3d, 0xd7, 0x1b, 0xe1, 0xed, 0x3c, 0xc7, 0x00, 0x1a, 0xbb, 0x22, 0x8c, 0x99, 0x06, 0xea, 0x41, + 0x47, 0xf7, 0x23, 0x12, 0x99, 0x2d, 0xd4, 0x87, 0x13, 0xdd, 0x86, 0xe3, 0x30, 0x0e, 0xdc, 0xa8, + 0xda, 0x6b, 0xc1, 0x99, 0x06, 0x83, 0xf1, 0xf8, 0x32, 0x0e, 0x37, 0x8b, 0xd1, 0x39, 0x9c, 0xd6, + 0xf2, 0x38, 0x6a, 0xe0, 0xff, 0xd0, 0x29, 0xf4, 0x34, 0xcc, 0x2e, 0x49, 0x18, 0x62, 0xdf, 0x6c, + 0x0f, 0xdf, 0x7d, 0x79, 0x9b, 0xe5, 0xea, 0x7a, 0x39, 0xb5, 0x13, 0x79, 0xeb, 0x54, 0xbf, 0x48, + 0x16, 0x99, 0x2e, 0x9c, 0xe6, 0xa0, 0x33, 0xb1, 0x70, 0xee, 0xa6, 0xaf, 0x32, 0xe9, 0xec, 0xdc, + 0xf8, 0xb4, 0x5d, 0x5d, 0xf6, 0xeb, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x7c, 0xed, 0xa2, 0x14, + 0x27, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/compiler.pb.go b/flyteidl/gen/pb-go/flyteidl/core/compiler.pb.go index e8a216170d..9377acc47c 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/compiler.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/compiler.pb.go @@ -5,8 +5,9 @@ package core import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -280,32 +281,32 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/compiler.proto", fileDescriptor_d310dba155e4f065) } var fileDescriptor_d310dba155e4f065 = []byte{ - // 423 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xcb, 0xca, 0xd3, 0x40, - 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, + // 425 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xcb, 0xea, 0xd3, 0x40, + 0x14, 0xc6, 0x49, 0x43, 0x2f, 0x9e, 0x34, 0x58, 0x66, 0x63, 0x4c, 0x0b, 0x86, 0xb8, 0x29, 0xa2, + 0x09, 0xd6, 0x85, 0xb6, 0x8a, 0x0b, 0x5b, 0x15, 0xa1, 0xab, 0x58, 0x11, 0xdc, 0x68, 0x2e, 0xd3, + 0x18, 0x72, 0x99, 0x30, 0x33, 0xb1, 0xe4, 0x09, 0x5c, 0xfa, 0x64, 0xbe, 0x93, 0xe4, 0x4a, 0x93, + 0xd2, 0xe2, 0xe2, 0xbf, 0x9b, 0x70, 0x7e, 0xdf, 0x77, 0xbe, 0xc3, 0xc9, 0x81, 0xc5, 0x31, 0xca, + 0x39, 0x0e, 0xbc, 0xc8, 0x74, 0x09, 0xc5, 0xa6, 0x4b, 0xe2, 0x34, 0x88, 0x30, 0x35, 0x52, 0x4a, + 0x38, 0x41, 0x72, 0x53, 0x35, 0x8a, 0xaa, 0xda, 0x83, 0x4f, 0x84, 0x86, 0xc7, 0x88, 0x9c, 0x2a, + 0x58, 0x7d, 0xd8, 0xad, 0x72, 0x9b, 0x85, 0xac, 0x2a, 0xe9, 0xbf, 0x45, 0x90, 0xb7, 0x24, 0x49, + 0xb0, 0xcb, 0x03, 0x92, 0x7c, 0xc6, 0x1c, 0xed, 0x01, 0x3c, 0x72, 0x4a, 0x18, 0xa7, 0xd8, 0x8e, + 0x95, 0xb1, 0x26, 0x2e, 0xa5, 0xd5, 0x53, 0xa3, 0xd3, 0xce, 0xe8, 0x28, 0x8c, 0x5d, 0x8b, 0xbf, + 0x4f, 0x38, 0xcd, 0xad, 0x33, 0x3d, 0xfa, 0x00, 0x93, 0x2c, 0xad, 0xbd, 0x26, 0xa5, 0xd7, 0x93, + 0x9b, 0x5e, 0x5f, 0xd2, 0x73, 0xa7, 0x56, 0xab, 0xaa, 0x30, 0xfa, 0xe4, 0xed, 0x03, 0xc6, 0xd1, + 0x0c, 0xc4, 0xc0, 0x63, 0x8a, 0xa0, 0x89, 0xcb, 0x7b, 0x56, 0xf1, 0x54, 0x1d, 0xb8, 0xdf, 0x8b, + 0x50, 0x40, 0x21, 0xce, 0x15, 0x41, 0x13, 0x0a, 0x28, 0xc4, 0x39, 0x5a, 0xc3, 0xf0, 0x97, 0x1d, + 0x65, 0x58, 0x19, 0x68, 0xc2, 0x52, 0x5a, 0x3d, 0xbe, 0x99, 0xa2, 0x6a, 0x65, 0x55, 0x8a, 0xcd, + 0xe0, 0x95, 0xa0, 0xfe, 0x00, 0xb9, 0x13, 0xed, 0xce, 0x3b, 0xe8, 0x7f, 0x04, 0x98, 0x6d, 0xab, + 0x25, 0x7b, 0x5f, 0xeb, 0xfd, 0xa1, 0xd7, 0x30, 0xe1, 0x38, 0x4e, 0x23, 0x9b, 0xe3, 0xb2, 0x95, + 0xb4, 0x7a, 0xd4, 0xb3, 0x6d, 0xd0, 0x43, 0x8d, 0x59, 0xad, 0x00, 0xbd, 0x05, 0xc9, 0x6d, 0x9b, + 0xb2, 0x3a, 0xd6, 0xe2, 0x56, 0x2c, 0xeb, 0x5c, 0xa0, 0x7f, 0x84, 0x69, 0x13, 0xe8, 0x60, 0xb3, + 0x10, 0xbd, 0xbc, 0x08, 0x33, 0xef, 0x99, 0x15, 0xd8, 0x65, 0x10, 0xfd, 0xaf, 0x00, 0x0f, 0xfa, + 0xa3, 0x6d, 0x23, 0xc2, 0x32, 0x8a, 0xd1, 0x1a, 0xc6, 0x29, 0x0d, 0x62, 0x9b, 0xe6, 0x57, 0x06, + 0xec, 0x0b, 0xad, 0x86, 0x47, 0x3b, 0x90, 0x59, 0xe6, 0x7c, 0x6f, 0x7e, 0xf6, 0x62, 0x42, 0xf1, + 0x7f, 0x0c, 0xa6, 0x2c, 0x73, 0x9a, 0x0f, 0x86, 0x9e, 0xc3, 0xb0, 0x3c, 0x08, 0x45, 0x2c, 0xd5, + 0xf3, 0x2b, 0xea, 0x62, 0x34, 0xab, 0x22, 0xdf, 0xbd, 0xf9, 0xb6, 0xf1, 0x03, 0xfe, 0x33, 0x73, + 0x0c, 0x97, 0xc4, 0x66, 0xc9, 0x13, 0xea, 0x57, 0x0f, 0xb3, 0xbd, 0x35, 0x1f, 0x27, 0x66, 0xea, + 0x3c, 0xf3, 0x89, 0xd9, 0x39, 0x3f, 0x67, 0x54, 0x5e, 0xde, 0x8b, 0x7f, 0x01, 0x00, 0x00, 0xff, + 0xff, 0x11, 0xab, 0xdf, 0xee, 0xe1, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/condition.pb.go b/flyteidl/gen/pb-go/flyteidl/core/condition.pb.go index 6bf74ba3a6..7bfc3a5e55 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/condition.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/condition.pb.go @@ -5,8 +5,9 @@ package core import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -392,36 +393,36 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/condition.proto", fileDescriptor_df35c44899db166a) } var fileDescriptor_df35c44899db166a = []byte{ - // 486 bytes of a gzipped FileDescriptorProto + // 489 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x4f, 0x6f, 0xd3, 0x30, - 0x18, 0xc6, 0xf3, 0x67, 0xeb, 0xd6, 0xb7, 0x62, 0x35, 0x16, 0x43, 0x15, 0x02, 0xa9, 0x0a, 0x1c, - 0x76, 0x80, 0x44, 0x2a, 0x03, 0x2e, 0x70, 0x20, 0x10, 0x2d, 0x88, 0x6a, 0x7f, 0x4c, 0xc5, 0x81, - 0x0b, 0x72, 0x53, 0x2f, 0x33, 0x72, 0xe3, 0xc8, 0x49, 0xab, 0xf1, 0x29, 0x38, 0xf0, 0x19, 0xb8, - 0xf1, 0x21, 0x91, 0xbd, 0x34, 0x6d, 0xd3, 0x0a, 0xf5, 0x98, 0xf7, 0x7d, 0x7e, 0x4f, 0x1e, 0xfb, - 0x7d, 0x0d, 0x4f, 0xae, 0xc5, 0xcf, 0x92, 0xf1, 0x89, 0x08, 0x12, 0xa9, 0x58, 0x90, 0xc8, 0x6c, - 0xc2, 0x4b, 0x2e, 0x33, 0x3f, 0x57, 0xb2, 0x94, 0xf8, 0xde, 0xa2, 0xed, 0xeb, 0xf6, 0xa3, 0xc7, - 0xeb, 0x6a, 0xc1, 0x4b, 0xa6, 0xa8, 0x28, 0xee, 0xc4, 0xde, 0x2f, 0x07, 0x1e, 0x7c, 0x90, 0xd3, - 0x9c, 0x2a, 0x5e, 0xc8, 0x2c, 0xba, 0xcd, 0x15, 0x2b, 0x0a, 0x2e, 0x33, 0x1c, 0xc3, 0xa1, 0xcc, - 0x99, 0xa2, 0xa5, 0x54, 0x3d, 0xbb, 0x6f, 0x9f, 0x1c, 0x0d, 0x9e, 0xfb, 0x6b, 0xc6, 0xfe, 0x36, - 0xcc, 0xbf, 0xa8, 0x18, 0x52, 0xd3, 0xf8, 0x15, 0x80, 0x60, 0xd7, 0xe5, 0xf7, 0x39, 0x15, 0x33, - 0xd6, 0x73, 0xfa, 0xf6, 0x49, 0x67, 0xf0, 0xb0, 0xe1, 0x65, 0xb0, 0x6c, 0x42, 0xda, 0x5a, 0xf9, - 0x55, 0x0b, 0xf1, 0x1b, 0xe8, 0x28, 0x9e, 0xde, 0x2c, 0x38, 0xf7, 0xbf, 0x1c, 0x18, 0xa9, 0x01, - 0xbd, 0x77, 0x70, 0xb8, 0x48, 0x81, 0x5b, 0xe0, 0x44, 0x57, 0xc8, 0xc2, 0x07, 0xe0, 0x9e, 0x47, - 0x57, 0xc8, 0xd6, 0x85, 0xb3, 0x11, 0x72, 0x74, 0xe1, 0x6c, 0x14, 0x21, 0x57, 0x17, 0x86, 0x23, - 0xb4, 0xa7, 0x0b, 0xc3, 0x51, 0x84, 0xf6, 0xbd, 0xdf, 0x36, 0x1c, 0x54, 0xb6, 0xf8, 0x2d, 0xb4, - 0x73, 0xc5, 0xa7, 0xbc, 0xe4, 0x73, 0x66, 0x6e, 0xa1, 0x33, 0xe8, 0x35, 0x12, 0x5c, 0x2e, 0xfa, - 0xa1, 0xd3, 0xb3, 0x63, 0x8b, 0x2c, 0x01, 0x8c, 0xc1, 0x9d, 0x53, 0x65, 0x4e, 0xdc, 0x8e, 0x2d, - 0xa2, 0x3f, 0x70, 0x00, 0xad, 0x22, 0xa1, 0x82, 0xaa, 0xea, 0x40, 0xc7, 0x0d, 0xbb, 0x2f, 0xa6, - 0x19, 0x5b, 0xa4, 0x92, 0x85, 0xfb, 0xda, 0x44, 0x78, 0x7f, 0x6d, 0xb8, 0x1f, 0x4a, 0x29, 0x18, - 0x5d, 0x1f, 0x52, 0x27, 0x91, 0xd9, 0x8f, 0x59, 0x96, 0xe8, 0xf9, 0x57, 0x09, 0x9f, 0x6d, 0xcc, - 0xa9, 0x56, 0x2c, 0xd1, 0xd8, 0x22, 0xab, 0x28, 0x8e, 0x00, 0x92, 0x7a, 0x9e, 0xd5, 0x90, 0x9e, - 0xee, 0x30, 0xf0, 0xd8, 0x22, 0x2b, 0x60, 0xd8, 0x82, 0x3d, 0x76, 0x9b, 0x2b, 0xef, 0x8f, 0x03, - 0xc7, 0x5b, 0xff, 0x8b, 0x2f, 0x37, 0xf6, 0xea, 0x74, 0x97, 0xbc, 0xfe, 0x50, 0xa6, 0x3c, 0xa1, - 0x62, 0xcb, 0x7e, 0x7d, 0x82, 0xae, 0xd9, 0x2f, 0x56, 0x8b, 0xab, 0xfc, 0xfd, 0x86, 0xf1, 0xc6, - 0xfd, 0x91, 0x23, 0x0d, 0xae, 0x84, 0xfb, 0x0c, 0xe8, 0x6e, 0xe7, 0x56, 0xbc, 0xdc, 0x1d, 0xbd, - 0xba, 0x86, 0x5c, 0x16, 0x3c, 0x0f, 0xba, 0x8d, 0xd0, 0x7a, 0xc9, 0xde, 0x9f, 0x7f, 0x44, 0x96, - 0xde, 0xba, 0x0b, 0x82, 0xec, 0xf0, 0xf5, 0xb7, 0xd3, 0x94, 0x97, 0x37, 0xb3, 0xb1, 0x9f, 0xc8, - 0x69, 0x60, 0x7e, 0x21, 0x55, 0x1a, 0xd4, 0x4f, 0x36, 0x65, 0x59, 0x90, 0x8f, 0x5f, 0xa4, 0x32, - 0x58, 0x7b, 0xc5, 0xe3, 0x96, 0x79, 0xbd, 0x2f, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0xb6, 0xe4, - 0xe7, 0xb1, 0x0b, 0x04, 0x00, 0x00, + 0x18, 0xc6, 0xf3, 0x67, 0xeb, 0xb6, 0xb7, 0x62, 0x35, 0x16, 0x43, 0x15, 0x02, 0xa9, 0x0a, 0x1c, + 0x76, 0x80, 0x44, 0x2a, 0x20, 0x24, 0x34, 0x0e, 0x04, 0xa2, 0x05, 0x51, 0xed, 0x8f, 0xa9, 0x38, + 0x70, 0x41, 0x6e, 0xea, 0x65, 0x46, 0x6e, 0x1c, 0x39, 0x69, 0x35, 0x3e, 0x05, 0x07, 0x3e, 0x03, + 0x37, 0x3e, 0x24, 0xb2, 0x9b, 0xa6, 0x6d, 0x5a, 0xa1, 0xde, 0xda, 0xf7, 0x7d, 0x7e, 0x4f, 0x1e, + 0xfb, 0x7d, 0x0d, 0x4f, 0x6e, 0xc4, 0xcf, 0x92, 0xf1, 0xb1, 0x08, 0x12, 0xa9, 0x58, 0x90, 0xc8, + 0x6c, 0xcc, 0x4b, 0x2e, 0x33, 0x3f, 0x57, 0xb2, 0x94, 0xf8, 0xde, 0xa2, 0xed, 0xeb, 0xf6, 0xa3, + 0xc7, 0xeb, 0x6a, 0xc1, 0x4b, 0xa6, 0xa8, 0x28, 0xe6, 0x62, 0xef, 0x97, 0x03, 0x0f, 0x3e, 0xc8, + 0x49, 0x4e, 0x15, 0x2f, 0x64, 0x16, 0xdd, 0xe5, 0x8a, 0x15, 0x05, 0x97, 0x19, 0x8e, 0xe1, 0x50, + 0xe6, 0x4c, 0xd1, 0x52, 0xaa, 0xae, 0xdd, 0xb3, 0x4f, 0x8f, 0xfb, 0xcf, 0xfd, 0x35, 0x63, 0x7f, + 0x1b, 0xe6, 0x5f, 0x56, 0x0c, 0xa9, 0x69, 0xfc, 0x1a, 0x40, 0xb0, 0x9b, 0xf2, 0xfb, 0x8c, 0x8a, + 0x29, 0xeb, 0x3a, 0x3d, 0xfb, 0xb4, 0xdd, 0x7f, 0xd8, 0xf0, 0x32, 0x58, 0x36, 0x26, 0x47, 0x5a, + 0xf9, 0x55, 0x0b, 0xf1, 0x1b, 0x68, 0x2b, 0x9e, 0xde, 0x2e, 0x38, 0xf7, 0xbf, 0x1c, 0x18, 0xa9, + 0x01, 0xbd, 0x77, 0x70, 0xb8, 0x48, 0x81, 0x5b, 0xe0, 0x44, 0xd7, 0xc8, 0xc2, 0x07, 0xe0, 0x5e, + 0x44, 0xd7, 0xc8, 0xd6, 0x85, 0xf3, 0x21, 0x72, 0x74, 0xe1, 0x7c, 0x18, 0x21, 0x57, 0x17, 0x06, + 0x43, 0xb4, 0xa7, 0x0b, 0x83, 0x61, 0x84, 0xf6, 0xbd, 0xdf, 0x36, 0x1c, 0x54, 0xb6, 0xf8, 0x0c, + 0x8e, 0x72, 0xc5, 0x27, 0xbc, 0xe4, 0x33, 0x66, 0x6e, 0xa1, 0xdd, 0xef, 0x36, 0x12, 0x5c, 0x2d, + 0xfa, 0xa1, 0xd3, 0xb5, 0x63, 0x8b, 0x2c, 0x01, 0x8c, 0xc1, 0x9d, 0x51, 0x65, 0x4e, 0x7c, 0x14, + 0x5b, 0x44, 0xff, 0xc1, 0x01, 0xb4, 0x8a, 0x84, 0x0a, 0xaa, 0xaa, 0x03, 0x9d, 0x34, 0xec, 0xbe, + 0x98, 0x66, 0x6c, 0x91, 0x4a, 0x16, 0xee, 0x6b, 0x13, 0xe1, 0xfd, 0xb5, 0xe1, 0x7e, 0x28, 0xa5, + 0x60, 0x74, 0x7d, 0x48, 0xed, 0x44, 0x66, 0x3f, 0xa6, 0x59, 0xa2, 0xe7, 0x5f, 0x25, 0x7c, 0xb6, + 0x31, 0xa7, 0x5a, 0xb1, 0x44, 0x63, 0x8b, 0xac, 0xa2, 0x38, 0x02, 0x48, 0xea, 0x79, 0x56, 0x43, + 0x7a, 0xba, 0xc3, 0xc0, 0x63, 0x8b, 0xac, 0x80, 0x61, 0x0b, 0xf6, 0xd8, 0x5d, 0xae, 0xbc, 0x3f, + 0x0e, 0x9c, 0x6c, 0xfd, 0x2e, 0xbe, 0xda, 0xd8, 0xab, 0x57, 0xbb, 0xe4, 0xf5, 0x07, 0x32, 0xe5, + 0x09, 0x15, 0x5b, 0xf6, 0xeb, 0x13, 0x74, 0xcc, 0x7e, 0xb1, 0x5a, 0x5c, 0xe5, 0xef, 0x35, 0x8c, + 0x37, 0xee, 0x8f, 0x1c, 0x6b, 0x70, 0x25, 0xdc, 0x67, 0x40, 0xf3, 0x9d, 0x5b, 0xf1, 0x72, 0x77, + 0xf4, 0xea, 0x18, 0x72, 0x59, 0xf0, 0x3c, 0xe8, 0x34, 0x42, 0xeb, 0x25, 0x7b, 0x7f, 0xf1, 0x11, + 0x59, 0x7a, 0xeb, 0x2e, 0x09, 0xb2, 0xc3, 0xb3, 0x6f, 0x6f, 0x53, 0x5e, 0xde, 0x4e, 0x47, 0x7e, + 0x22, 0x27, 0x81, 0xf9, 0x84, 0x54, 0xe9, 0xfc, 0x47, 0x50, 0x3f, 0xdc, 0x94, 0x65, 0x41, 0x3e, + 0x7a, 0x91, 0xca, 0x60, 0xed, 0x2d, 0x8f, 0x5a, 0xe6, 0x0d, 0xbf, 0xfc, 0x17, 0x00, 0x00, 0xff, + 0xff, 0x19, 0x6a, 0x99, 0xdd, 0x11, 0x04, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/dynamic_job.pb.go b/flyteidl/gen/pb-go/flyteidl/core/dynamic_job.pb.go index eb37f27ec0..b9b82e8d08 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/dynamic_job.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/dynamic_job.pb.go @@ -5,8 +5,9 @@ package core import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -109,23 +110,23 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/dynamic_job.proto", fileDescriptor_87e0015f5a750c69) } var fileDescriptor_87e0015f5a750c69 = []byte{ - // 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, + // 288 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x90, 0xcf, 0x4b, 0xc3, 0x30, + 0x14, 0xc7, 0xd9, 0xe6, 0x14, 0xe2, 0xe6, 0x21, 0x82, 0xd4, 0x29, 0x6c, 0xe8, 0x65, 0x1e, 0x6c, + 0xfc, 0x71, 0x13, 0x4f, 0xd3, 0x93, 0x07, 0x0f, 0xdd, 0x40, 0xf0, 0x32, 0x9a, 0xf4, 0xad, 0xc6, + 0xa5, 0x79, 0xa5, 0x2f, 0x65, 0xec, 0x5f, 0xf0, 0xaf, 0x16, 0xd3, 0x75, 0xd0, 0xe2, 0x2d, 0xe4, + 0xfb, 0xf9, 0xbc, 0xe4, 0x7d, 0xd9, 0x78, 0x65, 0xb6, 0x0e, 0x74, 0x62, 0x84, 0xc2, 0x02, 0x44, + 0xb2, 0xb5, 0x71, 0xa6, 0xd5, 0xf2, 0x1b, 0x65, 0x98, 0x17, 0xe8, 0x90, 0x0f, 0x6b, 0x20, 0xfc, + 0x03, 0x46, 0xe7, 0x4d, 0xde, 0xc5, 0xb4, 0xa6, 0x8a, 0x1c, 0x5d, 0x36, 0xa3, 0x0d, 0x16, 0xeb, + 0x95, 0xc1, 0xcd, 0xff, 0xa9, 0xd1, 0x0e, 0x8a, 0xd8, 0xec, 0xdc, 0xab, 0x9f, 0x2e, 0x3b, 0x79, + 0xad, 0xde, 0x7e, 0x43, 0x39, 0xcf, 0x41, 0xf1, 0x1b, 0xd6, 0xb7, 0x98, 0x00, 0x05, 0x9d, 0x49, + 0x6f, 0x7a, 0xfc, 0x70, 0x1a, 0x36, 0x3e, 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, 0x8e, 0xdf, 0xb1, 0x23, 0x2c, 0x5d, 0x5e, 0x3a, 0x0a, 0x7a, 0x7e, 0xe2, 0x59, + 0x6b, 0xe2, 0x4c, 0xdb, 0x44, 0xdb, 0x34, 0xaa, 0x31, 0x7e, 0xcf, 0xfa, 0x7e, 0xbf, 0xe0, 0xc0, + 0xf3, 0x17, 0x2d, 0x7e, 0x11, 0xd3, 0x7a, 0x01, 0x59, 0x6e, 0x62, 0x07, 0x51, 0x45, 0xf2, 0x17, + 0x36, 0xa0, 0x52, 0xd6, 0xab, 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, + 0xd5, 0x41, 0xec, 0x6b, 0x4c, 0xc1, 0x8a, 0x5c, 0xde, 0xa6, 0x28, 0x1a, 0xcd, 0xca, 0x43, 0xdf, + 0xe8, 0xe3, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7b, 0xfe, 0xc3, 0xc1, 0xda, 0x01, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/errors.pb.go b/flyteidl/gen/pb-go/flyteidl/core/errors.pb.go index 6e12d3b805..2c37b0afe1 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/errors.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/errors.pb.go @@ -5,8 +5,9 @@ package core import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -166,23 +167,23 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/errors.proto", fileDescriptor_c2a49b99f342b879) } var fileDescriptor_c2a49b99f342b879 = []byte{ - // 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, + // 286 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x90, 0x4f, 0x4b, 0xc3, 0x40, + 0x10, 0xc5, 0x8d, 0xc6, 0x8a, 0x53, 0xda, 0xca, 0x7a, 0x09, 0x85, 0x42, 0xc9, 0xc5, 0x1e, 0x74, + 0x17, 0x5a, 0xf0, 0x20, 0x82, 0xd8, 0x36, 0x27, 0xa5, 0x85, 0x1c, 0x3c, 0x78, 0x91, 0x26, 0x59, + 0xd7, 0xc5, 0x66, 0xa7, 0x6c, 0x36, 0xa0, 0x1f, 0xd8, 0xef, 0x21, 0x99, 0x18, 0x31, 0x3d, 0x78, + 0x09, 0xf3, 0xe7, 0xfd, 0x5e, 0x66, 0x1f, 0x0c, 0x5f, 0xb7, 0x9f, 0x4e, 0xea, 0x6c, 0x2b, 0x52, + 0xb4, 0x52, 0x48, 0x6b, 0xd1, 0x16, 0x7c, 0x67, 0xd1, 0x21, 0xeb, 0x35, 0x3b, 0x5e, 0xed, 0x86, + 0xa3, 0x3d, 0xe9, 0x87, 0x4c, 0x4b, 0xa7, 0xd1, 0xd4, 0xea, 0xf0, 0xcb, 0x83, 0xfe, 0x02, 0x8d, + 0xdb, 0x68, 0x23, 0x6d, 0x54, 0xf9, 0x30, 0x06, 0x7e, 0x8a, 0x99, 0x0c, 0xbc, 0xb1, 0x37, 0x39, + 0x8d, 0xa9, 0x66, 0x01, 0x9c, 0xe4, 0xb2, 0x28, 0x36, 0x4a, 0x06, 0x87, 0x34, 0x6e, 0x5a, 0x76, + 0x0d, 0xfe, 0xbb, 0x36, 0x59, 0x70, 0x34, 0xf6, 0x26, 0xfd, 0x69, 0xc8, 0x5b, 0x7f, 0xe7, 0x6d, + 0x6b, 0xfe, 0xa0, 0x4d, 0x16, 0x93, 0x9e, 0xdd, 0x41, 0x07, 0xad, 0x56, 0xda, 0x04, 0x3e, 0x91, + 0x17, 0x7b, 0x64, 0xd4, 0x1c, 0x5a, 0x93, 0xf4, 0x25, 0xfc, 0x07, 0x0b, 0x2f, 0xc1, 0xaf, 0x7a, + 0x76, 0x0e, 0x83, 0xd5, 0x7a, 0xf5, 0x12, 0x47, 0x8b, 0xf5, 0x53, 0x14, 0xdf, 0xcf, 0x1f, 0xa3, + 0xb3, 0x03, 0x36, 0x80, 0xee, 0xdf, 0x81, 0x17, 0x2e, 0xa1, 0x47, 0x16, 0x4b, 0x4c, 0xcb, 0x5c, + 0x1a, 0xc7, 0x66, 0x70, 0x4c, 0xb1, 0xd1, 0x33, 0xbb, 0xd3, 0xd1, 0xbf, 0x87, 0xc7, 0xb5, 0x76, + 0x7e, 0xfb, 0x7c, 0xa3, 0xb4, 0x7b, 0x2b, 0x13, 0x9e, 0x62, 0x2e, 0x88, 0x40, 0xab, 0xea, 0x42, + 0xfc, 0x06, 0xad, 0xa4, 0x11, 0xbb, 0xe4, 0x4a, 0xa1, 0x68, 0x65, 0x9f, 0x74, 0x28, 0xf2, 0xd9, + 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7f, 0x9d, 0x42, 0xed, 0xbe, 0x01, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/execution.pb.go b/flyteidl/gen/pb-go/flyteidl/core/execution.pb.go index 17ce67b6cd..d467151c07 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/execution.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/execution.pb.go @@ -5,9 +5,10 @@ package core import ( fmt "fmt" + math "math" + proto "github.com/golang/protobuf/proto" duration "github.com/golang/protobuf/ptypes/duration" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -627,51 +628,51 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/execution.proto", fileDescriptor_1523842fd9084ee4) } var fileDescriptor_1523842fd9084ee4 = []byte{ - // 730 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0x5f, 0x6e, 0xda, 0x4a, + // 731 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0xcf, 0x6e, 0xda, 0x4a, 0x14, 0xc6, 0x63, 0x70, 0xf8, 0x73, 0x08, 0x64, 0xee, 0xdc, 0x7b, 0x25, 0x72, 0xaf, 0x5a, 0x45, - 0x6e, 0xa5, 0x46, 0xaa, 0x6a, 0x4b, 0x34, 0xaa, 0xd4, 0xf6, 0x09, 0xf0, 0x90, 0xb8, 0x80, 0x9d, - 0xd8, 0x38, 0x28, 0x79, 0x41, 0x80, 0x07, 0xc7, 0x0a, 0x30, 0xd4, 0xd8, 0x6d, 0xf3, 0xde, 0x0d, - 0xf4, 0xa5, 0x2b, 0xa8, 0xd4, 0x1d, 0x74, 0x0d, 0x7d, 0xea, 0x02, 0xba, 0x9a, 0x6a, 0x06, 0x9c, - 0x00, 0xad, 0x5a, 0x55, 0xea, 0x0b, 0x9a, 0x33, 0xe7, 0x7c, 0x67, 0x7e, 0xdf, 0xc1, 0x33, 0x70, - 0x67, 0x34, 0xbe, 0x8e, 0x68, 0xe0, 0x8d, 0xb5, 0x21, 0x0b, 0xa9, 0x46, 0xdf, 0xd0, 0x61, 0x1c, - 0x05, 0x6c, 0xaa, 0xce, 0x42, 0x16, 0x31, 0x5c, 0x4c, 0xd2, 0x2a, 0x4f, 0xff, 0x77, 0xd7, 0x67, - 0xcc, 0x1f, 0x53, 0x4d, 0x24, 0x07, 0xf1, 0x48, 0xf3, 0xe2, 0xb0, 0x7f, 0x5b, 0xae, 0x7c, 0x94, - 0xe0, 0xaf, 0x2e, 0x0b, 0xaf, 0x46, 0x63, 0xf6, 0x9a, 0x24, 0xad, 0x94, 0x77, 0x12, 0x6c, 0x9f, - 0x5c, 0xf6, 0xe7, 0x14, 0x17, 0x21, 0xef, 0x9a, 0x3a, 0x69, 0x18, 0x26, 0xd1, 0xd1, 0x16, 0x06, - 0xc8, 0x9c, 0xba, 0xc4, 0x25, 0x3a, 0x92, 0x70, 0x01, 0xb2, 0xb6, 0x6b, 0x9a, 0x86, 0x79, 0x84, - 0x52, 0xb8, 0x04, 0xe0, 0xb8, 0xf5, 0x3a, 0x21, 0x3a, 0x8f, 0xd3, 0x5c, 0xb7, 0x8c, 0x89, 0x8e, - 0x64, 0x5e, 0xdb, 0xa8, 0x1a, 0x2d, 0x9e, 0xdb, 0xe6, 0x4d, 0x78, 0x40, 0x74, 0x94, 0xe1, 0x89, - 0x6a, 0xcd, 0xb2, 0x3b, 0x44, 0x47, 0x59, 0x2e, 0xea, 0x18, 0x6d, 0xa2, 0xf7, 0x2c, 0xb7, 0x83, - 0x72, 0x78, 0x07, 0x72, 0x22, 0xc7, 0x55, 0x79, 0xe5, 0x93, 0x04, 0x45, 0x93, 0x79, 0xf4, 0x96, - 0xf2, 0xc3, 0x6f, 0x53, 0xae, 0x51, 0xa5, 0x57, 0xa9, 0xe4, 0x15, 0xaa, 0xed, 0x55, 0x2a, 0x81, - 0xe8, 0x34, 0x8d, 0x93, 0x93, 0x1f, 0x21, 0xfe, 0x0d, 0xbb, 0xfa, 0xb9, 0x59, 0x6d, 0x1b, 0xf5, - 0x5e, 0x72, 0x4a, 0x9e, 0xd7, 0xd8, 0xa4, 0x6e, 0x9d, 0x11, 0x9b, 0xe8, 0x08, 0x94, 0xf7, 0x12, - 0x14, 0x3b, 0xfd, 0xf9, 0xd5, 0x2d, 0xf8, 0xdb, 0x3f, 0x00, 0x9e, 0xf0, 0xad, 0x83, 0x23, 0xd8, - 0x31, 0x4c, 0xa3, 0x63, 0x54, 0x5b, 0xc6, 0x05, 0x57, 0x66, 0xf0, 0x1e, 0xfc, 0xdb, 0xad, 0x1a, - 0x7c, 0x86, 0xbd, 0x86, 0x65, 0xf7, 0x6c, 0xe2, 0x58, 0xae, 0x5d, 0x27, 0x0e, 0xca, 0x2a, 0x9f, - 0x25, 0x28, 0xdd, 0x40, 0x91, 0x30, 0x64, 0x21, 0xc6, 0x20, 0x0f, 0x99, 0x47, 0xcb, 0xd2, 0xbe, - 0x74, 0x90, 0xb7, 0xc5, 0x1a, 0x97, 0x21, 0x3b, 0xa1, 0xf3, 0x79, 0xdf, 0xa7, 0xe5, 0x94, 0xd8, - 0x4e, 0x42, 0xfc, 0x3f, 0xe4, 0x29, 0x97, 0xf5, 0xe2, 0x30, 0x28, 0xa7, 0x45, 0x2e, 0x27, 0x36, - 0xdc, 0x30, 0xc0, 0xcf, 0x41, 0xbe, 0x0a, 0xa6, 0x5e, 0x59, 0xde, 0x97, 0x0e, 0x4a, 0x95, 0x07, - 0xea, 0xda, 0x77, 0xa9, 0xae, 0x9f, 0xab, 0x8a, 0xdf, 0x66, 0x30, 0xf5, 0x6c, 0x21, 0x52, 0x54, - 0xc8, 0xdf, 0x6c, 0x71, 0xb7, 0xae, 0xd9, 0x34, 0xad, 0xae, 0x89, 0xb6, 0x70, 0x0e, 0x64, 0xd7, - 0x21, 0x36, 0x92, 0xb8, 0x6f, 0xe7, 0xdc, 0xe9, 0x90, 0x36, 0x4a, 0x29, 0x5f, 0x25, 0xc8, 0xf2, - 0x19, 0xb7, 0x98, 0x8f, 0x11, 0xa4, 0x39, 0xcf, 0xc2, 0x02, 0x5f, 0x72, 0x57, 0xd3, 0xfe, 0x24, - 0xc1, 0x17, 0x6b, 0xdc, 0x84, 0xd2, 0xd2, 0x46, 0x6f, 0xc4, 0xc2, 0x49, 0x3f, 0x12, 0x06, 0x4a, - 0x95, 0xfb, 0x1b, 0xa0, 0xcb, 0xae, 0x6a, 0x7b, 0x51, 0xdc, 0x10, 0xb5, 0x76, 0x71, 0xb2, 0x1a, - 0xe2, 0x87, 0x90, 0x8e, 0xa2, 0xb1, 0xb0, 0x5a, 0xa8, 0xec, 0xa9, 0x8b, 0x3b, 0xa7, 0x26, 0x77, - 0x4e, 0xd5, 0x97, 0x77, 0xce, 0xe6, 0x55, 0x8a, 0x06, 0xc5, 0xb5, 0x66, 0xeb, 0xfe, 0xb2, 0x90, - 0xae, 0x3b, 0x67, 0x48, 0xe2, 0x46, 0x5f, 0x38, 0x96, 0x89, 0x52, 0xca, 0x05, 0xfc, 0x73, 0x1a, - 0xf7, 0xc7, 0x41, 0x74, 0x6d, 0x8d, 0x1c, 0x1a, 0xbe, 0x0a, 0x86, 0xd4, 0x99, 0xd1, 0x21, 0xae, - 0xc1, 0xee, 0xcb, 0x98, 0xc6, 0x34, 0x98, 0xfa, 0xbd, 0x41, 0xec, 0xf9, 0x34, 0x12, 0xa6, 0x7f, - 0x4a, 0x50, 0x4a, 0x14, 0x35, 0x21, 0x50, 0xbe, 0x48, 0x80, 0x36, 0x9b, 0xe3, 0x67, 0x20, 0x47, - 0x01, 0x0d, 0x45, 0xb7, 0xef, 0x27, 0xb2, 0x59, 0xae, 0x76, 0x02, 0x1a, 0x1e, 0x6f, 0xd9, 0x42, - 0x83, 0x9f, 0x82, 0x3c, 0x9f, 0xd1, 0xa1, 0x98, 0x75, 0xa1, 0x72, 0xef, 0x17, 0x5a, 0xee, 0x83, - 0x4b, 0xb9, 0x44, 0x39, 0x04, 0x99, 0xb7, 0xda, 0xbc, 0x14, 0x39, 0x90, 0x8f, 0x8d, 0xa3, 0xe3, - 0xc5, 0x3f, 0xde, 0x26, 0xba, 0xe1, 0xb6, 0x51, 0x8a, 0xcf, 0xa9, 0x65, 0x75, 0x51, 0xba, 0x56, - 0x84, 0x82, 0x47, 0xe7, 0x81, 0x3f, 0x15, 0x06, 0x6b, 0x4f, 0x2e, 0x0e, 0xfd, 0x20, 0xba, 0x8c, - 0x07, 0xea, 0x90, 0x4d, 0x34, 0x71, 0x3a, 0x0b, 0x7d, 0xed, 0xe6, 0xd1, 0xf4, 0xe9, 0x54, 0x9b, - 0x0d, 0x1e, 0xf9, 0x4c, 0x5b, 0x7b, 0x47, 0x07, 0x19, 0x31, 0xab, 0xc7, 0xdf, 0x02, 0x00, 0x00, - 0xff, 0xff, 0xca, 0x49, 0xc6, 0xee, 0x5f, 0x05, 0x00, 0x00, + 0x6e, 0xa5, 0x46, 0xaa, 0x6a, 0x4b, 0xb4, 0x9b, 0xa6, 0xdd, 0x00, 0x1e, 0x12, 0x17, 0xb0, 0x13, + 0x1b, 0x07, 0x25, 0x1b, 0x04, 0x78, 0x70, 0xac, 0x00, 0x43, 0x8d, 0xdd, 0x36, 0xfb, 0xbe, 0x40, + 0x37, 0x7d, 0x82, 0x4a, 0x7d, 0x83, 0x3e, 0x43, 0x57, 0x7d, 0x80, 0x3e, 0x4d, 0x35, 0x03, 0x4e, + 0x80, 0x56, 0xad, 0x2a, 0x75, 0x83, 0xe6, 0xcc, 0x39, 0xdf, 0x99, 0xdf, 0x77, 0xf0, 0x0c, 0xdc, + 0x19, 0x8d, 0xaf, 0x23, 0x1a, 0x78, 0x63, 0x6d, 0xc8, 0x42, 0xaa, 0xd1, 0x37, 0x74, 0x18, 0x47, + 0x01, 0x9b, 0xaa, 0xb3, 0x90, 0x45, 0x0c, 0x17, 0x93, 0xb4, 0xca, 0xd3, 0xff, 0xdd, 0xf5, 0x19, + 0xf3, 0xc7, 0x54, 0x13, 0xc9, 0x41, 0x3c, 0xd2, 0xbc, 0x38, 0xec, 0xdf, 0x96, 0x2b, 0x1f, 0x25, + 0xf8, 0xab, 0xcb, 0xc2, 0xab, 0xd1, 0x98, 0xbd, 0x26, 0x49, 0x2b, 0xe5, 0x9d, 0x04, 0xdb, 0x27, + 0x97, 0xfd, 0x39, 0xc5, 0x45, 0xc8, 0xbb, 0xa6, 0x4e, 0x1a, 0x86, 0x49, 0x74, 0xb4, 0x85, 0x01, + 0x32, 0xa7, 0x2e, 0x71, 0x89, 0x8e, 0x24, 0x5c, 0x80, 0xac, 0xed, 0x9a, 0xa6, 0x61, 0x1e, 0xa1, + 0x14, 0x2e, 0x01, 0x38, 0x6e, 0xbd, 0x4e, 0x88, 0xce, 0xe3, 0x34, 0xd7, 0x2d, 0x63, 0xa2, 0x23, + 0x99, 0xd7, 0x36, 0xaa, 0x46, 0x8b, 0xe7, 0xb6, 0x79, 0x13, 0x1e, 0x10, 0x1d, 0x65, 0x78, 0xa2, + 0x5a, 0xb3, 0xec, 0x0e, 0xd1, 0x51, 0x96, 0x8b, 0x3a, 0x46, 0x9b, 0xe8, 0x3d, 0xcb, 0xed, 0xa0, + 0x1c, 0xde, 0x81, 0x9c, 0xc8, 0x71, 0x55, 0x5e, 0xf9, 0x24, 0x41, 0xd1, 0x64, 0x1e, 0xbd, 0xa5, + 0xfc, 0xf0, 0xdb, 0x94, 0x6b, 0x54, 0xe9, 0x55, 0x2a, 0x79, 0x85, 0x6a, 0x7b, 0x95, 0x4a, 0x20, + 0x3a, 0x4d, 0xe3, 0xe4, 0xe4, 0x47, 0x88, 0x7f, 0xc3, 0xae, 0x7e, 0x6e, 0x56, 0xdb, 0x46, 0xbd, + 0x97, 0x9c, 0x92, 0xe7, 0x35, 0x36, 0xa9, 0x5b, 0x67, 0xc4, 0x26, 0x3a, 0x02, 0xe5, 0xbd, 0x04, + 0xc5, 0x4e, 0x7f, 0x7e, 0x75, 0x0b, 0xfe, 0xf6, 0x0f, 0x80, 0x27, 0x7c, 0xeb, 0xe0, 0x08, 0x76, + 0x0c, 0xd3, 0xe8, 0x18, 0xd5, 0x96, 0x71, 0xc1, 0x95, 0x19, 0xbc, 0x07, 0xff, 0x76, 0xab, 0x06, + 0x9f, 0x61, 0xaf, 0x61, 0xd9, 0x3d, 0x9b, 0x38, 0x96, 0x6b, 0xd7, 0x89, 0x83, 0xb2, 0xca, 0x67, + 0x09, 0x4a, 0x37, 0x50, 0x24, 0x0c, 0x59, 0x88, 0x31, 0xc8, 0x43, 0xe6, 0xd1, 0xb2, 0xb4, 0x2f, + 0x1d, 0xe4, 0x6d, 0xb1, 0xc6, 0x65, 0xc8, 0x4e, 0xe8, 0x7c, 0xde, 0xf7, 0x69, 0x39, 0x25, 0xb6, + 0x93, 0x10, 0xff, 0x0f, 0x79, 0xca, 0x65, 0xbd, 0x38, 0x0c, 0xca, 0x69, 0x91, 0xcb, 0x89, 0x0d, + 0x37, 0x0c, 0xf0, 0x33, 0x90, 0xaf, 0x82, 0xa9, 0x57, 0x96, 0xf7, 0xa5, 0x83, 0x52, 0xe5, 0x81, + 0xba, 0xf6, 0x5d, 0xaa, 0xeb, 0xe7, 0xaa, 0xe2, 0xb7, 0x19, 0x4c, 0x3d, 0x5b, 0x88, 0x14, 0x15, + 0xf2, 0x37, 0x5b, 0xdc, 0xad, 0x6b, 0x36, 0x4d, 0xab, 0x6b, 0xa2, 0x2d, 0x9c, 0x03, 0xd9, 0x75, + 0x88, 0x8d, 0x24, 0xee, 0xdb, 0x39, 0x77, 0x3a, 0xa4, 0x8d, 0x52, 0xca, 0x57, 0x09, 0xb2, 0x7c, + 0xc6, 0x2d, 0xe6, 0x63, 0x04, 0x69, 0xce, 0xb3, 0xb0, 0xc0, 0x97, 0xdc, 0xd5, 0xb4, 0x3f, 0x49, + 0xf0, 0xc5, 0x1a, 0x37, 0xa1, 0xb4, 0xb4, 0xd1, 0x1b, 0xb1, 0x70, 0xd2, 0x8f, 0x84, 0x81, 0x52, + 0xe5, 0xfe, 0x06, 0xe8, 0xb2, 0xab, 0xda, 0x5e, 0x14, 0x37, 0x44, 0xad, 0x5d, 0x9c, 0xac, 0x86, + 0xf8, 0x21, 0xa4, 0xa3, 0x68, 0x2c, 0xac, 0x16, 0x2a, 0x7b, 0xea, 0xe2, 0xce, 0xa9, 0xc9, 0x9d, + 0x53, 0xf5, 0xe5, 0x9d, 0xb3, 0x79, 0x95, 0xa2, 0x41, 0x71, 0xad, 0xd9, 0xba, 0xbf, 0x2c, 0xa4, + 0xeb, 0xce, 0x19, 0x92, 0xb8, 0xd1, 0x17, 0x8e, 0x65, 0xa2, 0x94, 0x72, 0x01, 0xff, 0x9c, 0xc6, + 0xfd, 0x71, 0x10, 0x5d, 0x5b, 0x23, 0x87, 0x86, 0xaf, 0x82, 0x21, 0x75, 0x66, 0x74, 0x88, 0x6b, + 0xb0, 0xfb, 0x32, 0xa6, 0x31, 0x0d, 0xa6, 0x7e, 0x6f, 0x10, 0x7b, 0x3e, 0x8d, 0x84, 0xe9, 0x9f, + 0x12, 0x94, 0x12, 0x45, 0x4d, 0x08, 0x94, 0x2f, 0x12, 0xa0, 0xcd, 0xe6, 0xf8, 0x10, 0xe4, 0x28, + 0xa0, 0xa1, 0xe8, 0xf6, 0xfd, 0x44, 0x36, 0xcb, 0xd5, 0x4e, 0x40, 0xc3, 0xe3, 0x2d, 0x5b, 0x68, + 0xf0, 0x53, 0x90, 0xe7, 0x33, 0x3a, 0x14, 0xb3, 0x2e, 0x54, 0xee, 0xfd, 0x42, 0xcb, 0x7d, 0x70, + 0x29, 0x97, 0x28, 0x4f, 0x40, 0xe6, 0xad, 0x36, 0x2f, 0x45, 0x0e, 0xe4, 0x63, 0xe3, 0xe8, 0x78, + 0xf1, 0x8f, 0xb7, 0x89, 0x6e, 0xb8, 0x6d, 0x94, 0xe2, 0x73, 0x6a, 0x59, 0x5d, 0x94, 0xae, 0x15, + 0xa1, 0xe0, 0xd1, 0x79, 0xe0, 0x4f, 0x85, 0xc1, 0xda, 0xf3, 0x8b, 0x43, 0x3f, 0x88, 0x2e, 0xe3, + 0x81, 0x3a, 0x64, 0x13, 0x4d, 0x9c, 0xce, 0x42, 0x7f, 0xb1, 0xd0, 0x6e, 0x9e, 0x4e, 0x9f, 0x4e, + 0xb5, 0xd9, 0xe0, 0x91, 0xcf, 0xb4, 0xb5, 0xd7, 0x74, 0x90, 0x11, 0x13, 0x7b, 0xfc, 0x2d, 0x00, + 0x00, 0xff, 0xff, 0x52, 0x5d, 0xa0, 0x56, 0x65, 0x05, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/identifier.pb.go b/flyteidl/gen/pb-go/flyteidl/core/identifier.pb.go index 0fc64f4902..f620d06bd4 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/identifier.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/identifier.pb.go @@ -5,8 +5,9 @@ package core import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -362,35 +363,35 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/identifier.proto", fileDescriptor_adfa846a86e1fa0c) } var fileDescriptor_adfa846a86e1fa0c = []byte{ - // 465 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x53, 0xc1, 0x6e, 0xd3, 0x40, - 0x10, 0xc5, 0x69, 0x48, 0xd2, 0x49, 0x42, 0xcd, 0x1e, 0x88, 0x51, 0x24, 0x54, 0x19, 0x09, 0x55, - 0x95, 0xb0, 0xa5, 0x80, 0x38, 0x63, 0xda, 0x54, 0x58, 0x0d, 0x69, 0xe5, 0x38, 0x8a, 0xc4, 0x25, - 0x72, 0xec, 0x89, 0x59, 0x92, 0xec, 0x5a, 0xeb, 0x0d, 0xe0, 0x0b, 0x12, 0x3f, 0xc4, 0x67, 0xf0, - 0x5d, 0x68, 0x5d, 0xa7, 0x75, 0xa2, 0x14, 0x2e, 0xbd, 0x79, 0xe6, 0xbd, 0x9d, 0xf7, 0x66, 0x3c, - 0x03, 0x2f, 0xe6, 0xcb, 0x4c, 0x22, 0x8d, 0x96, 0x76, 0xc8, 0x05, 0xda, 0x34, 0x42, 0x26, 0xe9, - 0x9c, 0xa2, 0xb0, 0x12, 0xc1, 0x25, 0x27, 0xed, 0x0d, 0x6e, 0x29, 0xdc, 0xfc, 0xad, 0x01, 0xb8, - 0xb7, 0x1c, 0xf2, 0x1e, 0xda, 0x02, 0x53, 0xbe, 0x16, 0x21, 0x4e, 0x65, 0x96, 0xa0, 0xa1, 0x1d, - 0x6b, 0x27, 0x4f, 0x7a, 0x5d, 0x6b, 0xeb, 0x95, 0xe5, 0x15, 0x1c, 0x3f, 0x4b, 0xd0, 0x6b, 0x89, - 0x52, 0x44, 0x0c, 0xa8, 0x27, 0x82, 0x7f, 0xc5, 0x50, 0x1a, 0x95, 0x63, 0xed, 0xe4, 0xd0, 0xdb, - 0x84, 0xe4, 0x19, 0xd4, 0x22, 0xbe, 0x0a, 0x28, 0x33, 0x0e, 0x72, 0xa0, 0x88, 0x08, 0x81, 0x2a, - 0x0b, 0x56, 0x68, 0x54, 0xf3, 0x6c, 0xfe, 0xad, 0xaa, 0x7c, 0x43, 0x91, 0x52, 0xce, 0x8c, 0xc7, - 0x37, 0x55, 0x8a, 0xd0, 0x0c, 0xa1, 0x3b, 0xe1, 0x62, 0x31, 0x5f, 0xf2, 0xef, 0xfd, 0x1f, 0x18, - 0xae, 0x25, 0xe5, 0xac, 0xd4, 0x40, 0x49, 0x5e, 0xbb, 0x4f, 0xbe, 0xf2, 0x3f, 0x79, 0xf3, 0x97, - 0x06, 0x9d, 0x21, 0x8f, 0x70, 0x9f, 0x42, 0x07, 0xea, 0x8c, 0x47, 0x38, 0xa5, 0x51, 0xa1, 0x50, - 0x53, 0xa1, 0x1b, 0x91, 0x4f, 0xd0, 0xc2, 0x0d, 0x5f, 0xa1, 0x4a, 0xa6, 0xd9, 0x3b, 0xdd, 0x19, - 0xdd, 0x3f, 0xcc, 0x7b, 0x4d, 0xbc, 0x4b, 0x9a, 0x7f, 0x34, 0xe8, 0xf8, 0x41, 0xba, 0xd8, 0xe7, - 0xa1, 0x07, 0x75, 0x19, 0xa4, 0x8b, 0x8d, 0x87, 0x66, 0xef, 0xf9, 0x8e, 0x4a, 0xa9, 0x68, 0x4d, - 0x31, 0xdd, 0x88, 0x78, 0xf0, 0x34, 0xf7, 0xbd, 0xc7, 0xe3, 0xab, 0x9d, 0xd7, 0xf7, 0xb4, 0xee, - 0x1d, 0xb1, 0x6d, 0x80, 0xbc, 0x54, 0xeb, 0x22, 0x45, 0x36, 0x0d, 0xa4, 0xc4, 0x55, 0x22, 0xf3, - 0x3f, 0xdb, 0x56, 0x1b, 0x21, 0x45, 0xe6, 0xdc, 0xe4, 0xcc, 0x9f, 0xa0, 0x8f, 0x68, 0xcc, 0x82, - 0x65, 0xa9, 0x81, 0x2e, 0x1c, 0xa6, 0x79, 0xee, 0x6e, 0x8c, 0x8d, 0xb4, 0x20, 0x3d, 0xf0, 0x20, - 0x4f, 0xc7, 0xd0, 0x2a, 0xef, 0x2b, 0x39, 0x82, 0xe6, 0x78, 0x38, 0xba, 0xee, 0x9f, 0xb9, 0x17, - 0x6e, 0xff, 0x5c, 0x7f, 0x44, 0x1a, 0x50, 0xf5, 0x9d, 0xd1, 0xa5, 0xae, 0x91, 0x16, 0x34, 0x26, - 0x57, 0xde, 0xe5, 0xc5, 0xe0, 0x6a, 0xa2, 0x57, 0x14, 0x71, 0xe0, 0x8c, 0x87, 0x67, 0x1f, 0xa7, - 0xd7, 0x03, 0x67, 0xa8, 0x1f, 0x90, 0x26, 0xd4, 0xcf, 0x1d, 0xdf, 0x19, 0xf5, 0x7d, 0xbd, 0xfa, - 0xe1, 0xdd, 0xe7, 0xb7, 0x31, 0x95, 0x5f, 0xd6, 0x33, 0x2b, 0xe4, 0x2b, 0x3b, 0xf7, 0xc6, 0x45, - 0x6c, 0xdf, 0x9e, 0x5f, 0x8c, 0xcc, 0x4e, 0x66, 0xaf, 0x63, 0x6e, 0x6f, 0x5d, 0xe4, 0xac, 0x96, - 0xdf, 0xe1, 0x9b, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe4, 0x5c, 0x4c, 0x03, 0xa9, 0x03, 0x00, - 0x00, + // 467 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x53, 0x41, 0x8f, 0xd2, 0x50, + 0x10, 0xb6, 0x2c, 0x02, 0x3b, 0x05, 0xb7, 0xbe, 0x83, 0xd4, 0x90, 0x98, 0x4d, 0x4d, 0xcc, 0x66, + 0x13, 0xdb, 0x04, 0x6f, 0xc6, 0x83, 0x75, 0x97, 0x8d, 0xcd, 0x22, 0xbb, 0x29, 0x25, 0x24, 0x5e, + 0x48, 0x69, 0x87, 0xfa, 0x04, 0xfa, 0x9a, 0xd7, 0x87, 0xda, 0x8b, 0x89, 0x7f, 0xc8, 0x9f, 0xe1, + 0xef, 0x32, 0xaf, 0x94, 0xdd, 0x42, 0x40, 0x2f, 0x7b, 0xeb, 0xcc, 0xf7, 0xbd, 0xf9, 0xbe, 0x99, + 0xce, 0xc0, 0x8b, 0xd9, 0x22, 0x13, 0x48, 0xc3, 0x85, 0x15, 0x30, 0x8e, 0x16, 0x0d, 0x31, 0x16, + 0x74, 0x46, 0x91, 0x9b, 0x09, 0x67, 0x82, 0x91, 0xd6, 0x06, 0x37, 0x25, 0x6e, 0xfc, 0x56, 0x00, + 0x9c, 0x3b, 0x0e, 0x79, 0x0f, 0x2d, 0x8e, 0x29, 0x5b, 0xf1, 0x00, 0x27, 0x22, 0x4b, 0x50, 0x57, + 0x4e, 0x95, 0xb3, 0x27, 0xdd, 0x8e, 0xb9, 0xf5, 0xca, 0x74, 0x0b, 0x8e, 0x97, 0x25, 0xe8, 0x36, + 0x79, 0x29, 0x22, 0x3a, 0xd4, 0x13, 0xce, 0xbe, 0x62, 0x20, 0xf4, 0xca, 0xa9, 0x72, 0x76, 0xec, + 0x6e, 0x42, 0xf2, 0x0c, 0x6a, 0x21, 0x5b, 0xfa, 0x34, 0xd6, 0x8f, 0x72, 0xa0, 0x88, 0x08, 0x81, + 0x6a, 0xec, 0x2f, 0x51, 0xaf, 0xe6, 0xd9, 0xfc, 0x5b, 0x56, 0xf9, 0x86, 0x3c, 0xa5, 0x2c, 0xd6, + 0x1f, 0xaf, 0xab, 0x14, 0xa1, 0x11, 0x40, 0x67, 0xcc, 0xf8, 0x7c, 0xb6, 0x60, 0xdf, 0x7b, 0x3f, + 0x30, 0x58, 0x09, 0xca, 0xe2, 0x52, 0x03, 0x25, 0x79, 0xe5, 0x90, 0x7c, 0xe5, 0x7f, 0xf2, 0xc6, + 0x2f, 0x05, 0xda, 0x03, 0x16, 0xe2, 0x3e, 0x85, 0x36, 0xd4, 0x63, 0x16, 0xe2, 0x84, 0x86, 0x85, + 0x42, 0x4d, 0x86, 0x4e, 0x48, 0x3e, 0x41, 0x13, 0x37, 0x7c, 0x89, 0x4a, 0x19, 0xb5, 0x7b, 0xbe, + 0x33, 0xba, 0x7f, 0x98, 0x77, 0x55, 0xbc, 0x4f, 0x1a, 0x7f, 0x14, 0x68, 0x7b, 0x7e, 0x3a, 0xdf, + 0xe7, 0xa1, 0x0b, 0x75, 0xe1, 0xa7, 0xf3, 0x8d, 0x07, 0xb5, 0xfb, 0x7c, 0x47, 0xa5, 0x54, 0xb4, + 0x26, 0x99, 0x4e, 0x48, 0x5c, 0x78, 0x9a, 0xfb, 0xde, 0xe3, 0xf1, 0xd5, 0xce, 0xeb, 0x03, 0xad, + 0xbb, 0x27, 0xf1, 0x36, 0x40, 0x5e, 0xca, 0x75, 0x11, 0x3c, 0x9b, 0xf8, 0x42, 0xe0, 0x32, 0x11, + 0xf9, 0x9f, 0x6d, 0xc9, 0x8d, 0x10, 0x3c, 0xb3, 0xd7, 0x39, 0xe3, 0x27, 0x68, 0x43, 0x1a, 0xc5, + 0xfe, 0xa2, 0xd4, 0x40, 0x07, 0x8e, 0xd3, 0x3c, 0x77, 0x3f, 0xc6, 0x46, 0x5a, 0x90, 0x1e, 0x78, + 0x90, 0xe7, 0x23, 0x68, 0x96, 0xf7, 0x95, 0x9c, 0x80, 0x3a, 0x1a, 0x0c, 0x6f, 0x7b, 0x17, 0xce, + 0x95, 0xd3, 0xbb, 0xd4, 0x1e, 0x91, 0x06, 0x54, 0x3d, 0x7b, 0x78, 0xad, 0x29, 0xa4, 0x09, 0x8d, + 0xf1, 0x8d, 0x7b, 0x7d, 0xd5, 0xbf, 0x19, 0x6b, 0x15, 0x49, 0xec, 0xdb, 0xa3, 0xc1, 0xc5, 0xc7, + 0xc9, 0x6d, 0xdf, 0x1e, 0x68, 0x47, 0x44, 0x85, 0xfa, 0xa5, 0xed, 0xd9, 0xc3, 0x9e, 0xa7, 0x55, + 0x3f, 0xbc, 0xfb, 0xfc, 0x36, 0xa2, 0xe2, 0xcb, 0x6a, 0x6a, 0x06, 0x6c, 0x69, 0xe5, 0xde, 0x18, + 0x8f, 0xd6, 0x1f, 0xd6, 0xdd, 0x11, 0x46, 0x18, 0x5b, 0xc9, 0xf4, 0x75, 0xc4, 0xac, 0xad, 0xbb, + 0x9c, 0xd6, 0xf2, 0x6b, 0x7c, 0xf3, 0x37, 0x00, 0x00, 0xff, 0xff, 0x4a, 0x34, 0xd8, 0xe0, 0xaf, + 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/interface.pb.go b/flyteidl/gen/pb-go/flyteidl/core/interface.pb.go index 5bca18cb45..2fe384bdfc 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/interface.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/interface.pb.go @@ -5,8 +5,9 @@ package core import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -306,32 +307,32 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/interface.proto", fileDescriptor_cd7be6cbe85c3def) } var fileDescriptor_cd7be6cbe85c3def = []byte{ - // 425 bytes of a gzipped FileDescriptorProto + // 426 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, 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, + 0x9a, 0x40, 0xf4, 0x41, 0x8a, 0x4f, 0x05, 0xb1, 0xa2, 0x82, 0x0c, 0x7e, 0x80, 0xf8, 0x32, 0xd9, + 0xdc, 0x4d, 0x07, 0xd3, 0xcc, 0x38, 0x99, 0x04, 0xe2, 0xef, 0xf0, 0x6f, 0xf8, 0xe6, 0x0f, 0x94, + 0x7c, 0x36, 0x59, 0x1a, 0x7c, 0x9b, 0x3b, 0xe7, 0x9c, 0x9c, 0x93, 0x39, 0x5c, 0x78, 0xba, 0x4b, + 0x2b, 0x83, 0x22, 0x4e, 0x83, 0xad, 0xd4, 0x18, 0x88, 0xcc, 0xa0, 0xde, 0xf1, 0x2d, 0xfa, 0x4a, + 0x4b, 0x23, 0xe9, 0xfd, 0x1e, 0xf6, 0x6b, 0xd8, 0x79, 0x32, 0x65, 0x9b, 0x4a, 0x61, 0xde, 0x32, + 0x9d, 0x93, 0x29, 0x94, 0x0a, 0x83, 0x9a, 0xa7, 0x1d, 0xea, 0x7d, 0x87, 0xd5, 0x17, 0xae, 0x05, + 0x8f, 0x52, 0xa4, 0x3e, 0xdc, 0xa9, 0x85, 0x36, 0x71, 0xc9, 0xc6, 0x0a, 0x1d, 0x7f, 0x62, 0xe1, + 0xbf, 0x6f, 0x85, 0x9f, 0x2a, 0x85, 0xac, 0xe1, 0x51, 0x17, 0xac, 0x18, 0xf3, 0xad, 0x16, 0xca, + 0x08, 0x99, 0xd9, 0x0b, 0x97, 0x6c, 0xd6, 0x6c, 0x7c, 0xe5, 0xfd, 0x21, 0x60, 0xf5, 0x9f, 0xff, + 0xc0, 0x15, 0x7d, 0x03, 0xeb, 0xb2, 0x1b, 0x73, 0x9b, 0xb8, 0xcb, 0x8d, 0x15, 0x9e, 0xee, 0xd9, + 0x8c, 0xe8, 0xc3, 0x39, 0x7f, 0x9d, 0x19, 0x5d, 0xb1, 0x1b, 0xad, 0xf3, 0x19, 0x8e, 0xa7, 0x20, + 0x7d, 0x08, 0xcb, 0x1f, 0x58, 0x35, 0xd9, 0xd7, 0xac, 0x3e, 0xd2, 0x33, 0xb8, 0x5b, 0xf2, 0xb4, + 0xc0, 0x26, 0x98, 0x15, 0x3e, 0x9e, 0x31, 0x62, 0x2d, 0xeb, 0x7c, 0xf1, 0x92, 0x78, 0xbf, 0xe0, + 0xb8, 0xfe, 0xbf, 0xf8, 0x6d, 0xff, 0xda, 0x34, 0x84, 0x43, 0x91, 0xa9, 0xc2, 0xe4, 0x33, 0xaf, + 0x32, 0x8a, 0xcb, 0x3a, 0x26, 0x7d, 0x01, 0x47, 0xb2, 0x30, 0x8d, 0x68, 0xf1, 0x5f, 0x51, 0x4f, + 0xf5, 0x7e, 0x13, 0x58, 0x7f, 0xe4, 0x9a, 0x5f, 0xa3, 0x41, 0x4d, 0x4f, 0x61, 0x59, 0x72, 0xdd, + 0x99, 0xce, 0x46, 0xaf, 0x39, 0x34, 0x84, 0xa3, 0x18, 0x77, 0xbc, 0x48, 0x4d, 0x67, 0xf7, 0xe8, + 0xf6, 0xe6, 0x2e, 0x0f, 0x58, 0x4f, 0xa4, 0x27, 0xb0, 0xd2, 0xf8, 0xb3, 0x10, 0x1a, 0x63, 0x7b, + 0xe9, 0x92, 0xcd, 0xea, 0xf2, 0x80, 0x0d, 0x37, 0x17, 0x00, 0xab, 0x08, 0xaf, 0x78, 0x29, 0xa4, + 0xf6, 0xfe, 0x12, 0xb8, 0x37, 0xc4, 0xaa, 0x3b, 0x7c, 0x07, 0xa0, 0xfa, 0xb9, 0x2f, 0xf1, 0xd9, + 0x9e, 0xe3, 0x58, 0x70, 0x33, 0x74, 0x35, 0x8e, 0xe4, 0xce, 0x57, 0x78, 0xb0, 0x07, 0xdf, 0x52, + 0xa4, 0x3f, 0x2d, 0xd2, 0x9e, 0x33, 0x1b, 0x35, 0x79, 0xf1, 0xea, 0xdb, 0x79, 0x22, 0xcc, 0x55, + 0x11, 0xf9, 0x5b, 0x79, 0x1d, 0x34, 0x02, 0xa9, 0x93, 0xf6, 0x10, 0x0c, 0x1b, 0x91, 0x60, 0x16, + 0xa8, 0xe8, 0x2c, 0x91, 0xc1, 0x64, 0x49, 0xa2, 0xc3, 0x66, 0x39, 0x9e, 0xff, 0x0b, 0x00, 0x00, + 0xff, 0xff, 0x80, 0x20, 0x83, 0x61, 0x85, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/literals.pb.go b/flyteidl/gen/pb-go/flyteidl/core/literals.pb.go index 00f96bdf6f..967f5e9e54 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/literals.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/literals.pb.go @@ -5,11 +5,12 @@ package core import ( fmt "fmt" + math "math" + 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" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -1308,72 +1309,72 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/literals.proto", fileDescriptor_a1a523b10667cdfb) } var fileDescriptor_a1a523b10667cdfb = []byte{ - // 1066 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x56, 0xdd, 0x6e, 0x1b, 0x45, - 0x14, 0xf6, 0xda, 0x8e, 0x7f, 0x8e, 0x13, 0x44, 0x86, 0x84, 0x6e, 0x4c, 0x29, 0x66, 0xa9, 0x84, - 0xab, 0x12, 0xbb, 0xa4, 0x55, 0x88, 0xc2, 0x9d, 0x9b, 0x12, 0x57, 0x50, 0xb5, 0xd9, 0x94, 0x22, - 0x21, 0xa4, 0x68, 0x6c, 0x4f, 0x36, 0xa3, 0xac, 0x77, 0xac, 0xd9, 0x71, 0xa4, 0x7d, 0x02, 0xde, - 0x84, 0x4b, 0x2e, 0x78, 0x0c, 0x9e, 0x86, 0x47, 0x40, 0xf3, 0xb7, 0x5e, 0xef, 0x6e, 0xd2, 0xf6, - 0x6e, 0x76, 0xce, 0x77, 0xfe, 0xcf, 0x77, 0x76, 0xe0, 0xfe, 0x65, 0x98, 0x08, 0x42, 0x67, 0xe1, - 0x70, 0xca, 0x38, 0x19, 0x86, 0x54, 0x10, 0x8e, 0xc3, 0x78, 0xb0, 0xe0, 0x4c, 0x30, 0xb4, 0x65, - 0xa5, 0x03, 0x29, 0xed, 0x7e, 0x15, 0x30, 0x16, 0x84, 0x64, 0xa8, 0x84, 0x93, 0xe5, 0xe5, 0x50, - 0xd0, 0x39, 0x89, 0x05, 0x9e, 0x2f, 0x34, 0xbe, 0xfb, 0x20, 0x0f, 0x98, 0x2d, 0x39, 0x16, 0x94, - 0x45, 0x46, 0x7e, 0x3f, 0x2f, 0x8f, 0x05, 0x5f, 0x4e, 0x85, 0x91, 0xee, 0xad, 0xc7, 0x22, 0x92, - 0x05, 0x31, 0x81, 0x78, 0x7f, 0x56, 0xa1, 0xfd, 0x86, 0xd3, 0x39, 0x15, 0xf4, 0x86, 0xa0, 0x2e, - 0x34, 0x69, 0x24, 0x48, 0x40, 0xb8, 0xeb, 0xf4, 0x9c, 0x7e, 0x6d, 0x5c, 0xf1, 0xed, 0x05, 0xfa, - 0x1a, 0x3a, 0x97, 0x21, 0xc3, 0xe2, 0xe2, 0x06, 0x87, 0x4b, 0xe2, 0x56, 0x7b, 0x4e, 0xdf, 0x19, - 0x57, 0x7c, 0x50, 0x97, 0xef, 0xe4, 0x1d, 0xfa, 0x06, 0x36, 0x63, 0xc1, 0x69, 0x14, 0x18, 0x4c, - 0xad, 0xe7, 0xf4, 0xdb, 0xe3, 0x8a, 0xdf, 0xd1, 0xb7, 0x1a, 0xd4, 0x85, 0xe6, 0x84, 0xb1, 0x90, - 0xe0, 0xc8, 0xad, 0xf7, 0x9c, 0x7e, 0x4b, 0xfa, 0x30, 0x17, 0xe8, 0x08, 0x5a, 0x33, 0x2c, 0x88, - 0xcc, 0xde, 0xdd, 0xe8, 0x39, 0xfd, 0xce, 0x41, 0x77, 0xa0, 0x33, 0x1b, 0xd8, 0xcc, 0x06, 0x6f, - 0x6d, 0x69, 0xc6, 0x15, 0x3f, 0x45, 0xa3, 0x1f, 0xa0, 0x65, 0x4b, 0xe2, 0x36, 0x94, 0xe6, 0x5e, - 0x41, 0xf3, 0xc4, 0x00, 0x94, 0xa2, 0x39, 0x8f, 0x9a, 0xb0, 0xa1, 0x82, 0xf5, 0x1a, 0x50, 0x7f, - 0xc7, 0xe8, 0xcc, 0x3b, 0x83, 0xfa, 0x28, 0x64, 0x13, 0x69, 0x71, 0x4e, 0x04, 0x9e, 0x61, 0x81, - 0x55, 0x31, 0x3a, 0x07, 0x5f, 0x0c, 0xd6, 0xba, 0x36, 0x90, 0xb0, 0x57, 0x06, 0xe2, 0xa7, 0x60, - 0xf4, 0x29, 0xd4, 0x96, 0x9c, 0xea, 0xe4, 0x7d, 0x79, 0xf4, 0x7e, 0x84, 0xcd, 0x2c, 0x16, 0x3d, - 0x86, 0xba, 0xec, 0x81, 0x31, 0x7b, 0xaf, 0xc4, 0xec, 0xdb, 0x64, 0x41, 0x7c, 0x05, 0xf2, 0x9e, - 0x40, 0x63, 0x44, 0x23, 0xcc, 0x13, 0xb4, 0x63, 0x42, 0x55, 0x7a, 0x9b, 0xbe, 0xfe, 0x90, 0xee, - 0x04, 0x0e, 0x54, 0x3f, 0xda, 0xbe, 0x3c, 0x7a, 0x2f, 0xa1, 0x71, 0x3e, 0xbd, 0x22, 0xf3, 0x34, - 0x14, 0x27, 0x0d, 0x05, 0xed, 0x1b, 0xd7, 0x35, 0x53, 0xa3, 0x75, 0xd7, 0x5a, 0x2d, 0xe3, 0x9c, - 0xc0, 0xc6, 0xaf, 0x11, 0x65, 0x11, 0xfa, 0x2e, 0xeb, 0xbb, 0x73, 0xf0, 0x79, 0x4e, 0xf1, 0x17, - 0x3d, 0xde, 0x36, 0xa6, 0x81, 0xf1, 0x52, 0x35, 0x3d, 0x2c, 0x05, 0x67, 0xdc, 0x24, 0xb0, 0x77, - 0xae, 0x06, 0x76, 0xc9, 0xc9, 0xec, 0x04, 0x0b, 0x1c, 0x13, 0x91, 0x56, 0xeb, 0x0f, 0xb8, 0x17, - 0xa7, 0xc2, 0x8b, 0x99, 0x96, 0x5e, 0x64, 0x0a, 0xf8, 0x30, 0x9f, 0x45, 0xde, 0x94, 0xf2, 0xb4, - 0x1b, 0x97, 0x5d, 0x7b, 0xd7, 0xb0, 0x5d, 0xc0, 0x97, 0xd4, 0xed, 0x24, 0x33, 0x0d, 0x3a, 0xab, - 0xfe, 0xfb, 0xbc, 0x16, 0x47, 0xc3, 0xfb, 0xaf, 0x26, 0x5b, 0x83, 0x43, 0xcc, 0xd1, 0x11, 0xb4, - 0x17, 0x96, 0x77, 0x26, 0x0f, 0x37, 0x67, 0x31, 0xe5, 0xe5, 0xb8, 0xe2, 0xaf, 0xc0, 0xe8, 0x11, - 0xd4, 0x27, 0x21, 0x9b, 0x98, 0x30, 0x3e, 0x2b, 0x99, 0x9e, 0x71, 0xc5, 0x57, 0x10, 0x34, 0x84, - 0xc6, 0x44, 0xcd, 0x8e, 0xe9, 0xf7, 0x6e, 0x1e, 0xac, 0x84, 0xe3, 0x8a, 0x6f, 0x60, 0x52, 0x21, - 0x56, 0x33, 0xa0, 0xb8, 0x59, 0x54, 0xd0, 0x03, 0x22, 0x15, 0x34, 0x0c, 0x1d, 0x40, 0x3b, 0x62, - 0x11, 0xd1, 0xed, 0xd8, 0x28, 0x8d, 0x48, 0xb2, 0x4a, 0x52, 0x4e, 0xe2, 0x64, 0xc9, 0xe5, 0x2c, - 0x11, 0xce, 0x19, 0x37, 0x44, 0xdd, 0xc9, 0xe1, 0x5f, 0x48, 0xd9, 0xb8, 0xe2, 0x6b, 0x10, 0x7a, - 0x0a, 0xcd, 0x80, 0x44, 0x84, 0xd3, 0xa9, 0xdb, 0x34, 0x7c, 0xc9, 0x13, 0x5b, 0x97, 0x5e, 0x2e, - 0x12, 0x83, 0x44, 0x67, 0x80, 0x8a, 0x33, 0xe3, 0xb6, 0x94, 0x7e, 0xef, 0x7d, 0x8d, 0x1b, 0x57, - 0xfc, 0xed, 0xc2, 0xb0, 0xc8, 0xa8, 0x97, 0x92, 0x0a, 0x6e, 0xbb, 0x34, 0x6a, 0x45, 0x13, 0x19, - 0xb5, 0x02, 0xad, 0xd6, 0xca, 0xbf, 0x0e, 0x34, 0xcd, 0xc0, 0xeb, 0xea, 0xca, 0xee, 0x9b, 0x86, - 0x17, 0xab, 0x2b, 0x85, 0xba, 0xba, 0x6a, 0x48, 0x46, 0x00, 0x53, 0x16, 0x86, 0x64, 0xaa, 0xf6, - 0x5a, 0xb5, 0x34, 0x7c, 0x63, 0xfc, 0x79, 0x8a, 0x93, 0x4b, 0x79, 0xa5, 0x85, 0xf6, 0xa1, 0x36, - 0xc7, 0x8b, 0x5b, 0x08, 0x6f, 0x94, 0x5f, 0x61, 0xb9, 0x4d, 0x25, 0x0e, 0x21, 0xa8, 0x5f, 0xe1, - 0xf8, 0x4a, 0xf5, 0xbf, 0xed, 0xab, 0xf3, 0x2a, 0x99, 0x53, 0xd8, 0x2e, 0xb8, 0x43, 0x07, 0xd0, - 0xb2, 0x7f, 0x37, 0xd7, 0xe9, 0xd5, 0xee, 0xd8, 0x0e, 0x29, 0xce, 0xfb, 0xcb, 0x01, 0x58, 0xf9, - 0x46, 0xcf, 0x0b, 0x26, 0xbe, 0xbd, 0x35, 0x50, 0x7b, 0x8c, 0x5f, 0x44, 0x82, 0x27, 0x2b, 0x9b, - 0xdd, 0x73, 0xd8, 0x5a, 0x13, 0x49, 0x16, 0x5f, 0x93, 0xc4, 0xb2, 0xf8, 0x9a, 0x24, 0xab, 0x2d, - 0x56, 0xfd, 0x80, 0x2d, 0x76, 0x5c, 0x3d, 0x72, 0xbc, 0xd7, 0xb0, 0x3b, 0xa2, 0xd1, 0x8c, 0x46, - 0x81, 0x9c, 0x83, 0x4c, 0xd6, 0x87, 0xd0, 0x9a, 0x68, 0x81, 0x0d, 0xb9, 0x5b, 0x24, 0x97, 0xd5, - 0xf3, 0x53, 0xac, 0xf7, 0x8f, 0x03, 0x9f, 0x64, 0x24, 0x32, 0xfb, 0xd3, 0x82, 0xa9, 0xc7, 0xb7, - 0x9b, 0x92, 0x15, 0x30, 0x9f, 0xb6, 0x02, 0x56, 0xb9, 0xfb, 0x1b, 0x6c, 0xad, 0x89, 0x4a, 0x2a, - 0xf0, 0x64, 0xbd, 0x02, 0x77, 0xc5, 0x9c, 0xa9, 0xc2, 0x29, 0xb4, 0xd5, 0x7c, 0xbf, 0x8c, 0x2e, - 0x19, 0x3a, 0x06, 0x10, 0x98, 0x07, 0x7a, 0x7f, 0x9a, 0x49, 0xbe, 0x6b, 0xc5, 0x67, 0xd0, 0xde, - 0xdf, 0x55, 0xe8, 0x64, 0x7c, 0x7c, 0x3c, 0x23, 0x7e, 0x2a, 0x61, 0xc4, 0xc3, 0xdb, 0x93, 0xb8, - 0x95, 0x15, 0xc7, 0xd0, 0x5c, 0x70, 0x36, 0xa7, 0xb1, 0xfd, 0x15, 0x3e, 0xc8, 0x19, 0x79, 0xbd, - 0x14, 0x8b, 0xa5, 0xf0, 0xc9, 0x25, 0xe1, 0x24, 0x9a, 0xca, 0x15, 0x6c, 0x15, 0xd0, 0xf7, 0x9a, - 0x51, 0x7a, 0x43, 0x7e, 0x79, 0x67, 0xab, 0x2c, 0xab, 0x06, 0x76, 0x79, 0x6c, 0x94, 0x6e, 0xfa, - 0xb4, 0xb8, 0x85, 0xf5, 0x71, 0x06, 0x4d, 0x63, 0x51, 0x36, 0xf3, 0xc6, 0x14, 0xaa, 0xed, 0xcb, - 0x23, 0x7a, 0x06, 0x4d, 0xd3, 0xfb, 0x0f, 0x68, 0xa7, 0x85, 0x7a, 0x87, 0xb0, 0xf9, 0x33, 0x49, - 0xd4, 0x63, 0xec, 0x0d, 0xa6, 0xbc, 0x64, 0x48, 0x76, 0xb2, 0x43, 0xd2, 0x36, 0x83, 0xe0, 0x3d, - 0x82, 0x2d, 0x9f, 0x08, 0x9e, 0x9c, 0x0b, 0x8e, 0x05, 0x09, 0x12, 0xe4, 0x42, 0x93, 0x13, 0xc1, - 0x29, 0x89, 0x55, 0x5a, 0x5b, 0xbe, 0xfd, 0x1c, 0x1d, 0xfe, 0xfe, 0x2c, 0xa0, 0xe2, 0x6a, 0x39, - 0x19, 0x4c, 0xd9, 0x7c, 0xa8, 0x62, 0x62, 0x3c, 0x18, 0xa6, 0xcf, 0xd0, 0x80, 0x44, 0xc3, 0xc5, - 0x64, 0x3f, 0x60, 0xc3, 0xb5, 0x97, 0xe9, 0xa4, 0xa1, 0x56, 0xfa, 0xd3, 0xff, 0x03, 0x00, 0x00, - 0xff, 0xff, 0xea, 0x75, 0xf9, 0xee, 0x3d, 0x0b, 0x00, 0x00, + // 1069 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x56, 0xdd, 0x6e, 0x1b, 0xc5, + 0x17, 0xf7, 0xda, 0x8e, 0x3f, 0x8e, 0x93, 0xbf, 0xfe, 0x19, 0x12, 0xba, 0x31, 0xa5, 0x98, 0xa5, + 0x12, 0xae, 0x4a, 0xec, 0x92, 0xa2, 0x12, 0x05, 0xae, 0xdc, 0x94, 0xb8, 0x82, 0xaa, 0xcd, 0xa6, + 0x14, 0x09, 0x21, 0x45, 0x63, 0x7b, 0xb2, 0x19, 0x65, 0xbd, 0x63, 0xcd, 0x8e, 0x23, 0xed, 0x13, + 0xf0, 0x26, 0x5c, 0x72, 0xc1, 0x63, 0xf0, 0x34, 0x3c, 0x02, 0x9a, 0xaf, 0xf5, 0x7a, 0x77, 0x9d, + 0x96, 0xbb, 0xd9, 0x39, 0xbf, 0xf3, 0x7d, 0x7e, 0x67, 0x07, 0xee, 0x5f, 0x85, 0x89, 0x20, 0x74, + 0x16, 0x0e, 0xa7, 0x8c, 0x93, 0x61, 0x48, 0x05, 0xe1, 0x38, 0x8c, 0x07, 0x0b, 0xce, 0x04, 0x43, + 0x3b, 0x56, 0x3a, 0x90, 0xd2, 0xee, 0x67, 0x01, 0x63, 0x41, 0x48, 0x86, 0x4a, 0x38, 0x59, 0x5e, + 0x0d, 0x05, 0x9d, 0x93, 0x58, 0xe0, 0xf9, 0x42, 0xe3, 0xbb, 0x0f, 0xf2, 0x80, 0xd9, 0x92, 0x63, + 0x41, 0x59, 0x64, 0xe4, 0xf7, 0xf3, 0xf2, 0x58, 0xf0, 0xe5, 0x54, 0x18, 0xe9, 0xc1, 0x7a, 0x2c, + 0x22, 0x59, 0x10, 0x13, 0x88, 0xf7, 0x7b, 0x15, 0xda, 0x6f, 0x38, 0x9d, 0x53, 0x41, 0x6f, 0x09, + 0xea, 0x42, 0x93, 0x46, 0x82, 0x04, 0x84, 0xbb, 0x4e, 0xcf, 0xe9, 0xd7, 0xc6, 0x15, 0xdf, 0x5e, + 0xa0, 0xcf, 0xa1, 0x73, 0x15, 0x32, 0x2c, 0x2e, 0x6f, 0x71, 0xb8, 0x24, 0x6e, 0xb5, 0xe7, 0xf4, + 0x9d, 0x71, 0xc5, 0x07, 0x75, 0xf9, 0x4e, 0xde, 0xa1, 0x2f, 0x60, 0x3b, 0x16, 0x9c, 0x46, 0x81, + 0xc1, 0xd4, 0x7a, 0x4e, 0xbf, 0x3d, 0xae, 0xf8, 0x1d, 0x7d, 0xab, 0x41, 0x5d, 0x68, 0x4e, 0x18, + 0x0b, 0x09, 0x8e, 0xdc, 0x7a, 0xcf, 0xe9, 0xb7, 0xa4, 0x0f, 0x73, 0x81, 0x8e, 0xa1, 0x35, 0xc3, + 0x82, 0xc8, 0xec, 0xdd, 0xad, 0x9e, 0xd3, 0xef, 0x1c, 0x75, 0x07, 0x3a, 0xb3, 0x81, 0xcd, 0x6c, + 0xf0, 0xd6, 0x96, 0x66, 0x5c, 0xf1, 0x53, 0x34, 0xfa, 0x16, 0x5a, 0xb6, 0x24, 0x6e, 0x43, 0x69, + 0x1e, 0x14, 0x34, 0x4f, 0x0d, 0x40, 0x29, 0x9a, 0xf3, 0xa8, 0x09, 0x5b, 0x2a, 0x58, 0xaf, 0x01, + 0xf5, 0x77, 0x8c, 0xce, 0xbc, 0x73, 0xa8, 0x8f, 0x42, 0x36, 0x91, 0x16, 0xe7, 0x44, 0xe0, 0x19, + 0x16, 0x58, 0x15, 0xa3, 0x73, 0xf4, 0xc9, 0x60, 0xad, 0x6b, 0x03, 0x09, 0x7b, 0x65, 0x20, 0x7e, + 0x0a, 0x46, 0xff, 0x87, 0xda, 0x92, 0x53, 0x9d, 0xbc, 0x2f, 0x8f, 0xde, 0x77, 0xb0, 0x9d, 0xc5, + 0xa2, 0xc7, 0x50, 0x97, 0x3d, 0x30, 0x66, 0xef, 0x95, 0x98, 0x7d, 0x9b, 0x2c, 0x88, 0xaf, 0x40, + 0xde, 0x13, 0x68, 0x8c, 0x68, 0x84, 0x79, 0x82, 0xf6, 0x4c, 0xa8, 0x4a, 0x6f, 0xdb, 0xd7, 0x1f, + 0xd2, 0x9d, 0xc0, 0x81, 0xea, 0x47, 0xdb, 0x97, 0x47, 0xef, 0x25, 0x34, 0x2e, 0xa6, 0xd7, 0x64, + 0x9e, 0x86, 0xe2, 0xa4, 0xa1, 0xa0, 0x43, 0xe3, 0xba, 0x66, 0x6a, 0xb4, 0xee, 0x5a, 0xab, 0x65, + 0x9c, 0x13, 0xd8, 0xfa, 0x39, 0xa2, 0x2c, 0x42, 0x5f, 0x65, 0x7d, 0x77, 0x8e, 0x3e, 0xce, 0x29, + 0xfe, 0xa4, 0xc7, 0xdb, 0xc6, 0x34, 0x30, 0x5e, 0xaa, 0xa6, 0x87, 0xa5, 0xe0, 0x8c, 0x9b, 0x04, + 0x0e, 0x2e, 0xd4, 0xc0, 0x2e, 0x39, 0x99, 0x9d, 0x62, 0x81, 0x63, 0x22, 0xd2, 0x6a, 0xfd, 0x06, + 0xf7, 0xe2, 0x54, 0x78, 0x39, 0xd3, 0xd2, 0xcb, 0x4c, 0x01, 0x1f, 0xe6, 0xb3, 0xc8, 0x9b, 0x52, + 0x9e, 0xf6, 0xe3, 0xb2, 0x6b, 0xef, 0x06, 0x76, 0x0b, 0xf8, 0x92, 0xba, 0x9d, 0x66, 0xa6, 0x41, + 0x67, 0xd5, 0x7f, 0x9f, 0xd7, 0xe2, 0x68, 0x78, 0xff, 0xd4, 0x64, 0x6b, 0x70, 0x88, 0x39, 0x3a, + 0x86, 0xf6, 0xc2, 0xf2, 0xce, 0xe4, 0xe1, 0xe6, 0x2c, 0xa6, 0xbc, 0x1c, 0x57, 0xfc, 0x15, 0x18, + 0x3d, 0x82, 0xfa, 0x24, 0x64, 0x13, 0x13, 0xc6, 0x47, 0x25, 0xd3, 0x33, 0xae, 0xf8, 0x0a, 0x82, + 0x86, 0xd0, 0x98, 0xa8, 0xd9, 0x31, 0xfd, 0xde, 0xcf, 0x83, 0x95, 0x70, 0x5c, 0xf1, 0x0d, 0x4c, + 0x2a, 0xc4, 0x6a, 0x06, 0x14, 0x37, 0x8b, 0x0a, 0x7a, 0x40, 0xa4, 0x82, 0x86, 0xa1, 0x23, 0x68, + 0x47, 0x2c, 0x22, 0xba, 0x1d, 0x5b, 0xa5, 0x11, 0x49, 0x56, 0x49, 0xca, 0x49, 0x9c, 0x2c, 0xb9, + 0x9c, 0x25, 0xc2, 0x39, 0xe3, 0x86, 0xa8, 0x7b, 0x39, 0xfc, 0x0b, 0x29, 0x1b, 0x57, 0x7c, 0x0d, + 0x42, 0x4f, 0xa1, 0x19, 0x90, 0x88, 0x70, 0x3a, 0x75, 0x9b, 0x86, 0x2f, 0x79, 0x62, 0xeb, 0xd2, + 0xcb, 0x45, 0x62, 0x90, 0xe8, 0x1c, 0x50, 0x71, 0x66, 0xdc, 0x96, 0xd2, 0xef, 0xbd, 0xaf, 0x71, + 0xe3, 0x8a, 0xbf, 0x5b, 0x18, 0x16, 0x19, 0xf5, 0x52, 0x52, 0xc1, 0x6d, 0x97, 0x46, 0xad, 0x68, + 0x22, 0xa3, 0x56, 0xa0, 0xd5, 0x5a, 0xf9, 0xdb, 0x81, 0xa6, 0x19, 0x78, 0x5d, 0x5d, 0xd9, 0x7d, + 0xd3, 0xf0, 0x62, 0x75, 0xa5, 0x50, 0x57, 0x57, 0x0d, 0xc9, 0x08, 0x60, 0xca, 0xc2, 0x90, 0x4c, + 0xd5, 0x5e, 0xab, 0x96, 0x86, 0x6f, 0x8c, 0x3f, 0x4f, 0x71, 0x72, 0x29, 0xaf, 0xb4, 0xd0, 0x21, + 0xd4, 0xe6, 0x78, 0xb1, 0x81, 0xf0, 0x46, 0xf9, 0x15, 0x96, 0xdb, 0x54, 0xe2, 0x10, 0x82, 0xfa, + 0x35, 0x8e, 0xaf, 0x55, 0xff, 0xdb, 0xbe, 0x3a, 0xaf, 0x92, 0x39, 0x83, 0xdd, 0x82, 0x3b, 0x74, + 0x04, 0x2d, 0xfb, 0x77, 0x73, 0x9d, 0x5e, 0xed, 0x8e, 0xed, 0x90, 0xe2, 0xbc, 0x3f, 0x1c, 0x80, + 0x95, 0x6f, 0xf4, 0xbc, 0x60, 0xe2, 0xcb, 0x8d, 0x81, 0xda, 0x63, 0xfc, 0x22, 0x12, 0x3c, 0x59, + 0xd9, 0xec, 0x5e, 0xc0, 0xce, 0x9a, 0x48, 0xb2, 0xf8, 0x86, 0x24, 0x96, 0xc5, 0x37, 0x24, 0x59, + 0x6d, 0xb1, 0xea, 0x07, 0x6c, 0xb1, 0x93, 0xea, 0xb1, 0xe3, 0xbd, 0x86, 0xfd, 0x11, 0x8d, 0x66, + 0x34, 0x0a, 0xe4, 0x1c, 0x64, 0xb2, 0x7e, 0x06, 0xad, 0x89, 0x16, 0xd8, 0x90, 0xbb, 0x45, 0x72, + 0x59, 0x3d, 0x3f, 0xc5, 0x7a, 0x7f, 0x39, 0xf0, 0xbf, 0x8c, 0x44, 0x66, 0x7f, 0x56, 0x30, 0xf5, + 0x78, 0xb3, 0x29, 0x59, 0x01, 0xf3, 0x69, 0x2b, 0x60, 0x95, 0xbb, 0xbf, 0xc0, 0xce, 0x9a, 0xa8, + 0xa4, 0x02, 0x4f, 0xd6, 0x2b, 0x70, 0x57, 0xcc, 0x99, 0x2a, 0x9c, 0x41, 0x5b, 0xcd, 0xf7, 0xcb, + 0xe8, 0x8a, 0xa1, 0x13, 0x00, 0x81, 0x79, 0xa0, 0xf7, 0xa7, 0x99, 0xe4, 0xbb, 0x56, 0x7c, 0x06, + 0xed, 0xfd, 0x59, 0x85, 0x4e, 0xc6, 0xc7, 0x7f, 0x67, 0xc4, 0x0f, 0x25, 0x8c, 0x78, 0xb8, 0x39, + 0x89, 0x8d, 0xac, 0x38, 0x81, 0xe6, 0x82, 0xb3, 0x39, 0x8d, 0xed, 0xaf, 0xf0, 0x41, 0xce, 0xc8, + 0xeb, 0xa5, 0x58, 0x2c, 0x85, 0x4f, 0xae, 0x08, 0x27, 0xd1, 0x54, 0xae, 0x60, 0xab, 0x80, 0xbe, + 0xd6, 0x8c, 0xd2, 0x1b, 0xf2, 0xd3, 0x3b, 0x5b, 0x65, 0x59, 0x35, 0xb0, 0xcb, 0x63, 0xab, 0x74, + 0xd3, 0xa7, 0xc5, 0x2d, 0xac, 0x8f, 0x73, 0x68, 0x1a, 0x8b, 0xb2, 0x99, 0xb7, 0xa6, 0x50, 0x6d, + 0x5f, 0x1e, 0xd1, 0x37, 0xd0, 0x34, 0xbd, 0xff, 0x80, 0x76, 0x5a, 0xa8, 0xf7, 0x0c, 0xb6, 0x7f, + 0x24, 0x89, 0x7a, 0x8c, 0xbd, 0xc1, 0x94, 0x97, 0x0c, 0xc9, 0x5e, 0x76, 0x48, 0xda, 0x66, 0x10, + 0xbc, 0x47, 0xb0, 0xe3, 0x13, 0xc1, 0x93, 0x0b, 0xc1, 0xb1, 0x20, 0x41, 0x82, 0x5c, 0x68, 0x72, + 0x22, 0x38, 0x25, 0xb1, 0x4a, 0x6b, 0xc7, 0xb7, 0x9f, 0xa3, 0xef, 0x7f, 0x3d, 0x09, 0xa8, 0xb8, + 0x5e, 0x4e, 0x06, 0x53, 0x36, 0x1f, 0xaa, 0x98, 0x18, 0x0f, 0xf4, 0x61, 0x98, 0x3e, 0x46, 0x03, + 0x12, 0x0d, 0x17, 0x93, 0xc3, 0x80, 0x0d, 0xd7, 0xde, 0xa7, 0x93, 0x86, 0x5a, 0xec, 0x4f, 0xff, + 0x0d, 0x00, 0x00, 0xff, 0xff, 0x14, 0xe5, 0x95, 0x9d, 0x43, 0x0b, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/metrics.pb.go b/flyteidl/gen/pb-go/flyteidl/core/metrics.pb.go index 981e8ef844..776f0f787f 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/metrics.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/metrics.pb.go @@ -5,9 +5,10 @@ package core import ( fmt "fmt" + math "math" + proto "github.com/golang/protobuf/proto" timestamp "github.com/golang/protobuf/ptypes/timestamp" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -168,27 +169,27 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/metrics.proto", fileDescriptor_756935f796ae3119) } var fileDescriptor_756935f796ae3119 = []byte{ - // 338 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x4d, 0x4b, 0xeb, 0x40, - 0x14, 0x40, 0xfb, 0xdd, 0xd7, 0xc9, 0x7b, 0x9b, 0xbc, 0x4d, 0xe9, 0x83, 0x67, 0x51, 0x90, 0x2a, - 0x38, 0x03, 0xf5, 0x03, 0x5c, 0x5a, 0x10, 0x9a, 0x85, 0x2e, 0x62, 0x41, 0x70, 0x53, 0x92, 0xcc, - 0x4d, 0x1c, 0x9a, 0xcc, 0x0d, 0x33, 0x53, 0xaa, 0xbf, 0xc7, 0x3f, 0x2a, 0x33, 0x31, 0x85, 0x96, - 0x8a, 0xcb, 0xc9, 0x9c, 0x73, 0xc2, 0xcd, 0x0d, 0xf9, 0x97, 0xe6, 0xef, 0x06, 0x04, 0xcf, 0x59, - 0x82, 0x0a, 0x58, 0x01, 0x46, 0x89, 0x44, 0xd3, 0x52, 0xa1, 0x41, 0xff, 0x4f, 0x7d, 0x49, 0xed, - 0xe5, 0xe8, 0xff, 0x2e, 0x2b, 0x38, 0x48, 0x23, 0x52, 0x01, 0xaa, 0xc2, 0x47, 0x47, 0x19, 0x62, - 0x96, 0x03, 0x73, 0xa7, 0x78, 0x9d, 0x32, 0x23, 0x0a, 0xd0, 0x26, 0x2a, 0xca, 0x0a, 0x38, 0xfe, - 0x68, 0x93, 0xce, 0x53, 0x19, 0x49, 0xff, 0x96, 0x10, 0x6d, 0x22, 0x65, 0x96, 0x96, 0x18, 0x36, - 0xc7, 0xcd, 0x89, 0x37, 0x1d, 0xd1, 0x4a, 0xa7, 0xb5, 0x4e, 0x17, 0xb5, 0x1e, 0x0e, 0x1c, 0x6d, - 0xcf, 0xfe, 0x35, 0xf9, 0x05, 0x92, 0x57, 0x62, 0xeb, 0x47, 0xb1, 0x0f, 0x92, 0x3b, 0xed, 0x81, - 0x78, 0x1b, 0x54, 0xab, 0x34, 0xc7, 0xcd, 0x52, 0xf0, 0x61, 0xdb, 0x99, 0xe7, 0x74, 0x67, 0x40, - 0xfa, 0xfc, 0x45, 0xdc, 0xbf, 0x41, 0xb2, 0x36, 0x02, 0x65, 0xb0, 0x1d, 0x71, 0xde, 0x08, 0x49, - 0x1d, 0x08, 0xb8, 0x7f, 0x47, 0xfa, 0x12, 0x39, 0xd8, 0x54, 0xc7, 0xa5, 0x4e, 0xf7, 0x52, 0x8f, - 0xc8, 0xe1, 0x70, 0xa6, 0x67, 0xc5, 0x2a, 0x61, 0x22, 0xbd, 0xb2, 0x89, 0xee, 0xc1, 0xc4, 0x22, - 0xd2, 0xab, 0x6f, 0x12, 0x56, 0x0c, 0xb8, 0x7f, 0x42, 0x7e, 0x63, 0x09, 0x2a, 0xb2, 0x80, 0xed, - 0xf4, 0xc6, 0xcd, 0xc9, 0x60, 0xde, 0x08, 0xbd, 0xed, 0xd3, 0x80, 0xfb, 0x67, 0xa4, 0xab, 0xcb, - 0x48, 0xea, 0x61, 0x7f, 0xdc, 0x9e, 0x78, 0xd3, 0xbf, 0x7b, 0x6f, 0xb1, 0xfb, 0x08, 0x2b, 0x62, - 0xd6, 0x21, 0x2d, 0xc1, 0x67, 0x37, 0x2f, 0x57, 0x99, 0x30, 0xaf, 0xeb, 0x98, 0x26, 0x58, 0x30, - 0x47, 0xa3, 0xca, 0xd8, 0x76, 0xf9, 0x19, 0x48, 0x56, 0xc6, 0x17, 0x19, 0xb2, 0x9d, 0xff, 0x21, - 0xee, 0xb9, 0xef, 0x7f, 0xf9, 0x19, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x94, 0xbf, 0x5a, 0x53, 0x02, - 0x00, 0x00, + // 341 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0xdf, 0x4b, 0xeb, 0x30, + 0x14, 0x80, 0xf7, 0x7b, 0x77, 0xe9, 0xbd, 0x2f, 0xbd, 0x2f, 0x63, 0x17, 0xae, 0x43, 0x41, 0xa6, + 0x60, 0x02, 0x13, 0x1f, 0x14, 0x5f, 0x1c, 0x08, 0xeb, 0x83, 0x3e, 0xd4, 0x81, 0xe0, 0xcb, 0x68, + 0x9b, 0xd3, 0x1a, 0xd6, 0xe6, 0x94, 0x34, 0x63, 0xfa, 0xf7, 0xf8, 0x8f, 0x4a, 0x12, 0x3b, 0xd8, + 0x98, 0xf8, 0xd6, 0x34, 0xdf, 0xf7, 0x85, 0x90, 0x43, 0xfe, 0xa5, 0xf9, 0xbb, 0x06, 0xc1, 0x73, + 0x96, 0xa0, 0x02, 0x56, 0x80, 0x56, 0x22, 0xa9, 0x68, 0xa9, 0x50, 0xa3, 0xff, 0xa7, 0xde, 0xa4, + 0x66, 0x73, 0xf4, 0x7f, 0x97, 0x15, 0x1c, 0xa4, 0x16, 0xa9, 0x00, 0xe5, 0xf0, 0xd1, 0x51, 0x86, + 0x98, 0xe5, 0xc0, 0xec, 0x2a, 0x5e, 0xa7, 0x4c, 0x8b, 0x02, 0x2a, 0x1d, 0x15, 0xa5, 0x03, 0x8e, + 0x3f, 0xda, 0xa4, 0xf3, 0x54, 0x46, 0xd2, 0xbf, 0x26, 0xa4, 0xd2, 0x91, 0xd2, 0x4b, 0x43, 0x0c, + 0x9b, 0xe3, 0xe6, 0xc4, 0x9b, 0x8e, 0xa8, 0xd3, 0x69, 0xad, 0xd3, 0x45, 0xad, 0x87, 0x03, 0x4b, + 0x9b, 0xb5, 0x7f, 0x45, 0x7e, 0x81, 0xe4, 0x4e, 0x6c, 0xfd, 0x28, 0xf6, 0x41, 0x72, 0xab, 0x3d, + 0x10, 0x6f, 0x83, 0x6a, 0x95, 0xe6, 0xb8, 0x59, 0x0a, 0x3e, 0x6c, 0x5b, 0xf3, 0x9c, 0xee, 0x5c, + 0x90, 0x3e, 0x7f, 0x11, 0xf7, 0x6f, 0x90, 0xac, 0xb5, 0x40, 0x19, 0x6c, 0xaf, 0x38, 0x6f, 0x84, + 0xa4, 0x0e, 0x04, 0xdc, 0xbf, 0x23, 0x7d, 0x89, 0x1c, 0x4c, 0xaa, 0x63, 0x53, 0xa7, 0x7b, 0xa9, + 0x47, 0xe4, 0x70, 0x38, 0xd3, 0x33, 0xa2, 0x4b, 0xe8, 0xa8, 0x5a, 0x99, 0x44, 0xf7, 0x60, 0x62, + 0x11, 0x55, 0xab, 0x6f, 0x12, 0x46, 0x0c, 0xb8, 0x7f, 0x42, 0x7e, 0x63, 0x09, 0x2a, 0x32, 0x80, + 0xe9, 0xf4, 0xc6, 0xcd, 0xc9, 0x60, 0xde, 0x08, 0xbd, 0xed, 0xdf, 0x80, 0xfb, 0x67, 0xa4, 0x5b, + 0x95, 0x91, 0xac, 0x86, 0xfd, 0x71, 0x7b, 0xe2, 0x4d, 0xff, 0xee, 0x9d, 0x62, 0xde, 0x23, 0x74, + 0xc4, 0xac, 0x43, 0x5a, 0x82, 0xcf, 0x6e, 0x5f, 0x6e, 0x32, 0xa1, 0x5f, 0xd7, 0x31, 0x4d, 0xb0, + 0x60, 0x96, 0x46, 0x95, 0xb9, 0x0f, 0xb6, 0x1d, 0x81, 0x0c, 0x24, 0x2b, 0xe3, 0x8b, 0x0c, 0xd9, + 0xce, 0x54, 0xc4, 0x3d, 0xfb, 0x0a, 0x97, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xa7, 0xb8, + 0x33, 0x59, 0x02, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/security.pb.go b/flyteidl/gen/pb-go/flyteidl/core/security.pb.go index 73156fca15..f983dde250 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/security.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/security.pb.go @@ -5,8 +5,9 @@ package core import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -449,43 +450,43 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/security.proto", fileDescriptor_0996009b6d39c02f) } var fileDescriptor_0996009b6d39c02f = []byte{ - // 597 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xdb, 0x6e, 0xd3, 0x40, - 0x10, 0x6d, 0x2e, 0xcd, 0x65, 0x92, 0x94, 0x74, 0x28, 0x25, 0xa8, 0x08, 0x8a, 0x11, 0xa8, 0x12, - 0xaa, 0x2d, 0xa5, 0x15, 0x2a, 0x7d, 0x22, 0xa4, 0x41, 0x8a, 0x14, 0x82, 0xe4, 0x44, 0x95, 0xe0, - 0x65, 0x95, 0xda, 0x43, 0xba, 0x4a, 0xb2, 0x6b, 0xd6, 0xeb, 0xaa, 0xfe, 0x11, 0xfe, 0x82, 0xdf, - 0xe0, 0x99, 0x4f, 0x42, 0x5e, 0xdb, 0xbd, 0xa9, 0x08, 0xde, 0xc6, 0x73, 0xce, 0xec, 0x9e, 0x73, - 0x32, 0x59, 0x78, 0xfa, 0x6d, 0x19, 0x6b, 0xe2, 0xfe, 0xd2, 0xf1, 0xa4, 0x22, 0x27, 0x24, 0x2f, - 0x52, 0x5c, 0xc7, 0x76, 0xa0, 0xa4, 0x96, 0xd8, 0xca, 0x51, 0x3b, 0x41, 0xad, 0xdf, 0x05, 0xa8, - 0x4c, 0xc8, 0x53, 0xa4, 0x71, 0x0b, 0xd6, 0xe7, 0x4a, 0x46, 0x41, 0xa7, 0xb0, 0x5b, 0xd8, 0xab, - 0xbb, 0xe9, 0x07, 0xbe, 0x84, 0x96, 0x29, 0xd8, 0x05, 0xa9, 0x90, 0x4b, 0xd1, 0x29, 0x1a, 0xb4, - 0x69, 0x9a, 0xa7, 0x69, 0x0f, 0xdb, 0x50, 0x5a, 0x50, 0xdc, 0x29, 0x19, 0x28, 0x29, 0x71, 0x04, - 0x9b, 0x2b, 0x19, 0x09, 0xcd, 0x14, 0x7d, 0x8f, 0xb8, 0xa2, 0x15, 0x09, 0xdd, 0x29, 0xef, 0x16, - 0xf6, 0x36, 0xba, 0xcf, 0xed, 0x5b, 0x12, 0xec, 0xf4, 0x7a, 0xfb, 0x53, 0x42, 0x9f, 0xc6, 0x01, - 0xb9, 0x6d, 0x33, 0xe9, 0x5e, 0x0f, 0x5a, 0x6f, 0xa0, 0x7e, 0x05, 0x63, 0x15, 0x4a, 0xbd, 0xf1, - 0x97, 0xf6, 0x1a, 0x36, 0xa0, 0x3a, 0x18, 0x9f, 0xb2, 0xd3, 0x9e, 0xdb, 0x2e, 0x60, 0x0d, 0xca, - 0x1f, 0x87, 0xa3, 0x41, 0xbb, 0x68, 0xcd, 0xa1, 0xf9, 0xb9, 0x17, 0xe9, 0xf3, 0x6e, 0x7f, 0xc9, - 0x49, 0x68, 0xdc, 0x81, 0xba, 0x67, 0x2a, 0xc6, 0xfd, 0xcc, 0x5b, 0x2d, 0x6d, 0x0c, 0x7d, 0x3c, - 0x86, 0x56, 0x06, 0x86, 0x46, 0x86, 0xb1, 0xd7, 0xe8, 0x3e, 0xba, 0x57, 0xa3, 0xdb, 0x4c, 0xb9, - 0xe9, 0x97, 0xf5, 0xab, 0x00, 0xb5, 0xa1, 0x4f, 0x42, 0x73, 0x1d, 0xe3, 0x13, 0xa8, 0xf1, 0xd9, - 0x8a, 0x29, 0xb9, 0xa4, 0xec, 0x92, 0x2a, 0x9f, 0xad, 0x5c, 0xb9, 0x24, 0xb4, 0xe1, 0xe1, 0xe2, - 0x28, 0x64, 0x21, 0xa9, 0x0b, 0xee, 0x11, 0x9b, 0x79, 0x5e, 0xe2, 0x25, 0x0b, 0x72, 0x73, 0x71, - 0x14, 0x4e, 0x52, 0xa4, 0x97, 0x02, 0xf8, 0x1e, 0x5a, 0x72, 0x96, 0x18, 0x60, 0xe9, 0x75, 0x26, - 0xd7, 0x46, 0x77, 0xe7, 0x8e, 0xa6, 0x9b, 0x26, 0xdd, 0x66, 0x3a, 0x91, 0x59, 0xde, 0x07, 0xa4, - 0x4b, 0xf2, 0x22, 0xcd, 0xa5, 0x60, 0x3c, 0x93, 0x68, 0xe2, 0xaf, 0xbb, 0x9b, 0x57, 0x48, 0xae, - 0xdd, 0xfa, 0x51, 0x04, 0x4c, 0x4f, 0x9b, 0xca, 0x05, 0x89, 0x24, 0x79, 0x0a, 0x35, 0x22, 0x94, - 0xc5, 0x6c, 0x95, 0xdb, 0x31, 0x35, 0x1e, 0x43, 0x59, 0xc7, 0x01, 0x19, 0xf1, 0x1b, 0xdd, 0xd7, - 0xf7, 0x4a, 0xba, 0x79, 0x88, 0x6d, 0x7e, 0x51, 0x33, 0x83, 0x07, 0x50, 0xf9, 0x7f, 0x43, 0x19, - 0x15, 0x0f, 0x61, 0x9b, 0xfb, 0x01, 0xf3, 0x79, 0xe8, 0xc9, 0x0b, 0x52, 0x31, 0x23, 0xe1, 0x07, - 0x92, 0x67, 0xdb, 0x54, 0x77, 0xb7, 0xb8, 0x1f, 0x9c, 0xe4, 0xe0, 0x20, 0xc3, 0xf0, 0x15, 0x6c, - 0xe8, 0x44, 0xc5, 0x35, 0x7b, 0xdd, 0xb0, 0x5b, 0xa6, 0x9b, 0xd3, 0xac, 0x67, 0x50, 0x36, 0x2b, - 0xb5, 0x0d, 0xd8, 0x1f, 0x0d, 0x07, 0xe3, 0x29, 0xeb, 0xbb, 0x83, 0x93, 0xc1, 0x78, 0x3a, 0xec, - 0x8d, 0x26, 0xed, 0x35, 0xeb, 0x67, 0x01, 0x1e, 0x4c, 0xb2, 0xff, 0x4f, 0x5f, 0x0a, 0x4d, 0x97, - 0x1a, 0x6d, 0xa8, 0xa8, 0x48, 0xb0, 0x59, 0x68, 0x72, 0x69, 0x74, 0x1f, 0xdf, 0x71, 0x91, 0xa7, - 0xea, 0xae, 0xab, 0x48, 0xf4, 0x42, 0x74, 0xa0, 0x9a, 0xae, 0x56, 0xd8, 0x29, 0xee, 0x96, 0xfe, - 0xbe, 0x5b, 0x39, 0x0b, 0xdf, 0x41, 0xc5, 0xa8, 0x0c, 0x3b, 0x25, 0xc3, 0x7f, 0xf1, 0xcf, 0x90, - 0xdd, 0x6c, 0xe0, 0xc3, 0xdb, 0xaf, 0x87, 0x73, 0xae, 0xcf, 0xa3, 0x33, 0xdb, 0x93, 0x2b, 0xc7, - 0x8c, 0x49, 0x35, 0x77, 0xae, 0x1e, 0x84, 0x39, 0x09, 0x27, 0x38, 0xdb, 0x9f, 0x4b, 0xe7, 0xd6, - 0x1b, 0x71, 0x56, 0x31, 0x6f, 0xc3, 0xc1, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x59, 0x75, 0x0b, - 0x98, 0x3b, 0x04, 0x00, 0x00, + // 601 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xdd, 0x6e, 0xd3, 0x4c, + 0x10, 0xad, 0x93, 0x34, 0x3f, 0x93, 0xa4, 0x5f, 0xba, 0x5f, 0x29, 0x41, 0x45, 0x50, 0x8c, 0x40, + 0x95, 0x50, 0x6d, 0x29, 0xe5, 0xa2, 0x54, 0x5c, 0x10, 0xd2, 0x20, 0x45, 0x0a, 0x41, 0x72, 0xa2, + 0x4a, 0x70, 0xb3, 0x4a, 0xed, 0x21, 0x5d, 0x25, 0xde, 0x35, 0xeb, 0x75, 0x55, 0xbf, 0x08, 0x6f, + 0xc1, 0x6b, 0x70, 0xcd, 0x23, 0x21, 0xef, 0xda, 0xe9, 0x8f, 0x8a, 0xe0, 0x6e, 0x3c, 0xe7, 0xcc, + 0xee, 0x39, 0x27, 0x93, 0x85, 0xc7, 0x5f, 0x57, 0xa9, 0x42, 0x16, 0xac, 0x5c, 0x5f, 0x48, 0x74, + 0x63, 0xf4, 0x13, 0xc9, 0x54, 0xea, 0x44, 0x52, 0x28, 0x41, 0xda, 0x05, 0xea, 0x64, 0xa8, 0xfd, + 0xcb, 0x82, 0xea, 0x14, 0x7d, 0x89, 0x8a, 0xec, 0xc0, 0xe6, 0x42, 0x8a, 0x24, 0xea, 0x5a, 0xfb, + 0xd6, 0x41, 0xc3, 0x33, 0x1f, 0xe4, 0x39, 0xb4, 0x75, 0x41, 0x2f, 0x51, 0xc6, 0x4c, 0xf0, 0x6e, + 0x49, 0xa3, 0x2d, 0xdd, 0x3c, 0x33, 0x3d, 0xd2, 0x81, 0xf2, 0x12, 0xd3, 0x6e, 0x59, 0x43, 0x59, + 0x49, 0xc6, 0xb0, 0x1d, 0x8a, 0x84, 0x2b, 0x2a, 0xf1, 0x5b, 0xc2, 0x24, 0x86, 0xc8, 0x55, 0xb7, + 0xb2, 0x6f, 0x1d, 0x6c, 0xf5, 0x9e, 0x3a, 0xb7, 0x24, 0x38, 0xe6, 0x7a, 0xe7, 0x63, 0x46, 0x9f, + 0xa5, 0x11, 0x7a, 0x1d, 0x3d, 0xe9, 0x5d, 0x0f, 0xda, 0xaf, 0xa0, 0xb1, 0x86, 0x49, 0x0d, 0xca, + 0xfd, 0xc9, 0xe7, 0xce, 0x06, 0x69, 0x42, 0x6d, 0x38, 0x39, 0xa3, 0x67, 0x7d, 0xaf, 0x63, 0x91, + 0x3a, 0x54, 0x3e, 0x8c, 0xc6, 0xc3, 0x4e, 0xc9, 0x5e, 0x40, 0xeb, 0x53, 0x3f, 0x51, 0x17, 0xbd, + 0xc1, 0x8a, 0x21, 0x57, 0x64, 0x0f, 0x1a, 0xbe, 0xae, 0x28, 0x0b, 0x72, 0x6f, 0x75, 0xd3, 0x18, + 0x05, 0xe4, 0x04, 0xda, 0x39, 0x18, 0x6b, 0x19, 0xda, 0x5e, 0xb3, 0xf7, 0xe0, 0x5e, 0x8d, 0x5e, + 0xcb, 0x70, 0xcd, 0x97, 0xfd, 0xd3, 0x82, 0xfa, 0x28, 0x40, 0xae, 0x98, 0x4a, 0xc9, 0x23, 0xa8, + 0xb3, 0x79, 0x48, 0xa5, 0x58, 0x61, 0x7e, 0x49, 0x8d, 0xcd, 0x43, 0x4f, 0xac, 0x90, 0x38, 0xf0, + 0xff, 0xf2, 0x38, 0xa6, 0x31, 0xca, 0x4b, 0xe6, 0x23, 0x9d, 0xfb, 0x7e, 0xe6, 0x25, 0x0f, 0x72, + 0x7b, 0x79, 0x1c, 0x4f, 0x0d, 0xd2, 0x37, 0x00, 0x79, 0x07, 0x6d, 0x31, 0xcf, 0x0c, 0x50, 0x73, + 0x9d, 0xce, 0xb5, 0xd9, 0xdb, 0xbb, 0xa3, 0xe9, 0xa6, 0x49, 0xaf, 0x65, 0x26, 0x72, 0xcb, 0x87, + 0x40, 0xf0, 0x0a, 0xfd, 0x44, 0x31, 0xc1, 0x29, 0xcb, 0x25, 0xea, 0xf8, 0x1b, 0xde, 0xf6, 0x1a, + 0x29, 0xb4, 0xdb, 0xdf, 0x4b, 0x40, 0xcc, 0x69, 0x33, 0xb1, 0x44, 0x9e, 0x25, 0x8f, 0xb1, 0x22, + 0x04, 0x2a, 0x7c, 0x1e, 0x16, 0x76, 0x74, 0x4d, 0x4e, 0xa0, 0xa2, 0xd2, 0x08, 0xb5, 0xf8, 0xad, + 0xde, 0xcb, 0x7b, 0x25, 0xdd, 0x3c, 0xc4, 0xd1, 0xbf, 0xa8, 0x9e, 0x21, 0x47, 0x50, 0xfd, 0x77, + 0x43, 0x39, 0x95, 0xbc, 0x86, 0x5d, 0x16, 0x44, 0x34, 0x60, 0xb1, 0x2f, 0x2e, 0x51, 0xa6, 0x14, + 0x79, 0x10, 0x09, 0x96, 0x6f, 0x53, 0xc3, 0xdb, 0x61, 0x41, 0x74, 0x5a, 0x80, 0xc3, 0x1c, 0x23, + 0x2f, 0x60, 0x4b, 0x65, 0x2a, 0xae, 0xd9, 0x9b, 0x9a, 0xdd, 0xd6, 0xdd, 0x82, 0x66, 0x3f, 0x81, + 0x8a, 0x5e, 0xa9, 0x5d, 0x20, 0x83, 0xf1, 0x68, 0x38, 0x99, 0xd1, 0x81, 0x37, 0x3c, 0x1d, 0x4e, + 0x66, 0xa3, 0xfe, 0x78, 0xda, 0xd9, 0xb0, 0x7f, 0x58, 0xf0, 0xdf, 0x34, 0xff, 0xff, 0x0c, 0x04, + 0x57, 0x78, 0xa5, 0x88, 0x03, 0x55, 0x99, 0x70, 0x3a, 0x8f, 0x75, 0x2e, 0xcd, 0xde, 0xc3, 0x3b, + 0x2e, 0x8a, 0x54, 0xbd, 0x4d, 0x99, 0xf0, 0x7e, 0x4c, 0x5c, 0xa8, 0x99, 0xd5, 0x8a, 0xbb, 0xa5, + 0xfd, 0xf2, 0x9f, 0x77, 0xab, 0x60, 0x91, 0x37, 0x50, 0xd5, 0x2a, 0xe3, 0x6e, 0x59, 0xf3, 0x9f, + 0xfd, 0x35, 0x64, 0x2f, 0x1f, 0x78, 0xff, 0xf6, 0xcb, 0xc9, 0x82, 0xa9, 0x8b, 0xe4, 0xdc, 0xf1, + 0x45, 0xe8, 0xea, 0x31, 0x21, 0x17, 0xa6, 0x70, 0xd7, 0xcf, 0xc2, 0x02, 0xb9, 0x1b, 0x9d, 0x1f, + 0x2e, 0x84, 0x7b, 0xeb, 0xa5, 0x38, 0xaf, 0xea, 0x17, 0xe2, 0xe8, 0x77, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x01, 0x4e, 0xd8, 0x7d, 0x41, 0x04, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/tasks.pb.go b/flyteidl/gen/pb-go/flyteidl/core/tasks.pb.go index 157b7f3bfd..416886aca7 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/tasks.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/tasks.pb.go @@ -5,10 +5,11 @@ package core import ( fmt "fmt" + math "math" + proto "github.com/golang/protobuf/proto" duration "github.com/golang/protobuf/ptypes/duration" _struct "github.com/golang/protobuf/ptypes/struct" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -1260,109 +1261,109 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/tasks.proto", fileDescriptor_bd8423ba58d6ed80) } var fileDescriptor_bd8423ba58d6ed80 = []byte{ - // 1661 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x57, 0xdd, 0x72, 0x1b, 0x49, - 0x15, 0xb6, 0x24, 0x4b, 0xb2, 0x8e, 0xa4, 0x78, 0xdc, 0x4b, 0x96, 0x89, 0x49, 0x42, 0x6a, 0x8a, - 0xcd, 0x86, 0x85, 0x48, 0xc4, 0x9b, 0xb2, 0xbd, 0x0b, 0x15, 0x4a, 0x89, 0x26, 0xb1, 0xb0, 0xf5, - 0x53, 0x2d, 0x39, 0x4b, 0xa8, 0xa2, 0x86, 0xf6, 0x4c, 0x6b, 0x3c, 0x78, 0x34, 0x3d, 0xee, 0xe9, - 0x31, 0x88, 0x7b, 0x5e, 0x80, 0x97, 0xa0, 0xa8, 0xe2, 0x96, 0x4b, 0xde, 0x81, 0x97, 0xe1, 0x8e, - 0x0b, 0xaa, 0x7b, 0x7e, 0xf4, 0x63, 0x7b, 0x5d, 0xbe, 0x52, 0xf7, 0x39, 0xdf, 0x77, 0x7a, 0xfa, - 0xe8, 0x3b, 0x7d, 0xba, 0xe1, 0xd1, 0xd4, 0x9f, 0x0b, 0xea, 0x39, 0x7e, 0xdb, 0x66, 0x9c, 0xb6, - 0x05, 0x89, 0x2e, 0xa2, 0x56, 0xc8, 0x99, 0x60, 0xa8, 0x99, 0xb9, 0x5a, 0xd2, 0xb5, 0xfb, 0x74, - 0x15, 0xe9, 0x39, 0x34, 0x10, 0xde, 0xd4, 0xa3, 0x3c, 0x81, 0xef, 0x3e, 0x59, 0xf3, 0x07, 0x82, - 0xf2, 0x29, 0xb1, 0x69, 0xea, 0x7e, 0xbc, 0xea, 0xf6, 0x3d, 0x41, 0x39, 0xf1, 0xa3, 0x9b, 0xbd, - 0x11, 0xb5, 0x63, 0xee, 0x89, 0x79, 0xea, 0x7d, 0xea, 0x32, 0xe6, 0xfa, 0xb4, 0xad, 0x66, 0x67, - 0xf1, 0xb4, 0xed, 0xc4, 0x9c, 0x08, 0x8f, 0x05, 0x19, 0x7b, 0xdd, 0x1f, 0x09, 0x1e, 0xdb, 0x22, - 0xf1, 0x1a, 0xff, 0x29, 0x42, 0x0d, 0xd3, 0x88, 0xc5, 0xdc, 0xa6, 0x11, 0x7a, 0x0b, 0x5b, 0x9c, - 0x5e, 0xc6, 0x34, 0x12, 0x91, 0x5e, 0x78, 0x56, 0x7a, 0x51, 0xdf, 0x7b, 0xde, 0x5a, 0xd9, 0x68, - 0x2b, 0xc7, 0xe6, 0x23, 0x33, 0x10, 0x7c, 0x8e, 0x73, 0x1e, 0x7a, 0x03, 0x15, 0xdf, 0x9b, 0x79, - 0x22, 0xd2, 0x8b, 0xf7, 0x8a, 0x90, 0xb2, 0x76, 0xff, 0x00, 0xcd, 0x15, 0x07, 0xfa, 0x06, 0x36, - 0x03, 0x32, 0xa3, 0x7a, 0xe1, 0x59, 0xe1, 0xc5, 0x83, 0xbd, 0x2f, 0xee, 0x0c, 0x37, 0x20, 0x33, - 0x8a, 0x15, 0x05, 0xfd, 0x00, 0xca, 0x57, 0xc4, 0x8f, 0xa9, 0x5e, 0x7c, 0x56, 0x78, 0x51, 0xc3, - 0xc9, 0xc4, 0xf8, 0x3d, 0x34, 0x96, 0xb1, 0xa8, 0x0e, 0xd5, 0xd3, 0xc1, 0xf1, 0x60, 0xf8, 0xdd, - 0x40, 0xdb, 0x40, 0x55, 0x28, 0xbd, 0x1b, 0x9d, 0x6a, 0x05, 0x39, 0xf8, 0x30, 0x3a, 0xd5, 0x8a, - 0x08, 0xa0, 0xd2, 0x37, 0xfb, 0x43, 0xfc, 0x49, 0x2b, 0x49, 0xe8, 0x78, 0x32, 0xc4, 0x9d, 0x0f, - 0xa6, 0xb6, 0x89, 0x1e, 0xc2, 0x8e, 0x39, 0x3a, 0x32, 0xfb, 0x26, 0xee, 0x9c, 0x58, 0x99, 0xb9, - 0x6c, 0xfc, 0xb3, 0x00, 0xdb, 0x38, 0x0e, 0x84, 0x37, 0xa3, 0x7d, 0x2a, 0x88, 0x43, 0x04, 0x41, - 0x6f, 0x60, 0x53, 0xcc, 0xc3, 0x6c, 0x0f, 0x5f, 0xad, 0xef, 0x61, 0x15, 0x9d, 0xcd, 0x27, 0xf3, - 0x90, 0x62, 0xc5, 0x43, 0x3a, 0x54, 0xaf, 0x28, 0x8f, 0x3c, 0x16, 0xa4, 0x5b, 0xc9, 0xa6, 0xe8, - 0x73, 0xa8, 0x4c, 0x7d, 0x72, 0xc5, 0xb8, 0x5e, 0x52, 0x8e, 0x74, 0x66, 0x7c, 0x09, 0xf5, 0xa5, - 0x30, 0xa8, 0x06, 0xe5, 0xe1, 0xe4, 0xc8, 0xc4, 0xda, 0x06, 0x6a, 0x42, 0xed, 0xfd, 0xc9, 0xa7, - 0x89, 0x69, 0x8d, 0xbb, 0xc7, 0x5a, 0xc1, 0xf8, 0xef, 0x26, 0x34, 0x26, 0x24, 0xba, 0xc8, 0xbf, - 0xd5, 0x80, 0x86, 0xe3, 0x45, 0x36, 0xbb, 0xa2, 0x9c, 0x9c, 0xf9, 0xc9, 0x37, 0x6f, 0xe1, 0x15, - 0x1b, 0x3a, 0x84, 0x2a, 0x4f, 0xa2, 0xab, 0xef, 0xa9, 0xef, 0x3d, 0xfd, 0xfe, 0x2d, 0xe1, 0x0c, - 0x8e, 0xbe, 0x86, 0xaa, 0xfc, 0x65, 0xb1, 0xd0, 0x37, 0x15, 0xf3, 0x51, 0x2b, 0x11, 0x68, 0x2b, - 0x13, 0x68, 0xab, 0x9b, 0x0a, 0x18, 0x67, 0x48, 0xb4, 0x0f, 0x55, 0x4e, 0x05, 0xf7, 0x68, 0xa4, - 0x97, 0x15, 0xe9, 0xf1, 0x35, 0x15, 0x08, 0x3e, 0x1f, 0x0b, 0x4e, 0x04, 0x75, 0xe7, 0x38, 0x03, - 0xa3, 0x9f, 0xc1, 0x4e, 0xf6, 0xd9, 0x73, 0x2b, 0x4b, 0x60, 0x45, 0xe5, 0x49, 0xcb, 0x1d, 0x1f, - 0xd3, 0x4c, 0x1e, 0x82, 0xee, 0xd0, 0x90, 0x53, 0x9b, 0x08, 0xea, 0x58, 0x94, 0x73, 0xc6, 0xad, - 0x19, 0x8d, 0x22, 0xe2, 0x52, 0xbd, 0xaa, 0x38, 0x9f, 0x2f, 0xfc, 0xa6, 0x74, 0xf7, 0x13, 0x2f, - 0x7a, 0x0e, 0x4d, 0x55, 0xd1, 0x3c, 0x0e, 0x85, 0x27, 0x53, 0xb6, 0x25, 0x53, 0x76, 0xb4, 0x81, - 0x57, 0xcd, 0xe8, 0x25, 0x20, 0x9b, 0xd8, 0xe7, 0xd4, 0x8a, 0x28, 0xf7, 0x88, 0xef, 0xfd, 0x45, - 0xe5, 0xb7, 0xa6, 0xf2, 0xbb, 0xa3, 0x3c, 0xe3, 0x25, 0x07, 0xfa, 0x02, 0x1e, 0xb8, 0x34, 0xa0, - 0x72, 0x53, 0x91, 0xe5, 0x50, 0xfb, 0x42, 0x07, 0x05, 0x6d, 0xe6, 0xd6, 0x2e, 0xb5, 0x2f, 0x64, - 0x7d, 0x08, 0xe2, 0x46, 0x7a, 0x5d, 0x95, 0xdb, 0x7a, 0x7d, 0x2c, 0xff, 0xb5, 0xad, 0x09, 0x71, - 0xa3, 0xa4, 0xda, 0x14, 0x05, 0x7d, 0x05, 0x3b, 0x21, 0x73, 0x2c, 0x41, 0x67, 0xa1, 0x4f, 0x04, - 0xb5, 0x54, 0x9d, 0x35, 0xd4, 0x5e, 0xb7, 0x43, 0xe6, 0x4c, 0x52, 0xbb, 0xac, 0x92, 0xdd, 0x03, - 0xa8, 0xe5, 0x74, 0xa4, 0x41, 0xe9, 0x82, 0xce, 0x95, 0x34, 0x6a, 0x58, 0x0e, 0x6f, 0x2e, 0xb5, - 0x6f, 0x8b, 0x87, 0x85, 0xb7, 0x0f, 0xe1, 0xb3, 0x95, 0x34, 0x58, 0x49, 0x15, 0xfe, 0xb5, 0x9c, - 0xe8, 0x2e, 0x5b, 0x04, 0xfd, 0x14, 0x8a, 0x9e, 0xa3, 0x42, 0x4a, 0x51, 0xac, 0xee, 0xa2, 0x97, - 0x1f, 0xa8, 0xb8, 0xe8, 0x39, 0x08, 0xa5, 0xe5, 0x94, 0xac, 0x95, 0x94, 0xc8, 0x01, 0x6c, 0xcd, - 0xd2, 0x7d, 0xaa, 0x52, 0xa8, 0xef, 0xfd, 0xe8, 0x7b, 0x52, 0x81, 0x73, 0x30, 0xfa, 0x25, 0xd4, - 0xf2, 0xf3, 0x38, 0xd5, 0xe4, 0x93, 0x75, 0xe6, 0x3c, 0xa4, 0x4e, 0x2f, 0x03, 0xe1, 0x05, 0x1e, - 0xb5, 0xa1, 0x62, 0xc7, 0x91, 0x60, 0xb3, 0x54, 0x98, 0x3f, 0xbc, 0xa6, 0xe6, 0xb1, 0x3a, 0x6e, - 0x71, 0x0a, 0x43, 0x87, 0x50, 0xb3, 0x59, 0x20, 0x88, 0x17, 0x50, 0xae, 0xa4, 0x58, 0xdf, 0xd3, - 0xd7, 0x56, 0x7b, 0x97, 0xf9, 0x8f, 0x36, 0xf0, 0x02, 0x8c, 0x7e, 0x01, 0xd5, 0x8b, 0xc3, 0xc8, - 0x0a, 0x99, 0xa3, 0xef, 0x28, 0xde, 0xc3, 0x35, 0xde, 0xf1, 0x61, 0x34, 0x62, 0xce, 0xd1, 0x06, - 0xae, 0x5c, 0xa8, 0x11, 0x7a, 0x0e, 0xa5, 0xe8, 0xd2, 0xd7, 0x91, 0x42, 0xa3, 0x35, 0xf4, 0xf8, - 0xd2, 0x3f, 0xda, 0xc0, 0x12, 0x20, 0x65, 0x20, 0x7b, 0x9b, 0x25, 0xf3, 0x98, 0x97, 0x89, 0x94, - 0x7c, 0x19, 0x6f, 0x4b, 0x87, 0xdc, 0x7e, 0x56, 0x25, 0x3d, 0xd0, 0xb2, 0x06, 0x64, 0xc9, 0x6f, - 0xa3, 0x7f, 0x16, 0x4a, 0xee, 0xd7, 0x8f, 0x80, 0x71, 0x0a, 0x7b, 0x97, 0xa0, 0xf0, 0x76, 0xb4, - 0x6a, 0x40, 0xbf, 0x86, 0x8a, 0xcd, 0x82, 0xa9, 0xe7, 0xea, 0x9a, 0x92, 0xee, 0x97, 0x37, 0xfc, - 0x5f, 0x99, 0x3a, 0x64, 0x52, 0xa6, 0x9e, 0x9b, 0xb6, 0x8a, 0x84, 0xb6, 0xfb, 0x0d, 0xd4, 0x97, - 0xcc, 0xf7, 0x12, 0xe5, 0x16, 0x54, 0x04, 0xe1, 0x2e, 0x15, 0xc6, 0x3e, 0x34, 0xf3, 0x84, 0x8f, - 0x18, 0x17, 0xb2, 0xec, 0xf2, 0xa4, 0x5b, 0x21, 0xe3, 0x42, 0x45, 0x6c, 0xe2, 0xa6, 0xbd, 0x0c, - 0x33, 0xfe, 0x57, 0x82, 0x5a, 0x4e, 0x94, 0x2b, 0x79, 0x33, 0x79, 0x52, 0x24, 0xab, 0x27, 0x13, - 0x79, 0x6c, 0xdb, 0x6c, 0x36, 0x23, 0x81, 0xa3, 0x9a, 0x61, 0x0d, 0x67, 0x53, 0xa9, 0x60, 0xc2, - 0xdd, 0x48, 0x2f, 0x29, 0xb3, 0x1a, 0xa3, 0x7d, 0xa8, 0xf1, 0xac, 0x9b, 0xa5, 0x42, 0xd4, 0x6f, - 0xeb, 0x76, 0x78, 0x01, 0x45, 0x2f, 0xa1, 0x44, 0x83, 0x2b, 0xbd, 0xac, 0x92, 0xb8, 0x2e, 0xfa, - 0x63, 0x3a, 0xff, 0x28, 0x77, 0x3d, 0x22, 0x1e, 0xc7, 0x12, 0x87, 0x0e, 0xf2, 0xb4, 0x57, 0xee, - 0x64, 0xbc, 0x2d, 0xea, 0x85, 0x2c, 0xdd, 0x68, 0x0f, 0xca, 0x32, 0x1d, 0x91, 0x5e, 0x55, 0xbc, - 0xc7, 0xb7, 0xc9, 0x56, 0xa6, 0x07, 0x27, 0x50, 0xd4, 0x81, 0xba, 0x2c, 0x32, 0x2b, 0x5d, 0xb1, - 0xa6, 0x76, 0xf5, 0x6c, 0x8d, 0xd9, 0x25, 0x82, 0x9c, 0x30, 0xe2, 0x78, 0x81, 0x9b, 0xfc, 0x9f, - 0x18, 0x24, 0x29, 0x19, 0xa3, 0x1e, 0x34, 0x08, 0xb7, 0xcf, 0x3d, 0x41, 0x6d, 0x11, 0x73, 0xaa, - 0x0e, 0xc1, 0xeb, 0xf7, 0x80, 0x7c, 0xf5, 0x56, 0x67, 0x09, 0x8c, 0x57, 0xa8, 0x46, 0x0f, 0x1a, - 0xcb, 0xde, 0xd5, 0xce, 0x5f, 0x83, 0x72, 0xa7, 0xdf, 0xdd, 0x7f, 0xad, 0x15, 0xd4, 0x10, 0xf7, - 0xf7, 0x5f, 0x27, 0xdd, 0xbf, 0x83, 0xfb, 0xd6, 0xc7, 0x7d, 0xad, 0x94, 0x8f, 0x0f, 0xb4, 0x4d, - 0xe3, 0x5f, 0x45, 0x80, 0xde, 0x30, 0x6b, 0x39, 0xe8, 0x18, 0x9a, 0x0e, 0xfb, 0x53, 0xe0, 0x33, - 0xe2, 0x58, 0x33, 0xe6, 0x64, 0x9d, 0x7e, 0xfd, 0xf2, 0xb3, 0x60, 0xb4, 0xba, 0x29, 0xbc, 0xcf, - 0x1c, 0x8a, 0x1b, 0xce, 0xd2, 0x0c, 0x99, 0x50, 0x8f, 0xc3, 0x45, 0xa8, 0xa2, 0x0a, 0xf5, 0x93, - 0xdb, 0x43, 0x9d, 0x86, 0x79, 0x20, 0x88, 0xf3, 0xb1, 0x71, 0x02, 0x8d, 0xe5, 0x45, 0x10, 0x82, - 0x07, 0xdd, 0xe1, 0x77, 0x83, 0x93, 0x61, 0xa7, 0x6b, 0x99, 0x9d, 0x0f, 0xea, 0x32, 0xf0, 0x19, - 0x6c, 0xe7, 0xb6, 0xf1, 0x04, 0x9b, 0x9d, 0xbe, 0x56, 0x48, 0x8c, 0xd6, 0x60, 0x38, 0xb1, 0x32, - 0x9f, 0x56, 0x34, 0x4c, 0x80, 0xc5, 0x3a, 0x32, 0xd6, 0xe9, 0x48, 0xb1, 0x86, 0x03, 0xcb, 0xfc, - 0x6d, 0x6f, 0xa2, 0x6d, 0x20, 0x0d, 0x1a, 0xa9, 0x2d, 0x89, 0x5e, 0x40, 0x3b, 0xd0, 0x4c, 0x03, - 0x25, 0x0e, 0xad, 0x68, 0xfc, 0xbd, 0x08, 0x3b, 0xd7, 0xfe, 0x6f, 0x59, 0x28, 0x34, 0x90, 0x4d, - 0xcf, 0x49, 0xaf, 0x1b, 0xd9, 0x14, 0x3d, 0x01, 0xf0, 0x82, 0x30, 0x16, 0x56, 0x48, 0xc4, 0x79, - 0x5a, 0xc7, 0x35, 0x65, 0x19, 0x11, 0x71, 0x8e, 0x7e, 0x0c, 0x75, 0x16, 0x8b, 0xdc, 0x9f, 0xdc, - 0x81, 0x20, 0x31, 0x29, 0x40, 0x0f, 0x2a, 0x53, 0xc6, 0x67, 0x24, 0xb9, 0x6e, 0x3c, 0xd8, 0x7b, - 0x75, 0x97, 0xf6, 0x5a, 0x27, 0xc9, 0xed, 0xbb, 0x4f, 0xc2, 0xf7, 0x8a, 0x88, 0xd3, 0x00, 0xe8, - 0x5b, 0xa8, 0x7b, 0xcc, 0x8a, 0xd2, 0xac, 0xa7, 0x07, 0xfe, 0xa3, 0x5b, 0xff, 0x16, 0x0c, 0x1e, - 0xcb, 0xc6, 0xc6, 0x2b, 0xd0, 0xd6, 0xe3, 0xa2, 0x2d, 0xd8, 0xfc, 0xcd, 0x78, 0x28, 0xa5, 0xb7, - 0x05, 0x9b, 0x9f, 0x3a, 0xfd, 0x93, 0x44, 0x79, 0x23, 0x3c, 0x9c, 0x0c, 0xb5, 0xa2, 0xf1, 0xef, - 0x02, 0x54, 0x92, 0x23, 0x1d, 0xfd, 0x6a, 0xa9, 0xb7, 0x15, 0x6e, 0x2c, 0xa1, 0xe3, 0xc3, 0x68, - 0x78, 0xf6, 0x47, 0x6a, 0x8b, 0x1b, 0x1a, 0xdc, 0x1e, 0x6c, 0xc9, 0x2e, 0x1f, 0x85, 0xd4, 0x4e, - 0x6f, 0x6b, 0xb7, 0x76, 0xa9, 0x6a, 0xc8, 0x9c, 0x71, 0x48, 0xed, 0xf5, 0xba, 0x2d, 0xdd, 0xbf, - 0x6e, 0x8d, 0x7f, 0x14, 0x61, 0xe7, 0xda, 0x67, 0xa1, 0x2e, 0x54, 0x7c, 0x72, 0x46, 0xfd, 0xec, - 0x81, 0xf1, 0xf3, 0xbb, 0x36, 0xd2, 0x3a, 0x51, 0xf0, 0xec, 0x91, 0xa0, 0x26, 0x68, 0x0c, 0x75, - 0x12, 0x04, 0x4c, 0xa8, 0x7b, 0x62, 0xf6, 0xd2, 0x78, 0x75, 0x67, 0xa8, 0xce, 0x82, 0x93, 0xc4, - 0x5b, 0x8e, 0x22, 0xdb, 0xc9, 0xd2, 0x5a, 0xf7, 0x69, 0x27, 0xbb, 0x6f, 0x40, 0x5b, 0x8f, 0x7d, - 0x1f, 0xbe, 0xf1, 0xb7, 0x02, 0x94, 0xc6, 0x97, 0x3e, 0x7a, 0x0c, 0xb5, 0x48, 0x10, 0x41, 0x67, - 0x34, 0x10, 0x29, 0x73, 0x61, 0x40, 0xaf, 0xa1, 0xea, 0x78, 0xc4, 0xa7, 0xb6, 0x48, 0xcf, 0x84, - 0xdd, 0xeb, 0x3d, 0xbd, 0xd5, 0x4d, 0x10, 0x38, 0x83, 0x1a, 0x07, 0x50, 0x4d, 0x6d, 0xf2, 0xea, - 0x7f, 0x3a, 0xe8, 0x9a, 0xef, 0x7b, 0x03, 0xb3, 0x9b, 0xc8, 0xae, 0x33, 0x18, 0xf7, 0xb4, 0x82, - 0x1c, 0x1d, 0xf5, 0x3e, 0x9a, 0x5a, 0x71, 0xf1, 0x50, 0x28, 0xbd, 0xdd, 0xff, 0xdd, 0x6b, 0xd7, - 0x13, 0xe7, 0xf1, 0x59, 0xcb, 0x66, 0xb3, 0xb6, 0x5a, 0x89, 0x71, 0xb7, 0x9d, 0xbf, 0x46, 0x5d, - 0x1a, 0xb4, 0xc3, 0xb3, 0x97, 0x2e, 0x6b, 0xaf, 0x3c, 0x50, 0xcf, 0x2a, 0x4a, 0x55, 0x5f, 0xff, - 0x3f, 0x00, 0x00, 0xff, 0xff, 0xd1, 0x11, 0xc2, 0xc9, 0x3f, 0x0f, 0x00, 0x00, + // 1664 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x57, 0xdd, 0x72, 0xdb, 0xb8, + 0x15, 0xb6, 0x24, 0x5b, 0xb2, 0x8e, 0xa4, 0x98, 0xc6, 0x36, 0x5b, 0xc6, 0x4d, 0xd2, 0x0c, 0xa7, + 0x9b, 0x4d, 0xb7, 0x8d, 0xd4, 0x78, 0x33, 0xb6, 0x37, 0xdd, 0x49, 0x47, 0x89, 0x98, 0x58, 0xb5, + 0xf5, 0x33, 0x90, 0x9c, 0x6d, 0x3a, 0xd3, 0x61, 0x61, 0x12, 0x96, 0x59, 0x53, 0x04, 0x03, 0x82, + 0x6e, 0xd5, 0xfb, 0xbe, 0x40, 0x5f, 0xa2, 0xd3, 0x99, 0xde, 0xf6, 0xb2, 0xef, 0xd0, 0x97, 0xe9, + 0x5d, 0x2f, 0x76, 0x00, 0x90, 0xd4, 0x8f, 0xed, 0xf5, 0xf8, 0x4a, 0xc0, 0x39, 0xdf, 0x77, 0x40, + 0x1c, 0x7d, 0x07, 0x07, 0x80, 0x07, 0x67, 0xc1, 0x4c, 0x50, 0xdf, 0x0b, 0x5a, 0x2e, 0xe3, 0xb4, + 0x25, 0x48, 0x7c, 0x11, 0x37, 0x23, 0xce, 0x04, 0x43, 0x8d, 0xcc, 0xd5, 0x94, 0xae, 0x9d, 0xc7, + 0xcb, 0x48, 0xdf, 0xa3, 0xa1, 0xf0, 0xcf, 0x7c, 0xca, 0x35, 0x7c, 0xe7, 0xd1, 0x8a, 0x3f, 0x14, + 0x94, 0x9f, 0x11, 0x97, 0xa6, 0xee, 0x87, 0xcb, 0xee, 0xc0, 0x17, 0x94, 0x93, 0x20, 0xbe, 0xde, + 0x1b, 0x53, 0x37, 0xe1, 0xbe, 0x98, 0xa5, 0xde, 0xc7, 0x13, 0xc6, 0x26, 0x01, 0x6d, 0xa9, 0xd9, + 0x69, 0x72, 0xd6, 0xf2, 0x12, 0x4e, 0x84, 0xcf, 0xc2, 0x8c, 0xbd, 0xea, 0x8f, 0x05, 0x4f, 0x5c, + 0xa1, 0xbd, 0xd6, 0x7f, 0x8b, 0x50, 0xc5, 0x34, 0x66, 0x09, 0x77, 0x69, 0x8c, 0xde, 0xc0, 0x26, + 0xa7, 0x9f, 0x12, 0x1a, 0x8b, 0xd8, 0x2c, 0x3c, 0x29, 0x3d, 0xab, 0xed, 0x3e, 0x6d, 0x2e, 0x6d, + 0xb4, 0x99, 0x63, 0xf3, 0x91, 0x1d, 0x0a, 0x3e, 0xc3, 0x39, 0x0f, 0xbd, 0x86, 0x72, 0xe0, 0x4f, + 0x7d, 0x11, 0x9b, 0xc5, 0x3b, 0x45, 0x48, 0x59, 0x3b, 0x7f, 0x84, 0xc6, 0x92, 0x03, 0x7d, 0x03, + 0xeb, 0x21, 0x99, 0x52, 0xb3, 0xf0, 0xa4, 0xf0, 0xec, 0xde, 0xee, 0x17, 0xb7, 0x86, 0xeb, 0x93, + 0x29, 0xc5, 0x8a, 0x82, 0x7e, 0x04, 0x1b, 0x97, 0x24, 0x48, 0xa8, 0x59, 0x7c, 0x52, 0x78, 0x56, + 0xc5, 0x7a, 0x62, 0xfd, 0x01, 0xea, 0x8b, 0x58, 0x54, 0x83, 0xca, 0x49, 0xff, 0xa8, 0x3f, 0xf8, + 0xae, 0x6f, 0xac, 0xa1, 0x0a, 0x94, 0xde, 0x0e, 0x4f, 0x8c, 0x82, 0x1c, 0xbc, 0x1f, 0x9e, 0x18, + 0x45, 0x04, 0x50, 0xee, 0xd9, 0xbd, 0x01, 0xfe, 0x68, 0x94, 0x24, 0x74, 0x34, 0x1e, 0xe0, 0xf6, + 0x7b, 0xdb, 0x58, 0x47, 0xf7, 0x61, 0xdb, 0x1e, 0x1e, 0xda, 0x3d, 0x1b, 0xb7, 0x8f, 0x9d, 0xcc, + 0xbc, 0x61, 0xfd, 0xab, 0x00, 0x5b, 0x38, 0x09, 0x85, 0x3f, 0xa5, 0x3d, 0x2a, 0x88, 0x47, 0x04, + 0x41, 0xaf, 0x61, 0x5d, 0xcc, 0xa2, 0x6c, 0x0f, 0x5f, 0xad, 0xee, 0x61, 0x19, 0x9d, 0xcd, 0xc7, + 0xb3, 0x88, 0x62, 0xc5, 0x43, 0x26, 0x54, 0x2e, 0x29, 0x8f, 0x7d, 0x16, 0xa6, 0x5b, 0xc9, 0xa6, + 0xe8, 0x73, 0x28, 0x9f, 0x05, 0xe4, 0x92, 0x71, 0xb3, 0xa4, 0x1c, 0xe9, 0xcc, 0xfa, 0x12, 0x6a, + 0x0b, 0x61, 0x50, 0x15, 0x36, 0x06, 0xe3, 0x43, 0x1b, 0x1b, 0x6b, 0xa8, 0x01, 0xd5, 0x77, 0xc7, + 0x1f, 0xc7, 0xb6, 0x33, 0xea, 0x1c, 0x19, 0x05, 0xeb, 0x7f, 0xeb, 0x50, 0x1f, 0x93, 0xf8, 0x22, + 0xff, 0x56, 0x0b, 0xea, 0x9e, 0x1f, 0xbb, 0xec, 0x92, 0x72, 0x72, 0x1a, 0xe8, 0x6f, 0xde, 0xc4, + 0x4b, 0x36, 0x74, 0x00, 0x15, 0xae, 0xa3, 0xab, 0xef, 0xa9, 0xed, 0x3e, 0xfe, 0xe1, 0x2d, 0xe1, + 0x0c, 0x8e, 0xbe, 0x86, 0x8a, 0xfc, 0x65, 0x89, 0x30, 0xd7, 0x15, 0xf3, 0x41, 0x53, 0x0b, 0xb4, + 0x99, 0x09, 0xb4, 0xd9, 0x49, 0x05, 0x8c, 0x33, 0x24, 0xda, 0x83, 0x0a, 0xa7, 0x82, 0xfb, 0x34, + 0x36, 0x37, 0x14, 0xe9, 0xe1, 0x15, 0x15, 0x08, 0x3e, 0x1b, 0x09, 0x4e, 0x04, 0x9d, 0xcc, 0x70, + 0x06, 0x46, 0xbf, 0x80, 0xed, 0xec, 0xb3, 0x67, 0x4e, 0x96, 0xc0, 0xb2, 0xca, 0x93, 0x91, 0x3b, + 0x3e, 0xa4, 0x99, 0x3c, 0x00, 0xd3, 0xa3, 0x11, 0xa7, 0x2e, 0x11, 0xd4, 0x73, 0x28, 0xe7, 0x8c, + 0x3b, 0x53, 0x1a, 0xc7, 0x64, 0x42, 0xcd, 0x8a, 0xe2, 0x7c, 0x3e, 0xf7, 0xdb, 0xd2, 0xdd, 0xd3, + 0x5e, 0xf4, 0x14, 0x1a, 0xaa, 0xa2, 0x79, 0x12, 0x09, 0x5f, 0xa6, 0x6c, 0x53, 0xa6, 0xec, 0x70, + 0x0d, 0x2f, 0x9b, 0xd1, 0x73, 0x40, 0x2e, 0x71, 0xcf, 0xa9, 0x13, 0x53, 0xee, 0x93, 0xc0, 0xff, + 0xab, 0xca, 0x6f, 0x55, 0xe5, 0x77, 0x5b, 0x79, 0x46, 0x0b, 0x0e, 0xf4, 0x05, 0xdc, 0x9b, 0xd0, + 0x90, 0xca, 0x4d, 0xc5, 0x8e, 0x47, 0xdd, 0x0b, 0x13, 0x14, 0xb4, 0x91, 0x5b, 0x3b, 0xd4, 0xbd, + 0x90, 0xf5, 0x21, 0xc8, 0x24, 0x36, 0x6b, 0xaa, 0xdc, 0x56, 0xeb, 0x63, 0xf1, 0xaf, 0x6d, 0x8e, + 0xc9, 0x24, 0xd6, 0xd5, 0xa6, 0x28, 0xe8, 0x2b, 0xd8, 0x8e, 0x98, 0xe7, 0x08, 0x3a, 0x8d, 0x02, + 0x22, 0xa8, 0xa3, 0xea, 0xac, 0xae, 0xf6, 0xba, 0x15, 0x31, 0x6f, 0x9c, 0xda, 0x65, 0x95, 0xec, + 0xec, 0x43, 0x35, 0xa7, 0x23, 0x03, 0x4a, 0x17, 0x74, 0xa6, 0xa4, 0x51, 0xc5, 0x72, 0x78, 0x7d, + 0xa9, 0xbd, 0x2a, 0x1e, 0x14, 0xde, 0xdc, 0x87, 0xcf, 0x96, 0xd2, 0xe0, 0xe8, 0x2a, 0xfc, 0xdb, + 0x86, 0xd6, 0x5d, 0xb6, 0x08, 0xfa, 0x39, 0x14, 0x7d, 0x4f, 0x85, 0x94, 0xa2, 0x58, 0xde, 0x45, + 0x37, 0x3f, 0x50, 0x71, 0xd1, 0xf7, 0x10, 0x4a, 0xcb, 0x49, 0xaf, 0xa5, 0x4b, 0x64, 0x1f, 0x36, + 0xa7, 0xe9, 0x3e, 0x55, 0x29, 0xd4, 0x76, 0x7f, 0xf2, 0x03, 0xa9, 0xc0, 0x39, 0x18, 0xfd, 0x1a, + 0xaa, 0xf9, 0x79, 0x9c, 0x6a, 0xf2, 0xd1, 0x2a, 0x73, 0x16, 0x51, 0xaf, 0x9b, 0x81, 0xf0, 0x1c, + 0x8f, 0x5a, 0x50, 0x76, 0x93, 0x58, 0xb0, 0x69, 0x2a, 0xcc, 0x1f, 0x5f, 0x51, 0xf3, 0x48, 0x1d, + 0xb7, 0x38, 0x85, 0xa1, 0x03, 0xa8, 0xba, 0x2c, 0x14, 0xc4, 0x0f, 0x29, 0x57, 0x52, 0xac, 0xed, + 0x9a, 0x2b, 0xab, 0xbd, 0xcd, 0xfc, 0x87, 0x6b, 0x78, 0x0e, 0x46, 0xbf, 0x82, 0xca, 0xc5, 0x41, + 0xec, 0x44, 0xcc, 0x33, 0xb7, 0x15, 0xef, 0xfe, 0x0a, 0xef, 0xe8, 0x20, 0x1e, 0x32, 0xef, 0x70, + 0x0d, 0x97, 0x2f, 0xd4, 0x08, 0x3d, 0x85, 0x52, 0xfc, 0x29, 0x30, 0x91, 0x42, 0xa3, 0x15, 0xf4, + 0xe8, 0x53, 0x70, 0xb8, 0x86, 0x25, 0x40, 0xca, 0x40, 0xf6, 0x36, 0x47, 0xe6, 0x31, 0x2f, 0x13, + 0x29, 0xf9, 0x0d, 0xbc, 0x25, 0x1d, 0x72, 0xfb, 0x59, 0x95, 0x74, 0xc1, 0xc8, 0x1a, 0x90, 0x23, + 0xbf, 0x8d, 0xfe, 0x45, 0x28, 0xb9, 0x5f, 0x3d, 0x02, 0x46, 0x29, 0xec, 0xad, 0x46, 0xe1, 0xad, + 0x78, 0xd9, 0x80, 0x7e, 0x03, 0x65, 0x97, 0x85, 0x67, 0xfe, 0xc4, 0x34, 0x94, 0x74, 0xbf, 0xbc, + 0xe6, 0xff, 0xca, 0xd4, 0x21, 0x93, 0x72, 0xe6, 0x4f, 0xd2, 0x56, 0xa1, 0x69, 0x3b, 0xdf, 0x40, + 0x6d, 0xc1, 0x7c, 0x27, 0x51, 0x6e, 0x42, 0x59, 0x10, 0x3e, 0xa1, 0xc2, 0xda, 0x83, 0x46, 0x9e, + 0xf0, 0x21, 0xe3, 0x42, 0x96, 0x5d, 0x9e, 0x74, 0x27, 0x62, 0x5c, 0xa8, 0x88, 0x0d, 0xdc, 0x70, + 0x17, 0x61, 0xd6, 0xff, 0x4b, 0x50, 0xcd, 0x89, 0x72, 0x25, 0x7f, 0x2a, 0x4f, 0x0a, 0xbd, 0xba, + 0x9e, 0xc8, 0x63, 0xdb, 0x65, 0xd3, 0x29, 0x09, 0x3d, 0xd5, 0x0c, 0xab, 0x38, 0x9b, 0x4a, 0x05, + 0x13, 0x3e, 0x89, 0xcd, 0x92, 0x32, 0xab, 0x31, 0xda, 0x83, 0x2a, 0xcf, 0xba, 0x59, 0x2a, 0x44, + 0xf3, 0xa6, 0x6e, 0x87, 0xe7, 0x50, 0xf4, 0x1c, 0x4a, 0x34, 0xbc, 0x34, 0x37, 0x54, 0x12, 0x57, + 0x45, 0x7f, 0x44, 0x67, 0x1f, 0xe4, 0xae, 0x87, 0xc4, 0xe7, 0x58, 0xe2, 0xd0, 0x7e, 0x9e, 0xf6, + 0xf2, 0xad, 0x8c, 0x37, 0x45, 0xb3, 0x90, 0xa5, 0x1b, 0xed, 0xc2, 0x86, 0x4c, 0x47, 0x6c, 0x56, + 0x14, 0xef, 0xe1, 0x4d, 0xb2, 0x95, 0xe9, 0xc1, 0x1a, 0x8a, 0xda, 0x50, 0x93, 0x45, 0xe6, 0xa4, + 0x2b, 0x56, 0xd5, 0xae, 0x9e, 0xac, 0x30, 0x3b, 0x44, 0x90, 0x63, 0x46, 0x3c, 0x3f, 0x9c, 0xe8, + 0xff, 0x13, 0x83, 0x24, 0xe9, 0x31, 0xea, 0x42, 0x9d, 0x70, 0xf7, 0xdc, 0x17, 0xd4, 0x15, 0x09, + 0xa7, 0xea, 0x10, 0xbc, 0x7a, 0x0f, 0xc8, 0x57, 0x6f, 0xb6, 0x17, 0xc0, 0x78, 0x89, 0x6a, 0x75, + 0xa1, 0xbe, 0xe8, 0x5d, 0xee, 0xfc, 0x55, 0xd8, 0x68, 0xf7, 0x3a, 0x7b, 0x2f, 0x8d, 0x82, 0x1a, + 0xe2, 0xde, 0xde, 0x4b, 0xdd, 0xfd, 0xdb, 0xb8, 0xe7, 0x7c, 0xd8, 0x33, 0x4a, 0xf9, 0x78, 0xdf, + 0x58, 0xb7, 0xfe, 0x5d, 0x04, 0xe8, 0x0e, 0xb2, 0x96, 0x83, 0x8e, 0xa0, 0xe1, 0xb1, 0x3f, 0x87, + 0x01, 0x23, 0x9e, 0x33, 0x65, 0x5e, 0xd6, 0xe9, 0x57, 0x2f, 0x3f, 0x73, 0x46, 0xb3, 0x93, 0xc2, + 0x7b, 0xcc, 0xa3, 0xb8, 0xee, 0x2d, 0xcc, 0x90, 0x0d, 0xb5, 0x24, 0x9a, 0x87, 0x2a, 0xaa, 0x50, + 0x3f, 0xbb, 0x39, 0xd4, 0x49, 0x94, 0x07, 0x82, 0x24, 0x1f, 0x5b, 0xc7, 0x50, 0x5f, 0x5c, 0x04, + 0x21, 0xb8, 0xd7, 0x19, 0x7c, 0xd7, 0x3f, 0x1e, 0xb4, 0x3b, 0x8e, 0xdd, 0x7e, 0xaf, 0x2e, 0x03, + 0x9f, 0xc1, 0x56, 0x6e, 0x1b, 0x8d, 0xb1, 0xdd, 0xee, 0x19, 0x05, 0x6d, 0x74, 0xfa, 0x83, 0xb1, + 0x93, 0xf9, 0x8c, 0xa2, 0x65, 0x03, 0xcc, 0xd7, 0x91, 0xb1, 0x4e, 0x86, 0x8a, 0x35, 0xe8, 0x3b, + 0xf6, 0xef, 0xba, 0x63, 0x63, 0x0d, 0x19, 0x50, 0x4f, 0x6d, 0x3a, 0x7a, 0x01, 0x6d, 0x43, 0x23, + 0x0d, 0xa4, 0x1d, 0x46, 0xd1, 0xfa, 0x47, 0x11, 0xb6, 0xaf, 0xfc, 0xdf, 0xb2, 0x50, 0x68, 0x28, + 0x9b, 0x9e, 0x97, 0x5e, 0x37, 0xb2, 0x29, 0x7a, 0x04, 0xe0, 0x87, 0x51, 0x22, 0x9c, 0x88, 0x88, + 0xf3, 0xb4, 0x8e, 0xab, 0xca, 0x32, 0x24, 0xe2, 0x1c, 0xfd, 0x14, 0x6a, 0x2c, 0x11, 0xb9, 0x5f, + 0xdf, 0x81, 0x40, 0x9b, 0x14, 0xa0, 0x0b, 0xe5, 0x33, 0xc6, 0xa7, 0x44, 0x5f, 0x37, 0xee, 0xed, + 0xbe, 0xb8, 0x4d, 0x7b, 0xcd, 0x63, 0x7d, 0xfb, 0xee, 0x91, 0xe8, 0x9d, 0x22, 0xe2, 0x34, 0x00, + 0x7a, 0x05, 0x35, 0x9f, 0x39, 0x71, 0x9a, 0xf5, 0xf4, 0xc0, 0x7f, 0x70, 0xe3, 0xdf, 0x82, 0xc1, + 0x67, 0xd9, 0xd8, 0x7a, 0x01, 0xc6, 0x6a, 0x5c, 0xb4, 0x09, 0xeb, 0xbf, 0x1d, 0x0d, 0xa4, 0xf4, + 0x36, 0x61, 0xfd, 0x63, 0xbb, 0x77, 0xac, 0x95, 0x37, 0xc4, 0x83, 0xf1, 0xc0, 0x28, 0x5a, 0xff, + 0x29, 0x40, 0x59, 0x1f, 0xe9, 0xe8, 0xdb, 0x85, 0xde, 0x56, 0xb8, 0xb6, 0x84, 0x8e, 0x0e, 0xe2, + 0xc1, 0xe9, 0x9f, 0xa8, 0x2b, 0xae, 0x69, 0x70, 0xbb, 0xb0, 0x29, 0xbb, 0x7c, 0x1c, 0x51, 0x37, + 0xbd, 0xad, 0xdd, 0xd8, 0xa5, 0x2a, 0x11, 0xf3, 0x46, 0x11, 0x75, 0x57, 0xeb, 0xb6, 0x74, 0xf7, + 0xba, 0xb5, 0xfe, 0x59, 0x84, 0xed, 0x2b, 0x9f, 0x85, 0x3a, 0x50, 0x0e, 0xc8, 0x29, 0x0d, 0xb2, + 0x07, 0xc6, 0x2f, 0x6f, 0xdb, 0x48, 0xf3, 0x58, 0xc1, 0xb3, 0x47, 0x82, 0x9a, 0xa0, 0x11, 0xd4, + 0x48, 0x18, 0x32, 0xa1, 0xee, 0x89, 0xd9, 0x4b, 0xe3, 0xc5, 0xad, 0xa1, 0xda, 0x73, 0x8e, 0x8e, + 0xb7, 0x18, 0x45, 0xb6, 0x93, 0x85, 0xb5, 0xee, 0xd2, 0x4e, 0x76, 0x5e, 0x83, 0xb1, 0x1a, 0xfb, + 0x2e, 0x7c, 0xeb, 0xef, 0x05, 0x28, 0x8d, 0x3e, 0x05, 0xe8, 0x21, 0x54, 0x63, 0x41, 0x04, 0x9d, + 0xd2, 0x50, 0xa4, 0xcc, 0xb9, 0x01, 0xbd, 0x84, 0x8a, 0xe7, 0x93, 0x80, 0xba, 0x22, 0x3d, 0x13, + 0x76, 0xae, 0xf6, 0xf4, 0x66, 0x47, 0x23, 0x70, 0x06, 0xb5, 0xf6, 0xa1, 0x92, 0xda, 0xe4, 0xd5, + 0xff, 0xa4, 0xdf, 0xb1, 0xdf, 0x75, 0xfb, 0x76, 0x47, 0xcb, 0xae, 0xdd, 0x1f, 0x75, 0x8d, 0x82, + 0x1c, 0x1d, 0x76, 0x3f, 0xd8, 0x46, 0x71, 0xfe, 0x50, 0x28, 0xbd, 0xf9, 0xf6, 0xf7, 0xaf, 0x26, + 0xbe, 0x38, 0x4f, 0x4e, 0x9b, 0x2e, 0x9b, 0xb6, 0xd4, 0x4a, 0x8c, 0x4f, 0xf4, 0xa0, 0x95, 0xbf, + 0x49, 0x27, 0x34, 0x6c, 0x45, 0xa7, 0xcf, 0x27, 0xac, 0xb5, 0xf4, 0x4c, 0x3d, 0x2d, 0x2b, 0x6d, + 0x7d, 0xfd, 0x7d, 0x00, 0x00, 0x00, 0xff, 0xff, 0x32, 0xec, 0xb2, 0x85, 0x45, 0x0f, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/types.pb.go b/flyteidl/gen/pb-go/flyteidl/core/types.pb.go index 7ed48e95d2..765d8a2de9 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/types.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/types.pb.go @@ -5,9 +5,10 @@ package core import ( fmt "fmt" + math "math" + proto "github.com/golang/protobuf/proto" _struct "github.com/golang/protobuf/ptypes/struct" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -984,69 +985,69 @@ func init() { func init() { proto.RegisterFile("flyteidl/core/types.proto", fileDescriptor_51e8add38f4caaed) } var fileDescriptor_51e8add38f4caaed = []byte{ - // 1013 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xdd, 0x6e, 0xe3, 0x36, - 0x13, 0xb5, 0xe2, 0x5f, 0x8d, 0x1d, 0xaf, 0xc0, 0xef, 0x4b, 0xa3, 0x04, 0xbb, 0x68, 0xaa, 0x2e, - 0x8a, 0x60, 0x81, 0xb5, 0x0b, 0xa7, 0x48, 0xb1, 0x45, 0x17, 0xa8, 0x9d, 0xa8, 0xb1, 0xb1, 0x5e, - 0x3b, 0x60, 0x94, 0x02, 0xed, 0x45, 0x0d, 0xca, 0x66, 0x1c, 0x01, 0x92, 0x68, 0x48, 0x54, 0xd0, - 0xf4, 0x01, 0xfa, 0x1e, 0xbd, 0xea, 0x4b, 0xf4, 0xbe, 0xb7, 0x7d, 0xa4, 0x82, 0xd4, 0x9f, 0xa5, - 0xba, 0x41, 0xee, 0x38, 0x9a, 0x73, 0x86, 0x33, 0xc3, 0x43, 0x8e, 0xe0, 0xe8, 0xce, 0x7d, 0xe4, - 0xd4, 0x59, 0xb9, 0xfd, 0x25, 0x0b, 0x68, 0x9f, 0x3f, 0x6e, 0x68, 0xd8, 0xdb, 0x04, 0x8c, 0x33, - 0xb4, 0x9f, 0xba, 0x7a, 0xc2, 0x75, 0xfc, 0x72, 0xcd, 0xd8, 0xda, 0xa5, 0x7d, 0xe9, 0xb4, 0xa3, - 0xbb, 0x7e, 0xc8, 0x83, 0x68, 0xc9, 0x63, 0xb0, 0xf1, 0xfb, 0x1e, 0xc0, 0xcd, 0xf2, 0x9e, 0x7a, - 0xc4, 0x7a, 0xdc, 0x50, 0xf4, 0x1d, 0x34, 0x97, 0xcc, 0x8d, 0x3c, 0x3f, 0xd4, 0xab, 0x27, 0xd5, - 0xd3, 0xf6, 0xe0, 0x8b, 0x5e, 0x21, 0x5a, 0x2f, 0xc7, 0x26, 0xcb, 0x0b, 0x09, 0xc7, 0x29, 0xed, - 0xf8, 0x6f, 0x05, 0x3a, 0xdb, 0x1e, 0x84, 0xa0, 0xe6, 0x13, 0x8f, 0xea, 0xca, 0x89, 0x72, 0xaa, - 0x62, 0xb9, 0x46, 0x1f, 0xa0, 0x26, 0x32, 0xd6, 0xf7, 0x4e, 0x94, 0xd3, 0xee, 0xe0, 0xeb, 0xe7, - 0xed, 0x51, 0x30, 0x84, 0x17, 0xcb, 0x20, 0xc6, 0x02, 0xb4, 0xb2, 0x07, 0xb5, 0xa1, 0x39, 0x99, - 0x59, 0xe6, 0x95, 0x89, 0xb5, 0x0a, 0x52, 0xa1, 0xfe, 0xfd, 0x74, 0x3e, 0xb4, 0x34, 0x05, 0x01, - 0x34, 0x6e, 0x2c, 0x3c, 0x99, 0x5d, 0x69, 0x7b, 0x02, 0x33, 0x9a, 0xcf, 0xa7, 0xe6, 0x70, 0xa6, - 0x55, 0x51, 0x07, 0x5a, 0x97, 0x43, 0xcb, 0xb4, 0x26, 0x1f, 0x4d, 0xad, 0x26, 0xad, 0x5b, 0x3c, - 0xb4, 0x26, 0xf3, 0x99, 0x56, 0x37, 0xfe, 0xda, 0x83, 0x83, 0x1b, 0xd9, 0xb4, 0x28, 0xa0, 0xab, - 0x4b, 0xc2, 0x49, 0x48, 0xb9, 0xdc, 0x66, 0x9a, 0xb7, 0x4b, 0x91, 0xed, 0x1a, 0x94, 0x4b, 0xd9, - 0x45, 0xeb, 0x25, 0xeb, 0x52, 0xeb, 0xd0, 0x27, 0xd0, 0xb8, 0x63, 0x81, 0x47, 0xb8, 0xec, 0x8b, - 0x8a, 0x13, 0x0b, 0x7d, 0x09, 0xff, 0xa7, 0xbf, 0x70, 0x1a, 0xf8, 0xc4, 0x5d, 0x84, 0xb2, 0xd2, - 0x85, 0xec, 0x5e, 0x55, 0xa2, 0x50, 0xea, 0xdb, 0x3a, 0xc6, 0x01, 0x1c, 0x94, 0x19, 0xf6, 0x23, - 0xa7, 0xa1, 0x5e, 0x3b, 0x51, 0x4e, 0x3b, 0xf8, 0x7f, 0x45, 0xca, 0x48, 0xb8, 0x8e, 0x6d, 0xd8, - 0x2f, 0xe4, 0xb5, 0xf3, 0xe0, 0xde, 0x43, 0xc7, 0x75, 0x38, 0x0d, 0x88, 0xbb, 0xc8, 0x0e, 0xb0, - 0x3d, 0x38, 0x2e, 0x55, 0x3d, 0x8d, 0x21, 0xf2, 0x8c, 0xda, 0x6e, 0x6e, 0x18, 0x7f, 0x28, 0xd0, - 0x1a, 0xb9, 0xcc, 0x96, 0x49, 0xe6, 0xe5, 0x2a, 0x85, 0x72, 0x31, 0x74, 0x57, 0x8e, 0x47, 0xfd, - 0xd0, 0x61, 0x3e, 0x71, 0x1d, 0xfe, 0x98, 0xc8, 0xe4, 0x4d, 0x69, 0x97, 0x34, 0x90, 0x5c, 0x5c, - 0x16, 0x18, 0xb8, 0x14, 0xc1, 0xe8, 0x03, 0xfa, 0x37, 0x4a, 0xaa, 0x61, 0x32, 0xbb, 0x9a, 0x9a, - 0x5a, 0x05, 0xed, 0x83, 0xfa, 0xf1, 0x76, 0x6a, 0x4d, 0xae, 0x87, 0xd8, 0xd2, 0x14, 0xc3, 0x80, - 0x96, 0xe9, 0x47, 0x5e, 0x9a, 0xe8, 0x03, 0x71, 0x23, 0x1a, 0x1f, 0xb2, 0x8a, 0x13, 0xcb, 0xb8, - 0x00, 0xf5, 0xd6, 0x77, 0x58, 0xac, 0xb8, 0x73, 0x68, 0x3d, 0x90, 0xc0, 0x21, 0x3e, 0x4f, 0xb5, - 0xf0, 0x54, 0x57, 0x32, 0xac, 0xf1, 0x19, 0xec, 0x8b, 0x2f, 0x99, 0x50, 0x90, 0x06, 0x55, 0x4e, - 0xd6, 0x49, 0x4f, 0xc4, 0xd2, 0xf8, 0x00, 0x5d, 0x01, 0x19, 0xfa, 0x3e, 0xe3, 0x84, 0x3b, 0xcc, - 0x47, 0xef, 0xa0, 0x4d, 0x32, 0x2b, 0x94, 0xd8, 0xf6, 0xe0, 0xb0, 0x17, 0xdf, 0xf4, 0x5e, 0x7a, - 0xd3, 0x13, 0xf5, 0xe1, 0x6d, 0xac, 0xf1, 0x67, 0x1d, 0xda, 0x5b, 0x99, 0xa0, 0x33, 0x68, 0x84, - 0x8e, 0xb7, 0x71, 0xe3, 0x73, 0xee, 0x0e, 0x8e, 0xca, 0x0a, 0x96, 0x4e, 0x01, 0x1d, 0x57, 0x70, - 0x02, 0x95, 0x24, 0x29, 0x9d, 0x44, 0x00, 0x47, 0xff, 0x79, 0x83, 0x25, 0x49, 0x5a, 0xc8, 0x84, - 0x17, 0x4b, 0xe6, 0xba, 0x74, 0x29, 0x12, 0xc9, 0x15, 0xfc, 0x64, 0xa3, 0xc6, 0x15, 0xdc, 0xcd, - 0x49, 0x32, 0xe1, 0x11, 0x74, 0x3d, 0xb2, 0x59, 0xc8, 0x33, 0x88, 0xa3, 0xd4, 0x9e, 0x11, 0xa5, - 0xe3, 0x91, 0xcd, 0x0f, 0x82, 0x22, 0x63, 0xbc, 0x85, 0x9a, 0xed, 0x32, 0x5b, 0xaf, 0x27, 0x8d, - 0xdb, 0x2d, 0xac, 0x71, 0x05, 0x4b, 0x18, 0x3a, 0x07, 0x95, 0xfa, 0x91, 0x17, 0xef, 0xd6, 0xdc, - 0xc9, 0x49, 0xc5, 0x32, 0xae, 0xe0, 0x16, 0x4d, 0x85, 0xf3, 0x33, 0x1c, 0x86, 0xd9, 0x03, 0xb0, - 0x58, 0xc5, 0xb7, 0x2b, 0x8e, 0xd2, 0x92, 0x51, 0x5e, 0x3f, 0xe7, 0xb9, 0x18, 0x57, 0xf0, 0x41, - 0xb8, 0xf3, 0xf9, 0x79, 0x07, 0x10, 0xf9, 0x59, 0x33, 0x41, 0x86, 0xd4, 0x4b, 0x21, 0x33, 0x85, - 0x8e, 0x2b, 0x58, 0x8d, 0x32, 0xb9, 0x9e, 0x41, 0xcb, 0xa3, 0x9c, 0x88, 0x9c, 0xf4, 0xc6, 0xd3, - 0xf2, 0xc9, 0x80, 0xe8, 0x3d, 0x40, 0x2e, 0x25, 0x5d, 0x95, 0xb4, 0x57, 0xa5, 0xfd, 0x8a, 0x4a, - 0xc5, 0x5b, 0x04, 0xf4, 0x0d, 0xa8, 0x59, 0x1d, 0x7a, 0x5b, 0xb2, 0x5f, 0xee, 0x60, 0x67, 0x4d, - 0xc0, 0x39, 0x7c, 0xd4, 0x88, 0x27, 0x86, 0xf1, 0x2b, 0xbc, 0x98, 0x47, 0x7c, 0x13, 0x71, 0x4c, - 0xef, 0x68, 0x40, 0xfd, 0x25, 0x45, 0x87, 0xd0, 0xf4, 0xd9, 0x8a, 0x2e, 0x9c, 0x55, 0xfa, 0x90, - 0x08, 0x73, 0xb2, 0x12, 0x37, 0xe9, 0x81, 0x04, 0xc9, 0x63, 0x2a, 0x96, 0xe8, 0x5b, 0x50, 0x09, - 0xe7, 0xc1, 0x62, 0x43, 0xf8, 0x7d, 0x32, 0xe0, 0x3e, 0x2d, 0x65, 0x70, 0x1d, 0x30, 0xcf, 0x09, - 0xe9, 0x90, 0xf3, 0xc0, 0xb1, 0x23, 0x4e, 0x71, 0x4b, 0x30, 0xae, 0x09, 0xbf, 0x17, 0x83, 0xa6, - 0xec, 0x45, 0x9f, 0x43, 0x27, 0xe4, 0x81, 0xe3, 0xaf, 0x63, 0x41, 0xc6, 0x19, 0x8c, 0x2b, 0xb8, - 0x1d, 0x7f, 0x95, 0x92, 0x43, 0xaf, 0x40, 0x75, 0x7c, 0x9e, 0x20, 0x44, 0x3a, 0x75, 0x21, 0x13, - 0xc7, 0xe7, 0xd2, 0x3d, 0x6a, 0x42, 0x5d, 0xba, 0x8c, 0x2b, 0xa8, 0x9b, 0x41, 0xc0, 0x02, 0xf4, - 0x1a, 0xba, 0x77, 0xc4, 0x71, 0xe9, 0x6a, 0x51, 0xac, 0xac, 0x13, 0x7f, 0x9d, 0xc5, 0xf5, 0xe9, - 0xd0, 0xf4, 0x68, 0x18, 0x92, 0x35, 0x4d, 0x6a, 0x4c, 0xcd, 0x37, 0xbf, 0x29, 0x00, 0xf9, 0xc5, - 0x45, 0x2d, 0xa8, 0xcd, 0xe6, 0x33, 0xf1, 0xca, 0x6d, 0xcd, 0x45, 0x25, 0x9f, 0x8b, 0x7b, 0x5b, - 0x73, 0xb1, 0xba, 0x3d, 0x17, 0x6b, 0x85, 0xb9, 0x58, 0x2f, 0xcc, 0xc5, 0x86, 0x20, 0x8d, 0x26, - 0xb3, 0x21, 0xfe, 0x51, 0x6b, 0x8a, 0x58, 0x26, 0xc6, 0x73, 0xac, 0xb5, 0x92, 0x58, 0xb7, 0x17, - 0x96, 0xa6, 0x8e, 0xce, 0x7f, 0xfa, 0x6a, 0xed, 0xf0, 0xfb, 0xc8, 0xee, 0x2d, 0x99, 0xd7, 0x97, - 0x9d, 0x66, 0xc1, 0xba, 0x9f, 0xfd, 0xbc, 0xac, 0xa9, 0xdf, 0xdf, 0xd8, 0x6f, 0xd7, 0xac, 0x5f, - 0xf8, 0x9f, 0xb1, 0x1b, 0x52, 0x84, 0x67, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x0f, 0xdf, 0x9e, - 0xdf, 0xe7, 0x08, 0x00, 0x00, + // 1014 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xdd, 0x6e, 0xe3, 0x44, + 0x14, 0x8e, 0x9b, 0x5f, 0x9f, 0xa4, 0x59, 0x6b, 0xa0, 0xd4, 0xad, 0x76, 0x45, 0x31, 0x2b, 0x54, + 0xad, 0xb4, 0x09, 0x4a, 0xa5, 0x45, 0xbb, 0xda, 0x95, 0x48, 0x5a, 0xd3, 0x44, 0x9b, 0x4d, 0xaa, + 0xa9, 0x8b, 0x04, 0x17, 0x44, 0xe3, 0x64, 0x9a, 0x5a, 0xb2, 0x3d, 0x91, 0x3d, 0xae, 0x28, 0x0f, + 0xc0, 0x7b, 0x70, 0xc5, 0x4b, 0x70, 0xcf, 0x2d, 0x8f, 0x84, 0x66, 0xfc, 0x17, 0x9b, 0x50, 0xf5, + 0x6e, 0x8e, 0xcf, 0xf7, 0x9d, 0x39, 0xe7, 0xcc, 0x37, 0x73, 0x0c, 0x47, 0xb7, 0xee, 0x03, 0xa7, + 0xce, 0xca, 0xed, 0x2f, 0x59, 0x40, 0xfb, 0xfc, 0x61, 0x43, 0xc3, 0xde, 0x26, 0x60, 0x9c, 0xa1, + 0xfd, 0xd4, 0xd5, 0x13, 0xae, 0xe3, 0xe7, 0x6b, 0xc6, 0xd6, 0x2e, 0xed, 0x4b, 0xa7, 0x1d, 0xdd, + 0xf6, 0x43, 0x1e, 0x44, 0x4b, 0x1e, 0x83, 0x8d, 0x3f, 0xf6, 0x00, 0xae, 0x97, 0x77, 0xd4, 0x23, + 0xd6, 0xc3, 0x86, 0xa2, 0xef, 0xa1, 0xb9, 0x64, 0x6e, 0xe4, 0xf9, 0xa1, 0x5e, 0x3d, 0xa9, 0x9e, + 0xb6, 0x07, 0xdf, 0xf4, 0x0a, 0xd1, 0x7a, 0x39, 0x36, 0x59, 0x9e, 0x4b, 0x38, 0x4e, 0x69, 0xc7, + 0xff, 0x28, 0xd0, 0xd9, 0xf6, 0x20, 0x04, 0x35, 0x9f, 0x78, 0x54, 0x57, 0x4e, 0x94, 0x53, 0x15, + 0xcb, 0x35, 0xfa, 0x08, 0x35, 0x91, 0xb1, 0xbe, 0x77, 0xa2, 0x9c, 0x76, 0x07, 0xdf, 0x3d, 0x6d, + 0x8f, 0x82, 0x21, 0xbc, 0x58, 0x06, 0x31, 0x16, 0xa0, 0x95, 0x3d, 0xa8, 0x0d, 0xcd, 0xc9, 0xcc, + 0x32, 0x2f, 0x4d, 0xac, 0x55, 0x90, 0x0a, 0xf5, 0x1f, 0xa6, 0xf3, 0xa1, 0xa5, 0x29, 0x08, 0xa0, + 0x71, 0x6d, 0xe1, 0xc9, 0xec, 0x52, 0xdb, 0x13, 0x98, 0xd1, 0x7c, 0x3e, 0x35, 0x87, 0x33, 0xad, + 0x8a, 0x3a, 0xd0, 0xba, 0x18, 0x5a, 0xa6, 0x35, 0xf9, 0x64, 0x6a, 0x35, 0x69, 0xdd, 0xe0, 0xa1, + 0x35, 0x99, 0xcf, 0xb4, 0xba, 0xf1, 0xf7, 0x1e, 0x1c, 0x5c, 0xcb, 0xa6, 0x45, 0x01, 0x5d, 0x5d, + 0x10, 0x4e, 0x42, 0xca, 0xe5, 0x36, 0xd3, 0xbc, 0x5d, 0x8a, 0x6c, 0xd7, 0xa0, 0x5c, 0xca, 0x2e, + 0x5a, 0x2f, 0x59, 0x97, 0x5a, 0x87, 0xbe, 0x80, 0xc6, 0x2d, 0x0b, 0x3c, 0xc2, 0x65, 0x5f, 0x54, + 0x9c, 0x58, 0xe8, 0x5b, 0xf8, 0x9c, 0xfe, 0xca, 0x69, 0xe0, 0x13, 0x77, 0x11, 0xca, 0x4a, 0x17, + 0xb2, 0x7b, 0x55, 0x89, 0x42, 0xa9, 0x6f, 0xeb, 0x18, 0x07, 0x70, 0x50, 0x66, 0xd8, 0x0f, 0x9c, + 0x86, 0x7a, 0xed, 0x44, 0x39, 0xed, 0xe0, 0xcf, 0x8a, 0x94, 0x91, 0x70, 0x1d, 0xdb, 0xb0, 0x5f, + 0xc8, 0x6b, 0xe7, 0xc1, 0x7d, 0x80, 0x8e, 0xeb, 0x70, 0x1a, 0x10, 0x77, 0x91, 0x1d, 0x60, 0x7b, + 0x70, 0x5c, 0xaa, 0x7a, 0x1a, 0x43, 0xe4, 0x19, 0xb5, 0xdd, 0xdc, 0x30, 0xfe, 0x54, 0xa0, 0x35, + 0x72, 0x99, 0x2d, 0x93, 0xcc, 0xcb, 0x55, 0x0a, 0xe5, 0x62, 0xe8, 0xae, 0x1c, 0x8f, 0xfa, 0xa1, + 0xc3, 0x7c, 0xe2, 0x3a, 0xfc, 0x21, 0x91, 0xc9, 0xab, 0xd2, 0x2e, 0x69, 0x20, 0xb9, 0xb8, 0x28, + 0x30, 0x70, 0x29, 0x82, 0xd1, 0x07, 0xf4, 0x5f, 0x94, 0x54, 0xc3, 0x64, 0x76, 0x39, 0x35, 0xb5, + 0x0a, 0xda, 0x07, 0xf5, 0xd3, 0xcd, 0xd4, 0x9a, 0x5c, 0x0d, 0xb1, 0xa5, 0x29, 0x86, 0x01, 0x2d, + 0xd3, 0x8f, 0xbc, 0x34, 0xd1, 0x7b, 0xe2, 0x46, 0x34, 0x3e, 0x64, 0x15, 0x27, 0x96, 0x71, 0x0e, + 0xea, 0x8d, 0xef, 0xb0, 0x58, 0x71, 0x6f, 0xa0, 0x75, 0x4f, 0x02, 0x87, 0xf8, 0x3c, 0xd5, 0xc2, + 0x63, 0x5d, 0xc9, 0xb0, 0xc6, 0x57, 0xb0, 0x2f, 0xbe, 0x64, 0x42, 0x41, 0x1a, 0x54, 0x39, 0x59, + 0x27, 0x3d, 0x11, 0x4b, 0xe3, 0x23, 0x74, 0x05, 0x64, 0xe8, 0xfb, 0x8c, 0x13, 0xee, 0x30, 0x1f, + 0xbd, 0x85, 0x36, 0xc9, 0xac, 0x50, 0x62, 0xdb, 0x83, 0xc3, 0x5e, 0x7c, 0xd3, 0x7b, 0xe9, 0x4d, + 0x4f, 0xd4, 0x87, 0xb7, 0xb1, 0xc6, 0x5f, 0x75, 0x68, 0x6f, 0x65, 0x82, 0xce, 0xa0, 0x11, 0x3a, + 0xde, 0xc6, 0x8d, 0xcf, 0xb9, 0x3b, 0x38, 0x2a, 0x2b, 0x58, 0x3a, 0x05, 0x74, 0x5c, 0xc1, 0x09, + 0x54, 0x92, 0xa4, 0x74, 0x12, 0x01, 0x1c, 0xfd, 0xef, 0x0d, 0x96, 0x24, 0x69, 0x21, 0x13, 0x9e, + 0x2d, 0x99, 0xeb, 0xd2, 0xa5, 0x48, 0x24, 0x57, 0xf0, 0xa3, 0x8d, 0x1a, 0x57, 0x70, 0x37, 0x27, + 0xc9, 0x84, 0x47, 0xd0, 0xf5, 0xc8, 0x66, 0x21, 0xcf, 0x20, 0x8e, 0x52, 0x7b, 0x42, 0x94, 0x8e, + 0x47, 0x36, 0x3f, 0x0a, 0x8a, 0x8c, 0xf1, 0x1a, 0x6a, 0xb6, 0xcb, 0x6c, 0xbd, 0x9e, 0x34, 0x6e, + 0xb7, 0xb0, 0xc6, 0x15, 0x2c, 0x61, 0xe8, 0x0d, 0xa8, 0xd4, 0x8f, 0xbc, 0x78, 0xb7, 0xe6, 0x4e, + 0x4e, 0x2a, 0x96, 0x71, 0x05, 0xb7, 0x68, 0x2a, 0x9c, 0x5f, 0xe0, 0x30, 0xcc, 0x1e, 0x80, 0xc5, + 0x2a, 0xbe, 0x5d, 0x71, 0x94, 0x96, 0x8c, 0xf2, 0xf2, 0x29, 0xcf, 0xc5, 0xb8, 0x82, 0x0f, 0xc2, + 0x9d, 0xcf, 0xcf, 0x5b, 0x80, 0xc8, 0xcf, 0x9a, 0x09, 0x32, 0xa4, 0x5e, 0x0a, 0x99, 0x29, 0x74, + 0x5c, 0xc1, 0x6a, 0x94, 0xc9, 0xf5, 0x0c, 0x5a, 0x1e, 0xe5, 0x44, 0xe4, 0xa4, 0x37, 0x1e, 0x97, + 0x4f, 0x06, 0x44, 0x1f, 0x00, 0x72, 0x29, 0xe9, 0xaa, 0xa4, 0xbd, 0x28, 0xed, 0x57, 0x54, 0x2a, + 0xde, 0x22, 0xa0, 0x77, 0xa0, 0x66, 0x75, 0xe8, 0x6d, 0xc9, 0x7e, 0xbe, 0x83, 0x9d, 0x35, 0x01, + 0xe7, 0xf0, 0x51, 0x23, 0x9e, 0x18, 0xc6, 0x6f, 0xf0, 0x6c, 0x1e, 0xf1, 0x4d, 0xc4, 0x31, 0xbd, + 0xa5, 0x01, 0xf5, 0x97, 0x14, 0x1d, 0x42, 0xd3, 0x67, 0x2b, 0xba, 0x70, 0x56, 0xe9, 0x43, 0x22, + 0xcc, 0xc9, 0x4a, 0xdc, 0xa4, 0x7b, 0x12, 0x24, 0x8f, 0xa9, 0x58, 0xa2, 0xf7, 0xa0, 0x12, 0xce, + 0x83, 0xc5, 0x86, 0xf0, 0xbb, 0x64, 0xc0, 0x7d, 0x59, 0xca, 0xe0, 0x2a, 0x60, 0x9e, 0x13, 0xd2, + 0x21, 0xe7, 0x81, 0x63, 0x47, 0x9c, 0xe2, 0x96, 0x60, 0x5c, 0x11, 0x7e, 0x27, 0x06, 0x4d, 0xd9, + 0x8b, 0xbe, 0x86, 0x4e, 0xc8, 0x03, 0xc7, 0x5f, 0xc7, 0x82, 0x8c, 0x33, 0x18, 0x57, 0x70, 0x3b, + 0xfe, 0x2a, 0x25, 0x87, 0x5e, 0x80, 0xea, 0xf8, 0x3c, 0x41, 0x88, 0x74, 0xea, 0x42, 0x26, 0x8e, + 0xcf, 0xa5, 0x7b, 0xd4, 0x84, 0xba, 0x74, 0x19, 0x97, 0x50, 0x37, 0x83, 0x80, 0x05, 0xe8, 0x25, + 0x74, 0x6f, 0x89, 0xe3, 0xd2, 0xd5, 0xa2, 0x58, 0x59, 0x27, 0xfe, 0x3a, 0x8b, 0xeb, 0xd3, 0xa1, + 0xe9, 0xd1, 0x30, 0x24, 0x6b, 0x9a, 0xd4, 0x98, 0x9a, 0xaf, 0x7e, 0x57, 0x00, 0xf2, 0x8b, 0x8b, + 0x5a, 0x50, 0x9b, 0xcd, 0x67, 0xe2, 0x95, 0xdb, 0x9a, 0x8b, 0x4a, 0x3e, 0x17, 0xf7, 0xb6, 0xe6, + 0x62, 0x75, 0x7b, 0x2e, 0xd6, 0x0a, 0x73, 0xb1, 0x5e, 0x98, 0x8b, 0x0d, 0x41, 0x1a, 0x4d, 0x66, + 0x43, 0xfc, 0x93, 0xd6, 0x14, 0xb1, 0x4c, 0x8c, 0xe7, 0x58, 0x6b, 0x25, 0xb1, 0x6e, 0xce, 0x2d, + 0x4d, 0x1d, 0xbd, 0xff, 0xf9, 0xdd, 0xda, 0xe1, 0x77, 0x91, 0xdd, 0x5b, 0x32, 0xaf, 0x2f, 0x3b, + 0xcd, 0x82, 0x75, 0xbc, 0xe8, 0x67, 0xbf, 0x30, 0x6b, 0xea, 0xf7, 0x37, 0xf6, 0xeb, 0x35, 0xeb, + 0x17, 0xfe, 0x6a, 0xec, 0x86, 0x94, 0xe2, 0xd9, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x0f, 0xa8, + 0xd3, 0x62, 0xed, 0x08, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/workflow.pb.go b/flyteidl/gen/pb-go/flyteidl/core/workflow.pb.go index c3203af98d..9b90274a6a 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/workflow.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/workflow.pb.go @@ -5,9 +5,10 @@ package core import ( fmt "fmt" + math "math" + proto "github.com/golang/protobuf/proto" duration "github.com/golang/protobuf/ptypes/duration" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -1348,93 +1349,93 @@ var fileDescriptor_fccede37486c456e = []byte{ // 1448 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x57, 0x4d, 0x73, 0xdb, 0xba, 0x15, 0x95, 0x64, 0xd9, 0x16, 0xaf, 0x2d, 0x5b, 0x46, 0xdc, 0x56, 0xf9, 0xf6, 0x70, 0xd2, 0xc6, - 0xc9, 0xa4, 0x52, 0x26, 0x69, 0x9c, 0xb4, 0x6e, 0x33, 0x95, 0x62, 0x25, 0xd2, 0xd4, 0x1f, 0x09, - 0xac, 0x7e, 0x6e, 0x38, 0x10, 0x09, 0xca, 0x18, 0x53, 0xa4, 0x02, 0x80, 0x4e, 0x34, 0xfd, 0x13, - 0xdd, 0x75, 0xf9, 0x66, 0xde, 0xe2, 0xfd, 0x8d, 0xb7, 0x7a, 0xdb, 0xb7, 0x7a, 0x3f, 0xe7, 0x2d, - 0xde, 0x00, 0x24, 0x28, 0x8b, 0x96, 0xe2, 0xec, 0x44, 0xdc, 0x73, 0xc1, 0x83, 0x8b, 0x7b, 0xce, - 0xa5, 0xe0, 0x8e, 0x1f, 0x4c, 0x24, 0x65, 0x5e, 0xd0, 0x74, 0x23, 0x4e, 0x9b, 0x9f, 0x22, 0x7e, - 0xee, 0x07, 0xd1, 0xa7, 0xc6, 0x98, 0x47, 0x32, 0x42, 0x55, 0x13, 0x6d, 0xa8, 0xe8, 0xad, 0xbb, - 0xb3, 0x60, 0x37, 0x0a, 0x3d, 0x26, 0x59, 0x14, 0x26, 0xe8, 0x7c, 0x98, 0x7e, 0xa6, 0x6e, 0x7c, - 0x29, 0x7c, 0x6f, 0x36, 0xcc, 0x3c, 0x1a, 0x4a, 0xe6, 0x33, 0xca, 0xe7, 0xa7, 0xb3, 0x50, 0x52, - 0xee, 0x13, 0x97, 0xa6, 0xe1, 0x1c, 0xd3, 0x80, 0x49, 0xca, 0x49, 0x20, 0xd2, 0xe8, 0xcd, 0xd9, - 0xa8, 0x24, 0xe2, 0x7c, 0x51, 0x68, 0x32, 0xa6, 0x62, 0xfe, 0x9e, 0x82, 0xba, 0x31, 0x67, 0x72, - 0x62, 0x08, 0x0f, 0xa3, 0x68, 0x18, 0xd0, 0xa6, 0x7e, 0x1a, 0xc4, 0x7e, 0xd3, 0x8b, 0x39, 0x99, - 0x1e, 0xc8, 0xfe, 0x2f, 0xac, 0xf6, 0xfc, 0x76, 0x10, 0xb9, 0xe7, 0xe8, 0x35, 0x58, 0x59, 0x35, - 0xea, 0xc5, 0x9d, 0xe2, 0xee, 0xda, 0xb3, 0x9d, 0xc6, 0x4c, 0xf1, 0x1a, 0xed, 0x28, 0x0a, 0x28, - 0x09, 0x3b, 0x9f, 0xc7, 0x9c, 0x0a, 0xc1, 0xa2, 0x10, 0x4f, 0x53, 0xd0, 0x53, 0xb0, 0xe4, 0x19, - 0x0d, 0x9d, 0x30, 0xf2, 0x68, 0xbd, 0xa4, 0xf3, 0x6f, 0xe4, 0xf2, 0x8f, 0x23, 0x8f, 0xe2, 0x8a, - 0x42, 0xa9, 0x5f, 0xf6, 0x4f, 0x45, 0x58, 0xeb, 0xf9, 0x9d, 0x40, 0xd0, 0x84, 0xc1, 0x63, 0x28, - 0xbb, 0x44, 0xd0, 0xf4, 0xe5, 0xbf, 0xce, 0x25, 0xa7, 0x3c, 0xb1, 0xc6, 0xa0, 0x27, 0xb0, 0x1c, - 0xc9, 0x33, 0xca, 0xeb, 0xa5, 0x9d, 0xa5, 0x2f, 0x80, 0x13, 0x10, 0x7a, 0x06, 0x16, 0x0d, 0x04, - 0x4d, 0xb8, 0x2d, 0x2d, 0xe4, 0xd6, 0x2d, 0xe0, 0x8a, 0xc2, 0xa9, 0xdf, 0xea, 0x0d, 0x94, 0xf3, - 0x88, 0xd7, 0xcb, 0x1a, 0xbf, 0x9d, 0xc3, 0x77, 0x54, 0xac, 0x5b, 0xc0, 0x09, 0xa8, 0x6d, 0xc1, - 0xaa, 0x47, 0x7d, 0x12, 0x07, 0xd2, 0x6e, 0x01, 0xb4, 0x39, 0x09, 0xdd, 0x33, 0xbd, 0xcd, 0x73, - 0x58, 0x65, 0xbe, 0xa3, 0x76, 0x4d, 0xcf, 0x75, 0xeb, 0x0a, 0xd5, 0xac, 0x02, 0x78, 0x85, 0xe9, - 0x07, 0xfb, 0xff, 0x45, 0xa8, 0xf4, 0x89, 0x38, 0xd7, 0x3b, 0xbc, 0x86, 0x75, 0x4e, 0x7d, 0xca, - 0x69, 0xe8, 0x52, 0x87, 0x79, 0xe9, 0x36, 0x37, 0xf3, 0xdb, 0x64, 0xbd, 0xd8, 0x2d, 0xe0, 0xb5, - 0x2c, 0xa1, 0xe7, 0xa9, 0x8b, 0x8d, 0x2e, 0x28, 0xe7, 0xcc, 0xa3, 0x22, 0xbd, 0x98, 0xfc, 0xc5, - 0x9a, 0x77, 0x9d, 0x18, 0x1c, 0x9e, 0xa6, 0xb4, 0xd7, 0xc0, 0xca, 0xb6, 0xb3, 0xbf, 0x2b, 0xc2, - 0xfa, 0x3f, 0x53, 0x85, 0x69, 0x76, 0x6d, 0xd8, 0x08, 0x48, 0x1c, 0xba, 0x67, 0xe3, 0x80, 0x84, - 0x0e, 0xa7, 0xfe, 0xd7, 0xf0, 0xab, 0x4e, 0x53, 0x30, 0xf5, 0x51, 0x07, 0x6a, 0x22, 0x1e, 0x38, - 0x46, 0xb9, 0x7a, 0x97, 0xd2, 0xf5, 0xbb, 0x6c, 0x88, 0x78, 0x60, 0xb8, 0x60, 0xea, 0xcf, 0x12, - 0x6d, 0x42, 0xad, 0x35, 0x1e, 0xf3, 0xe8, 0x82, 0xbe, 0xc9, 0x5a, 0xf4, 0x36, 0x58, 0x82, 0x0d, - 0x43, 0x12, 0x98, 0x32, 0x5a, 0xb8, 0x92, 0x2c, 0xf4, 0x3c, 0xfb, 0x7f, 0x45, 0xd8, 0x3c, 0xd5, - 0x0f, 0x5f, 0x97, 0x80, 0x1a, 0x50, 0x56, 0x42, 0x4c, 0x99, 0xe6, 0xaf, 0xf5, 0x30, 0x11, 0x77, - 0x7f, 0x32, 0xa6, 0x58, 0xe3, 0xd0, 0x53, 0xd8, 0x8e, 0x62, 0x39, 0x8e, 0xa5, 0x73, 0x41, 0x38, - 0x23, 0x83, 0x80, 0x3a, 0x21, 0x19, 0x25, 0xfd, 0x68, 0x61, 0x94, 0xc4, 0xfe, 0x91, 0x86, 0x8e, - 0xc9, 0x88, 0xda, 0xef, 0x60, 0xe3, 0x34, 0xa0, 0x74, 0x3c, 0x25, 0xf4, 0x02, 0x2a, 0x46, 0xc1, - 0x59, 0x9d, 0x13, 0x89, 0x37, 0x8c, 0xc4, 0x1b, 0x07, 0x29, 0x00, 0x67, 0x50, 0xfb, 0x87, 0x22, - 0x54, 0xde, 0x11, 0x99, 0x34, 0xf6, 0x3e, 0xac, 0x92, 0xa4, 0x32, 0xe9, 0x16, 0xf7, 0x73, 0xd4, - 0xf3, 0x75, 0xeb, 0x16, 0xb0, 0xc9, 0x40, 0xaf, 0x60, 0x25, 0x29, 0x40, 0x7a, 0xec, 0x7b, 0xb9, - 0xdc, 0x5c, 0x05, 0xbb, 0x05, 0x9c, 0xe2, 0xd1, 0x0b, 0x58, 0x16, 0xea, 0x30, 0xa9, 0xfe, 0xee, - 0xe6, 0x13, 0x67, 0x0e, 0xaa, 0x84, 0xa5, 0xd1, 0xea, 0x52, 0x33, 0x8f, 0xb1, 0xbf, 0x2f, 0x82, - 0xd5, 0xe2, 0x9c, 0x4c, 0xf4, 0x41, 0x1e, 0x42, 0x59, 0x0b, 0xba, 0xb8, 0xd8, 0x6c, 0x34, 0x00, - 0xed, 0xc0, 0xda, 0x98, 0x70, 0x12, 0x04, 0x34, 0x60, 0x62, 0xa4, 0x99, 0x57, 0xf1, 0xe5, 0x25, - 0xf4, 0x5b, 0xa8, 0x8e, 0x58, 0xe8, 0x88, 0xd8, 0x75, 0xa9, 0x10, 0x54, 0x68, 0x92, 0xd5, 0x6e, - 0x01, 0xaf, 0x8f, 0x58, 0x78, 0x6a, 0x56, 0xd1, 0x13, 0xd8, 0xba, 0x04, 0x73, 0x74, 0x75, 0xb5, - 0x3f, 0x94, 0xba, 0x05, 0xbc, 0x39, 0x85, 0x62, 0x15, 0x68, 0x23, 0xd5, 0xd6, 0x09, 0xd2, 0xe5, - 0xaa, 0x1d, 0x18, 0xb1, 0x7f, 0x2c, 0xc2, 0xba, 0x62, 0x76, 0x44, 0x25, 0xf1, 0x88, 0x24, 0x08, - 0x41, 0x59, 0x77, 0x41, 0xd2, 0x5d, 0xfa, 0xb7, 0xf2, 0x0c, 0xc9, 0x46, 0x34, 0x8a, 0x65, 0x6a, - 0x3e, 0x5f, 0xb8, 0x64, 0x83, 0x44, 0x7b, 0xb0, 0xca, 0xa9, 0xe4, 0x8c, 0x8a, 0xfa, 0xb2, 0x4e, - 0xba, 0x93, 0x2b, 0x08, 0xa6, 0x92, 0x4f, 0x4e, 0x25, 0x27, 0x92, 0x0e, 0x27, 0xd8, 0x80, 0xd1, - 0xef, 0xa0, 0xaa, 0xe7, 0x14, 0x8f, 0xc7, 0x92, 0x0d, 0x02, 0x5a, 0x5f, 0xd9, 0x29, 0xee, 0x56, - 0x94, 0x48, 0x67, 0x96, 0xdb, 0xbf, 0x82, 0x1b, 0x33, 0x0b, 0xce, 0x05, 0x09, 0x62, 0xa5, 0xb3, - 0xe5, 0x56, 0xc0, 0x88, 0x40, 0x35, 0x58, 0xba, 0x20, 0x3c, 0x3d, 0x87, 0xfa, 0x89, 0xb6, 0x61, - 0x99, 0xa8, 0x90, 0x2e, 0xb8, 0x85, 0x93, 0x07, 0xfb, 0x9b, 0x32, 0x94, 0xf5, 0xf5, 0x6d, 0x40, - 0x29, 0x53, 0x55, 0x89, 0x79, 0xe8, 0x25, 0x54, 0x46, 0x69, 0x55, 0xd2, 0xe6, 0xba, 0x3d, 0xe7, - 0x4a, 0x4d, 0xe1, 0x70, 0x06, 0x46, 0x0d, 0x58, 0x61, 0xe1, 0x38, 0x96, 0xea, 0xd6, 0xe6, 0x0d, - 0x83, 0x36, 0x0b, 0x3d, 0x16, 0x0e, 0x71, 0x8a, 0x42, 0x8f, 0x61, 0x2b, 0x1e, 0x0b, 0xc9, 0x29, - 0x19, 0xe9, 0x89, 0xe0, 0x30, 0x4f, 0xd4, 0xcb, 0x3b, 0x4b, 0xbb, 0x16, 0xde, 0x34, 0x01, 0xf5, - 0xaa, 0x9e, 0x27, 0xd0, 0x3e, 0x6c, 0xa4, 0xa2, 0xd5, 0xec, 0x75, 0x71, 0x97, 0xe6, 0x8c, 0x03, - 0x5d, 0x03, 0x5c, 0x4d, 0xb0, 0xad, 0x04, 0x8a, 0xf6, 0xc0, 0x52, 0x53, 0x3c, 0x19, 0x3b, 0x2b, - 0xfa, 0x48, 0xbf, 0x59, 0xe0, 0xbc, 0x6a, 0xf4, 0x48, 0xe3, 0xf8, 0x6d, 0xa8, 0x66, 0x5e, 0xa8, - 0x73, 0x57, 0xe7, 0x96, 0xe3, 0xb2, 0x0f, 0xab, 0x56, 0xfd, 0x74, 0xd9, 0x97, 0xff, 0x0c, 0x6b, - 0x03, 0x3d, 0x85, 0x92, 0x1d, 0x2a, 0x73, 0xed, 0x74, 0x3a, 0xa7, 0xba, 0x05, 0x0c, 0x83, 0xe9, - 0xd4, 0xda, 0x03, 0x6b, 0x48, 0x64, 0x3a, 0x30, 0xad, 0xb9, 0xcc, 0x8d, 0x9f, 0x28, 0xe6, 0x43, - 0xe3, 0x2d, 0x7f, 0x04, 0x20, 0x4a, 0x9f, 0x49, 0x22, 0xe8, 0xc4, 0x7a, 0xbe, 0x54, 0x46, 0xc0, - 0xdd, 0x02, 0xb6, 0x88, 0x79, 0x68, 0x57, 0x60, 0x45, 0x12, 0x3e, 0xa4, 0xd2, 0xfe, 0xb9, 0x04, - 0x35, 0x73, 0xb6, 0x4c, 0x27, 0x47, 0x80, 0x3e, 0xc6, 0x24, 0x60, 0x72, 0xe2, 0x44, 0xbe, 0x23, - 0x28, 0xbf, 0x60, 0xee, 0x22, 0x03, 0xfb, 0x90, 0x00, 0x4f, 0xfc, 0xd3, 0x04, 0x86, 0x6b, 0x1f, - 0x73, 0x2b, 0xe8, 0x18, 0x20, 0x0a, 0x1d, 0x9f, 0xb0, 0x20, 0xe6, 0x89, 0x85, 0x6f, 0x3c, 0x6b, - 0x2e, 0xa8, 0xaf, 0xe1, 0xd0, 0x38, 0x09, 0xdf, 0x26, 0x09, 0xef, 0xa3, 0x80, 0xb9, 0x13, 0x6c, - 0x45, 0x66, 0x01, 0xfd, 0x05, 0xca, 0x92, 0x0c, 0x4d, 0x07, 0x3e, 0xba, 0x6e, 0xa7, 0x3e, 0x19, - 0x8a, 0x4e, 0x28, 0xf9, 0x04, 0xeb, 0xb4, 0x5b, 0x2f, 0xc1, 0xca, 0x96, 0x94, 0x92, 0xce, 0xe9, - 0xc4, 0x28, 0xe9, 0x9c, 0x4e, 0x94, 0x92, 0xb4, 0xda, 0x8c, 0x92, 0xf4, 0xc3, 0x9f, 0x4a, 0xaf, - 0x8a, 0xf6, 0x07, 0xd8, 0xcc, 0xb1, 0x42, 0xdb, 0x50, 0x7b, 0xdb, 0xea, 0x1d, 0x3a, 0xbd, 0xa3, - 0xa3, 0xce, 0x41, 0xaf, 0xd5, 0xef, 0x1c, 0xfe, 0xbb, 0x56, 0x40, 0xbb, 0xf0, 0x40, 0xaf, 0xb6, - 0xde, 0xf6, 0x3b, 0xd8, 0xe9, 0xfc, 0xab, 0xf3, 0xe6, 0xef, 0xfd, 0x56, 0xfb, 0xb0, 0xe3, 0x1c, - 0x9f, 0x1c, 0x74, 0x4e, 0x9d, 0x37, 0x27, 0x47, 0xef, 0x0f, 0x3b, 0xfd, 0x4e, 0xad, 0x68, 0xff, - 0x15, 0xea, 0x79, 0xbe, 0x07, 0xc9, 0xa7, 0x8d, 0x40, 0x0f, 0xf2, 0x66, 0xa1, 0x48, 0x56, 0x72, - 0x56, 0x61, 0x7f, 0xbb, 0x34, 0xbd, 0xc0, 0x3e, 0x1d, 0x8d, 0x03, 0x22, 0x29, 0x7a, 0x94, 0xc9, - 0xfd, 0x4b, 0x63, 0x5d, 0x3b, 0xc1, 0xfe, 0x15, 0x27, 0xb8, 0x7f, 0x4d, 0x41, 0x2f, 0xb9, 0xc1, - 0x3e, 0x58, 0xd9, 0x77, 0xf7, 0x82, 0x59, 0xa3, 0x86, 0xb2, 0xd7, 0x33, 0x20, 0x3c, 0xc5, 0xa3, - 0x47, 0xb0, 0xac, 0x3a, 0x37, 0xb1, 0x83, 0x05, 0x33, 0x25, 0x41, 0xa0, 0xa7, 0xb0, 0x9a, 0xa8, - 0xdd, 0x58, 0xc2, 0x22, 0xdb, 0x31, 0x30, 0xb4, 0x07, 0xeb, 0x69, 0xc3, 0x5d, 0x76, 0x84, 0xb9, - 0xef, 0x58, 0x4b, 0x81, 0x5a, 0x54, 0x7d, 0xd8, 0x32, 0xa7, 0x73, 0xd2, 0x8f, 0x4c, 0x91, 0x5a, - 0xc2, 0xc3, 0x6b, 0xea, 0x62, 0x2e, 0x0e, 0xd7, 0x46, 0xb9, 0x15, 0xfb, 0x6f, 0xb0, 0x75, 0xe5, - 0xb3, 0x4f, 0xe9, 0x9e, 0x53, 0x11, 0xc5, 0xdc, 0xa5, 0x22, 0xbd, 0xab, 0xfa, 0x95, 0x31, 0x92, - 0xc6, 0xf1, 0x14, 0xda, 0xde, 0xfb, 0xcf, 0x1f, 0x86, 0x4c, 0x9e, 0xc5, 0x83, 0x86, 0x1b, 0x8d, - 0x9a, 0x3a, 0x21, 0xe2, 0xc3, 0x66, 0xf6, 0xdf, 0x64, 0x48, 0xc3, 0xe6, 0x78, 0xf0, 0xfb, 0x61, - 0xd4, 0x9c, 0xf9, 0xbb, 0x32, 0x58, 0xd1, 0x03, 0xed, 0xf9, 0x2f, 0x01, 0x00, 0x00, 0xff, 0xff, - 0xc8, 0xd8, 0x49, 0xbd, 0xc4, 0x0d, 0x00, 0x00, + 0xc9, 0xa4, 0x52, 0x26, 0x99, 0x38, 0x69, 0x9c, 0x66, 0x2a, 0xc5, 0x4a, 0xa4, 0xa9, 0x3f, 0x12, + 0x58, 0xfd, 0xdc, 0x70, 0x20, 0x12, 0x94, 0x31, 0xa6, 0x48, 0x05, 0x00, 0x9d, 0x68, 0xfa, 0x27, + 0xba, 0xeb, 0xb2, 0x33, 0x5d, 0xf4, 0x6f, 0x74, 0xd5, 0xed, 0x5b, 0xbd, 0x9f, 0xf3, 0x16, 0x6f, + 0x00, 0x12, 0x94, 0x45, 0x4b, 0x71, 0x76, 0x24, 0xee, 0xb9, 0xe0, 0xc1, 0xc5, 0x3d, 0xe7, 0x4a, + 0x70, 0xc7, 0x0f, 0x26, 0x92, 0x32, 0x2f, 0x68, 0xba, 0x11, 0xa7, 0xcd, 0x2f, 0x11, 0x3f, 0xf7, + 0x83, 0xe8, 0x4b, 0x63, 0xcc, 0x23, 0x19, 0xa1, 0xaa, 0x89, 0x36, 0x54, 0xf4, 0xd6, 0xdd, 0x59, + 0xb0, 0x1b, 0x85, 0x1e, 0x93, 0x2c, 0x0a, 0x13, 0x74, 0x3e, 0x4c, 0xbf, 0x52, 0x37, 0xbe, 0x14, + 0xbe, 0x37, 0x1b, 0x66, 0x1e, 0x0d, 0x25, 0xf3, 0x19, 0xe5, 0xf3, 0xd3, 0x59, 0x28, 0x29, 0xf7, + 0x89, 0x4b, 0xd3, 0x70, 0x8e, 0x69, 0xc0, 0x24, 0xe5, 0x24, 0x10, 0x69, 0xf4, 0xe6, 0x6c, 0x54, + 0x12, 0x71, 0xbe, 0x28, 0x34, 0x19, 0x53, 0x31, 0x7f, 0x4f, 0x41, 0xdd, 0x98, 0x33, 0x39, 0x31, + 0x84, 0x87, 0x51, 0x34, 0x0c, 0x68, 0x53, 0xbf, 0x0d, 0x62, 0xbf, 0xe9, 0xc5, 0x9c, 0x4c, 0x0f, + 0x64, 0xff, 0x03, 0x56, 0x7b, 0x7e, 0x3b, 0x88, 0xdc, 0x73, 0xf4, 0x16, 0xac, 0xac, 0x1a, 0xf5, + 0xe2, 0x4e, 0x71, 0x77, 0xed, 0xd9, 0x4e, 0x63, 0xa6, 0x78, 0x8d, 0x76, 0x14, 0x05, 0x94, 0x84, + 0x9d, 0xaf, 0x63, 0x4e, 0x85, 0x60, 0x51, 0x88, 0xa7, 0x29, 0xe8, 0x29, 0x58, 0xf2, 0x8c, 0x86, + 0x4e, 0x18, 0x79, 0xb4, 0x5e, 0xd2, 0xf9, 0x37, 0x72, 0xf9, 0xc7, 0x91, 0x47, 0x71, 0x45, 0xa1, + 0xd4, 0x93, 0xfd, 0x63, 0x11, 0xd6, 0x7a, 0x7e, 0x27, 0x10, 0x34, 0x61, 0xf0, 0x18, 0xca, 0x2e, + 0x11, 0x34, 0xfd, 0xf8, 0x2f, 0x73, 0xc9, 0x29, 0x4f, 0xac, 0x31, 0xe8, 0x09, 0x2c, 0x47, 0xf2, + 0x8c, 0xf2, 0x7a, 0x69, 0x67, 0xe9, 0x1b, 0xe0, 0x04, 0x84, 0x9e, 0x81, 0x45, 0x03, 0x41, 0x13, + 0x6e, 0x4b, 0x0b, 0xb9, 0x75, 0x0b, 0xb8, 0xa2, 0x70, 0xea, 0x59, 0x7d, 0x81, 0x72, 0x1e, 0xf1, + 0x7a, 0x59, 0xe3, 0xb7, 0x73, 0xf8, 0x8e, 0x8a, 0x75, 0x0b, 0x38, 0x01, 0xb5, 0x2d, 0x58, 0xf5, + 0xa8, 0x4f, 0xe2, 0x40, 0xda, 0x2d, 0x80, 0x36, 0x27, 0xa1, 0x7b, 0xa6, 0xb7, 0x79, 0x0e, 0xab, + 0xcc, 0x77, 0xd4, 0xae, 0xe9, 0xb9, 0x6e, 0x5d, 0xa1, 0x9a, 0x55, 0x00, 0xaf, 0x30, 0xfd, 0x62, + 0xff, 0xab, 0x08, 0x95, 0x3e, 0x11, 0xe7, 0x7a, 0x87, 0xb7, 0xb0, 0xce, 0xa9, 0x4f, 0x39, 0x0d, + 0x5d, 0xea, 0x30, 0x2f, 0xdd, 0xe6, 0x66, 0x7e, 0x9b, 0xac, 0x17, 0xbb, 0x05, 0xbc, 0x96, 0x25, + 0xf4, 0x3c, 0x75, 0xb1, 0xd1, 0x05, 0xe5, 0x9c, 0x79, 0x54, 0xa4, 0x17, 0x93, 0xbf, 0x58, 0xf3, + 0xad, 0x13, 0x83, 0xc3, 0xd3, 0x94, 0xf6, 0x1a, 0x58, 0xd9, 0x76, 0xf6, 0x7f, 0x8b, 0xb0, 0xfe, + 0x97, 0x54, 0x61, 0x9a, 0x5d, 0x1b, 0x36, 0x02, 0x12, 0x87, 0xee, 0xd9, 0x38, 0x20, 0xa1, 0xc3, + 0xa9, 0xff, 0x3d, 0xfc, 0xaa, 0xd3, 0x14, 0x4c, 0x7d, 0xd4, 0x81, 0x9a, 0x88, 0x07, 0x8e, 0x51, + 0xae, 0xde, 0xa5, 0x74, 0xfd, 0x2e, 0x1b, 0x22, 0x1e, 0x18, 0x2e, 0x98, 0xfa, 0xb3, 0x44, 0x9b, + 0x50, 0x6b, 0x8d, 0xc7, 0x3c, 0xba, 0xa0, 0xef, 0xb2, 0x16, 0xbd, 0x0d, 0x96, 0x60, 0xc3, 0x90, + 0x04, 0xa6, 0x8c, 0x16, 0xae, 0x24, 0x0b, 0x3d, 0xcf, 0xfe, 0x67, 0x11, 0x36, 0x4f, 0xf5, 0xcb, + 0xf7, 0x25, 0xa0, 0x06, 0x94, 0x95, 0x10, 0x53, 0xa6, 0xf9, 0x6b, 0x3d, 0x4c, 0xc4, 0xdd, 0x9f, + 0x8c, 0x29, 0xd6, 0x38, 0xf4, 0x14, 0xb6, 0xa3, 0x58, 0x8e, 0x63, 0xe9, 0x5c, 0x10, 0xce, 0xc8, + 0x20, 0xa0, 0x4e, 0x48, 0x46, 0x49, 0x3f, 0x5a, 0x18, 0x25, 0xb1, 0x3f, 0xa7, 0xa1, 0x63, 0x32, + 0xa2, 0xf6, 0x07, 0xd8, 0x38, 0x0d, 0x28, 0x1d, 0x4f, 0x09, 0xbd, 0x80, 0x8a, 0x51, 0x70, 0x56, + 0xe7, 0x44, 0xe2, 0x0d, 0x23, 0xf1, 0xc6, 0x41, 0x0a, 0xc0, 0x19, 0xd4, 0xfe, 0x7f, 0x11, 0x2a, + 0x1f, 0x88, 0x4c, 0x1a, 0x7b, 0x1f, 0x56, 0x49, 0x52, 0x99, 0x74, 0x8b, 0xfb, 0x39, 0xea, 0xf9, + 0xba, 0x75, 0x0b, 0xd8, 0x64, 0xa0, 0x57, 0xb0, 0x92, 0x14, 0x20, 0x3d, 0xf6, 0xbd, 0x5c, 0x6e, + 0xae, 0x82, 0xdd, 0x02, 0x4e, 0xf1, 0xe8, 0x05, 0x2c, 0x0b, 0x75, 0x98, 0x54, 0x7f, 0x77, 0xf3, + 0x89, 0x33, 0x07, 0x55, 0xc2, 0xd2, 0x68, 0x75, 0xa9, 0x99, 0xc7, 0xd8, 0xff, 0x2b, 0x82, 0xd5, + 0xe2, 0x9c, 0x4c, 0xf4, 0x41, 0x1e, 0x42, 0x59, 0x0b, 0xba, 0xb8, 0xd8, 0x6c, 0x34, 0x00, 0xed, + 0xc0, 0xda, 0x98, 0x70, 0x12, 0x04, 0x34, 0x60, 0x62, 0xa4, 0x99, 0x57, 0xf1, 0xe5, 0x25, 0xf4, + 0x6b, 0xa8, 0x8e, 0x58, 0xe8, 0x88, 0xd8, 0x75, 0xa9, 0x10, 0x54, 0x68, 0x92, 0xd5, 0x6e, 0x01, + 0xaf, 0x8f, 0x58, 0x78, 0x6a, 0x56, 0xd1, 0x13, 0xd8, 0xba, 0x04, 0x73, 0x74, 0x75, 0xb5, 0x3f, + 0x94, 0xba, 0x05, 0xbc, 0x39, 0x85, 0x62, 0x15, 0x68, 0x23, 0xd5, 0xd6, 0x09, 0xd2, 0xe5, 0xaa, + 0x1d, 0x18, 0xb1, 0x7f, 0x28, 0xc2, 0xba, 0x62, 0x76, 0x44, 0x25, 0xf1, 0x88, 0x24, 0x08, 0x41, + 0x59, 0x77, 0x41, 0xd2, 0x5d, 0xfa, 0x59, 0x79, 0x86, 0x64, 0x23, 0x1a, 0xc5, 0x32, 0x35, 0x9f, + 0x6f, 0x5c, 0xb2, 0x41, 0xa2, 0x3d, 0x58, 0xe5, 0x54, 0x72, 0x46, 0x45, 0x7d, 0x59, 0x27, 0xdd, + 0xc9, 0x15, 0x04, 0x53, 0xc9, 0x27, 0xa7, 0x92, 0x13, 0x49, 0x87, 0x13, 0x6c, 0xc0, 0xe8, 0x37, + 0x50, 0xd5, 0x73, 0x8a, 0xc7, 0x63, 0xc9, 0x06, 0x01, 0xad, 0xaf, 0xec, 0x14, 0x77, 0x2b, 0x4a, + 0xa4, 0x33, 0xcb, 0xed, 0x5f, 0xc0, 0x8d, 0x99, 0x05, 0xe7, 0x82, 0x04, 0xb1, 0xd2, 0xd9, 0x72, + 0x2b, 0x60, 0x44, 0xa0, 0x1a, 0x2c, 0x5d, 0x10, 0x9e, 0x9e, 0x43, 0x3d, 0xa2, 0x6d, 0x58, 0x26, + 0x2a, 0xa4, 0x0b, 0x6e, 0xe1, 0xe4, 0xc5, 0xfe, 0x77, 0x19, 0xca, 0xfa, 0xfa, 0x36, 0xa0, 0x94, + 0xa9, 0xaa, 0xc4, 0x3c, 0xf4, 0x12, 0x2a, 0xa3, 0xb4, 0x2a, 0x69, 0x73, 0xdd, 0x9e, 0x73, 0xa5, + 0xa6, 0x70, 0x38, 0x03, 0xa3, 0x06, 0xac, 0xb0, 0x70, 0x1c, 0x4b, 0x75, 0x6b, 0xf3, 0x86, 0x41, + 0x9b, 0x85, 0x1e, 0x0b, 0x87, 0x38, 0x45, 0xa1, 0xc7, 0xb0, 0x15, 0x8f, 0x85, 0xe4, 0x94, 0x8c, + 0xf4, 0x44, 0x70, 0x98, 0x27, 0xea, 0xe5, 0x9d, 0xa5, 0x5d, 0x0b, 0x6f, 0x9a, 0x80, 0xfa, 0x54, + 0xcf, 0x13, 0x68, 0x1f, 0x36, 0x52, 0xd1, 0x6a, 0xf6, 0xba, 0xb8, 0x4b, 0x73, 0xc6, 0x81, 0xae, + 0x01, 0xae, 0x26, 0xd8, 0x56, 0x02, 0x45, 0x7b, 0x60, 0xa9, 0x29, 0x9e, 0x8c, 0x9d, 0x15, 0x7d, + 0xa4, 0x5f, 0x2d, 0x70, 0x5e, 0x35, 0x7a, 0xa4, 0x71, 0xfc, 0x36, 0x54, 0x33, 0x2f, 0xd4, 0xb9, + 0xab, 0x73, 0xcb, 0x71, 0xd9, 0x87, 0x55, 0xab, 0x7e, 0xb9, 0xec, 0xcb, 0x6f, 0x60, 0x6d, 0xa0, + 0xa7, 0x50, 0xb2, 0x43, 0x65, 0xae, 0x9d, 0x4e, 0xe7, 0x54, 0xb7, 0x80, 0x61, 0x30, 0x9d, 0x5a, + 0x7b, 0x60, 0x0d, 0x89, 0x4c, 0x07, 0xa6, 0x35, 0x97, 0xb9, 0xf1, 0x13, 0xc5, 0x7c, 0x68, 0xbc, + 0xe5, 0x77, 0x00, 0x44, 0xe9, 0x33, 0x49, 0x04, 0x9d, 0x58, 0xcf, 0x97, 0xca, 0x08, 0xb8, 0x5b, + 0xc0, 0x16, 0x31, 0x2f, 0xed, 0x0a, 0xac, 0x48, 0xc2, 0x87, 0x54, 0xda, 0x3f, 0x95, 0xa0, 0x66, + 0xce, 0x96, 0xe9, 0xe4, 0x08, 0xd0, 0xe7, 0x98, 0x04, 0x4c, 0x4e, 0x9c, 0xc8, 0x77, 0x04, 0xe5, + 0x17, 0xcc, 0x5d, 0x64, 0x60, 0x9f, 0x12, 0xe0, 0x89, 0x7f, 0x9a, 0xc0, 0x70, 0xed, 0x73, 0x6e, + 0x05, 0x1d, 0x03, 0x44, 0xa1, 0xe3, 0x13, 0x16, 0xc4, 0x3c, 0xb1, 0xf0, 0x8d, 0x67, 0xcd, 0x05, + 0xf5, 0x35, 0x1c, 0x1a, 0x27, 0xe1, 0xfb, 0x24, 0xe1, 0x63, 0x14, 0x30, 0x77, 0x82, 0xad, 0xc8, + 0x2c, 0xa0, 0xdf, 0x43, 0x59, 0x92, 0xa1, 0xe9, 0xc0, 0x47, 0xd7, 0xed, 0xd4, 0x27, 0x43, 0xd1, + 0x09, 0x25, 0x9f, 0x60, 0x9d, 0x76, 0xeb, 0x25, 0x58, 0xd9, 0x92, 0x52, 0xd2, 0x39, 0x9d, 0x18, + 0x25, 0x9d, 0xd3, 0x89, 0x52, 0x92, 0x56, 0x9b, 0x51, 0x92, 0x7e, 0x79, 0x5d, 0x7a, 0x55, 0xb4, + 0x3f, 0xc1, 0x66, 0x8e, 0x15, 0xda, 0x86, 0xda, 0xfb, 0x56, 0xef, 0xd0, 0xe9, 0x1d, 0x1d, 0x75, + 0x0e, 0x7a, 0xad, 0x7e, 0xe7, 0xf0, 0x6f, 0xb5, 0x02, 0xda, 0x85, 0x07, 0x7a, 0xb5, 0xf5, 0xbe, + 0xdf, 0xc1, 0x4e, 0xe7, 0xaf, 0x9d, 0x77, 0x7f, 0xea, 0xb7, 0xda, 0x87, 0x1d, 0xe7, 0xf8, 0xe4, + 0xa0, 0x73, 0xea, 0xbc, 0x3b, 0x39, 0xfa, 0x78, 0xd8, 0xe9, 0x77, 0x6a, 0x45, 0xfb, 0x0f, 0x50, + 0xcf, 0xf3, 0x3d, 0x48, 0x7e, 0xda, 0x08, 0xf4, 0x20, 0x6f, 0x16, 0x8a, 0x64, 0x25, 0x67, 0x15, + 0xf6, 0x7f, 0x96, 0xa6, 0x17, 0xd8, 0xa7, 0xa3, 0x71, 0x40, 0x24, 0x45, 0x8f, 0x32, 0xb9, 0x7f, + 0x6b, 0xac, 0x6b, 0x27, 0xd8, 0xbf, 0xe2, 0x04, 0xf7, 0xaf, 0x29, 0xe8, 0x25, 0x37, 0xd8, 0x07, + 0x2b, 0xfb, 0xdd, 0xbd, 0x60, 0xd6, 0xa8, 0xa1, 0xec, 0xf5, 0x0c, 0x08, 0x4f, 0xf1, 0xe8, 0x11, + 0x2c, 0xab, 0xce, 0x4d, 0xec, 0x60, 0xc1, 0x4c, 0x49, 0x10, 0xe8, 0x29, 0xac, 0x26, 0x6a, 0x37, + 0x96, 0xb0, 0xc8, 0x76, 0x0c, 0x0c, 0xed, 0xc1, 0x7a, 0xda, 0x70, 0x97, 0x1d, 0x61, 0xee, 0x37, + 0xd6, 0x52, 0xa0, 0x16, 0x55, 0x1f, 0xb6, 0xcc, 0xe9, 0x9c, 0xf4, 0x47, 0xa6, 0x48, 0x2d, 0xe1, + 0xe1, 0x35, 0x75, 0x31, 0x17, 0x87, 0x6b, 0xa3, 0xdc, 0x8a, 0xfd, 0x47, 0xd8, 0xba, 0xf2, 0xb3, + 0x4f, 0xe9, 0x9e, 0x53, 0x11, 0xc5, 0xdc, 0xa5, 0x22, 0xbd, 0xab, 0xfa, 0x95, 0x31, 0x92, 0xc6, + 0xf1, 0x14, 0xda, 0x7e, 0xf3, 0xf7, 0xd7, 0x43, 0x26, 0xcf, 0xe2, 0x41, 0xc3, 0x8d, 0x46, 0x4d, + 0x9d, 0x10, 0xf1, 0x61, 0xf2, 0xd0, 0xcc, 0xfe, 0xa1, 0x0c, 0x69, 0xd8, 0x1c, 0x0f, 0x7e, 0x3b, + 0x8c, 0x9a, 0x33, 0x7f, 0x5a, 0x06, 0x2b, 0x7a, 0xac, 0x3d, 0xff, 0x39, 0x00, 0x00, 0xff, 0xff, + 0x7d, 0xc4, 0xce, 0x2c, 0xca, 0x0d, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/core/workflow_closure.pb.go b/flyteidl/gen/pb-go/flyteidl/core/workflow_closure.pb.go index 136a5bad0f..a6481858d4 100644 --- a/flyteidl/gen/pb-go/flyteidl/core/workflow_closure.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/core/workflow_closure.pb.go @@ -5,8 +5,9 @@ package core import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -80,7 +81,7 @@ func init() { } var fileDescriptor_76071051330050c4 = []byte{ - // 194 bytes of a gzipped FileDescriptorProto + // 196 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 +90,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, 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, + 0xa4, 0xd1, 0x74, 0x86, 0x24, 0x16, 0x67, 0xc3, 0x75, 0x41, 0x54, 0x3a, 0xd9, 0x44, 0x59, 0xa5, + 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x83, 0xd5, 0xe7, 0x17, 0xa5, 0x43, + 0x18, 0xfa, 0x70, 0xa7, 0xa7, 0xa7, 0xe6, 0xe9, 0x17, 0x24, 0xe9, 0xa6, 0xe7, 0xeb, 0xa3, 0xf8, + 0x26, 0x89, 0x0d, 0xec, 0x11, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x02, 0xc9, 0xbd, 0x17, + 0x38, 0x01, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/datacatalog/datacatalog.pb.go b/flyteidl/gen/pb-go/flyteidl/datacatalog/datacatalog.pb.go index a643383127..bc01248126 100644 --- a/flyteidl/gen/pb-go/flyteidl/datacatalog/datacatalog.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/datacatalog/datacatalog.pb.go @@ -6,14 +6,15 @@ package datacatalog import ( context "context" fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + math "math" + + core "github.com/flyteorg/flyte/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" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -97,7 +98,6 @@ func (PaginationOptions_SortKey) EnumDescriptor() ([]byte, []int) { return fileDescriptor_275951237ff4368a, []int{36, 1} } -// // Request message for creating a Dataset. type CreateDatasetRequest struct { Dataset *Dataset `protobuf:"bytes,1,opt,name=dataset,proto3" json:"dataset,omitempty"` @@ -138,7 +138,6 @@ func (m *CreateDatasetRequest) GetDataset() *Dataset { return nil } -// // Response message for creating a Dataset type CreateDatasetResponse struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -171,7 +170,6 @@ func (m *CreateDatasetResponse) XXX_DiscardUnknown() { var xxx_messageInfo_CreateDatasetResponse proto.InternalMessageInfo -// // Request message for retrieving a Dataset. The Dataset is retrieved by it's unique identifier // which is a combination of several fields. type GetDatasetRequest struct { @@ -213,7 +211,6 @@ func (m *GetDatasetRequest) GetDataset() *DatasetID { return nil } -// // Response message for retrieving a Dataset. The response will include the metadata for the // Dataset. type GetDatasetResponse struct { @@ -255,7 +252,6 @@ func (m *GetDatasetResponse) GetDataset() *Dataset { return nil } -// // Request message for retrieving an Artifact. Retrieve an artifact based on a query handle that // can be one of artifact_id or tag. The result returned will include the artifact data and metadata // associated with the artifact. @@ -347,7 +343,6 @@ func (*GetArtifactRequest) XXX_OneofWrappers() []interface{} { } } -// // Response message for retrieving an Artifact. The result returned will include the artifact data // and metadata associated with the artifact. type GetArtifactResponse struct { @@ -389,7 +384,6 @@ func (m *GetArtifactResponse) GetArtifact() *Artifact { return nil } -// // Request message for creating an Artifact and its associated artifact Data. type CreateArtifactRequest struct { Artifact *Artifact `protobuf:"bytes,1,opt,name=artifact,proto3" json:"artifact,omitempty"` @@ -430,7 +424,6 @@ func (m *CreateArtifactRequest) GetArtifact() *Artifact { return nil } -// // Response message for creating an Artifact. type CreateArtifactResponse struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -463,7 +456,6 @@ func (m *CreateArtifactResponse) XXX_DiscardUnknown() { var xxx_messageInfo_CreateArtifactResponse proto.InternalMessageInfo -// // Request message for tagging an Artifact. type AddTagRequest struct { Tag *Tag `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"` @@ -504,7 +496,6 @@ func (m *AddTagRequest) GetTag() *Tag { return nil } -// // Response message for tagging an Artifact. type AddTagResponse struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -746,7 +737,6 @@ func (m *ListDatasetsResponse) GetNextToken() string { return "" } -// // Request message for updating an Artifact and overwriting its associated ArtifactData. type UpdateArtifactRequest struct { // ID of dataset the artifact is associated with @@ -849,7 +839,6 @@ func (*UpdateArtifactRequest) XXX_OneofWrappers() []interface{} { } } -// // Response message for updating an Artifact. type UpdateArtifactResponse struct { // The unique ID of the artifact updated @@ -891,7 +880,6 @@ func (m *UpdateArtifactResponse) GetArtifactId() string { return "" } -// // ReservationID message that is composed of several string fields. type ReservationID struct { // The unique ID for the reserved dataset @@ -942,7 +930,7 @@ func (m *ReservationID) GetTagName() string { return "" } -// Try to acquire or extend an artifact reservation. If an active reservation exists, retreive that instance. +// Try to acquire or extend an artifact reservation. If an active reservation exists, retrieve that instance. type GetOrExtendReservationRequest struct { // The unique ID for the reservation ReservationId *ReservationID `protobuf:"bytes,1,opt,name=reservation_id,json=reservationId,proto3" json:"reservation_id,omitempty"` @@ -1201,7 +1189,6 @@ func (m *ReleaseReservationResponse) XXX_DiscardUnknown() { var xxx_messageInfo_ReleaseReservationResponse proto.InternalMessageInfo -// // Dataset message. It is uniquely identified by DatasetID. type Dataset struct { Id *DatasetID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` @@ -1258,7 +1245,6 @@ func (m *Dataset) GetPartitionKeys() []string { return nil } -// // An artifact could have multiple partitions and each partition can have an arbitrary string key/value pair type Partition struct { Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` @@ -1307,7 +1293,6 @@ func (m *Partition) GetValue() string { return "" } -// // DatasetID message that is composed of several string fields. type DatasetID struct { Project string `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"` @@ -1380,7 +1365,6 @@ func (m *DatasetID) GetUUID() string { return "" } -// // Artifact message. It is composed of several string fields. type Artifact struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` @@ -1469,7 +1453,6 @@ func (m *Artifact) GetCreatedAt() *timestamp.Timestamp { return nil } -// // ArtifactData that belongs to an artifact type ArtifactData struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` @@ -1518,7 +1501,6 @@ func (m *ArtifactData) GetValue() *core.Literal { return nil } -// // Tag message that is unique to a Dataset. It is associated to a single artifact and // can be retrieved by name later. type Tag struct { @@ -1576,7 +1558,6 @@ func (m *Tag) GetDataset() *DatasetID { return nil } -// // Metadata representation for artifacts and datasets type Metadata struct { KeyMap map[string]string `protobuf:"bytes,1,rep,name=key_map,json=keyMap,proto3" json:"key_map,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` @@ -2253,110 +2234,110 @@ func init() { var fileDescriptor_275951237ff4368a = []byte{ // 1669 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x58, 0x4b, 0x6f, 0xdb, 0xc6, - 0x16, 0x36, 0x25, 0x47, 0x32, 0x8f, 0x2c, 0x45, 0x9e, 0xd8, 0x8e, 0xac, 0x24, 0xb6, 0xc2, 0x04, - 0xbe, 0x46, 0xee, 0x8d, 0x94, 0x6b, 0x27, 0xc1, 0x4d, 0x72, 0xfb, 0x90, 0x2d, 0xc5, 0x56, 0x1d, - 0x3f, 0x42, 0x3f, 0x80, 0x3e, 0x00, 0x61, 0x6c, 0x8e, 0x19, 0xd6, 0x94, 0xc8, 0x90, 0xe3, 0xd4, - 0x5a, 0x15, 0xdd, 0x74, 0xd1, 0x76, 0x57, 0xa0, 0x7f, 0xa0, 0x3f, 0xa4, 0xcb, 0x74, 0xd5, 0xdf, - 0x54, 0x0c, 0x39, 0x43, 0x91, 0x14, 0x65, 0x2b, 0x5e, 0x04, 0xe8, 0x86, 0xe0, 0xcc, 0x9c, 0xf3, - 0xcd, 0x79, 0xcc, 0x99, 0x73, 0xce, 0xc0, 0xe2, 0x89, 0xd9, 0xa3, 0xc4, 0xd0, 0xcc, 0x9a, 0x86, - 0x29, 0x3e, 0xc6, 0x14, 0x9b, 0x96, 0x1e, 0xfe, 0xaf, 0xda, 0x8e, 0x45, 0x2d, 0x94, 0x0b, 0x4d, - 0x95, 0x6f, 0x07, 0x4c, 0xc7, 0x96, 0x43, 0x6a, 0xa6, 0x41, 0x89, 0x83, 0x4d, 0xd7, 0x27, 0x2d, - 0xcf, 0xeb, 0x96, 0xa5, 0x9b, 0xa4, 0xe6, 0x8d, 0x8e, 0xce, 0x4e, 0x6a, 0xda, 0x99, 0x83, 0xa9, - 0x61, 0x75, 0xf9, 0xfa, 0x42, 0x7c, 0x9d, 0x1a, 0x1d, 0xe2, 0x52, 0xdc, 0xb1, 0x7d, 0x02, 0xe5, - 0x25, 0x4c, 0xaf, 0x39, 0x04, 0x53, 0xd2, 0xc0, 0x14, 0xbb, 0x84, 0xaa, 0xe4, 0xed, 0x19, 0x71, - 0x29, 0xaa, 0x42, 0x56, 0xf3, 0x67, 0x4a, 0x52, 0x45, 0x5a, 0xca, 0x2d, 0x4f, 0x57, 0xc3, 0x82, - 0x0a, 0x6a, 0x41, 0xa4, 0xdc, 0x84, 0x99, 0x18, 0x8e, 0x6b, 0x5b, 0x5d, 0x97, 0x28, 0x4d, 0x98, - 0x5a, 0x27, 0x34, 0x86, 0xfe, 0x28, 0x8e, 0x3e, 0x9b, 0x84, 0xde, 0x6a, 0xf4, 0xf1, 0x1b, 0x80, - 0xc2, 0x30, 0x3e, 0xf8, 0x07, 0x4b, 0xf9, 0x9b, 0xe4, 0xc1, 0xd4, 0x1d, 0x6a, 0x9c, 0xe0, 0xe3, - 0xab, 0x8b, 0x83, 0xee, 0x42, 0x0e, 0x73, 0x90, 0xb6, 0xa1, 0x95, 0x52, 0x15, 0x69, 0x49, 0xde, - 0x18, 0x53, 0x41, 0x4c, 0xb6, 0x34, 0x74, 0x0b, 0x26, 0x28, 0xd6, 0xdb, 0x5d, 0xdc, 0x21, 0xa5, - 0x34, 0x5f, 0xcf, 0x52, 0xac, 0x6f, 0xe3, 0x0e, 0x59, 0x2d, 0xc0, 0xe4, 0xdb, 0x33, 0xe2, 0xf4, - 0xda, 0x6f, 0x70, 0x57, 0x33, 0x89, 0xb2, 0x01, 0x37, 0x22, 0x72, 0x71, 0xfd, 0xfe, 0x0b, 0x13, - 0x02, 0x91, 0x4b, 0x36, 0x13, 0x91, 0x2c, 0x60, 0x08, 0xc8, 0x94, 0x2f, 0x84, 0x23, 0xe2, 0x4a, - 0x5e, 0x01, 0xab, 0x04, 0xb3, 0x71, 0x2c, 0xee, 0xd5, 0x15, 0xc8, 0xd7, 0x35, 0x6d, 0x1f, 0xeb, - 0x02, 0x5d, 0x81, 0x34, 0xc5, 0x3a, 0x07, 0x2e, 0x46, 0x80, 0x19, 0x15, 0x5b, 0x54, 0x8a, 0x50, - 0x10, 0x4c, 0x1c, 0xe6, 0x0f, 0x09, 0xa6, 0x5f, 0x19, 0x6e, 0xa0, 0xb8, 0x7b, 0x75, 0x8f, 0x3c, - 0x81, 0xcc, 0x89, 0x61, 0x52, 0xe2, 0x78, 0xce, 0xc8, 0x2d, 0xdf, 0x89, 0x30, 0xbc, 0xf4, 0x96, - 0x9a, 0xe7, 0xb6, 0x43, 0x5c, 0xd7, 0xb0, 0xba, 0x2a, 0x27, 0x46, 0x9f, 0x02, 0xd8, 0x58, 0x37, - 0xba, 0x5e, 0xd0, 0x78, 0x7e, 0xca, 0x2d, 0xcf, 0x47, 0x58, 0x77, 0x83, 0xe5, 0x1d, 0x9b, 0x7d, - 0x5d, 0x35, 0xc4, 0xa1, 0x9c, 0xc2, 0x4c, 0x4c, 0x01, 0xee, 0xba, 0x15, 0x90, 0x85, 0x1d, 0xdd, - 0x92, 0x54, 0x49, 0x0f, 0xb7, 0x77, 0x9f, 0x0e, 0xdd, 0x01, 0xe8, 0x92, 0x73, 0xda, 0xa6, 0xd6, - 0x29, 0xe9, 0xfa, 0xa7, 0x4a, 0x95, 0xd9, 0xcc, 0x3e, 0x9b, 0x50, 0x7e, 0x91, 0xe0, 0x06, 0xdb, - 0x8d, 0xab, 0x1f, 0x58, 0xab, 0xaf, 0xbb, 0x74, 0x75, 0xdd, 0x53, 0x1f, 0xac, 0xbb, 0xee, 0x3b, - 0xaf, 0x2f, 0x0d, 0x57, 0xfd, 0x11, 0x4c, 0x70, 0xaf, 0x08, 0xcd, 0x93, 0xc3, 0x32, 0xa0, 0xba, - 0x4c, 0xef, 0x3f, 0x25, 0x98, 0x39, 0xb0, 0xb5, 0x84, 0x43, 0xfd, 0xd1, 0x23, 0x17, 0x3d, 0x84, - 0x71, 0x06, 0x55, 0x1a, 0xf7, 0x14, 0x9b, 0x4b, 0x74, 0x29, 0xdb, 0x56, 0xf5, 0xc8, 0x06, 0x02, - 0xfd, 0x19, 0xcc, 0xc6, 0x35, 0xe1, 0x56, 0x5b, 0x88, 0x0a, 0x26, 0x79, 0x46, 0x08, 0x89, 0xa5, - 0x60, 0xc8, 0xab, 0xc4, 0x25, 0xce, 0x3b, 0xcf, 0xfa, 0xad, 0x06, 0x7a, 0x02, 0xc0, 0xb5, 0x12, - 0x0c, 0xc3, 0xf5, 0x97, 0x39, 0x65, 0x4b, 0x43, 0x73, 0x21, 0xf5, 0x7c, 0x53, 0x0b, 0xe5, 0x94, - 0xf7, 0x12, 0xdc, 0x59, 0x27, 0x74, 0xc7, 0x69, 0x9e, 0x53, 0xd2, 0xd5, 0x42, 0xdb, 0x09, 0x83, - 0xd7, 0xa1, 0xe0, 0xf4, 0x67, 0xfb, 0xfb, 0x96, 0x23, 0xfb, 0x46, 0xe4, 0x54, 0xf3, 0x21, 0x0e, - 0x7f, 0x7f, 0xeb, 0xbb, 0x2e, 0x71, 0x02, 0xf3, 0xab, 0x59, 0x6f, 0xdc, 0xd2, 0xd0, 0x06, 0xa0, - 0x37, 0x04, 0x3b, 0xf4, 0x88, 0x60, 0xda, 0x36, 0xba, 0x94, 0x71, 0x99, 0x3c, 0x2a, 0xe7, 0xaa, - 0x7e, 0x2e, 0xab, 0x8a, 0x5c, 0x56, 0x6d, 0xf0, 0x5c, 0xa7, 0x4e, 0x05, 0x4c, 0x2d, 0xce, 0xa3, - 0xfc, 0x9e, 0x82, 0x5c, 0x48, 0x8a, 0x7f, 0x8a, 0xdc, 0xe8, 0x19, 0x00, 0x39, 0xb7, 0x0d, 0x87, - 0xb8, 0x6d, 0x4c, 0x4b, 0xe3, 0x5c, 0xc6, 0x38, 0xc2, 0xbe, 0xc8, 0xe2, 0xaa, 0xcc, 0xa9, 0xeb, - 0xde, 0x05, 0xdf, 0x21, 0x14, 0x7b, 0xa7, 0x33, 0x93, 0x70, 0xc1, 0x6f, 0xf1, 0x45, 0x35, 0x20, - 0x53, 0xbe, 0x81, 0xf9, 0x61, 0xee, 0xe6, 0xa7, 0xf2, 0x39, 0xe4, 0x42, 0x56, 0xe0, 0x46, 0x2b, - 0x0d, 0x33, 0x9a, 0x1a, 0x26, 0x56, 0x7a, 0x30, 0xa7, 0x12, 0x93, 0x60, 0x97, 0x7c, 0xec, 0x83, - 0xa4, 0xdc, 0x86, 0x72, 0xd2, 0xd6, 0x3c, 0xed, 0xfc, 0x24, 0x41, 0x96, 0x87, 0x06, 0x5a, 0x84, - 0xd4, 0xa5, 0xc1, 0x93, 0x32, 0xb4, 0x88, 0x75, 0x53, 0x23, 0x59, 0x17, 0xdd, 0x87, 0xbc, 0xcd, - 0xe2, 0x97, 0xed, 0xbd, 0x49, 0x7a, 0x6e, 0x29, 0x5d, 0x49, 0x2f, 0xc9, 0x6a, 0x74, 0x52, 0x59, - 0x01, 0x79, 0x57, 0x4c, 0xa0, 0x22, 0xa4, 0x4f, 0x49, 0x8f, 0x07, 0x3f, 0xfb, 0x45, 0xd3, 0x70, - 0xed, 0x1d, 0x36, 0xcf, 0x44, 0xa8, 0xfa, 0x03, 0xe5, 0x7b, 0x90, 0x03, 0xf1, 0x50, 0x09, 0xb2, - 0xb6, 0x63, 0x7d, 0x4b, 0x78, 0x62, 0x97, 0x55, 0x31, 0x44, 0x08, 0xc6, 0x43, 0x61, 0xee, 0xfd, - 0xa3, 0x59, 0xc8, 0x68, 0x56, 0x07, 0x1b, 0x7e, 0xb6, 0x93, 0x55, 0x3e, 0x62, 0x28, 0xef, 0x88, - 0xc3, 0x12, 0x84, 0x77, 0xec, 0x64, 0x55, 0x0c, 0x19, 0xca, 0xc1, 0x41, 0xab, 0x51, 0xba, 0xe6, - 0xa3, 0xb0, 0x7f, 0xe5, 0x7d, 0x0a, 0x26, 0xc4, 0x15, 0x86, 0x0a, 0x81, 0x0d, 0x65, 0xcf, 0x56, - 0xa1, 0x5b, 0x39, 0x35, 0xda, 0xad, 0x2c, 0x6e, 0xd5, 0xf4, 0x48, 0xb7, 0x6a, 0xc4, 0x19, 0xe3, - 0xa3, 0x39, 0xe3, 0x29, 0x4b, 0x76, 0xdc, 0xcc, 0x6e, 0xe9, 0x9a, 0xb7, 0xcf, 0x6c, 0x2c, 0xd9, - 0xf1, 0x65, 0x35, 0x44, 0x89, 0xee, 0xc3, 0x38, 0xc5, 0xba, 0x5b, 0xca, 0x78, 0x1c, 0x83, 0x95, - 0x8d, 0xb7, 0xca, 0xc2, 0xf6, 0xd8, 0xab, 0x94, 0x34, 0x16, 0xb6, 0xd9, 0xcb, 0xc3, 0x96, 0x53, - 0xd7, 0xa9, 0xb2, 0x0b, 0x93, 0x61, 0x0d, 0x03, 0x9f, 0x49, 0x21, 0x9f, 0xfd, 0x27, 0x7c, 0x08, - 0x98, 0xdc, 0xa2, 0x29, 0xa8, 0xb2, 0xa6, 0xa0, 0xfa, 0xca, 0x6f, 0x0a, 0xc4, 0xe1, 0x30, 0x21, - 0xbd, 0x8f, 0xf5, 0x44, 0xa0, 0x85, 0x84, 0xec, 0x17, 0xc9, 0x7d, 0x21, 0xd7, 0xa5, 0x47, 0xab, - 0xcc, 0x7f, 0x90, 0x60, 0x42, 0xd8, 0x1b, 0x3d, 0x87, 0xec, 0x29, 0xe9, 0xb5, 0x3b, 0xd8, 0xe6, - 0x99, 0xff, 0x6e, 0xa2, 0x5f, 0xaa, 0x9b, 0xa4, 0xb7, 0x85, 0xed, 0x66, 0x97, 0x3a, 0x3d, 0x35, - 0x73, 0xea, 0x0d, 0xca, 0xcf, 0x20, 0x17, 0x9a, 0x1e, 0x35, 0x14, 0x9e, 0xa7, 0xfe, 0x27, 0x29, - 0x3b, 0x50, 0x8c, 0x57, 0x39, 0xe8, 0x05, 0x64, 0xfd, 0x3a, 0xc7, 0x4d, 0x14, 0x65, 0xcf, 0xe8, - 0xea, 0x26, 0xd9, 0x75, 0x2c, 0x9b, 0x38, 0xb4, 0xe7, 0x73, 0xab, 0x82, 0x43, 0xf9, 0x2b, 0x0d, - 0xd3, 0x49, 0x14, 0xe8, 0x33, 0x00, 0x96, 0x3c, 0x23, 0xe5, 0xd6, 0x7c, 0xfc, 0x50, 0x44, 0x79, - 0x36, 0xc6, 0x54, 0x99, 0x62, 0x9d, 0x03, 0xbc, 0x86, 0x62, 0x70, 0xba, 0xda, 0x91, 0x8a, 0xf5, - 0x7e, 0xf2, 0x69, 0x1c, 0x00, 0xbb, 0x1e, 0xf0, 0x73, 0xc8, 0x6d, 0xb8, 0x1e, 0x38, 0x95, 0x23, - 0xfa, 0xbe, 0xbb, 0x97, 0x18, 0x47, 0x03, 0x80, 0x05, 0xc1, 0xcd, 0xf1, 0x36, 0xa1, 0x20, 0xea, - 0x0a, 0x0e, 0xe7, 0xc7, 0x98, 0x92, 0x74, 0x14, 0x06, 0xd0, 0xf2, 0x9c, 0x97, 0x83, 0xed, 0xc2, - 0x04, 0x23, 0xc0, 0xd4, 0x72, 0x4a, 0x50, 0x91, 0x96, 0x0a, 0xcb, 0x8f, 0x2f, 0xf5, 0x43, 0x75, - 0xcd, 0xea, 0xd8, 0xd8, 0x31, 0x5c, 0x56, 0x77, 0xfa, 0xbc, 0x6a, 0x80, 0xa2, 0x54, 0x00, 0x0d, - 0xae, 0x23, 0x80, 0x4c, 0xf3, 0xf5, 0x41, 0xfd, 0xd5, 0x5e, 0x71, 0x6c, 0x75, 0x0a, 0xae, 0xdb, - 0x1c, 0x90, 0x6b, 0xa0, 0xac, 0xc3, 0x6c, 0xb2, 0xfe, 0xf1, 0x82, 0x50, 0x1a, 0x2c, 0x08, 0x57, - 0x01, 0x26, 0x04, 0x9e, 0xf2, 0x7f, 0x98, 0x1a, 0xf0, 0x70, 0xa4, 0x62, 0x94, 0xe2, 0xbd, 0x5e, - 0x98, 0xfb, 0x6b, 0xb8, 0x39, 0xc4, 0xb1, 0xe8, 0xb1, 0x1f, 0x3a, 0xac, 0x70, 0x90, 0x78, 0xe1, - 0x10, 0xb6, 0xd3, 0x26, 0xe9, 0x1d, 0xb2, 0xf3, 0xbe, 0x8b, 0x0d, 0x66, 0x65, 0x16, 0x34, 0x87, - 0xd8, 0x8c, 0x80, 0x3f, 0x85, 0xc9, 0x30, 0xd5, 0xc8, 0xc9, 0xe4, 0x67, 0x09, 0x66, 0x12, 0xbd, - 0x89, 0xca, 0xb1, 0xcc, 0xc2, 0xd4, 0x12, 0xb9, 0x65, 0x3a, 0x9c, 0x5b, 0x36, 0xc6, 0xf8, 0x05, - 0x53, 0x8a, 0x66, 0x17, 0x26, 0x29, 0xcf, 0x2f, 0xe5, 0x58, 0x7e, 0x61, 0x58, 0x7c, 0x22, 0xa2, - 0xc5, 0xaf, 0x29, 0x98, 0x1a, 0xe8, 0x3b, 0x98, 0xe4, 0xa6, 0xd1, 0x31, 0x7c, 0x39, 0xf2, 0xaa, - 0x3f, 0x60, 0xb3, 0xe1, 0x96, 0xc1, 0x1f, 0xa0, 0xcf, 0x21, 0xeb, 0x5a, 0x0e, 0xdd, 0x24, 0x3d, - 0x4f, 0x88, 0xc2, 0xf2, 0xe2, 0xc5, 0x4d, 0x4d, 0x75, 0xcf, 0xa7, 0x56, 0x05, 0x1b, 0x7a, 0x09, - 0x32, 0xfb, 0xdd, 0x71, 0x34, 0x7e, 0xf8, 0x0b, 0xcb, 0x4b, 0x23, 0x60, 0x78, 0xf4, 0x6a, 0x9f, - 0x55, 0x79, 0x00, 0x72, 0x30, 0x8f, 0x0a, 0x00, 0x8d, 0xe6, 0xde, 0x5a, 0x73, 0xbb, 0xd1, 0xda, - 0x5e, 0x2f, 0x8e, 0xa1, 0x3c, 0xc8, 0xf5, 0x60, 0x28, 0x29, 0xb7, 0x21, 0xcb, 0xe5, 0x40, 0x53, - 0x90, 0x5f, 0x53, 0x9b, 0xf5, 0xfd, 0xd6, 0xce, 0x76, 0x7b, 0xbf, 0xb5, 0xd5, 0x2c, 0x8e, 0x2d, - 0xff, 0x98, 0x85, 0x1c, 0xf3, 0xd1, 0x9a, 0x2f, 0x00, 0x3a, 0x84, 0x7c, 0xe4, 0xbd, 0x05, 0x45, - 0x6f, 0xb7, 0xa4, 0x37, 0x9d, 0xb2, 0x72, 0x11, 0x09, 0xaf, 0xf7, 0xb6, 0x00, 0xfa, 0xef, 0x2c, - 0x28, 0x7a, 0xb3, 0x0d, 0xbc, 0xe3, 0x94, 0x17, 0x86, 0xae, 0x73, 0xb8, 0x2f, 0xa1, 0x10, 0x7d, - 0x41, 0x40, 0x49, 0x42, 0xc4, 0xba, 0xba, 0xf2, 0xbd, 0x0b, 0x69, 0x38, 0xf4, 0x2e, 0xe4, 0x42, - 0x4f, 0x26, 0x68, 0x40, 0x94, 0x38, 0x68, 0x65, 0x38, 0x01, 0x47, 0xac, 0x43, 0xc6, 0x7f, 0x9f, - 0x40, 0xd1, 0x22, 0x34, 0xf2, 0xd2, 0x51, 0xbe, 0x95, 0xb8, 0xc6, 0x21, 0x0e, 0x21, 0x1f, 0x79, - 0x0e, 0x88, 0xb9, 0x25, 0xe9, 0xad, 0x23, 0xe6, 0x96, 0xe4, 0xd7, 0x84, 0x3d, 0x98, 0x0c, 0xb7, - 0xda, 0xa8, 0x32, 0xc0, 0x13, 0x7b, 0x13, 0x28, 0xdf, 0xbd, 0x80, 0xa2, 0xef, 0x9c, 0x68, 0x2f, - 0x1a, 0x73, 0x4e, 0x62, 0xcb, 0x1d, 0x73, 0xce, 0x90, 0x66, 0xf6, 0x2d, 0xcc, 0x26, 0x37, 0x16, - 0xe8, 0x41, 0xdc, 0x0d, 0xc3, 0x9b, 0xcd, 0xf2, 0xbf, 0x47, 0xa2, 0xe5, 0x5b, 0x12, 0x40, 0x83, - 0x25, 0x3f, 0x5a, 0x8c, 0xb5, 0x13, 0x43, 0xda, 0x91, 0xf2, 0xbf, 0x2e, 0xa5, 0xf3, 0xb7, 0x59, - 0xfd, 0xe4, 0xab, 0x17, 0xba, 0x41, 0xdf, 0x9c, 0x1d, 0x55, 0x8f, 0xad, 0x4e, 0xcd, 0xab, 0xc3, - 0x2c, 0x47, 0xaf, 0x05, 0xaf, 0xb4, 0x3a, 0xe9, 0xd6, 0xec, 0xa3, 0x87, 0xba, 0x55, 0x4b, 0x7a, - 0xed, 0x3d, 0xca, 0x78, 0xc5, 0xe0, 0xca, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd7, 0x74, 0x70, - 0xf4, 0x0c, 0x16, 0x00, 0x00, + 0x13, 0x37, 0x25, 0x47, 0x32, 0x47, 0x96, 0x22, 0x6f, 0x6c, 0x47, 0x56, 0x12, 0x5b, 0x61, 0x02, + 0xff, 0x8d, 0xfc, 0x1b, 0x29, 0xb5, 0x93, 0xa0, 0x49, 0x8b, 0xb6, 0xb2, 0xa5, 0xd8, 0xaa, 0xe3, + 0x47, 0xe8, 0x07, 0xd0, 0x07, 0x20, 0xac, 0xcd, 0x35, 0xc3, 0x9a, 0x12, 0x19, 0x72, 0x9d, 0x5a, + 0xa7, 0xa2, 0x97, 0x1e, 0xda, 0xde, 0x0a, 0xf4, 0x0b, 0xf4, 0x83, 0xf4, 0x98, 0x9e, 0xfa, 0x99, + 0x8a, 0x25, 0x77, 0x29, 0x92, 0xa2, 0x6c, 0xc5, 0x87, 0x00, 0xbd, 0x10, 0xdc, 0xdd, 0x99, 0xdf, + 0xce, 0x63, 0x67, 0x67, 0x66, 0x61, 0xf1, 0xc4, 0xec, 0x51, 0x62, 0x68, 0x66, 0x4d, 0xc3, 0x14, + 0x1f, 0x63, 0x8a, 0x4d, 0x4b, 0x0f, 0xff, 0x57, 0x6d, 0xc7, 0xa2, 0x16, 0xca, 0x85, 0xa6, 0xca, + 0xb7, 0x03, 0xa6, 0x63, 0xcb, 0x21, 0x35, 0xd3, 0xa0, 0xc4, 0xc1, 0xa6, 0xeb, 0x93, 0x96, 0xe7, + 0x75, 0xcb, 0xd2, 0x4d, 0x52, 0xf3, 0x46, 0x47, 0x67, 0x27, 0x35, 0xed, 0xcc, 0xc1, 0xd4, 0xb0, + 0xba, 0x7c, 0x7d, 0x21, 0xbe, 0x4e, 0x8d, 0x0e, 0x71, 0x29, 0xee, 0xd8, 0x3e, 0x81, 0xf2, 0x02, + 0xa6, 0xd7, 0x1c, 0x82, 0x29, 0x69, 0x60, 0x8a, 0x5d, 0x42, 0x55, 0xf2, 0xe6, 0x8c, 0xb8, 0x14, + 0x55, 0x21, 0xab, 0xf9, 0x33, 0x25, 0xa9, 0x22, 0x2d, 0xe5, 0x96, 0xa7, 0xab, 0x61, 0x41, 0x05, + 0xb5, 0x20, 0x52, 0x6e, 0xc2, 0x4c, 0x0c, 0xc7, 0xb5, 0xad, 0xae, 0x4b, 0x94, 0x26, 0x4c, 0xad, + 0x13, 0x1a, 0x43, 0x7f, 0x14, 0x47, 0x9f, 0x4d, 0x42, 0x6f, 0x35, 0xfa, 0xf8, 0x0d, 0x40, 0x61, + 0x18, 0x1f, 0xfc, 0xbd, 0xa5, 0xfc, 0x43, 0xf2, 0x60, 0xea, 0x0e, 0x35, 0x4e, 0xf0, 0xf1, 0xd5, + 0xc5, 0x41, 0x77, 0x21, 0x87, 0x39, 0x48, 0xdb, 0xd0, 0x4a, 0xa9, 0x8a, 0xb4, 0x24, 0x6f, 0x8c, + 0xa9, 0x20, 0x26, 0x5b, 0x1a, 0xba, 0x05, 0x13, 0x14, 0xeb, 0xed, 0x2e, 0xee, 0x90, 0x52, 0x9a, + 0xaf, 0x67, 0x29, 0xd6, 0xb7, 0x71, 0x87, 0xac, 0x16, 0x60, 0xf2, 0xcd, 0x19, 0x71, 0x7a, 0xed, + 0xd7, 0xb8, 0xab, 0x99, 0x44, 0xd9, 0x80, 0x1b, 0x11, 0xb9, 0xb8, 0x7e, 0x1f, 0xc3, 0x84, 0x40, + 0xe4, 0x92, 0xcd, 0x44, 0x24, 0x0b, 0x18, 0x02, 0x32, 0xe5, 0x2b, 0xe1, 0x88, 0xb8, 0x92, 0x57, + 0xc0, 0x2a, 0xc1, 0x6c, 0x1c, 0x8b, 0x7b, 0x75, 0x05, 0xf2, 0x75, 0x4d, 0xdb, 0xc7, 0xba, 0x40, + 0x57, 0x20, 0x4d, 0xb1, 0xce, 0x81, 0x8b, 0x11, 0x60, 0x46, 0xc5, 0x16, 0x95, 0x22, 0x14, 0x04, + 0x13, 0x87, 0xf9, 0x4b, 0x82, 0xe9, 0x97, 0x86, 0x1b, 0x28, 0xee, 0x5e, 0xdd, 0x23, 0x4f, 0x20, + 0x73, 0x62, 0x98, 0x94, 0x38, 0x9e, 0x33, 0x72, 0xcb, 0x77, 0x22, 0x0c, 0x2f, 0xbc, 0xa5, 0xe6, + 0xb9, 0xed, 0x10, 0xd7, 0x35, 0xac, 0xae, 0xca, 0x89, 0xd1, 0xe7, 0x00, 0x36, 0xd6, 0x8d, 0xae, + 0x17, 0x34, 0x9e, 0x9f, 0x72, 0xcb, 0xf3, 0x11, 0xd6, 0xdd, 0x60, 0x79, 0xc7, 0x66, 0x5f, 0x57, + 0x0d, 0x71, 0x28, 0xa7, 0x30, 0x13, 0x53, 0x80, 0xbb, 0x6e, 0x05, 0x64, 0x61, 0x47, 0xb7, 0x24, + 0x55, 0xd2, 0xc3, 0xed, 0xdd, 0xa7, 0x43, 0x77, 0x00, 0xba, 0xe4, 0x9c, 0xb6, 0xa9, 0x75, 0x4a, + 0xba, 0xfe, 0xa9, 0x52, 0x65, 0x36, 0xb3, 0xcf, 0x26, 0x94, 0xdf, 0x24, 0xb8, 0xc1, 0x76, 0xe3, + 0xea, 0x07, 0xd6, 0xea, 0xeb, 0x2e, 0x5d, 0x5d, 0xf7, 0xd4, 0x7b, 0xeb, 0xae, 0xfb, 0xce, 0xeb, + 0x4b, 0xc3, 0x55, 0x7f, 0x04, 0x13, 0xdc, 0x2b, 0x42, 0xf3, 0xe4, 0xb0, 0x0c, 0xa8, 0x2e, 0xd3, + 0xfb, 0x6f, 0x09, 0x66, 0x0e, 0x6c, 0x2d, 0xe1, 0x50, 0x7f, 0xf0, 0xc8, 0x45, 0x0f, 0x61, 0x9c, + 0x41, 0x95, 0xc6, 0x3d, 0xc5, 0xe6, 0x12, 0x5d, 0xca, 0xb6, 0x55, 0x3d, 0xb2, 0x81, 0x40, 0x7f, + 0x06, 0xb3, 0x71, 0x4d, 0xb8, 0xd5, 0x16, 0xa2, 0x82, 0x49, 0x9e, 0x11, 0x42, 0x62, 0x29, 0x18, + 0xf2, 0x2a, 0x71, 0x89, 0xf3, 0xd6, 0xb3, 0x7e, 0xab, 0x81, 0x9e, 0x00, 0x70, 0xad, 0x04, 0xc3, + 0x70, 0xfd, 0x65, 0x4e, 0xd9, 0xd2, 0xd0, 0x5c, 0x48, 0x3d, 0xdf, 0xd4, 0x42, 0x39, 0xe5, 0x9d, + 0x04, 0x77, 0xd6, 0x09, 0xdd, 0x71, 0x9a, 0xe7, 0x94, 0x74, 0xb5, 0xd0, 0x76, 0xc2, 0xe0, 0x75, + 0x28, 0x38, 0xfd, 0xd9, 0xfe, 0xbe, 0xe5, 0xc8, 0xbe, 0x11, 0x39, 0xd5, 0x7c, 0x88, 0xc3, 0xdf, + 0xdf, 0xfa, 0xa1, 0x4b, 0x9c, 0xc0, 0xfc, 0x6a, 0xd6, 0x1b, 0xb7, 0x34, 0xb4, 0x01, 0xe8, 0x35, + 0xc1, 0x0e, 0x3d, 0x22, 0x98, 0xb6, 0x8d, 0x2e, 0x65, 0x5c, 0x26, 0x8f, 0xca, 0xb9, 0xaa, 0x9f, + 0xcb, 0xaa, 0x22, 0x97, 0x55, 0x1b, 0x3c, 0xd7, 0xa9, 0x53, 0x01, 0x53, 0x8b, 0xf3, 0x28, 0x7f, + 0xa6, 0x20, 0x17, 0x92, 0xe2, 0xbf, 0x22, 0x37, 0x7a, 0x06, 0x40, 0xce, 0x6d, 0xc3, 0x21, 0x6e, + 0x1b, 0xd3, 0xd2, 0x38, 0x97, 0x31, 0x8e, 0xb0, 0x2f, 0xb2, 0xb8, 0x2a, 0x73, 0xea, 0xba, 0x77, + 0xc1, 0x77, 0x08, 0xc5, 0xde, 0xe9, 0xcc, 0x24, 0x5c, 0xf0, 0x5b, 0x7c, 0x51, 0x0d, 0xc8, 0x94, + 0xef, 0x60, 0x7e, 0x98, 0xbb, 0xf9, 0xa9, 0x7c, 0x0e, 0xb9, 0x90, 0x15, 0xb8, 0xd1, 0x4a, 0xc3, + 0x8c, 0xa6, 0x86, 0x89, 0x95, 0x1e, 0xcc, 0xa9, 0xc4, 0x24, 0xd8, 0x25, 0x1f, 0xfa, 0x20, 0x29, + 0xb7, 0xa1, 0x9c, 0xb4, 0x35, 0x4f, 0x3b, 0xbf, 0x48, 0x90, 0xe5, 0xa1, 0x81, 0x16, 0x21, 0x75, + 0x69, 0xf0, 0xa4, 0x0c, 0x2d, 0x62, 0xdd, 0xd4, 0x48, 0xd6, 0x45, 0xf7, 0x21, 0x6f, 0xb3, 0xf8, + 0x65, 0x7b, 0x6f, 0x92, 0x9e, 0x5b, 0x4a, 0x57, 0xd2, 0x4b, 0xb2, 0x1a, 0x9d, 0x54, 0x56, 0x40, + 0xde, 0x15, 0x13, 0xa8, 0x08, 0xe9, 0x53, 0xd2, 0xe3, 0xc1, 0xcf, 0x7e, 0xd1, 0x34, 0x5c, 0x7b, + 0x8b, 0xcd, 0x33, 0x11, 0xaa, 0xfe, 0x40, 0xf9, 0x11, 0xe4, 0x40, 0x3c, 0x54, 0x82, 0xac, 0xed, + 0x58, 0xdf, 0x13, 0x9e, 0xd8, 0x65, 0x55, 0x0c, 0x11, 0x82, 0xf1, 0x50, 0x98, 0x7b, 0xff, 0x68, + 0x16, 0x32, 0x9a, 0xd5, 0xc1, 0x86, 0x9f, 0xed, 0x64, 0x95, 0x8f, 0x18, 0xca, 0x5b, 0xe2, 0xb0, + 0x04, 0xe1, 0x1d, 0x3b, 0x59, 0x15, 0x43, 0x86, 0x72, 0x70, 0xd0, 0x6a, 0x94, 0xae, 0xf9, 0x28, + 0xec, 0x5f, 0x79, 0x97, 0x82, 0x09, 0x71, 0x85, 0xa1, 0x42, 0x60, 0x43, 0xd9, 0xb3, 0x55, 0xe8, + 0x56, 0x4e, 0x8d, 0x76, 0x2b, 0x8b, 0x5b, 0x35, 0x3d, 0xd2, 0xad, 0x1a, 0x71, 0xc6, 0xf8, 0x68, + 0xce, 0x78, 0xca, 0x92, 0x1d, 0x37, 0xb3, 0x5b, 0xba, 0xe6, 0xed, 0x33, 0x1b, 0x4b, 0x76, 0x7c, + 0x59, 0x0d, 0x51, 0xa2, 0xfb, 0x30, 0x4e, 0xb1, 0xee, 0x96, 0x32, 0x1e, 0xc7, 0x60, 0x65, 0xe3, + 0xad, 0xb2, 0xb0, 0x3d, 0xf6, 0x2a, 0x25, 0x8d, 0x85, 0x6d, 0xf6, 0xf2, 0xb0, 0xe5, 0xd4, 0x75, + 0xaa, 0xec, 0xc2, 0x64, 0x58, 0xc3, 0xc0, 0x67, 0x52, 0xc8, 0x67, 0x1f, 0x85, 0x0f, 0x01, 0x93, + 0x5b, 0x34, 0x05, 0x55, 0xd6, 0x14, 0x54, 0x5f, 0xfa, 0x4d, 0x81, 0x38, 0x1c, 0x26, 0xa4, 0xf7, + 0xb1, 0x9e, 0x08, 0xb4, 0x90, 0x90, 0xfd, 0x22, 0xb9, 0x2f, 0xe4, 0xba, 0xf4, 0x68, 0x95, 0xf9, + 0x4f, 0x12, 0x4c, 0x08, 0x7b, 0xa3, 0xe7, 0x90, 0x3d, 0x25, 0xbd, 0x76, 0x07, 0xdb, 0x3c, 0xf3, + 0xdf, 0x4d, 0xf4, 0x4b, 0x75, 0x93, 0xf4, 0xb6, 0xb0, 0xdd, 0xec, 0x52, 0xa7, 0xa7, 0x66, 0x4e, + 0xbd, 0x41, 0xf9, 0x19, 0xe4, 0x42, 0xd3, 0xa3, 0x86, 0xc2, 0xf3, 0xd4, 0x27, 0x92, 0xb2, 0x03, + 0xc5, 0x78, 0x95, 0x83, 0x3e, 0x85, 0xac, 0x5f, 0xe7, 0xb8, 0x89, 0xa2, 0xec, 0x19, 0x5d, 0xdd, + 0x24, 0xbb, 0x8e, 0x65, 0x13, 0x87, 0xf6, 0x7c, 0x6e, 0x55, 0x70, 0x28, 0xff, 0xa4, 0x61, 0x3a, + 0x89, 0x02, 0x7d, 0x01, 0xc0, 0x92, 0x67, 0xa4, 0xdc, 0x9a, 0x8f, 0x1f, 0x8a, 0x28, 0xcf, 0xc6, + 0x98, 0x2a, 0x53, 0xac, 0x73, 0x80, 0x57, 0x50, 0x0c, 0x4e, 0x57, 0x3b, 0x52, 0xb1, 0xde, 0x4f, + 0x3e, 0x8d, 0x03, 0x60, 0xd7, 0x03, 0x7e, 0x0e, 0xb9, 0x0d, 0xd7, 0x03, 0xa7, 0x72, 0x44, 0xdf, + 0x77, 0xf7, 0x12, 0xe3, 0x68, 0x00, 0xb0, 0x20, 0xb8, 0x39, 0xde, 0x26, 0x14, 0x44, 0x5d, 0xc1, + 0xe1, 0xfc, 0x18, 0x53, 0x92, 0x8e, 0xc2, 0x00, 0x5a, 0x9e, 0xf3, 0x72, 0xb0, 0x5d, 0x98, 0x60, + 0x04, 0x98, 0x5a, 0x4e, 0x09, 0x2a, 0xd2, 0x52, 0x61, 0xf9, 0xf1, 0xa5, 0x7e, 0xa8, 0xae, 0x59, + 0x1d, 0x1b, 0x3b, 0x86, 0xcb, 0xea, 0x4e, 0x9f, 0x57, 0x0d, 0x50, 0x94, 0x0a, 0xa0, 0xc1, 0x75, + 0x04, 0x90, 0x69, 0xbe, 0x3a, 0xa8, 0xbf, 0xdc, 0x2b, 0x8e, 0xad, 0x4e, 0xc1, 0x75, 0x9b, 0x03, + 0x72, 0x0d, 0x94, 0x75, 0x98, 0x4d, 0xd6, 0x3f, 0x5e, 0x10, 0x4a, 0x83, 0x05, 0xe1, 0x2a, 0xc0, + 0x84, 0xc0, 0x53, 0x3e, 0x83, 0xa9, 0x01, 0x0f, 0x47, 0x2a, 0x46, 0x29, 0xde, 0xeb, 0x85, 0xb9, + 0xbf, 0x85, 0x9b, 0x43, 0x1c, 0x8b, 0x1e, 0xfb, 0xa1, 0xc3, 0x0a, 0x07, 0x89, 0x17, 0x0e, 0x61, + 0x3b, 0x6d, 0x92, 0xde, 0x21, 0x3b, 0xef, 0xbb, 0xd8, 0x60, 0x56, 0x66, 0x41, 0x73, 0x88, 0xcd, + 0x08, 0xf8, 0x53, 0x98, 0x0c, 0x53, 0x8d, 0x9c, 0x4c, 0x7e, 0x95, 0x60, 0x26, 0xd1, 0x9b, 0xa8, + 0x1c, 0xcb, 0x2c, 0x4c, 0x2d, 0x91, 0x5b, 0xa6, 0xc3, 0xb9, 0x65, 0x63, 0x8c, 0x5f, 0x30, 0xa5, + 0x68, 0x76, 0x61, 0x92, 0xf2, 0xfc, 0x52, 0x8e, 0xe5, 0x17, 0x86, 0xc5, 0x27, 0x22, 0x5a, 0xfc, + 0x9e, 0x82, 0xa9, 0x81, 0xbe, 0x83, 0x49, 0x6e, 0x1a, 0x1d, 0xc3, 0x97, 0x23, 0xaf, 0xfa, 0x03, + 0x36, 0x1b, 0x6e, 0x19, 0xfc, 0x01, 0xfa, 0x12, 0xb2, 0xae, 0xe5, 0xd0, 0x4d, 0xd2, 0xf3, 0x84, + 0x28, 0x2c, 0x2f, 0x5e, 0xdc, 0xd4, 0x54, 0xf7, 0x7c, 0x6a, 0x55, 0xb0, 0xa1, 0x17, 0x20, 0xb3, + 0xdf, 0x1d, 0x47, 0xe3, 0x87, 0xbf, 0xb0, 0xbc, 0x34, 0x02, 0x86, 0x47, 0xaf, 0xf6, 0x59, 0x95, + 0x07, 0x20, 0x07, 0xf3, 0xa8, 0x00, 0xd0, 0x68, 0xee, 0xad, 0x35, 0xb7, 0x1b, 0xad, 0xed, 0xf5, + 0xe2, 0x18, 0xca, 0x83, 0x5c, 0x0f, 0x86, 0x92, 0x72, 0x1b, 0xb2, 0x5c, 0x0e, 0x34, 0x05, 0xf9, + 0x35, 0xb5, 0x59, 0xdf, 0x6f, 0xed, 0x6c, 0xb7, 0xf7, 0x5b, 0x5b, 0xcd, 0xe2, 0xd8, 0xf2, 0xcf, + 0x59, 0xc8, 0x31, 0x1f, 0xad, 0xf9, 0x02, 0xa0, 0x43, 0xc8, 0x47, 0xde, 0x5b, 0x50, 0xf4, 0x76, + 0x4b, 0x7a, 0xd3, 0x29, 0x2b, 0x17, 0x91, 0xf0, 0x7a, 0x6f, 0x0b, 0xa0, 0xff, 0xce, 0x82, 0xa2, + 0x37, 0xdb, 0xc0, 0x3b, 0x4e, 0x79, 0x61, 0xe8, 0x3a, 0x87, 0xfb, 0x1a, 0x0a, 0xd1, 0x17, 0x04, + 0x94, 0x24, 0x44, 0xac, 0xab, 0x2b, 0xdf, 0xbb, 0x90, 0x86, 0x43, 0xef, 0x42, 0x2e, 0xf4, 0x64, + 0x82, 0x06, 0x44, 0x89, 0x83, 0x56, 0x86, 0x13, 0x70, 0xc4, 0x3a, 0x64, 0xfc, 0xf7, 0x09, 0x14, + 0x2d, 0x42, 0x23, 0x2f, 0x1d, 0xe5, 0x5b, 0x89, 0x6b, 0x1c, 0xe2, 0x10, 0xf2, 0x91, 0xe7, 0x80, + 0x98, 0x5b, 0x92, 0xde, 0x3a, 0x62, 0x6e, 0x49, 0x7e, 0x4d, 0xd8, 0x83, 0xc9, 0x70, 0xab, 0x8d, + 0x2a, 0x03, 0x3c, 0xb1, 0x37, 0x81, 0xf2, 0xdd, 0x0b, 0x28, 0xfa, 0xce, 0x89, 0xf6, 0xa2, 0x31, + 0xe7, 0x24, 0xb6, 0xdc, 0x31, 0xe7, 0x0c, 0x69, 0x66, 0xdf, 0xc0, 0x6c, 0x72, 0x63, 0x81, 0x1e, + 0xc4, 0xdd, 0x30, 0xbc, 0xd9, 0x2c, 0xff, 0x7f, 0x24, 0x5a, 0xbe, 0x25, 0x01, 0x34, 0x58, 0xf2, + 0xa3, 0xc5, 0x58, 0x3b, 0x31, 0xa4, 0x1d, 0x29, 0xff, 0xef, 0x52, 0x3a, 0x7f, 0x9b, 0xd5, 0xb5, + 0x6f, 0xea, 0xba, 0x41, 0x5f, 0x9f, 0x1d, 0x55, 0x8f, 0xad, 0x4e, 0xcd, 0xab, 0xc3, 0x2c, 0x47, + 0xf7, 0x7f, 0x6a, 0xc1, 0x5b, 0xad, 0x4e, 0xba, 0x35, 0xfb, 0xe8, 0xa1, 0x6e, 0xd5, 0x92, 0xde, + 0x7c, 0x8f, 0x32, 0x5e, 0x49, 0xb8, 0xf2, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5f, 0x40, 0x9c, + 0xe8, 0x12, 0x16, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/flyteidl/gen/pb-go/flyteidl/event/event.pb.go b/flyteidl/gen/pb-go/flyteidl/event/event.pb.go index 88c0e592a6..592f9f343a 100644 --- a/flyteidl/gen/pb-go/flyteidl/event/event.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/event/event.pb.go @@ -5,11 +5,12 @@ package event import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + math "math" + + core "github.com/flyteorg/flyte/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" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -1328,13 +1329,13 @@ func init() { func init() { proto.RegisterFile("flyteidl/event/event.proto", fileDescriptor_4b035d24120b1b12) } var fileDescriptor_4b035d24120b1b12 = []byte{ - // 1536 bytes of a gzipped FileDescriptorProto + // 1538 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xeb, 0x6e, 0xdb, 0xc6, 0x12, 0xb6, 0xe4, 0x8b, 0xa4, 0xa1, 0x25, 0x4b, 0x1b, 0xd9, 0x61, 0xec, 0x38, 0xd6, 0xd1, 0x39, - 0x39, 0x70, 0x12, 0x54, 0x02, 0x14, 0x24, 0x0d, 0x9a, 0x00, 0x85, 0x6f, 0xad, 0xd5, 0x3a, 0x86, + 0x39, 0x70, 0x12, 0x54, 0x02, 0x14, 0x24, 0x08, 0x9a, 0x14, 0x85, 0x6f, 0xad, 0xd5, 0x3a, 0x86, 0x41, 0xdb, 0x09, 0x90, 0xb6, 0x20, 0xd6, 0xe4, 0x5a, 0x66, 0x4d, 0x71, 0x89, 0xe5, 0xd2, 0x89, 0x9f, 0xa2, 0x3f, 0xfb, 0xab, 0x7d, 0x80, 0x3e, 0x4c, 0xdf, 0xa5, 0x6f, 0x50, 0xec, 0x2e, 0x49, - 0x89, 0x14, 0xeb, 0x4b, 0x92, 0xfe, 0x31, 0xcc, 0x99, 0xd9, 0x8f, 0xb3, 0xf3, 0xcd, 0x8d, 0x82, + 0x89, 0x14, 0xeb, 0x4b, 0x92, 0xfe, 0x31, 0xc4, 0x99, 0xd9, 0x8f, 0xb3, 0xf3, 0xcd, 0x8d, 0x86, 0xe5, 0x53, 0xf7, 0x92, 0x13, 0xc7, 0x76, 0xbb, 0xe4, 0x82, 0x78, 0x5c, 0xfd, 0xed, 0xf8, 0x8c, 0x72, 0x8a, 0x6a, 0xb1, 0xae, 0x23, 0xa5, 0xcb, 0xf7, 0x13, 0x5b, 0x8b, 0x32, 0xd2, 0x75, 0x1d, 0x4e, 0x18, 0x76, 0x03, 0x65, 0x9d, 0xd5, 0x5a, 0x74, 0xe8, 0x3b, 0x2e, 0x61, 0x91, 0x76, 0x35, @@ -1356,7 +1357,7 @@ var fileDescriptor_4b035d24120b1b12 = []byte{ 0x7e, 0x6c, 0x63, 0x8e, 0x37, 0x17, 0xa0, 0x1a, 0x9d, 0x66, 0x24, 0x08, 0x5d, 0xde, 0xfe, 0xa5, 0x02, 0x68, 0x9f, 0xda, 0x24, 0x43, 0xd4, 0x73, 0x28, 0x26, 0xf4, 0x64, 0xa3, 0x96, 0x32, 0x1f, 0xa3, 0xa6, 0xe8, 0xdc, 0x80, 0x91, 0x17, 0x69, 0x46, 0xda, 0x57, 0x61, 0x7f, 0x46, 0x36, 0x56, - 0xa1, 0xe2, 0x78, 0x59, 0x32, 0xca, 0x52, 0x24, 0xb8, 0xf8, 0x0a, 0x40, 0xa9, 0x65, 0x4c, 0x9b, + 0xa1, 0xe2, 0x78, 0x59, 0x32, 0xca, 0x52, 0x24, 0xb8, 0xf8, 0x12, 0x40, 0xa9, 0x65, 0x4c, 0x9b, 0xd7, 0xc7, 0x54, 0xa1, 0x89, 0x90, 0x66, 0x88, 0x9e, 0x93, 0xd8, 0x85, 0x5c, 0xa2, 0x4b, 0x37, 0x21, 0xba, 0xf0, 0x0f, 0x44, 0x2f, 0x5c, 0xe7, 0x54, 0x61, 0x9c, 0x68, 0xf4, 0x23, 0x2c, 0xbd, 0x8f, 0xb2, 0xdb, 0xf4, 0xa8, 0x4d, 0xcc, 0x21, 0xe1, 0x58, 0x02, 0x95, 0x25, 0xd0, 0xff, 0x3a, @@ -1390,39 +1391,40 @@ var fileDescriptor_4b035d24120b1b12 = []byte{ 0xa6, 0x65, 0x90, 0x1a, 0x91, 0xee, 0x3b, 0x7a, 0x72, 0xe8, 0x13, 0xeb, 0x98, 0x39, 0xed, 0x63, 0x58, 0xb9, 0xa2, 0x13, 0x5d, 0x39, 0x45, 0x53, 0x27, 0xd2, 0x97, 0x6b, 0x3f, 0x8f, 0x61, 0x73, 0x3b, 0x10, 0xba, 0x0b, 0xa5, 0xb8, 0x8f, 0x14, 0xa4, 0x67, 0x73, 0x9e, 0xec, 0x21, 0xed, 0x13, - 0xd0, 0xe4, 0xf8, 0x36, 0x08, 0x0e, 0xa8, 0x87, 0x96, 0x60, 0x8e, 0xc9, 0xff, 0x62, 0x33, 0xf5, - 0x94, 0x9d, 0xa4, 0xc5, 0xdb, 0x4c, 0xd2, 0xf6, 0xaf, 0x65, 0x40, 0x29, 0xdf, 0xd5, 0xc2, 0xd0, - 0x83, 0x92, 0x6c, 0xdc, 0x37, 0xe1, 0x6f, 0x4e, 0x58, 0xf6, 0x6d, 0x64, 0x82, 0x3e, 0xde, 0x94, - 0x53, 0xd5, 0x5d, 0xbc, 0xd5, 0xea, 0xb1, 0xe8, 0x4f, 0x86, 0xab, 0x6f, 0x8b, 0xb6, 0xa9, 0xda, - 0x32, 0xe6, 0x9c, 0x0c, 0x7d, 0x2e, 0x89, 0xac, 0x1a, 0xf3, 0x52, 0xb8, 0xa1, 0x64, 0xa3, 0x8d, - 0x64, 0x26, 0x77, 0x23, 0x49, 0xdd, 0x35, 0xbd, 0x91, 0x64, 0x96, 0x9d, 0xd9, 0x89, 0x65, 0xe7, - 0x31, 0xcc, 0xb8, 0x74, 0x10, 0xe8, 0x73, 0xad, 0xe9, 0x75, 0xad, 0xb7, 0x94, 0x83, 0xbc, 0x47, - 0x07, 0x86, 0xb4, 0xc9, 0x92, 0x52, 0xfa, 0xf8, 0xf5, 0xa6, 0x7c, 0xcd, 0x7a, 0x73, 0xe7, 0x13, - 0xd6, 0x9b, 0xca, 0x15, 0xeb, 0x0d, 0x7c, 0xca, 0x7a, 0xd3, 0xb8, 0xdd, 0x7a, 0xf3, 0x02, 0x34, - 0x2b, 0x0c, 0x38, 0x1d, 0x9a, 0x8e, 0x77, 0x4a, 0xe5, 0xc0, 0xd5, 0x7a, 0x77, 0x27, 0xa2, 0x75, - 0x28, 0xbf, 0x4b, 0x0c, 0x50, 0xb6, 0x7d, 0xef, 0x94, 0x8a, 0x9c, 0x90, 0xec, 0x25, 0xa3, 0x74, - 0x5e, 0xe5, 0x84, 0x14, 0xc6, 0xa3, 0x74, 0x39, 0xa9, 0x1c, 0x39, 0x89, 0x37, 0x8b, 0x7a, 0x21, - 0xa9, 0x9e, 0x67, 0x50, 0x52, 0xff, 0x05, 0xfa, 0xa2, 0xe4, 0x75, 0x25, 0xdb, 0x13, 0xc7, 0x6a, - 0xd0, 0x88, 0x6d, 0xc5, 0x74, 0x96, 0x05, 0xc2, 0x2f, 0x7d, 0x22, 0x37, 0xa5, 0x8a, 0x51, 0x16, - 0x82, 0xa3, 0x4b, 0x9f, 0xa0, 0x0d, 0x28, 0x27, 0x2b, 0x89, 0x6a, 0xb4, 0x0f, 0xf3, 0xb6, 0xa8, - 0xc9, 0x65, 0x24, 0x39, 0x36, 0xb9, 0x22, 0xa0, 0x9c, 0x15, 0x21, 0x33, 0xcb, 0x9b, 0x9f, 0x73, - 0x96, 0xb7, 0x7f, 0x2f, 0x42, 0x73, 0xe7, 0x03, 0x27, 0xcc, 0xc3, 0xae, 0x41, 0x02, 0x1a, 0x32, - 0x8b, 0xc8, 0x90, 0xaf, 0x81, 0x46, 0x22, 0xf9, 0xa8, 0x67, 0x41, 0x2c, 0xea, 0xdb, 0xa8, 0x09, - 0xb3, 0x8e, 0x67, 0x93, 0x0f, 0xb2, 0xea, 0xab, 0x86, 0x7a, 0xf8, 0xb7, 0xab, 0x37, 0x3b, 0xeb, - 0x67, 0x3f, 0x6a, 0xd6, 0xdf, 0xa2, 0xc4, 0xdb, 0x3f, 0x40, 0x3d, 0x8e, 0xcb, 0x01, 0xa5, 0xae, - 0x8c, 0xcd, 0x23, 0xa8, 0x63, 0xd7, 0xa5, 0x96, 0x9a, 0xf4, 0x9c, 0x9e, 0x93, 0xb8, 0x5b, 0x2f, - 0x8c, 0xe4, 0x47, 0x42, 0x8c, 0xee, 0x43, 0x45, 0x2c, 0x87, 0x81, 0x8f, 0x2d, 0x12, 0x7d, 0x59, - 0x8d, 0x04, 0xed, 0xdf, 0xa6, 0x61, 0x31, 0x7f, 0x0a, 0x3d, 0x84, 0xda, 0x80, 0x78, 0x84, 0x61, - 0xc1, 0xba, 0x5c, 0x2f, 0xd5, 0x0b, 0xaa, 0x89, 0x54, 0xee, 0x98, 0x87, 0x80, 0x12, 0x96, 0x58, - 0xe4, 0x66, 0xa0, 0x17, 0xe5, 0xbd, 0x26, 0xbe, 0x16, 0xf2, 0x78, 0x36, 0x1a, 0x24, 0x23, 0x0d, - 0xd0, 0xbe, 0xdc, 0x64, 0xe4, 0x83, 0xe9, 0x53, 0xea, 0xaa, 0x72, 0x9d, 0x96, 0xa0, 0x13, 0x1f, - 0x0a, 0xd9, 0xe0, 0x18, 0x75, 0x96, 0x0d, 0xd7, 0x13, 0x68, 0xf8, 0x6e, 0x38, 0x70, 0xc4, 0x8c, - 0x88, 0xbb, 0x7f, 0xb4, 0xc3, 0xd4, 0x95, 0x62, 0x34, 0x15, 0xd0, 0x3b, 0xa8, 0x39, 0x5e, 0xc0, - 0xb1, 0x67, 0x11, 0xd3, 0x72, 0x71, 0x10, 0xc8, 0xda, 0xaa, 0xf5, 0x9e, 0xde, 0xa8, 0xb6, 0x3a, - 0xfd, 0xe8, 0xec, 0x96, 0x38, 0x6a, 0x54, 0x9d, 0xf1, 0xc7, 0x76, 0x17, 0xaa, 0x29, 0x3d, 0xd2, - 0xa0, 0xb4, 0xbd, 0xf3, 0xcd, 0xc6, 0xf1, 0xde, 0x51, 0x7d, 0x0a, 0x35, 0xa0, 0xda, 0xdf, 0x3f, - 0xda, 0x31, 0x8c, 0xe3, 0x83, 0xa3, 0xfe, 0xe6, 0xde, 0x4e, 0xbd, 0xb0, 0xf9, 0xe5, 0xbb, 0x67, - 0x03, 0x87, 0x9f, 0x85, 0x27, 0x1d, 0x8b, 0x0e, 0xbb, 0xd2, 0x01, 0xca, 0x06, 0xdd, 0xe4, 0x77, - 0x98, 0x01, 0xf1, 0xba, 0xfe, 0xc9, 0x17, 0x03, 0xda, 0x4d, 0xff, 0x82, 0x74, 0x32, 0x27, 0xcb, - 0xf2, 0xe9, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc3, 0x96, 0x96, 0x5e, 0x5a, 0x12, 0x00, 0x00, + 0xd0, 0xe4, 0xf8, 0x36, 0x08, 0x0e, 0xa8, 0x87, 0x96, 0x60, 0x8e, 0xc9, 0x5f, 0xb1, 0x99, 0x7a, + 0xca, 0x4e, 0xd2, 0xe2, 0x6d, 0x26, 0x69, 0xfb, 0xd7, 0x32, 0xa0, 0x94, 0xef, 0x6a, 0x61, 0xe8, + 0x41, 0x49, 0x36, 0xee, 0x9b, 0xf0, 0x37, 0x27, 0x2c, 0xfb, 0x36, 0x32, 0x41, 0x1f, 0x6f, 0xca, + 0xa9, 0xea, 0x2e, 0xde, 0x6a, 0xf5, 0x58, 0xf4, 0x27, 0xc3, 0xd5, 0xb7, 0x45, 0xdb, 0x54, 0x6d, + 0x19, 0x73, 0x4e, 0x86, 0x3e, 0x97, 0x44, 0x56, 0x8d, 0x79, 0x29, 0xdc, 0x50, 0xb2, 0xd1, 0x46, + 0x32, 0x93, 0xbb, 0x91, 0xa4, 0xee, 0x9a, 0xde, 0x48, 0x32, 0xcb, 0xce, 0xec, 0xc4, 0xb2, 0xf3, + 0x18, 0x66, 0x5c, 0x3a, 0x08, 0xf4, 0xb9, 0xd6, 0xf4, 0xba, 0xd6, 0x5b, 0xca, 0x41, 0xde, 0xa3, + 0x03, 0x43, 0xda, 0x64, 0x49, 0x29, 0x7d, 0xfc, 0x7a, 0x53, 0xbe, 0x66, 0xbd, 0xb9, 0xf3, 0x09, + 0xeb, 0x4d, 0xe5, 0x8a, 0xf5, 0x06, 0x3e, 0x65, 0xbd, 0x69, 0xdc, 0x6e, 0xbd, 0x79, 0x01, 0x9a, + 0x15, 0x06, 0x9c, 0x0e, 0x4d, 0xc7, 0x3b, 0xa5, 0x72, 0xe0, 0x6a, 0xbd, 0xbb, 0x13, 0xd1, 0x3a, + 0x94, 0xdf, 0x25, 0x06, 0x28, 0xdb, 0xbe, 0x77, 0x4a, 0x45, 0x4e, 0x48, 0xf6, 0x92, 0x51, 0x3a, + 0xaf, 0x72, 0x42, 0x0a, 0xe3, 0x51, 0xba, 0x9c, 0x54, 0x8e, 0x9c, 0xc4, 0x9b, 0x45, 0xbd, 0x90, + 0x54, 0xcf, 0x33, 0x28, 0xa9, 0x5f, 0x81, 0xbe, 0x28, 0x79, 0x5d, 0xc9, 0xf6, 0xc4, 0xb1, 0x1a, + 0x34, 0x62, 0x5b, 0x31, 0x9d, 0x65, 0x81, 0xf0, 0x4b, 0x9f, 0xc8, 0x4d, 0xa9, 0x62, 0x94, 0x85, + 0xe0, 0xe8, 0xd2, 0x27, 0x68, 0x03, 0xca, 0xc9, 0x4a, 0xa2, 0x1a, 0xed, 0xc3, 0xbc, 0x2d, 0x6a, + 0x72, 0x19, 0x49, 0x8e, 0x4d, 0xae, 0x08, 0x28, 0x67, 0x45, 0xc8, 0xcc, 0xf2, 0xe6, 0xe7, 0x9c, + 0xe5, 0xed, 0xdf, 0x8b, 0xd0, 0xdc, 0xf9, 0xc0, 0x09, 0xf3, 0xb0, 0x6b, 0x90, 0x80, 0x86, 0xcc, + 0x22, 0x32, 0xe4, 0x6b, 0xa0, 0x91, 0x48, 0x3e, 0xea, 0x59, 0x10, 0x8b, 0xfa, 0x36, 0x6a, 0xc2, + 0xac, 0xe3, 0xd9, 0xe4, 0x83, 0xac, 0xfa, 0xaa, 0xa1, 0x1e, 0xfe, 0xed, 0xea, 0xcd, 0xce, 0xfa, + 0xd9, 0x8f, 0x9a, 0xf5, 0xb7, 0x28, 0xf1, 0xf6, 0x0f, 0x50, 0x8f, 0xe3, 0x72, 0x40, 0xa9, 0x2b, + 0x63, 0xf3, 0x08, 0xea, 0xd8, 0x75, 0xa9, 0xa5, 0x26, 0x3d, 0xa7, 0xe7, 0x24, 0xee, 0xd6, 0x0b, + 0x23, 0xf9, 0x91, 0x10, 0xa3, 0xfb, 0x50, 0x11, 0xcb, 0x61, 0xe0, 0x63, 0x8b, 0x44, 0x5f, 0x56, + 0x23, 0x41, 0xfb, 0xb7, 0x69, 0x58, 0xcc, 0x9f, 0x42, 0x0f, 0xa1, 0x36, 0x20, 0x1e, 0x61, 0x58, + 0xb0, 0x2e, 0xd7, 0x4b, 0xf5, 0x82, 0x6a, 0x22, 0x95, 0x3b, 0xe6, 0x21, 0xa0, 0x84, 0x25, 0x16, + 0xb9, 0x19, 0xe8, 0x45, 0x79, 0xaf, 0x89, 0xaf, 0x85, 0x3c, 0x9e, 0x8d, 0x06, 0xc9, 0x48, 0x03, + 0xb4, 0x2f, 0x37, 0x19, 0xf9, 0x60, 0xfa, 0x94, 0xba, 0xaa, 0x5c, 0xa7, 0x25, 0xe8, 0xc4, 0x87, + 0x42, 0x36, 0x38, 0x46, 0x9d, 0x65, 0xc3, 0xf5, 0x04, 0x1a, 0xbe, 0x1b, 0x0e, 0x1c, 0x31, 0x23, + 0xe2, 0xee, 0x1f, 0xed, 0x30, 0x75, 0xa5, 0x18, 0x4d, 0x05, 0xf4, 0x0e, 0x6a, 0x8e, 0x17, 0x70, + 0xec, 0x59, 0xc4, 0xb4, 0x5c, 0x1c, 0x04, 0xb2, 0xb6, 0x6a, 0xbd, 0xa7, 0x37, 0xaa, 0xad, 0x4e, + 0x3f, 0x3a, 0xbb, 0x25, 0x8e, 0x1a, 0x55, 0x67, 0xfc, 0xb1, 0xdd, 0x85, 0x6a, 0x4a, 0x8f, 0x34, + 0x28, 0x6d, 0xef, 0x7c, 0xb3, 0x71, 0xbc, 0x77, 0x54, 0x9f, 0x42, 0x0d, 0xa8, 0xf6, 0xf7, 0x8f, + 0x76, 0x0c, 0xe3, 0xf8, 0xe0, 0xa8, 0xbf, 0xb9, 0xb7, 0x53, 0x2f, 0x6c, 0x7e, 0xf5, 0xee, 0xe5, + 0xc0, 0xe1, 0x67, 0xe1, 0x49, 0xc7, 0xa2, 0xc3, 0xae, 0x74, 0x80, 0xb2, 0x81, 0xfa, 0xd1, 0x4d, + 0xfe, 0x1b, 0x33, 0x20, 0x5e, 0xd7, 0x3f, 0xf9, 0x62, 0x40, 0xbb, 0xe9, 0xff, 0x23, 0x9d, 0xcc, + 0xc9, 0xe2, 0x7c, 0xfa, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6c, 0x7c, 0xc8, 0xd1, 0x60, 0x12, + 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/event/event.pb.validate.go b/flyteidl/gen/pb-go/flyteidl/event/event.pb.validate.go index b86f83b118..0c2db5d921 100644 --- a/flyteidl/gen/pb-go/flyteidl/event/event.pb.validate.go +++ b/flyteidl/gen/pb-go/flyteidl/event/event.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/array_job.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/array_job.pb.go index 11fbcb54f3..8acb566873 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/array_job.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/array_job.pb.go @@ -5,8 +5,9 @@ package plugins import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -131,19 +132,19 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/array_job.proto", fileDescriptor_794211c91ec6cd2b) } var fileDescriptor_794211c91ec6cd2b = []byte{ - // 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, + // 224 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x90, 0x31, 0x4f, 0xc3, 0x30, + 0x14, 0x84, 0x9b, 0xb6, 0x42, 0xc8, 0x80, 0x28, 0x9e, 0x32, 0x46, 0x48, 0x48, 0x1d, 0x20, 0x1e, + 0x98, 0x11, 0xa2, 0x53, 0xc5, 0x18, 0x36, 0x96, 0xc8, 0x36, 0xc6, 0x3c, 0x64, 0xfb, 0x59, 0xcf, + 0xce, 0x50, 0xfe, 0x11, 0xff, 0x12, 0xc5, 0x10, 0x88, 0xd8, 0x4e, 0xf7, 0x7d, 0xcb, 0x1d, 0x6b, + 0x5e, 0xdd, 0x21, 0x1b, 0x78, 0x71, 0x22, 0xba, 0xc1, 0x42, 0x48, 0x42, 0x12, 0xc9, 0x43, 0xff, + 0x8e, 0xaa, 0x8d, 0x84, 0x19, 0xf9, 0x66, 0x32, 0xda, 0x1f, 0xe3, 0xf2, 0xb3, 0x62, 0xc7, 0x0f, + 0xa3, 0xf5, 0x88, 0x8a, 0x37, 0xec, 0x24, 0x4a, 0x92, 0xce, 0x19, 0x07, 0xc9, 0xd7, 0x55, 0x53, + 0x6d, 0x57, 0xdd, 0xbc, 0xe2, 0x9c, 0xad, 0x13, 0x7c, 0x98, 0x7a, 0x59, 0x50, 0xc9, 0xfc, 0x8a, + 0x9d, 0x79, 0x08, 0x7d, 0x1a, 0xb4, 0x36, 0x29, 0x99, 0x54, 0xaf, 0x46, 0xb8, 0x5f, 0x74, 0xa7, + 0x1e, 0xc2, 0xd3, 0xd4, 0xf2, 0x6b, 0x76, 0x31, 0xd3, 0x7a, 0x92, 0x19, 0xb0, 0x5e, 0x37, 0xd5, + 0x76, 0xb9, 0x5f, 0x74, 0xe7, 0x7f, 0x6a, 0x37, 0x82, 0x1d, 0x67, 0x9b, 0xc9, 0xd4, 0x04, 0xd9, + 0x10, 0xc8, 0xdd, 0xfd, 0xf3, 0x9d, 0x85, 0xfc, 0x36, 0xa8, 0x56, 0xa3, 0x17, 0x65, 0x0a, 0x92, + 0xfd, 0x0e, 0xe2, 0x77, 0xbb, 0x35, 0x41, 0x44, 0x75, 0x63, 0x51, 0xfc, 0xbf, 0x43, 0x1d, 0x95, + 0x17, 0x6e, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x0f, 0x21, 0xff, 0x98, 0x29, 0x01, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/dask.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/dask.pb.go index 427630790a..7e61d1e4ef 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/dask.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/dask.pb.go @@ -5,9 +5,10 @@ package plugins import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - proto "github.com/golang/protobuf/proto" math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -192,23 +193,23 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/dask.proto", fileDescriptor_d719e18eb4f4b89f) } var fileDescriptor_d719e18eb4f4b89f = []byte{ - // 281 bytes of a gzipped FileDescriptorProto + // 283 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0x4f, 0x4b, 0xc4, 0x30, 0x14, 0xc4, 0xe9, 0x8a, 0x2e, 0x8d, 0x2c, 0xab, 0xc1, 0x43, 0xd5, 0x83, 0xda, 0x93, 0x08, 0x26, - 0xa0, 0xa0, 0x88, 0x78, 0x11, 0x41, 0xf0, 0x22, 0xc4, 0x83, 0x20, 0xc8, 0xd2, 0x3f, 0x69, 0xb6, - 0xf4, 0xcf, 0x2b, 0x2f, 0x0d, 0xe2, 0x07, 0xf0, 0xe4, 0x97, 0x96, 0xa6, 0x66, 0x8b, 0x45, 0xc1, - 0x63, 0x98, 0xdf, 0xbc, 0x99, 0x30, 0x64, 0x3f, 0x2b, 0xdf, 0x5b, 0x99, 0xa7, 0x25, 0x6f, 0x4a, - 0xa3, 0xf2, 0x5a, 0xf3, 0x34, 0xd2, 0x05, 0x6b, 0x10, 0x5a, 0xa0, 0x5b, 0x4e, 0x64, 0xdf, 0xe2, - 0xde, 0xee, 0x0a, 0x4f, 0x00, 0x25, 0x6f, 0x23, 0x5d, 0xe8, 0x1e, 0x0e, 0x3f, 0x3c, 0x32, 0xbd, - 0x8b, 0x74, 0xf1, 0x00, 0x31, 0xbd, 0x21, 0xbe, 0x4e, 0x96, 0x32, 0x35, 0xa5, 0xc4, 0xc0, 0x3b, - 0xf4, 0x8e, 0x37, 0xcf, 0x0e, 0xd8, 0xf8, 0x18, 0xeb, 0xe8, 0x27, 0x87, 0x89, 0xc1, 0x41, 0xaf, - 0xc9, 0xf4, 0x0d, 0xb0, 0x90, 0xa8, 0x83, 0x89, 0x35, 0x1f, 0xfd, 0x6e, 0x7e, 0xb6, 0xd0, 0x3d, - 0x82, 0x69, 0x84, 0x73, 0x84, 0xaf, 0x64, 0xf6, 0xe3, 0x30, 0xdd, 0x21, 0xeb, 0x79, 0x15, 0x29, - 0x69, 0x8b, 0xf8, 0xa2, 0x7f, 0xd0, 0x0b, 0xe2, 0xa3, 0xd4, 0x60, 0x30, 0x91, 0x2e, 0x25, 0x18, - 0x52, 0xba, 0xdf, 0x31, 0xe1, 0x74, 0x31, 0xa0, 0xe1, 0xa7, 0x47, 0xe6, 0xa3, 0x6c, 0x7a, 0x42, - 0xb6, 0x6b, 0x53, 0xc5, 0x12, 0x17, 0x90, 0x2d, 0x5c, 0xf3, 0x2e, 0x6d, 0x26, 0xe6, 0xbd, 0xf0, - 0x98, 0xf5, 0xbc, 0x1e, 0xda, 0x4c, 0xfe, 0x6c, 0xb3, 0xf6, 0xef, 0x36, 0xb7, 0x57, 0x2f, 0x97, - 0x2a, 0x6f, 0x97, 0x26, 0x66, 0x09, 0x54, 0xdc, 0x1a, 0x00, 0x15, 0x5f, 0xad, 0xa4, 0x64, 0xcd, - 0x9b, 0xf8, 0x54, 0x01, 0x1f, 0xef, 0x1c, 0x6f, 0xd8, 0xd9, 0xce, 0xbf, 0x02, 0x00, 0x00, 0xff, - 0xff, 0x4c, 0xea, 0xa6, 0xac, 0x02, 0x02, 0x00, 0x00, + 0xa0, 0xe0, 0x45, 0x16, 0x41, 0x04, 0xc1, 0x8b, 0x10, 0x0f, 0x82, 0x20, 0x4b, 0xff, 0xa4, 0xd9, + 0xd2, 0x3f, 0xaf, 0xbc, 0x34, 0x88, 0x1f, 0xc0, 0x93, 0x5f, 0x5a, 0xda, 0x98, 0x2d, 0x16, 0x05, + 0x6f, 0x2d, 0xf3, 0x9b, 0x37, 0x13, 0x86, 0x1c, 0x66, 0xe5, 0x7b, 0x2b, 0xf3, 0xb4, 0xe4, 0x4d, + 0x69, 0x54, 0x5e, 0x6b, 0x9e, 0x46, 0xba, 0x60, 0x0d, 0x42, 0x0b, 0x74, 0xc7, 0x89, 0xec, 0x5b, + 0x3c, 0xd8, 0x5f, 0xe3, 0x09, 0xa0, 0xe4, 0x6d, 0xa4, 0x0b, 0x6d, 0xe1, 0xf0, 0xc3, 0x23, 0xd3, + 0xbb, 0x48, 0x17, 0x0f, 0x10, 0xd3, 0x05, 0xf1, 0x75, 0xb2, 0x92, 0xa9, 0x29, 0x25, 0x06, 0xde, + 0xb1, 0x77, 0xba, 0x7d, 0x71, 0xc4, 0xc6, 0xc7, 0x58, 0x47, 0x3f, 0x39, 0x4c, 0x0c, 0x0e, 0x7a, + 0x4d, 0xa6, 0x6f, 0x80, 0x85, 0x44, 0x1d, 0x4c, 0x7a, 0xf3, 0xc9, 0xef, 0xe6, 0xe7, 0x1e, 0xba, + 0x47, 0x30, 0x8d, 0x70, 0x8e, 0xf0, 0x95, 0xcc, 0x7e, 0x1c, 0xa6, 0x7b, 0x64, 0x33, 0xaf, 0x22, + 0x25, 0xfb, 0x22, 0xbe, 0xb0, 0x3f, 0xf4, 0x8a, 0xf8, 0x28, 0x35, 0x18, 0x4c, 0xa4, 0x4b, 0x09, + 0x86, 0x94, 0xee, 0x75, 0x4c, 0x38, 0x5d, 0x0c, 0x68, 0xf8, 0xe9, 0x91, 0xf9, 0x28, 0x9b, 0x9e, + 0x91, 0xdd, 0xda, 0x54, 0xb1, 0xc4, 0x25, 0x64, 0x4b, 0xd7, 0xbc, 0x4b, 0x9b, 0x89, 0xb9, 0x15, + 0x1e, 0x33, 0xcb, 0xeb, 0xa1, 0xcd, 0xe4, 0xcf, 0x36, 0x1b, 0xff, 0x6e, 0x73, 0x7b, 0xf3, 0xb2, + 0x50, 0x79, 0xbb, 0x32, 0x31, 0x4b, 0xa0, 0xe2, 0xbd, 0x01, 0x50, 0xd9, 0x0f, 0xbe, 0xde, 0x4a, + 0xc9, 0x9a, 0x37, 0xf1, 0xb9, 0x02, 0x3e, 0x5e, 0x3b, 0xde, 0xea, 0xc7, 0xbb, 0xfc, 0x0a, 0x00, + 0x00, 0xff, 0xff, 0x6f, 0x43, 0xcc, 0x98, 0x08, 0x02, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/common.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/common.pb.go index 5a9e51d44f..817e8eedd0 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/common.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/common.pb.go @@ -5,8 +5,9 @@ package plugins import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -155,29 +156,29 @@ func init() { } var fileDescriptor_f625aa9156a15090 = []byte{ - // 379 bytes of a gzipped FileDescriptorProto + // 383 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0xdf, 0xab, 0xd3, 0x30, - 0x1c, 0xc5, 0x6f, 0xe7, 0x0f, 0x30, 0x78, 0x47, 0x89, 0x5e, 0xda, 0x29, 0xc2, 0x50, 0x90, 0x39, - 0xb0, 0x05, 0x05, 0x45, 0x7c, 0xaa, 0x5b, 0x27, 0x83, 0xd2, 0x96, 0x74, 0x53, 0xe6, 0x4b, 0x6c, - 0xd3, 0xb4, 0x0b, 0x4b, 0x93, 0xd2, 0xa6, 0xca, 0xfe, 0x75, 0x9f, 0xa4, 0x5d, 0x37, 0x58, 0xe1, - 0x3e, 0xe6, 0x7c, 0xce, 0xf7, 0x7c, 0x43, 0x72, 0xc0, 0xdb, 0x8c, 0x1f, 0x15, 0x65, 0x29, 0xb7, - 0x4b, 0xde, 0xe4, 0x4c, 0xd4, 0xf6, 0xa1, 0x49, 0x68, 0xc6, 0xe5, 0x5f, 0x9b, 0xc8, 0xa2, 0x90, - 0xc2, 0x2a, 0x2b, 0xa9, 0x24, 0x9c, 0x9c, 0x7d, 0x56, 0xef, 0xb3, 0xce, 0xbe, 0xd7, 0xff, 0x34, - 0xf0, 0x04, 0x35, 0x22, 0x94, 0x9c, 0x91, 0x23, 0x8c, 0x80, 0x4e, 0x38, 0x8d, 0x05, 0x2e, 0x65, - 0x8a, 0xcb, 0x4e, 0x33, 0xb5, 0xa9, 0x36, 0x1b, 0x7f, 0x78, 0x67, 0xdd, 0x9b, 0x61, 0x2d, 0xda, - 0x91, 0x50, 0xa6, 0xa7, 0x10, 0x34, 0x26, 0x57, 0x67, 0xf8, 0x15, 0xbc, 0x50, 0x8a, 0xe3, 0x9a, - 0x12, 0x29, 0xd2, 0x1a, 0xc7, 0x99, 0xa2, 0x15, 0xce, 0x98, 0x60, 0xf5, 0x9e, 0xa6, 0xe6, 0x68, - 0xaa, 0xcd, 0x1e, 0x21, 0x43, 0x29, 0x1e, 0x9d, 0x0c, 0x4e, 0xcb, 0x57, 0x3d, 0x86, 0x9f, 0x80, - 0x11, 0x13, 0xc5, 0xfe, 0x50, 0x9c, 0xd2, 0x38, 0xe5, 0x4c, 0xd0, 0x73, 0x90, 0xf9, 0xa0, 0x9b, - 0xbc, 0x3b, 0xe1, 0x65, 0x4f, 0xfb, 0x10, 0xf8, 0x06, 0xdc, 0x26, 0x31, 0x39, 0xc8, 0x2c, 0xc3, - 0x9c, 0x15, 0x4c, 0x99, 0x0f, 0x3b, 0xf7, 0xd3, 0x5e, 0xf4, 0x5a, 0x6d, 0x4e, 0xc0, 0x2d, 0xa2, - 0xb5, 0x8a, 0x2b, 0xd5, 0x5f, 0xd5, 0x04, 0xcf, 0x91, 0x1b, 0x6d, 0x1c, 0xb4, 0xc1, 0x61, 0xe0, - 0xad, 0x17, 0x3b, 0xec, 0xbb, 0x3f, 0x5c, 0xa4, 0xdf, 0xc0, 0x57, 0x60, 0x32, 0x20, 0x81, 0x8f, - 0x57, 0xce, 0xda, 0xdb, 0x22, 0x57, 0xd7, 0xe0, 0x04, 0xdc, 0x0d, 0xb0, 0xe3, 0xfd, 0x74, 0x76, - 0x91, 0x3e, 0x9a, 0xff, 0x06, 0xe3, 0xeb, 0x07, 0x6a, 0xb7, 0x2c, 0x3c, 0xd7, 0xf1, 0xc3, 0x60, - 0x79, 0x59, 0x13, 0xf8, 0xae, 0x7e, 0x03, 0x5f, 0x02, 0x63, 0x48, 0xd0, 0xd6, 0xf7, 0xd7, 0xfe, - 0x77, 0x5d, 0x83, 0x06, 0x78, 0x36, 0x84, 0x8e, 0xe7, 0xe9, 0xa3, 0x6f, 0x5f, 0x7e, 0x7d, 0xce, - 0x99, 0xda, 0x37, 0x89, 0x45, 0x64, 0x61, 0x77, 0xff, 0x24, 0xab, 0xdc, 0xbe, 0x94, 0x23, 0xa7, - 0xc2, 0x2e, 0x93, 0xf7, 0xb9, 0xb4, 0x87, 0x7d, 0x49, 0x1e, 0x77, 0x05, 0xf9, 0xf8, 0x3f, 0x00, - 0x00, 0xff, 0xff, 0x98, 0x4b, 0x46, 0x68, 0x4a, 0x02, 0x00, 0x00, + 0x1c, 0xc5, 0x6f, 0xe7, 0x0f, 0x30, 0x78, 0x47, 0x89, 0x5e, 0xda, 0x29, 0xc2, 0x45, 0x41, 0xae, + 0x03, 0x5b, 0x50, 0xf0, 0x45, 0x44, 0xea, 0xd6, 0xc9, 0xa0, 0xb4, 0x25, 0xdd, 0x94, 0xf9, 0x12, + 0xdb, 0x34, 0xed, 0xc2, 0xd2, 0xa4, 0xb4, 0xa9, 0xb2, 0x7f, 0xdd, 0x27, 0xe9, 0x8f, 0x0d, 0x56, + 0xb8, 0x6f, 0xed, 0xf9, 0x9c, 0xef, 0xf9, 0x86, 0xe4, 0x80, 0xb7, 0x19, 0x3f, 0x2a, 0xca, 0x52, + 0x6e, 0x97, 0xbc, 0xc9, 0x99, 0xa8, 0xed, 0x43, 0x93, 0xd0, 0x8c, 0xcb, 0xbf, 0x36, 0x91, 0x45, + 0x21, 0x85, 0x55, 0x56, 0x52, 0x49, 0x38, 0x3b, 0xf9, 0xac, 0xc1, 0x67, 0x9d, 0x7c, 0xaf, 0xff, + 0x69, 0xe0, 0x09, 0x6a, 0x44, 0x28, 0x39, 0x23, 0x47, 0x18, 0x01, 0x9d, 0x70, 0x1a, 0x0b, 0x5c, + 0xca, 0x14, 0x97, 0x9d, 0x66, 0x6a, 0xb7, 0xda, 0xdd, 0xf4, 0xc3, 0x3b, 0xeb, 0xde, 0x0c, 0x6b, + 0xd1, 0x8e, 0x84, 0x32, 0xed, 0x43, 0xd0, 0x94, 0x5c, 0xfc, 0xc3, 0xcf, 0xe0, 0x85, 0x52, 0x1c, + 0xd7, 0x94, 0x48, 0x91, 0xd6, 0x38, 0xce, 0x14, 0xad, 0x70, 0xc6, 0x04, 0xab, 0xf7, 0x34, 0x35, + 0x27, 0xb7, 0xda, 0xdd, 0x23, 0x64, 0x28, 0xc5, 0xa3, 0xde, 0xe0, 0xb4, 0x7c, 0x35, 0x60, 0xf8, + 0x09, 0x18, 0x31, 0x51, 0xec, 0x0f, 0xc5, 0x29, 0x8d, 0x53, 0xce, 0x04, 0x3d, 0x05, 0x99, 0x0f, + 0xba, 0xc9, 0x9b, 0x1e, 0x2f, 0x07, 0x3a, 0x84, 0xc0, 0x37, 0xe0, 0x3a, 0x89, 0xc9, 0x41, 0x66, + 0x19, 0xe6, 0xac, 0x60, 0xca, 0x7c, 0xd8, 0xb9, 0x9f, 0x0e, 0xa2, 0xd7, 0x6a, 0x73, 0x02, 0xae, + 0x11, 0xad, 0x55, 0x5c, 0xa9, 0xe1, 0xa8, 0x26, 0x78, 0x8e, 0xdc, 0x68, 0xe3, 0xa0, 0x0d, 0x0e, + 0x03, 0x6f, 0xbd, 0xd8, 0x61, 0xdf, 0xfd, 0xe1, 0x22, 0xfd, 0x0a, 0xbe, 0x02, 0xb3, 0x11, 0x09, + 0x7c, 0xbc, 0x72, 0xd6, 0xde, 0x16, 0xb9, 0xba, 0x06, 0x67, 0xe0, 0x66, 0x84, 0x1d, 0xef, 0xa7, + 0xb3, 0x8b, 0xf4, 0xc9, 0xfc, 0x37, 0x98, 0x5e, 0x5e, 0x50, 0xbb, 0x65, 0xe1, 0xb9, 0x8e, 0x1f, + 0x06, 0xcb, 0xf3, 0x9a, 0xc0, 0x77, 0xf5, 0x2b, 0xf8, 0x12, 0x18, 0x63, 0x82, 0xb6, 0xbe, 0xbf, + 0xf6, 0xbf, 0xeb, 0x1a, 0x34, 0xc0, 0xb3, 0x31, 0x74, 0x3c, 0x4f, 0x9f, 0x7c, 0xfb, 0xfa, 0xeb, + 0x4b, 0xce, 0xd4, 0xbe, 0x49, 0x2c, 0x22, 0x0b, 0xbb, 0x7b, 0x27, 0x59, 0xe5, 0xfd, 0x87, 0x7d, + 0xae, 0x48, 0x4e, 0x85, 0x5d, 0x26, 0xef, 0x73, 0x69, 0x8f, 0x5b, 0x93, 0x3c, 0xee, 0x6a, 0xf2, + 0xf1, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd4, 0xd4, 0xfd, 0x1c, 0x50, 0x02, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/mpi.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/mpi.pb.go index 40420db3e8..8d5a55deaa 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/mpi.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/mpi.pb.go @@ -5,9 +5,10 @@ package plugins import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - proto "github.com/golang/protobuf/proto" math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -178,29 +179,29 @@ func init() { } var fileDescriptor_298b02c608b0cddf = []byte{ - // 373 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x52, 0x4d, 0x6b, 0xdb, 0x30, - 0x00, 0xc5, 0xc9, 0xbc, 0xcd, 0x1a, 0xcb, 0x36, 0xb1, 0x83, 0xe7, 0x53, 0x96, 0x8d, 0xe1, 0xcb, - 0x2c, 0xc8, 0x60, 0xa5, 0xd0, 0x53, 0xdb, 0x4b, 0x0f, 0xa5, 0x41, 0xcd, 0xa9, 0x97, 0x20, 0x2b, - 0x8a, 0x23, 0x2c, 0x4b, 0x46, 0x1f, 0x84, 0xfc, 0xc4, 0xfe, 0xa3, 0x1e, 0x8b, 0x3f, 0x93, 0x96, - 0x26, 0xbd, 0xf4, 0xe6, 0x67, 0x3d, 0xbd, 0x0f, 0xfb, 0x81, 0x5f, 0x2b, 0xb1, 0xb5, 0x8c, 0x2f, - 0x05, 0x2a, 0x85, 0xcb, 0xb8, 0x34, 0x28, 0x77, 0x29, 0x5b, 0x09, 0xb5, 0x41, 0x45, 0xc9, 0x93, - 0x52, 0x2b, 0xab, 0xe0, 0x8f, 0x8e, 0x94, 0xb4, 0xa4, 0xa4, 0x23, 0x45, 0xfd, 0x11, 0xa2, 0x4a, - 0x33, 0x64, 0x89, 0xc9, 0x4d, 0x73, 0x2b, 0xfa, 0x73, 0x58, 0x9a, 0xaa, 0xa2, 0x50, 0xb2, 0xe1, - 0x4d, 0xee, 0x07, 0x20, 0xba, 0xe4, 0xc6, 0x6a, 0x9e, 0x3a, 0xcb, 0x96, 0xd7, 0xb3, 0xab, 0xb9, - 0x26, 0x5c, 0x72, 0x99, 0xcd, 0x89, 0xc9, 0x21, 0x03, 0x5f, 0x36, 0x4a, 0xe7, 0x4c, 0x2f, 0x34, - 0x2b, 0x05, 0xa7, 0xc4, 0x84, 0xde, 0xd8, 0x8b, 0x3f, 0x4d, 0xcf, 0x92, 0x83, 0xb1, 0x92, 0x97, - 0xf5, 0x70, 0x23, 0x70, 0x5b, 0x32, 0x8a, 0x47, 0x8d, 0x68, 0xfb, 0xca, 0x40, 0x0e, 0xbe, 0x09, - 0xe2, 0x24, 0x5d, 0xef, 0x1b, 0x0d, 0xde, 0xc0, 0xe8, 0x6b, 0x27, 0xdb, 0x5b, 0x5d, 0x00, 0xa0, - 0x9d, 0x5c, 0x94, 0x4a, 0x70, 0xba, 0x0d, 0x87, 0xb5, 0xc7, 0xef, 0x23, 0x1e, 0xd8, 0xc9, 0x59, - 0xcd, 0xc5, 0x81, 0xee, 0x1e, 0xe1, 0x77, 0xe0, 0x1b, 0xa1, 0xac, 0x09, 0xdf, 0x8d, 0xbd, 0xd8, - 0xc7, 0x0d, 0x98, 0x3c, 0x78, 0xe0, 0xe7, 0xab, 0x91, 0x60, 0x04, 0x3e, 0x3e, 0xf9, 0x96, 0x3e, - 0xee, 0x71, 0xa5, 0xcb, 0x0b, 0x92, 0xb1, 0xba, 0x7b, 0x80, 0x1b, 0x00, 0xff, 0x83, 0x40, 0x33, - 0xa3, 0x9c, 0xa6, 0xcc, 0xb4, 0x89, 0xc3, 0x5d, 0xe2, 0xea, 0xd7, 0x27, 0xb8, 0x3b, 0xc7, 0x3b, - 0x2a, 0xbc, 0x01, 0x23, 0xcd, 0x8c, 0x25, 0xda, 0x76, 0x75, 0xab, 0xb8, 0xa3, 0x69, 0x7c, 0xac, - 0x6e, 0x73, 0xa1, 0xad, 0xfc, 0x59, 0xef, 0x43, 0x18, 0x82, 0x0f, 0xd5, 0x78, 0x88, 0x5c, 0x86, - 0xfe, 0x78, 0x18, 0x07, 0xb8, 0x83, 0xe7, 0xa7, 0x77, 0x27, 0x19, 0xb7, 0x6b, 0x97, 0x26, 0x54, - 0x15, 0xa8, 0x96, 0x57, 0x3a, 0x43, 0xfd, 0x08, 0x33, 0x26, 0x51, 0x99, 0xfe, 0xcd, 0x14, 0x7a, - 0xbe, 0xcb, 0xf4, 0x7d, 0x3d, 0xc4, 0x7f, 0x8f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x31, 0xf8, 0x1a, - 0x19, 0x0d, 0x03, 0x00, 0x00, + // 376 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x52, 0x3f, 0x8f, 0xd3, 0x30, + 0x1c, 0x55, 0x5a, 0x02, 0xc4, 0x88, 0x02, 0x16, 0x43, 0xc8, 0x54, 0x0a, 0x42, 0x59, 0x88, 0xa5, + 0x22, 0x31, 0x81, 0x90, 0x80, 0x85, 0x01, 0x5d, 0xe5, 0xeb, 0x74, 0x4b, 0xe5, 0xb8, 0x6e, 0x6a, + 0xc5, 0xb1, 0x23, 0xff, 0x51, 0xd5, 0x8f, 0x78, 0xdf, 0xe8, 0xc6, 0x53, 0xe2, 0x24, 0xed, 0x9d, + 0xae, 0xbd, 0xe5, 0x36, 0xbf, 0xf8, 0xfd, 0xde, 0x7b, 0xbf, 0xf8, 0x81, 0x4f, 0x1b, 0xb1, 0xb7, + 0x8c, 0xaf, 0x05, 0xaa, 0x85, 0x2b, 0xb8, 0x34, 0xa8, 0x74, 0x39, 0xdb, 0x08, 0xb5, 0x43, 0x55, + 0xcd, 0xb3, 0x5a, 0x2b, 0xab, 0xe0, 0x87, 0x9e, 0x94, 0x75, 0xa4, 0xac, 0x27, 0x25, 0xc3, 0x15, + 0xa2, 0x4a, 0x33, 0x64, 0x89, 0x29, 0x8d, 0x9f, 0x4a, 0xbe, 0x9c, 0x96, 0xa6, 0xaa, 0xaa, 0x94, + 0xf4, 0xbc, 0xd9, 0xf5, 0x08, 0x24, 0x7f, 0xb9, 0xb1, 0x9a, 0xe7, 0xce, 0xb2, 0xf5, 0xff, 0xc5, + 0xbf, 0xa5, 0x26, 0x5c, 0x72, 0x59, 0x2c, 0x89, 0x29, 0x21, 0x03, 0x6f, 0x76, 0x4a, 0x97, 0x4c, + 0xaf, 0x34, 0xab, 0x05, 0xa7, 0xc4, 0xc4, 0xc1, 0x34, 0x48, 0x5f, 0xcd, 0x7f, 0x64, 0x27, 0x63, + 0x65, 0x0f, 0xeb, 0x61, 0x2f, 0x70, 0x59, 0x33, 0x8a, 0x27, 0x5e, 0xb4, 0xfb, 0x64, 0x20, 0x07, + 0xef, 0x04, 0x71, 0x92, 0x6e, 0x8f, 0x8d, 0x46, 0x4f, 0x60, 0xf4, 0xb6, 0x97, 0x1d, 0xac, 0xfe, + 0x00, 0xa0, 0x9d, 0x5c, 0xd5, 0x4a, 0x70, 0xba, 0x8f, 0xc7, 0xad, 0xc7, 0xe7, 0x33, 0x1e, 0xd8, + 0xc9, 0x45, 0xcb, 0xc5, 0x91, 0xee, 0x8f, 0xf0, 0x3d, 0x08, 0x8d, 0x50, 0xd6, 0xc4, 0xcf, 0xa6, + 0x41, 0x1a, 0x62, 0x0f, 0x66, 0x37, 0x01, 0xf8, 0xf8, 0x68, 0x24, 0x98, 0x80, 0x97, 0x77, 0xfe, + 0x65, 0x88, 0x07, 0xdc, 0xe8, 0xf2, 0x8a, 0x14, 0xac, 0xdd, 0x3d, 0xc2, 0x1e, 0xc0, 0xef, 0x20, + 0xd2, 0xcc, 0x28, 0xa7, 0x29, 0x33, 0x5d, 0xe2, 0xf8, 0x90, 0xb8, 0x79, 0xfa, 0x0c, 0xf7, 0xf7, + 0xf8, 0x40, 0x85, 0x17, 0x60, 0xa2, 0x99, 0xb1, 0x44, 0xdb, 0x7e, 0xdd, 0x26, 0xee, 0x64, 0x9e, + 0x9e, 0x5b, 0xd7, 0x0f, 0x74, 0x2b, 0xbf, 0xd6, 0xc7, 0x10, 0xc6, 0xe0, 0x45, 0x53, 0x1e, 0x22, + 0xd7, 0x71, 0x38, 0x1d, 0xa7, 0x11, 0xee, 0xe1, 0xef, 0x5f, 0x57, 0x3f, 0x0b, 0x6e, 0xb7, 0x2e, + 0xcf, 0xa8, 0xaa, 0x50, 0x2b, 0xaf, 0x74, 0xe1, 0x0f, 0x68, 0xa8, 0x62, 0xc1, 0x24, 0xaa, 0xf3, + 0xaf, 0x85, 0x42, 0xf7, 0xdb, 0x99, 0x3f, 0x6f, 0xeb, 0xf8, 0xed, 0x36, 0x00, 0x00, 0xff, 0xff, + 0x4b, 0x54, 0x61, 0xa1, 0x13, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/pytorch.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/pytorch.pb.go index 7cef6b322b..94d6a80493 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/pytorch.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/pytorch.pb.go @@ -5,9 +5,10 @@ package plugins import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - proto "github.com/golang/protobuf/proto" math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -242,35 +243,35 @@ func init() { } var fileDescriptor_37e97bee6e09d707 = []byte{ - // 468 bytes of a gzipped FileDescriptorProto + // 470 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xcf, 0x8e, 0xd3, 0x30, 0x10, 0xc6, 0xd5, 0x5d, 0x8a, 0xa8, 0xb3, 0xed, 0x4a, 0x11, 0x87, 0xd0, 0x03, 0x5a, 0xaa, 0x05, - 0x7a, 0x21, 0x91, 0x8a, 0x04, 0xe2, 0x86, 0x76, 0xe1, 0x0a, 0x95, 0xe9, 0x89, 0x4b, 0xe4, 0x38, - 0xd3, 0xac, 0x95, 0xc4, 0xb6, 0xc6, 0x0e, 0xbb, 0xe5, 0x19, 0x78, 0x29, 0x5e, 0x85, 0x27, 0x41, - 0x71, 0xfe, 0x75, 0x91, 0x5a, 0x71, 0xd8, 0x5b, 0x66, 0xfc, 0xcb, 0x37, 0xfe, 0xc6, 0x33, 0xe4, - 0xf5, 0xb6, 0xd8, 0x59, 0x10, 0x69, 0x11, 0xe9, 0xa2, 0xca, 0x84, 0x34, 0x51, 0x5e, 0x25, 0xb0, - 0x2d, 0xd4, 0x6d, 0xa4, 0x77, 0x56, 0x21, 0xbf, 0x09, 0x35, 0x2a, 0xab, 0xfc, 0x67, 0x1d, 0x18, - 0xb6, 0x60, 0xd8, 0x81, 0xf3, 0xfe, 0x28, 0xe2, 0x0a, 0x21, 0xb2, 0xcc, 0xe4, 0xa6, 0xf9, 0x6b, - 0xfe, 0xea, 0xb0, 0x3c, 0x57, 0x65, 0xa9, 0x64, 0xc3, 0x2d, 0x7e, 0x8f, 0xc8, 0xf4, 0x73, 0xc1, - 0x8c, 0x15, 0xfc, 0x5a, 0xc9, 0xad, 0xc8, 0xfc, 0x17, 0xe4, 0x0c, 0xd3, 0x9f, 0x3f, 0xe2, 0x84, - 0xf1, 0x1c, 0x64, 0x1a, 0x8c, 0x2e, 0x46, 0xcb, 0x09, 0xf5, 0xea, 0xdc, 0x55, 0x93, 0xaa, 0x91, - 0x52, 0xc8, 0x18, 0x41, 0x17, 0x82, 0x33, 0x13, 0x9c, 0x5c, 0x8c, 0x96, 0x63, 0xea, 0x95, 0x42, - 0xd2, 0x36, 0xe5, 0x10, 0x76, 0x37, 0x20, 0xa7, 0x2d, 0xc2, 0xee, 0x7a, 0xe4, 0x92, 0xcc, 0xa4, - 0x46, 0xc5, 0x63, 0x0d, 0x18, 0x4b, 0x95, 0x42, 0xf0, 0xc8, 0x41, 0x67, 0x2e, 0xbb, 0x06, 0xfc, - 0xa2, 0x52, 0x18, 0x84, 0x8c, 0x65, 0x68, 0x4d, 0x30, 0xde, 0x13, 0x6a, 0x52, 0x8b, 0x5f, 0xa7, - 0xe4, 0xf9, 0x27, 0x61, 0x2c, 0x8a, 0xa4, 0xb2, 0x90, 0xae, 0x77, 0x9b, 0xba, 0x7d, 0x1b, 0x64, - 0x42, 0x0a, 0x99, 0x6d, 0x98, 0xc9, 0x7d, 0x41, 0xce, 0x6f, 0x15, 0xe6, 0x80, 0xc3, 0x8d, 0x6a, - 0x5f, 0xde, 0xea, 0x63, 0x78, 0xb0, 0xbd, 0xe1, 0x61, 0xcd, 0xd6, 0xc3, 0x37, 0x0d, 0x9c, 0xce, - 0x1a, 0xe1, 0xde, 0x96, 0x20, 0xe7, 0x25, 0x33, 0x76, 0xbf, 0xd4, 0xc9, 0x43, 0x95, 0x6a, 0x84, - 0xfb, 0x52, 0xd7, 0x84, 0x60, 0x25, 0x63, 0xad, 0x0a, 0xc1, 0x77, 0xae, 0xc5, 0xde, 0xea, 0xf2, - 0x48, 0x15, 0x5a, 0xc9, 0xb5, 0x63, 0xe9, 0x04, 0xbb, 0x4f, 0xff, 0x2b, 0x99, 0x41, 0x33, 0x00, - 0x31, 0x77, 0x13, 0xe0, 0x9e, 0xc1, 0x5b, 0x2d, 0x8f, 0x08, 0xdd, 0x9b, 0x18, 0x3a, 0x85, 0xfd, - 0x70, 0xf1, 0x67, 0x44, 0x5e, 0xfe, 0x97, 0x1f, 0x7f, 0x4e, 0x9e, 0xdc, 0x7b, 0x8e, 0x31, 0xed, - 0x63, 0xff, 0x29, 0x19, 0x8b, 0x92, 0x65, 0xe0, 0x9a, 0x37, 0xa1, 0x4d, 0xe0, 0xbf, 0x23, 0x13, - 0x04, 0xa3, 0x2a, 0xe4, 0x60, 0x5a, 0xc3, 0xc1, 0x70, 0xcf, 0x7a, 0x0b, 0x42, 0xda, 0x9d, 0xd3, - 0x01, 0xad, 0x4d, 0xb6, 0x13, 0xd4, 0x75, 0xab, 0x36, 0x39, 0x3b, 0x6a, 0xb2, 0x9d, 0xaf, 0xb6, - 0x63, 0x53, 0xdc, 0x0f, 0xaf, 0x3e, 0x7c, 0x7f, 0x9f, 0x09, 0x7b, 0x53, 0x25, 0x21, 0x57, 0x65, - 0xe4, 0x44, 0x14, 0x66, 0x51, 0xbf, 0x75, 0x19, 0xc8, 0x48, 0x27, 0x6f, 0x32, 0x15, 0xfd, 0xbb, - 0x88, 0xc9, 0x63, 0xb7, 0x79, 0x6f, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0xa3, 0xdb, 0x04, 0x89, - 0x02, 0x04, 0x00, 0x00, + 0x7a, 0x21, 0x91, 0x8a, 0xc4, 0x0d, 0x81, 0x76, 0xe1, 0x0a, 0x95, 0xe9, 0x89, 0x4b, 0xe4, 0x38, + 0xd3, 0xac, 0x95, 0xc4, 0x8e, 0xc6, 0x0e, 0xbb, 0xe5, 0x19, 0x78, 0x29, 0x5e, 0x85, 0x27, 0x41, + 0xb1, 0xf3, 0xa7, 0x8b, 0xd4, 0x8a, 0xc3, 0xde, 0x32, 0xe3, 0x5f, 0xbe, 0xf1, 0x37, 0x9e, 0x21, + 0xaf, 0xb7, 0xc5, 0xce, 0x80, 0x48, 0x8b, 0xa8, 0x2a, 0xea, 0x4c, 0x48, 0x1d, 0xe5, 0x75, 0x02, + 0xdb, 0x42, 0xdd, 0x46, 0xd5, 0xce, 0x28, 0xe4, 0x37, 0x61, 0x85, 0xca, 0x28, 0xff, 0x59, 0x07, + 0x86, 0x2d, 0x18, 0x76, 0xe0, 0xbc, 0x3f, 0x8a, 0xb8, 0x42, 0x88, 0x0c, 0xd3, 0xb9, 0x76, 0x7f, + 0xcd, 0x5f, 0x1d, 0x96, 0xe7, 0xaa, 0x2c, 0x95, 0x74, 0xdc, 0xe2, 0xf7, 0x88, 0x4c, 0x3f, 0x17, + 0x4c, 0x1b, 0xc1, 0xaf, 0x95, 0xdc, 0x8a, 0xcc, 0x7f, 0x41, 0xce, 0x30, 0xfd, 0xf9, 0x23, 0x4e, + 0x18, 0xcf, 0x41, 0xa6, 0xc1, 0xe8, 0x62, 0xb4, 0x9c, 0x50, 0xaf, 0xc9, 0x5d, 0xb9, 0x54, 0x83, + 0x94, 0x42, 0xc6, 0x08, 0x55, 0x21, 0x38, 0xd3, 0xc1, 0xc9, 0xc5, 0x68, 0x39, 0xa6, 0x5e, 0x29, + 0x24, 0x6d, 0x53, 0x16, 0x61, 0x77, 0x03, 0x72, 0xda, 0x22, 0xec, 0xae, 0x47, 0x2e, 0xc9, 0x4c, + 0x56, 0xa8, 0x78, 0x5c, 0x01, 0xc6, 0x52, 0xa5, 0x10, 0x3c, 0xb2, 0xd0, 0x99, 0xcd, 0xae, 0x01, + 0xbf, 0xa8, 0x14, 0x06, 0x21, 0x6d, 0x18, 0x1a, 0x1d, 0x8c, 0xf7, 0x84, 0x5c, 0x6a, 0xf1, 0xeb, + 0x94, 0x3c, 0xff, 0x24, 0xb4, 0x41, 0x91, 0xd4, 0x06, 0xd2, 0xf5, 0x6e, 0xd3, 0xb4, 0x6f, 0x83, + 0x4c, 0x48, 0x21, 0xb3, 0x0d, 0xd3, 0xb9, 0x2f, 0xc8, 0xf9, 0xad, 0xc2, 0x1c, 0x70, 0xb8, 0x51, + 0xe3, 0xcb, 0x5b, 0x7d, 0x0c, 0x0f, 0xb6, 0x37, 0x3c, 0xac, 0xd9, 0x7a, 0xf8, 0x56, 0x01, 0xa7, + 0x33, 0x27, 0xdc, 0xdb, 0x12, 0xe4, 0xbc, 0x64, 0xda, 0xec, 0x97, 0x3a, 0x79, 0xa8, 0x52, 0x4e, + 0xb8, 0x2f, 0x75, 0x4d, 0x08, 0xd6, 0x32, 0xae, 0x54, 0x21, 0xf8, 0xce, 0xb6, 0xd8, 0x5b, 0x5d, + 0x1e, 0xa9, 0x42, 0x6b, 0xb9, 0xb6, 0x2c, 0x9d, 0x60, 0xf7, 0xe9, 0x7f, 0x25, 0x33, 0x70, 0x03, + 0x10, 0x73, 0x3b, 0x01, 0xf6, 0x19, 0xbc, 0xd5, 0xf2, 0x88, 0xd0, 0xbd, 0x89, 0xa1, 0x53, 0xd8, + 0x0f, 0x17, 0x7f, 0x46, 0xe4, 0xe5, 0x7f, 0xf9, 0xf1, 0xe7, 0xe4, 0xc9, 0xbd, 0xe7, 0x18, 0xd3, + 0x3e, 0xf6, 0x9f, 0x92, 0xb1, 0x28, 0x59, 0x06, 0xb6, 0x79, 0x13, 0xea, 0x02, 0xff, 0x1d, 0x99, + 0x20, 0x68, 0x55, 0x23, 0x07, 0xdd, 0x1a, 0x0e, 0x86, 0x7b, 0x36, 0x5b, 0x10, 0xd2, 0xee, 0x9c, + 0x0e, 0x68, 0x63, 0xb2, 0x9d, 0xa0, 0xae, 0x5b, 0x8d, 0xc9, 0xd9, 0x51, 0x93, 0xed, 0x7c, 0xb5, + 0x1d, 0x9b, 0xe2, 0x7e, 0x78, 0xf5, 0xe1, 0xfb, 0xfb, 0x4c, 0x98, 0x9b, 0x3a, 0x09, 0xb9, 0x2a, + 0x23, 0x2b, 0xa2, 0x30, 0x73, 0x1f, 0x51, 0xbf, 0x7b, 0x19, 0xc8, 0xa8, 0x4a, 0xde, 0x64, 0x2a, + 0xfa, 0x77, 0x1d, 0x93, 0xc7, 0x76, 0xff, 0xde, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x8b, 0x2e, + 0x7b, 0x3a, 0x08, 0x04, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/tensorflow.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/tensorflow.pb.go index b62e7fc9df..c0e797a626 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/tensorflow.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow/tensorflow.pb.go @@ -5,9 +5,10 @@ package plugins import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - proto "github.com/golang/protobuf/proto" math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -170,28 +171,28 @@ func init() { } var fileDescriptor_93de2bd764ddf01a = []byte{ - // 356 bytes of a gzipped FileDescriptorProto + // 358 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0x41, 0x4b, 0xc3, 0x30, 0x14, 0xc7, 0x99, 0x73, 0xe2, 0x32, 0x56, 0xa1, 0x78, 0x98, 0x3b, 0xe9, 0x10, 0x19, 0x82, 0x0d, - 0x4c, 0x50, 0xbc, 0x3a, 0xef, 0x4a, 0xdc, 0xc9, 0xcb, 0x68, 0xb3, 0xb7, 0x2e, 0xb6, 0x4d, 0xc2, - 0x4b, 0xc2, 0xd8, 0x37, 0xf2, 0x8b, 0xf9, 0x3d, 0x64, 0xed, 0xda, 0x4e, 0x61, 0xc3, 0xc3, 0x6e, - 0x79, 0xcd, 0x3f, 0xff, 0xdf, 0x7b, 0xaf, 0x7f, 0x72, 0x3b, 0x4f, 0x57, 0x16, 0xc4, 0x2c, 0xa5, - 0x3a, 0x75, 0xb1, 0x90, 0x86, 0x26, 0x2e, 0x82, 0x79, 0xaa, 0x96, 0xd4, 0x82, 0x34, 0x0a, 0xd7, - 0xc7, 0x40, 0xa3, 0xb2, 0xca, 0xbf, 0x28, 0xb5, 0xc1, 0x46, 0x1b, 0x94, 0xda, 0x7e, 0x75, 0x45, - 0xb9, 0x42, 0xa0, 0x36, 0x34, 0x89, 0x29, 0x5e, 0xf5, 0x6f, 0x76, 0x13, 0xb8, 0xca, 0x32, 0x25, - 0x0b, 0xdd, 0xe0, 0xab, 0x49, 0xae, 0x5e, 0x84, 0xb1, 0x28, 0x22, 0x67, 0x61, 0x36, 0xa9, 0xe8, - 0x13, 0x0c, 0x85, 0x14, 0x32, 0x9e, 0x84, 0x26, 0xf1, 0x53, 0x72, 0xb6, 0x54, 0x98, 0x00, 0x4e, - 0x11, 0x74, 0x2a, 0x78, 0x68, 0x7a, 0x8d, 0xcb, 0xc6, 0xb0, 0x33, 0x1a, 0x07, 0x3b, 0xbb, 0x0b, - 0xf6, 0xda, 0xb2, 0xc2, 0xe7, 0x5d, 0x03, 0x67, 0x5e, 0xe1, 0xbd, 0xf9, 0x64, 0xfc, 0x19, 0xe9, - 0x68, 0x53, 0x93, 0x8e, 0x0e, 0x47, 0x22, 0xda, 0x54, 0x94, 0x4f, 0xe2, 0xf1, 0x85, 0x80, 0x79, - 0x0d, 0x6a, 0x1e, 0x0e, 0xd4, 0xcd, 0xad, 0x2b, 0xd6, 0x98, 0x10, 0x74, 0x72, 0xaa, 0x55, 0x2a, - 0xf8, 0xaa, 0x77, 0x9c, 0x73, 0xae, 0xf7, 0x70, 0x98, 0x93, 0x6f, 0xb9, 0x96, 0xb5, 0xb1, 0x3c, - 0x0e, 0xbe, 0x1b, 0x64, 0xf8, 0xdf, 0x06, 0xfc, 0x3e, 0x39, 0xfd, 0xf5, 0xab, 0x5a, 0xac, 0xaa, - 0xfd, 0x73, 0xd2, 0x12, 0x59, 0x18, 0x43, 0xbe, 0xd9, 0x36, 0x2b, 0x0a, 0xff, 0x81, 0xb4, 0x11, - 0x8c, 0x72, 0xc8, 0xa1, 0x5c, 0x45, 0xaf, 0x6e, 0x71, 0x1d, 0xb0, 0x80, 0x95, 0xf7, 0xac, 0x96, - 0xfa, 0xaf, 0xc4, 0x43, 0x30, 0x36, 0x44, 0xbb, 0x3d, 0x9f, 0x37, 0x1a, 0xee, 0x9b, 0xaf, 0x78, - 0xb0, 0x99, 0xb1, 0x8b, 0xdb, 0xe5, 0xf3, 0xd3, 0xc7, 0x63, 0x2c, 0xec, 0xc2, 0x45, 0x01, 0x57, - 0x19, 0xcd, 0x4d, 0x14, 0xc6, 0xb4, 0x0a, 0x74, 0x0c, 0x92, 0xea, 0xe8, 0x2e, 0x56, 0xf4, 0x6f, - 0xc6, 0xa3, 0x93, 0x3c, 0xd4, 0xf7, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x1a, 0x01, 0x7d, 0x16, - 0x60, 0x03, 0x00, 0x00, + 0x4c, 0xf0, 0x26, 0x82, 0xf3, 0xae, 0xc4, 0x9d, 0xbc, 0x8c, 0x36, 0x7b, 0xeb, 0x62, 0xdb, 0x24, + 0xbc, 0xa4, 0x8c, 0x7d, 0x23, 0xbf, 0x98, 0xdf, 0x43, 0xd6, 0xac, 0xed, 0x14, 0x36, 0x3c, 0xec, + 0xf6, 0x5e, 0xf3, 0xcf, 0xff, 0xf7, 0x5e, 0xfa, 0x27, 0xb7, 0xf3, 0x74, 0x65, 0x41, 0xcc, 0x52, + 0xaa, 0xd3, 0x3c, 0x16, 0xd2, 0xd0, 0x24, 0x8f, 0x60, 0x9e, 0xaa, 0x25, 0xb5, 0x20, 0x8d, 0xc2, + 0x75, 0x19, 0x68, 0x54, 0x56, 0xf9, 0x17, 0xa5, 0x36, 0xd8, 0x68, 0x83, 0x52, 0xdb, 0xaf, 0x8e, + 0x28, 0x57, 0x08, 0xd4, 0x86, 0x26, 0x31, 0xee, 0x56, 0xff, 0x66, 0x37, 0x81, 0xab, 0x2c, 0x53, + 0xd2, 0xe9, 0x06, 0x5f, 0x4d, 0x72, 0xf5, 0x22, 0x8c, 0x45, 0x11, 0xe5, 0x16, 0x66, 0x93, 0x8a, + 0x3e, 0xc1, 0x50, 0x48, 0x21, 0xe3, 0x49, 0x68, 0x12, 0x3f, 0x25, 0x67, 0x4b, 0x85, 0x09, 0xe0, + 0x14, 0x41, 0xa7, 0x82, 0x87, 0xa6, 0xd7, 0xb8, 0x6c, 0x0c, 0x3b, 0xa3, 0x71, 0xb0, 0x73, 0xba, + 0x60, 0xaf, 0x2d, 0x73, 0x3e, 0xef, 0x1a, 0x38, 0xf3, 0x9c, 0xf7, 0xe6, 0x93, 0xf1, 0x67, 0xa4, + 0xa3, 0x4d, 0x4d, 0x3a, 0x3a, 0x1c, 0x89, 0x68, 0x53, 0x51, 0x3e, 0x89, 0xc7, 0x17, 0x02, 0xe6, + 0x35, 0xa8, 0x79, 0x38, 0x50, 0xb7, 0xb0, 0xae, 0x58, 0x63, 0x42, 0x30, 0x97, 0x53, 0xad, 0x52, + 0xc1, 0x57, 0xbd, 0xe3, 0x82, 0x73, 0xbd, 0x87, 0xc3, 0x72, 0xf9, 0x56, 0x68, 0x59, 0x1b, 0xcb, + 0x72, 0xf0, 0xdd, 0x20, 0xc3, 0xff, 0x0e, 0xe0, 0xf7, 0xc9, 0xe9, 0xaf, 0x5f, 0xd5, 0x62, 0x55, + 0xef, 0x9f, 0x93, 0x96, 0xc8, 0xc2, 0x18, 0x8a, 0x97, 0x6d, 0x33, 0xd7, 0xf8, 0x0f, 0xa4, 0x8d, + 0x60, 0x54, 0x8e, 0x1c, 0xca, 0xa7, 0xe8, 0xd5, 0x23, 0xae, 0x03, 0x16, 0xb0, 0xf2, 0x9c, 0xd5, + 0x52, 0xff, 0x95, 0x78, 0x08, 0xc6, 0x86, 0x68, 0xb7, 0xf7, 0xf3, 0x46, 0xc3, 0x7d, 0xfb, 0xb9, + 0x0b, 0x9b, 0x1d, 0xbb, 0xb8, 0xdd, 0x3e, 0x3f, 0x7d, 0x3c, 0xc6, 0xc2, 0x2e, 0xf2, 0x28, 0xe0, + 0x2a, 0xa3, 0x85, 0x89, 0xc2, 0xd8, 0x15, 0xb4, 0x8a, 0x75, 0x0c, 0x92, 0xea, 0xe8, 0x2e, 0x56, + 0xf4, 0x6f, 0xd2, 0xa3, 0x93, 0x22, 0xda, 0xf7, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x15, 0x1b, + 0x83, 0x24, 0x66, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/mpi.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/mpi.pb.go index f09295729e..3681bc9f69 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/mpi.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/mpi.pb.go @@ -5,8 +5,9 @@ package plugins import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -89,19 +90,19 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/mpi.proto", fileDescriptor_13cf3fae00e5b069) } var fileDescriptor_13cf3fae00e5b069 = []byte{ - // 209 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x8f, 0x31, 0x4b, 0xc7, 0x30, - 0x10, 0x47, 0xa9, 0xf2, 0x77, 0x88, 0x8b, 0x44, 0x85, 0xd2, 0x45, 0x71, 0x72, 0xb1, 0x01, 0x1d, - 0xc4, 0x55, 0x5c, 0x04, 0x05, 0x29, 0x05, 0xc1, 0xa5, 0x24, 0x6d, 0x4c, 0x8f, 0x26, 0x97, 0x70, - 0x49, 0x10, 0x3f, 0x81, 0x5f, 0x5b, 0x4c, 0xab, 0x83, 0xe3, 0xdd, 0x7b, 0xc3, 0xef, 0xb1, 0xe6, - 0xdd, 0x7e, 0x26, 0x0d, 0x93, 0x15, 0xc1, 0x66, 0x03, 0x18, 0x85, 0x0b, 0xd0, 0x06, 0xf2, 0xc9, - 0xf3, 0xa3, 0x5f, 0xd6, 0x6e, 0xec, 0xe2, 0xab, 0x62, 0xcd, 0x03, 0xc4, 0x44, 0xa0, 0x72, 0xd2, - 0xd3, 0xf3, 0xcb, 0x63, 0x4f, 0x12, 0x10, 0xd0, 0xf4, 0x32, 0x2e, 0xfc, 0x8c, 0x1d, 0x62, 0x76, - 0xc3, 0x87, 0xa7, 0x45, 0x53, 0xac, 0xab, 0xf3, 0xea, 0x72, 0xd7, 0x31, 0xcc, 0xee, 0x75, 0xfd, - 0xf0, 0x6b, 0x76, 0xfa, 0x23, 0x58, 0x99, 0x71, 0x9c, 0x35, 0x0d, 0xa4, 0x83, 0x85, 0x51, 0xc6, - 0x7a, 0xaf, 0xa8, 0xc7, 0x98, 0xdd, 0xd3, 0xc6, 0xba, 0x0d, 0xf1, 0x13, 0xb6, 0x8b, 0xd6, 0xa7, - 0x58, 0xef, 0x17, 0x67, 0x3d, 0xee, 0xef, 0xde, 0x6e, 0x0d, 0xa4, 0x39, 0xab, 0x76, 0xf4, 0x4e, - 0x94, 0xa1, 0x9e, 0x8c, 0xf8, 0xab, 0x31, 0x1a, 0x45, 0x50, 0x57, 0xc6, 0x8b, 0xff, 0x81, 0xea, - 0xa0, 0xd4, 0xdd, 0x7c, 0x07, 0x00, 0x00, 0xff, 0xff, 0x76, 0x5d, 0x84, 0xbc, 0xfb, 0x00, 0x00, - 0x00, + // 210 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x8f, 0x31, 0x4b, 0xc6, 0x30, + 0x10, 0x40, 0xa9, 0xf2, 0x39, 0xc4, 0x45, 0xa2, 0x42, 0xe9, 0xa2, 0x38, 0xb9, 0xd8, 0x80, 0xce, + 0x22, 0x88, 0x8b, 0xa0, 0x20, 0xa5, 0x20, 0xb8, 0x94, 0xa4, 0x8d, 0xe9, 0xd1, 0xe4, 0x12, 0x2e, + 0x09, 0xe2, 0x2f, 0xf0, 0x6f, 0x8b, 0x69, 0x75, 0x70, 0xbb, 0xbb, 0xf7, 0x86, 0x7b, 0xac, 0x79, + 0xb7, 0x9f, 0x49, 0xc3, 0x64, 0x45, 0xb0, 0xd9, 0x00, 0x46, 0xe1, 0x02, 0xb4, 0x81, 0x7c, 0xf2, + 0xfc, 0xe8, 0x97, 0xb5, 0x1b, 0xbb, 0xf8, 0xaa, 0x58, 0xf3, 0x00, 0x31, 0x11, 0xa8, 0x9c, 0xf4, + 0xf4, 0xfc, 0xf2, 0xd8, 0x93, 0x04, 0x04, 0x34, 0xbd, 0x8c, 0x0b, 0x3f, 0x63, 0x87, 0x98, 0xdd, + 0xf0, 0xe1, 0x69, 0xd1, 0x14, 0xeb, 0xea, 0xbc, 0xba, 0xdc, 0x75, 0x0c, 0xb3, 0x7b, 0x5d, 0x2f, + 0xfc, 0x9a, 0x9d, 0xfe, 0x08, 0x56, 0x66, 0x1c, 0x67, 0x4d, 0x03, 0xe9, 0x60, 0x61, 0x94, 0xb1, + 0xde, 0x2b, 0xea, 0x31, 0x66, 0xf7, 0xb4, 0xb1, 0x6e, 0x43, 0xfc, 0x84, 0xed, 0xa2, 0xf5, 0x29, + 0xd6, 0xfb, 0xc5, 0x59, 0x97, 0xfb, 0xbb, 0xb7, 0x5b, 0x03, 0x69, 0xce, 0xaa, 0x1d, 0xbd, 0x13, + 0xe5, 0x51, 0x4f, 0x66, 0x1d, 0xc4, 0x5f, 0x93, 0xd1, 0x28, 0x82, 0xba, 0x32, 0x5e, 0xfc, 0xcf, + 0x54, 0x07, 0xa5, 0xf1, 0xe6, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x65, 0x77, 0xd7, 0x89, 0x01, 0x01, + 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/presto.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/presto.pb.go index e0230fb442..380a580db2 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/presto.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/presto.pb.go @@ -5,8 +5,9 @@ package plugins import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -92,7 +93,7 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/presto.proto", fileDescriptor_881edc23a44f4737) } var fileDescriptor_881edc23a44f4737 = []byte{ - // 197 bytes of a gzipped FileDescriptorProto + // 198 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4d, 0xcb, 0xa9, 0x2c, 0x49, 0xcd, 0x4c, 0xc9, 0xd1, 0x2f, 0xc8, 0x29, 0x4d, 0xcf, 0xcc, 0x2b, 0xd6, 0x2f, 0x28, 0x4a, 0x2d, 0x2e, 0xc9, 0xd7, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x80, 0x49, 0xeb, 0x41, 0xa5, @@ -101,9 +102,9 @@ var fileDescriptor_881edc23a44f4737 = []byte{ 0x15, 0x18, 0x35, 0x38, 0x83, 0x78, 0xa0, 0x82, 0xee, 0x20, 0x31, 0x21, 0x09, 0x2e, 0xf6, 0xe4, 0xc4, 0x92, 0xc4, 0x9c, 0xfc, 0x74, 0x09, 0x26, 0xb0, 0x34, 0x8c, 0x2b, 0x24, 0xc6, 0xc5, 0x56, 0x9c, 0x9c, 0x91, 0x9a, 0x9b, 0x28, 0xc1, 0x0c, 0x96, 0x80, 0xf2, 0x84, 0x64, 0xb8, 0x38, 0x8b, - 0x4b, 0x12, 0x4b, 0x52, 0x73, 0x53, 0xf3, 0x4a, 0x24, 0x58, 0xc0, 0x52, 0x08, 0x01, 0x27, 0xcb, - 0x28, 0xf3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xb0, 0x1b, 0xf3, - 0x8b, 0xd2, 0xf5, 0xe1, 0x7e, 0x49, 0x4f, 0xcd, 0xd3, 0x2f, 0x48, 0xd2, 0x4d, 0xcf, 0xd7, 0x47, - 0xf7, 0x5e, 0x12, 0x1b, 0xd8, 0x63, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x71, 0x67, 0xf9, - 0x0f, 0xf9, 0x00, 0x00, 0x00, + 0x4b, 0x12, 0x4b, 0x52, 0x73, 0x53, 0xf3, 0x4a, 0x24, 0x58, 0xc0, 0x52, 0x08, 0x01, 0x27, 0xfb, + 0x28, 0xdb, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xb0, 0x1b, 0xf3, + 0x8b, 0xd2, 0x21, 0x0c, 0x7d, 0xb8, 0x8f, 0xd2, 0x53, 0xf3, 0xf4, 0x0b, 0x92, 0x74, 0xd3, 0xf3, + 0xf5, 0xd1, 0x3d, 0x99, 0xc4, 0x06, 0xf6, 0x9e, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xf2, 0xdf, + 0x0e, 0x21, 0xff, 0x00, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/pytorch.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/pytorch.pb.go index f75649fa0f..929df7579f 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/pytorch.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/pytorch.pb.go @@ -5,8 +5,9 @@ package plugins import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -152,24 +153,24 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/pytorch.proto", fileDescriptor_4df8a9374b28b766) } var fileDescriptor_4df8a9374b28b766 = []byte{ - // 299 bytes of a gzipped FileDescriptorProto + // 300 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x91, 0xbd, 0x4f, 0xc3, 0x30, 0x10, 0xc5, 0x15, 0xa0, 0x20, 0xdc, 0x0f, 0xa1, 0x4c, 0x99, 0x4a, 0xa9, 0x18, 0xba, 0x90, 0x48, - 0x30, 0x20, 0xd6, 0xf2, 0x31, 0xa2, 0x2a, 0xea, 0xc4, 0x12, 0x39, 0xf6, 0xd5, 0x3d, 0x35, 0xb5, - 0xad, 0xb3, 0x0b, 0x2d, 0x23, 0xff, 0x19, 0xff, 0x19, 0xaa, 0x9b, 0x7e, 0xd0, 0xf1, 0xde, 0xfd, - 0xee, 0xa4, 0xf7, 0x1e, 0xeb, 0x4e, 0xaa, 0x95, 0x07, 0x94, 0x55, 0x66, 0xab, 0x85, 0x42, 0xed, - 0x32, 0xbb, 0xf2, 0x86, 0xc4, 0x34, 0xb5, 0x64, 0xbc, 0x89, 0xaf, 0xb6, 0xfb, 0xb4, 0xde, 0xf7, + 0x30, 0x23, 0xa4, 0xf2, 0x31, 0xa2, 0x2a, 0xea, 0xc4, 0x12, 0x39, 0xf6, 0xd5, 0x3d, 0x35, 0xb5, + 0xad, 0xb3, 0x0b, 0x2d, 0x23, 0xff, 0x19, 0xff, 0x19, 0xaa, 0xd3, 0x2f, 0xba, 0xf9, 0xde, 0xfd, + 0x7c, 0xd2, 0x7b, 0x8f, 0x75, 0x27, 0xd5, 0xca, 0x03, 0xca, 0x2a, 0xb3, 0xd5, 0x42, 0xa1, 0x76, + 0x99, 0x5d, 0x79, 0x43, 0x62, 0x9a, 0x5a, 0x32, 0xde, 0xc4, 0x57, 0xdb, 0x7d, 0xba, 0xd9, 0xf7, 0x7f, 0x23, 0xd6, 0x7e, 0xad, 0xb8, 0xf3, 0x28, 0x9e, 0x8d, 0x9e, 0xa0, 0x8a, 0x6f, 0x58, 0x8b, 0xe4, 0xf7, 0x67, 0x51, 0x72, 0x31, 0x03, 0x2d, 0x93, 0xa8, 0x17, 0x0d, 0x2e, 0xf3, 0xe6, 0x5a, - 0x1b, 0x6e, 0xa4, 0x35, 0x32, 0x47, 0x5d, 0x10, 0xd8, 0x0a, 0x05, 0x77, 0xc9, 0x49, 0x2f, 0x1a, - 0x34, 0xf2, 0xe6, 0x1c, 0x75, 0x5e, 0x4b, 0x01, 0xe1, 0xcb, 0x3d, 0x72, 0x5a, 0x23, 0x7c, 0xb9, - 0x43, 0x6e, 0x59, 0x47, 0x5b, 0x32, 0xa2, 0xb0, 0x40, 0x85, 0x36, 0x12, 0x92, 0xb3, 0x00, 0xb5, - 0x82, 0x3a, 0x02, 0x7a, 0x37, 0x12, 0xf6, 0x8f, 0x9c, 0xe7, 0xe4, 0x5d, 0xd2, 0x38, 0x78, 0xb4, - 0x91, 0xfa, 0x3f, 0x11, 0xeb, 0xbe, 0xa0, 0xf3, 0x84, 0xe5, 0xc2, 0x83, 0x1c, 0xad, 0xc6, 0x6b, + 0x1b, 0xd6, 0xd2, 0x1a, 0x99, 0xa3, 0x2e, 0x08, 0x6c, 0x85, 0x82, 0xbb, 0xe4, 0xa4, 0x17, 0x0d, + 0x1a, 0x79, 0x73, 0x8e, 0x3a, 0xdf, 0x48, 0x01, 0xe1, 0xcb, 0x3d, 0x72, 0xba, 0x41, 0xf8, 0x72, + 0x87, 0xdc, 0xb2, 0x8e, 0xb6, 0x64, 0x44, 0x61, 0x81, 0x0a, 0x6d, 0x24, 0x24, 0x67, 0x01, 0x6a, + 0x05, 0x75, 0x04, 0xf4, 0x6e, 0x24, 0xec, 0x0f, 0x39, 0xcf, 0xc9, 0xbb, 0xa4, 0x71, 0x70, 0xa8, + 0x96, 0xfa, 0x3f, 0x11, 0xeb, 0xbe, 0xa0, 0xf3, 0x84, 0xe5, 0xc2, 0x83, 0x1c, 0xad, 0xc6, 0x6b, 0xcb, 0x63, 0xe2, 0xa8, 0x51, 0xab, 0x31, 0x77, 0xb3, 0x38, 0x61, 0x17, 0x5f, 0x86, 0x66, 0x40, - 0x2e, 0xf8, 0x69, 0xe4, 0xdb, 0x31, 0x7e, 0x63, 0x1d, 0xd8, 0xf8, 0x2f, 0x44, 0x08, 0x20, 0xb8, - 0x69, 0xde, 0x5f, 0xa7, 0xc7, 0x59, 0xa5, 0xff, 0x72, 0xca, 0xdb, 0x70, 0x38, 0x0e, 0x9f, 0x3e, - 0x1e, 0x15, 0xfa, 0xe9, 0xa2, 0x4c, 0x85, 0x99, 0x67, 0xe1, 0xd6, 0x90, 0xca, 0x76, 0x85, 0x28, - 0xd0, 0x99, 0x2d, 0xef, 0x94, 0xc9, 0x8e, 0x3b, 0x2a, 0xcf, 0x43, 0x39, 0x0f, 0x7f, 0x01, 0x00, - 0x00, 0xff, 0xff, 0x6f, 0x80, 0x2c, 0x15, 0xbe, 0x01, 0x00, 0x00, + 0x2e, 0xf8, 0x69, 0xe4, 0xdb, 0x31, 0x7e, 0x63, 0x1d, 0xa8, 0xfd, 0x17, 0x22, 0x04, 0x10, 0xdc, + 0x34, 0xef, 0xaf, 0xd3, 0xe3, 0xac, 0xd2, 0x7f, 0x39, 0xe5, 0x6d, 0x38, 0x1c, 0x87, 0x4f, 0x1f, + 0x8f, 0x0a, 0xfd, 0x74, 0x51, 0xa6, 0xc2, 0xcc, 0xb3, 0xf0, 0xd7, 0x90, 0xaa, 0x1f, 0xd9, 0xae, + 0x16, 0x05, 0x3a, 0xb3, 0xe5, 0x9d, 0x32, 0xd9, 0x71, 0x53, 0xe5, 0x79, 0xa8, 0xe8, 0xe1, 0x2f, + 0x00, 0x00, 0xff, 0xff, 0xdb, 0xc8, 0x1d, 0x82, 0xc4, 0x01, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/qubole.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/qubole.pb.go index 04db425f71..9df7f3d996 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/qubole.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/qubole.pb.go @@ -5,8 +5,9 @@ package plugins import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -191,24 +192,25 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/qubole.proto", fileDescriptor_7cb86d766c12ee2e) } var fileDescriptor_7cb86d766c12ee2e = []byte{ - // 304 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x51, 0xc1, 0x4a, 0x03, 0x31, - 0x14, 0x64, 0xbb, 0x55, 0xe9, 0xab, 0xc5, 0x12, 0x3d, 0x04, 0x44, 0x5d, 0x2a, 0xc2, 0x5e, 0xdc, - 0x60, 0x45, 0xc4, 0x6b, 0x7b, 0x11, 0xe9, 0xa5, 0xab, 0x27, 0x2f, 0xa5, 0x89, 0xcf, 0x18, 0x48, - 0x37, 0x6d, 0x36, 0x11, 0xfa, 0x99, 0xfe, 0x91, 0x6c, 0xba, 0xdd, 0x42, 0x0f, 0xbd, 0xbd, 0xcc, - 0xbc, 0x64, 0x66, 0x32, 0x70, 0xf5, 0xad, 0xd7, 0x0e, 0xd5, 0x97, 0x66, 0x4b, 0xed, 0xa5, 0x2a, - 0x4a, 0xb6, 0xf2, 0xdc, 0x68, 0xcc, 0x96, 0xd6, 0x38, 0x43, 0xfa, 0x5b, 0x3a, 0xab, 0xe9, 0x01, - 0x87, 0xce, 0xab, 0xfa, 0xc5, 0xa9, 0x47, 0xbb, 0x26, 0x17, 0x70, 0xb4, 0xaa, 0x06, 0x1a, 0x25, - 0x51, 0xda, 0xc9, 0x37, 0x07, 0x72, 0x03, 0x5d, 0xa7, 0x16, 0x68, 0xbc, 0x9b, 0x95, 0x28, 0x68, - 0x2b, 0x89, 0xd2, 0x5e, 0x0e, 0x35, 0xf4, 0x8e, 0x82, 0x5c, 0x03, 0x58, 0x74, 0x76, 0x3d, 0x36, - 0xbe, 0x70, 0x34, 0xde, 0xf0, 0x3b, 0x64, 0x30, 0x81, 0xf3, 0x46, 0x63, 0x6c, 0xb4, 0x46, 0xe1, - 0x94, 0x29, 0xc8, 0x13, 0x9c, 0x54, 0x02, 0x0a, 0x4b, 0xda, 0x4a, 0xe2, 0xb4, 0x3b, 0xbc, 0xcc, - 0xf6, 0xed, 0x65, 0xcd, 0xbd, 0x7c, 0xbb, 0x3b, 0xf8, 0x8b, 0xa0, 0x37, 0x0d, 0xa1, 0x2a, 0xf2, - 0xcd, 0x70, 0x72, 0x0b, 0x3d, 0xa1, 0x7d, 0xe9, 0xd0, 0xce, 0xf4, 0x9c, 0xa3, 0xae, 0xed, 0x9f, - 0xd6, 0xe0, 0xa4, 0xc2, 0xc8, 0x07, 0xf4, 0x43, 0x9c, 0x99, 0x68, 0x1c, 0x84, 0x28, 0xdd, 0xe1, - 0xdd, 0x01, 0xd9, 0x9d, 0xdd, 0x51, 0x8b, 0x46, 0xf9, 0xd9, 0x6a, 0x2f, 0x03, 0x81, 0xb6, 0x9b, - 0xcb, 0x92, 0xc6, 0x49, 0x9c, 0x76, 0xf2, 0x30, 0x93, 0x87, 0xed, 0x2f, 0xb6, 0xc3, 0xf3, 0x07, - 0x53, 0x6d, 0x36, 0x47, 0x2f, 0x9f, 0xcf, 0x52, 0xb9, 0x1f, 0xcf, 0x33, 0x61, 0x16, 0x2c, 0xec, - 0x1b, 0x2b, 0x59, 0x53, 0xa6, 0xc4, 0x82, 0x2d, 0xf9, 0xbd, 0x34, 0x6c, 0xbf, 0x5f, 0x7e, 0x1c, - 0x9a, 0x7d, 0xfc, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x00, 0x47, 0xd1, 0x30, 0xfa, 0x01, 0x00, 0x00, + // 306 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x51, 0x41, 0x4b, 0xc3, 0x30, + 0x18, 0xa5, 0xeb, 0x54, 0xf6, 0xcd, 0xe1, 0x88, 0x1e, 0x0a, 0xa2, 0x96, 0x89, 0xd0, 0x8b, 0x0d, + 0x4e, 0x3c, 0x8a, 0xb0, 0x5d, 0x44, 0x76, 0x59, 0xf5, 0xe4, 0x65, 0x2c, 0xf1, 0x33, 0x06, 0xb2, + 0x66, 0x4b, 0x13, 0x61, 0x3f, 0xd3, 0x7f, 0x24, 0x4d, 0xbb, 0x0e, 0x7a, 0xd8, 0xed, 0xcb, 0x7b, + 0x5f, 0xf2, 0xde, 0xcb, 0x83, 0xab, 0x6f, 0xb5, 0xb5, 0x28, 0xbf, 0x14, 0x5d, 0x2b, 0x27, 0x64, + 0x5e, 0xd0, 0x8d, 0x63, 0x5a, 0x61, 0xba, 0x36, 0xda, 0x6a, 0x32, 0xdc, 0xd1, 0x69, 0x4d, 0x8f, + 0x18, 0xf4, 0x5e, 0xe5, 0x2f, 0xce, 0x1d, 0x9a, 0x2d, 0xb9, 0x80, 0xa3, 0x4d, 0x39, 0x44, 0x41, + 0x1c, 0x24, 0xbd, 0xac, 0x3a, 0x90, 0x1b, 0xe8, 0x5b, 0xb9, 0x42, 0xed, 0xec, 0xa2, 0x40, 0x1e, + 0x75, 0xe2, 0x20, 0x19, 0x64, 0x50, 0x43, 0xef, 0xc8, 0xc9, 0x35, 0x80, 0x41, 0x6b, 0xb6, 0x53, + 0xed, 0x72, 0x1b, 0x85, 0x15, 0xbf, 0x47, 0x46, 0x33, 0x38, 0x6f, 0x34, 0xa6, 0x5a, 0x29, 0xe4, + 0x56, 0xea, 0x9c, 0x3c, 0xc1, 0x49, 0x29, 0x20, 0xb1, 0x88, 0x3a, 0x71, 0x98, 0xf4, 0xc7, 0x97, + 0x69, 0xdb, 0x5e, 0xda, 0xdc, 0xcb, 0x76, 0xbb, 0xa3, 0xbf, 0x00, 0x06, 0x73, 0x1f, 0xaa, 0x24, + 0xdf, 0x34, 0x23, 0xb7, 0x30, 0xe0, 0xca, 0x15, 0x16, 0xcd, 0x42, 0x2d, 0x19, 0xaa, 0xda, 0xfe, + 0x69, 0x0d, 0xce, 0x4a, 0x8c, 0x7c, 0xc0, 0xd0, 0xc7, 0x59, 0xf0, 0xc6, 0x81, 0x8f, 0xd2, 0x1f, + 0xdf, 0x1d, 0x90, 0xdd, 0xdb, 0x9d, 0x74, 0xa2, 0x20, 0x3b, 0xdb, 0xb4, 0x32, 0x10, 0xe8, 0xda, + 0xa5, 0x28, 0xa2, 0x30, 0x0e, 0x93, 0x5e, 0xe6, 0x67, 0xf2, 0xb0, 0xfb, 0xc5, 0xae, 0x7f, 0xfe, + 0x60, 0xaa, 0x6a, 0x73, 0xf2, 0xf2, 0xf9, 0x2c, 0xa4, 0xfd, 0x71, 0x2c, 0xe5, 0x7a, 0x45, 0xfd, + 0xbe, 0x36, 0xa2, 0x1a, 0x68, 0x53, 0xa9, 0xc0, 0x9c, 0xae, 0xd9, 0xbd, 0xd0, 0xb4, 0xdd, 0x32, + 0x3b, 0xf6, 0xfd, 0x3e, 0xfe, 0x07, 0x00, 0x00, 0xff, 0xff, 0xee, 0x0b, 0x00, 0x6a, 0x00, 0x02, + 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/ray.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/ray.pb.go index fd76d41436..fe41673b1f 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/ray.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/ray.pb.go @@ -5,8 +5,9 @@ package plugins import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -253,31 +254,31 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/ray.proto", fileDescriptor_b980f6d58c7489d7) } var fileDescriptor_b980f6d58c7489d7 = []byte{ - // 412 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x93, 0x4d, 0xcb, 0xd3, 0x40, - 0x10, 0xc7, 0x49, 0x6a, 0x8b, 0x9d, 0x58, 0x5b, 0x57, 0x0f, 0xa5, 0x28, 0x6d, 0x73, 0xea, 0xc5, - 0x04, 0x5a, 0xc4, 0x17, 0xf0, 0xa0, 0x52, 0x2a, 0x82, 0x22, 0xdb, 0x83, 0x20, 0x48, 0xd8, 0xa4, - 0x6b, 0x12, 0x9a, 0xec, 0x2e, 0x9b, 0x4d, 0xdb, 0x7c, 0x1f, 0xbf, 0x80, 0x17, 0x3f, 0x9f, 0x64, - 0x9b, 0x27, 0x7d, 0x85, 0xde, 0x9e, 0xdb, 0xce, 0xcc, 0x7f, 0xfe, 0x33, 0xf9, 0x85, 0x81, 0xc1, - 0xef, 0xa4, 0x50, 0x34, 0x5e, 0x25, 0xae, 0x48, 0xf2, 0x30, 0x66, 0x99, 0x2b, 0x49, 0xe1, 0x08, - 0xc9, 0x15, 0x47, 0xbd, 0xbb, 0x9a, 0x53, 0xd5, 0xec, 0x08, 0x5a, 0x98, 0x14, 0x5f, 0xb8, 0x8f, - 0xde, 0x83, 0x25, 0x49, 0xe1, 0x05, 0x49, 0x9e, 0x29, 0x2a, 0xfb, 0xc6, 0xc8, 0x98, 0x58, 0xd3, - 0xe7, 0xce, 0x79, 0x87, 0x83, 0x49, 0xf1, 0x69, 0xaf, 0xc1, 0x20, 0xeb, 0x37, 0x1a, 0x82, 0x25, - 0x73, 0xa6, 0xe2, 0x94, 0x7a, 0x94, 0x6d, 0xfa, 0xe6, 0xc8, 0x98, 0xb4, 0x31, 0x54, 0xa9, 0x39, - 0xdb, 0xd8, 0x7f, 0x0c, 0x80, 0x43, 0x2f, 0x5a, 0x40, 0x37, 0xa2, 0x64, 0xe5, 0x85, 0x92, 0xe7, - 0xc2, 0xcb, 0x04, 0x0d, 0xaa, 0x91, 0xc3, 0xcb, 0x91, 0x9f, 0x29, 0x59, 0x2d, 0x4a, 0xdd, 0x52, - 0xd0, 0x00, 0x77, 0xa2, 0xe3, 0x10, 0x7d, 0x85, 0x27, 0x5b, 0x2e, 0xd7, 0x54, 0x1e, 0x5b, 0x99, - 0xa3, 0xc6, 0xc4, 0x9a, 0x8e, 0x2f, 0xad, 0x7e, 0x68, 0xe9, 0xc1, 0xac, 0xbb, 0x3d, 0x4d, 0xd8, - 0x7f, 0x0d, 0xe8, 0x9c, 0xcc, 0x43, 0xbf, 0xa0, 0x57, 0x82, 0xc9, 0x14, 0x91, 0xca, 0x13, 0x44, - 0x92, 0x34, 0xeb, 0x1b, 0xda, 0x7f, 0x76, 0x63, 0xd5, 0x92, 0xd5, 0xb2, 0x6c, 0xfb, 0xae, 0xbb, - 0xe6, 0x4c, 0xc9, 0x02, 0x3f, 0x96, 0x27, 0xc9, 0xc1, 0x07, 0x78, 0x7a, 0x45, 0x86, 0x7a, 0xd0, - 0x58, 0xd3, 0x42, 0x33, 0x69, 0xe3, 0xf2, 0x89, 0x9e, 0x41, 0x73, 0x43, 0x92, 0x9c, 0x56, 0x6c, - 0xf7, 0xc1, 0x3b, 0xf3, 0x8d, 0x61, 0xff, 0x33, 0xa1, 0x7b, 0xf6, 0x61, 0xe8, 0x05, 0xc0, 0x9e, - 0x07, 0x23, 0x29, 0xad, 0x6c, 0xda, 0x3a, 0xf3, 0x8d, 0xa4, 0x14, 0x0d, 0xe0, 0xa1, 0xa4, 0x22, - 0x89, 0x03, 0x92, 0x69, 0xbf, 0x26, 0xae, 0x63, 0x34, 0x86, 0x47, 0x69, 0xcc, 0xbc, 0xba, 0xde, - 0xd0, 0x75, 0x2b, 0x8d, 0x19, 0x3e, 0x96, 0x90, 0xdd, 0x41, 0xf2, 0xa0, 0x92, 0x90, 0x5d, 0x2d, - 0xf1, 0xae, 0x60, 0x6b, 0x6a, 0x6c, 0xaf, 0x6e, 0xfe, 0x96, 0x7b, 0x02, 0xf7, 0xf1, 0xed, 0xcf, - 0xd7, 0x61, 0xac, 0xa2, 0xdc, 0x77, 0x02, 0x9e, 0xba, 0x7a, 0x2b, 0x2e, 0x43, 0xb7, 0xbe, 0xa0, - 0x90, 0x32, 0x57, 0xf8, 0x2f, 0x43, 0xee, 0x9e, 0x1f, 0x95, 0xdf, 0xd2, 0x17, 0x35, 0xfb, 0x1f, - 0x00, 0x00, 0xff, 0xff, 0xfb, 0xc2, 0x9c, 0xe6, 0x6f, 0x03, 0x00, 0x00, + // 413 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x93, 0xcd, 0xca, 0xd3, 0x40, + 0x14, 0x86, 0x49, 0x6a, 0x3f, 0xec, 0x89, 0x9f, 0xad, 0xa3, 0x8b, 0x52, 0x94, 0xb6, 0x59, 0x75, + 0x63, 0x02, 0x2d, 0x82, 0x08, 0x45, 0x54, 0x4a, 0x45, 0x50, 0x64, 0xba, 0x10, 0x04, 0x09, 0x93, + 0x74, 0x4c, 0x42, 0x93, 0x99, 0x61, 0x32, 0x69, 0x9b, 0xfb, 0xf1, 0x06, 0xdc, 0x78, 0x7d, 0x92, + 0x49, 0x4c, 0x7f, 0xa1, 0x3b, 0x77, 0xe7, 0xe7, 0x3d, 0xef, 0x99, 0x3c, 0xe1, 0xc0, 0xe0, 0x67, + 0x52, 0x28, 0x1a, 0xaf, 0x13, 0x57, 0x24, 0x79, 0x18, 0xb3, 0xcc, 0x95, 0xa4, 0x70, 0x84, 0xe4, + 0x8a, 0xa3, 0xde, 0xbf, 0x9e, 0x53, 0xf7, 0xec, 0x08, 0xee, 0x30, 0x29, 0x3e, 0x71, 0x1f, 0xcd, + 0xc1, 0x92, 0xa4, 0xf0, 0x82, 0x24, 0xcf, 0x14, 0x95, 0x7d, 0x63, 0x64, 0x4c, 0xac, 0xe9, 0x73, + 0xe7, 0x7c, 0xc2, 0xc1, 0xa4, 0xf8, 0x50, 0x69, 0x30, 0xc8, 0x26, 0x46, 0x43, 0xb0, 0x64, 0xce, + 0x54, 0x9c, 0x52, 0x8f, 0xb2, 0x6d, 0xdf, 0x1c, 0x19, 0x93, 0x0e, 0x86, 0xba, 0xb4, 0x60, 0x5b, + 0xfb, 0x97, 0x01, 0x70, 0x98, 0x45, 0x4b, 0xe8, 0x46, 0x94, 0xac, 0xbd, 0x50, 0xf2, 0x5c, 0x78, + 0x99, 0xa0, 0x41, 0xbd, 0x72, 0x78, 0xb9, 0xf2, 0x23, 0x25, 0xeb, 0x65, 0xa9, 0x5b, 0x09, 0x1a, + 0xe0, 0xfb, 0xe8, 0x38, 0x45, 0x9f, 0xe1, 0xc9, 0x8e, 0xcb, 0x0d, 0x95, 0xc7, 0x56, 0xe6, 0xa8, + 0x35, 0xb1, 0xa6, 0xe3, 0x4b, 0xab, 0x6f, 0x5a, 0x7a, 0x30, 0xeb, 0xee, 0x4e, 0x0b, 0xf6, 0x6f, + 0x03, 0xee, 0x4f, 0xf6, 0xa1, 0x1f, 0xd0, 0x2b, 0xc1, 0x64, 0x8a, 0x48, 0xe5, 0x09, 0x22, 0x49, + 0x9a, 0xf5, 0x0d, 0xed, 0x3f, 0xbb, 0xf1, 0xd4, 0x92, 0xd5, 0xaa, 0x1c, 0xfb, 0xaa, 0xa7, 0x16, + 0x4c, 0xc9, 0x02, 0x3f, 0x96, 0x27, 0xc5, 0xc1, 0x3b, 0x78, 0x7a, 0x45, 0x86, 0x7a, 0xd0, 0xda, + 0xd0, 0x42, 0x33, 0xe9, 0xe0, 0x32, 0x44, 0xcf, 0xa0, 0xbd, 0x25, 0x49, 0x4e, 0x6b, 0xb6, 0x55, + 0xf2, 0xc6, 0x7c, 0x6d, 0xd8, 0x7f, 0x4c, 0xe8, 0x9e, 0x7d, 0x18, 0x7a, 0x01, 0x50, 0xf1, 0x60, + 0x24, 0xa5, 0xb5, 0x4d, 0x47, 0x57, 0xbe, 0x90, 0x94, 0xa2, 0x01, 0x3c, 0x94, 0x54, 0x24, 0x71, + 0x40, 0x32, 0xed, 0xd7, 0xc6, 0x4d, 0x8e, 0xc6, 0xf0, 0x28, 0x8d, 0x99, 0xd7, 0xf4, 0x5b, 0xba, + 0x6f, 0xa5, 0x31, 0xc3, 0xc7, 0x12, 0xb2, 0x3f, 0x48, 0x1e, 0xd4, 0x12, 0xb2, 0x6f, 0x24, 0xde, + 0x15, 0x6c, 0x6d, 0x8d, 0xed, 0xd5, 0xcd, 0xdf, 0xf2, 0x9f, 0xc0, 0xbd, 0x7f, 0xfb, 0x7d, 0x1e, + 0xc6, 0x2a, 0xca, 0x7d, 0x27, 0xe0, 0xa9, 0xab, 0x5f, 0xc5, 0x65, 0x58, 0x05, 0x6e, 0x73, 0x47, + 0x21, 0x65, 0xae, 0xf0, 0x5f, 0x86, 0xdc, 0x3d, 0x3f, 0x2d, 0xff, 0x4e, 0xdf, 0xd5, 0xec, 0x6f, + 0x00, 0x00, 0x00, 0xff, 0xff, 0xb4, 0x14, 0x29, 0x8c, 0x75, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.pb.go index c1021f6896..0e1481fd9c 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.pb.go @@ -5,8 +5,9 @@ package plugins import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -398,40 +399,40 @@ func init() { } var fileDescriptor_84374f4d1322c4ba = []byte{ - // 554 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xd1, 0x6e, 0xd3, 0x30, + // 557 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x5d, 0x6f, 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, + 0x68, 0x89, 0x28, 0x4f, 0x8c, 0x2f, 0x65, 0xa3, 0xd3, 0x5a, 0xa9, 0xed, 0x94, 0x16, 0x04, 0x7b, + 0x09, 0x4e, 0xe7, 0x7a, 0x29, 0x49, 0x1c, 0x39, 0x2e, 0x5a, 0xfe, 0x00, 0xbf, 0x86, 0x3f, 0xc4, + 0x1b, 0x3f, 0x05, 0xd5, 0x71, 0xdb, 0xb4, 0x2a, 0x99, 0xe0, 0x2d, 0xbe, 0xba, 0xe7, 0xf8, 0xdc, + 0x73, 0x6e, 0x0c, 0x47, 0xa3, 0x20, 0x15, 0xc4, 0xbf, 0x0c, 0xac, 0x38, 0x98, 0x50, 0x3f, 0x4a, + 0xac, 0x04, 0x53, 0x12, 0xe2, 0x6f, 0x84, 0x5b, 0x57, 0x69, 0x4c, 0x78, 0x8c, 0x39, 0x0e, 0x89, + 0x20, 0xdc, 0x15, 0x93, 0xc8, 0x8f, 0xa8, 0x3b, 0x66, 0x9e, 0x19, 0x73, 0x26, 0x18, 0xaa, 0xce, + 0xb0, 0xa6, 0xc2, 0x9a, 0x73, 0x6c, 0xf5, 0x45, 0x01, 0xef, 0x82, 0x92, 0xe3, 0x88, 0x92, 0x24, + 0xa3, 0xab, 0x1e, 0x16, 0x40, 0x04, 0xc7, 0xfe, 0xf2, 0xed, 0xc6, 0x6f, 0x0d, 0x76, 0xcf, 0x96, + 0x14, 0x0e, 0xa4, 0xc0, 0x36, 0xf3, 0x50, 0x1b, 0x76, 0xf2, 0x88, 0x3d, 0xad, 0xae, 0x1d, 0x94, + 0x1b, 0xcf, 0xcc, 0xbf, 0x0b, 0x36, 0x07, 0xaa, 0xbf, 0xcd, 0x3c, 0xa7, 0x2c, 0x16, 0x07, 0xf4, + 0x06, 0x1e, 0x85, 0xf8, 0xda, 0x8d, 0x26, 0xa1, 0x47, 0xb8, 0xcb, 0x46, 0x6e, 0x9e, 0x39, 0xd9, + 0xbb, 0x55, 0xd7, 0x0e, 0x4a, 0xce, 0x6e, 0x88, 0xaf, 0xbb, 0xb2, 0xa3, 0x37, 0xca, 0x31, 0x25, + 0xe8, 0x35, 0x54, 0xa7, 0xe8, 0xa9, 0xc6, 0x20, 0x20, 0xc1, 0x0a, 0xb8, 0x34, 0x07, 0x9f, 0xab, + 0x86, 0x3c, 0xd8, 0x38, 0x83, 0xfd, 0x75, 0x13, 0xf6, 0xbc, 0x31, 0x19, 0x0a, 0xff, 0x3b, 0x19, + 0xa4, 0x31, 0x31, 0x9e, 0xc2, 0xed, 0x4f, 0x38, 0x98, 0x10, 0xb4, 0x03, 0xdb, 0x9d, 0x56, 0xb7, + 0xd5, 0x69, 0x5d, 0x34, 0xf5, 0x0d, 0x79, 0xb2, 0x3f, 0x67, 0x27, 0xcd, 0xf8, 0xa9, 0xc1, 0xe3, + 0x42, 0x2a, 0x34, 0x86, 0x0a, 0x9b, 0x1d, 0x5c, 0x91, 0xc6, 0x44, 0x9a, 0x56, 0x69, 0x9c, 0x14, + 0x99, 0x76, 0xa3, 0x3a, 0x53, 0x4a, 0x73, 0xee, 0xb1, 0x7c, 0x11, 0x3d, 0x81, 0x72, 0x48, 0x04, + 0xf7, 0x87, 0x6e, 0x84, 0x43, 0x22, 0x2d, 0xbc, 0xeb, 0x40, 0x56, 0xea, 0xe2, 0x90, 0x18, 0x36, + 0xd4, 0xd6, 0x51, 0xf7, 0x05, 0xc7, 0x82, 0xd0, 0xd4, 0xd8, 0xcf, 0xcd, 0x7c, 0x6c, 0x7f, 0x69, + 0xf6, 0x5b, 0x76, 0x57, 0xdf, 0x40, 0x00, 0x5b, 0x8e, 0xdd, 0xfd, 0xd0, 0xeb, 0xe8, 0x9a, 0x71, + 0x04, 0xb5, 0x9c, 0x97, 0x4d, 0xcc, 0x83, 0xb4, 0x2f, 0x58, 0x1c, 0xfb, 0x11, 0x95, 0xb6, 0x55, + 0x67, 0x14, 0x77, 0xa0, 0xd4, 0x3b, 0x3d, 0xd5, 0x37, 0xd0, 0x36, 0x6c, 0xda, 0x1f, 0x07, 0x3d, + 0x5d, 0x33, 0x7e, 0x95, 0xd6, 0xbb, 0xd5, 0x66, 0xde, 0x09, 0x8b, 0x46, 0x3e, 0x45, 0x5f, 0xe1, + 0xe1, 0xca, 0xdf, 0x91, 0xad, 0xb2, 0xda, 0xb4, 0xe7, 0x45, 0xa6, 0x9d, 0xcf, 0x30, 0x8e, 0x84, + 0x38, 0x0f, 0x96, 0x99, 0xb2, 0x2a, 0xa2, 0x70, 0x5f, 0xfd, 0x70, 0x89, 0x9a, 0x5a, 0xfa, 0x54, + 0x69, 0xbc, 0xfb, 0xd7, 0x40, 0x66, 0xae, 0xa9, 0x2c, 0x2a, 0x62, 0xa9, 0x8a, 0x2e, 0x41, 0x57, + 0x17, 0xcd, 0x43, 0x92, 0x7b, 0x59, 0x6e, 0xbc, 0xfa, 0xef, 0xe8, 0x1d, 0xa5, 0x7d, 0xb1, 0x5e, + 0x3f, 0x34, 0xa8, 0xe7, 0x77, 0xdf, 0x25, 0xd3, 0x44, 0xdc, 0x44, 0x45, 0x92, 0x6d, 0xdc, 0xe6, + 0xcd, 0x03, 0x16, 0x65, 0xaa, 0x06, 0xac, 0x89, 0x82, 0x9e, 0xe3, 0xf7, 0x17, 0x6f, 0xa9, 0x2f, + 0xae, 0x26, 0x9e, 0x39, 0x64, 0xa1, 0x25, 0x6f, 0x62, 0x9c, 0x66, 0x1f, 0xd6, 0xfc, 0x05, 0xa2, + 0x24, 0xb2, 0x62, 0xef, 0x90, 0x32, 0x6b, 0xf5, 0x51, 0xf2, 0xb6, 0xe4, 0xf3, 0xf3, 0xf2, 0x4f, + 0x00, 0x00, 0x00, 0xff, 0xff, 0xf6, 0xd3, 0xfc, 0x15, 0x3a, 0x05, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker/parameter_ranges.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker/parameter_ranges.pb.go index dbf8dedd97..c20aac1503 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker/parameter_ranges.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker/parameter_ranges.pb.go @@ -5,8 +5,9 @@ package plugins import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -399,37 +400,38 @@ func init() { } var fileDescriptor_5f31fcc87eba0a70 = []byte{ - // 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, + // 516 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x54, 0x41, 0x6f, 0xd3, 0x30, + 0x14, 0x6e, 0x1a, 0x56, 0xad, 0xaf, 0x88, 0x15, 0x8f, 0x95, 0xb6, 0xbb, 0x54, 0x3d, 0xf5, 0x42, + 0xa2, 0x75, 0x20, 0x21, 0x10, 0x42, 0x6d, 0x15, 0x68, 0xa5, 0x8d, 0x22, 0xaf, 0xec, 0xc0, 0x81, + 0xca, 0x0d, 0x5e, 0xb0, 0x9a, 0x38, 0x96, 0xe3, 0xc0, 0xf2, 0x13, 0xf8, 0x39, 0x48, 0xfc, 0x3c, + 0x0e, 0xa8, 0x4e, 0xd7, 0x6d, 0x59, 0x13, 0x38, 0xed, 0x66, 0xfb, 0xbd, 0xe7, 0xef, 0x7b, 0xef, + 0xfb, 0xf4, 0xe0, 0xe8, 0xc2, 0x4f, 0x14, 0x65, 0x5f, 0x7d, 0x5b, 0xf8, 0xb1, 0xc7, 0x78, 0x64, + 0x47, 0xc4, 0xa3, 0x01, 0x59, 0x52, 0x69, 0x0b, 0x22, 0x49, 0x40, 0x15, 0x95, 0x73, 0x49, 0xb8, + 0x47, 0x23, 0x4b, 0xc8, 0x50, 0x85, 0xa8, 0x7d, 0x55, 0x62, 0xad, 0x4b, 0xac, 0x4d, 0x49, 0xd7, + 0x85, 0xd6, 0x38, 0x11, 0x54, 0x6e, 0x4a, 0xcf, 0x5c, 0xe2, 0x33, 0xee, 0xcd, 0x12, 0x41, 0xbb, + 0xef, 0x60, 0xe7, 0x9c, 0xf8, 0x31, 0x45, 0xbb, 0xf0, 0x60, 0xf0, 0x69, 0x36, 0xad, 0x97, 0x10, + 0x40, 0xe5, 0x64, 0xf2, 0xc1, 0x19, 0xe0, 0xba, 0x81, 0xf6, 0xa0, 0x76, 0x32, 0x7d, 0x3f, 0xc0, + 0x93, 0xd9, 0xf8, 0x74, 0x32, 0xaa, 0x97, 0x51, 0x03, 0x10, 0x76, 0xce, 0x1d, 0x7c, 0xe6, 0xdc, + 0x7c, 0x37, 0xbb, 0xbf, 0x0d, 0x68, 0x8e, 0x42, 0xae, 0x18, 0x8f, 0xc3, 0x38, 0xfa, 0x78, 0x05, + 0x85, 0x57, 0x24, 0xd1, 0x21, 0x54, 0x03, 0x72, 0x39, 0xff, 0xbe, 0x02, 0x6a, 0x1a, 0x1d, 0xa3, + 0x67, 0xe0, 0xdd, 0x80, 0x5c, 0xa6, 0xc0, 0xab, 0x20, 0xe3, 0xeb, 0x60, 0x79, 0x1d, 0x64, 0x3c, + 0x0d, 0x7e, 0x81, 0x87, 0x51, 0xca, 0x76, 0xae, 0x12, 0x41, 0x9b, 0x66, 0xc7, 0xe8, 0x3d, 0xea, + 0xbf, 0xb6, 0xf2, 0xdb, 0xb5, 0x72, 0x7b, 0xb5, 0xf4, 0x97, 0xb8, 0x16, 0xdd, 0x68, 0xff, 0x97, + 0x01, 0x07, 0x13, 0xae, 0xa8, 0x47, 0xe5, 0xbf, 0x38, 0x9b, 0x45, 0x9c, 0xcd, 0x7b, 0xe4, 0x7c, + 0x0c, 0xad, 0x11, 0x51, 0xd4, 0x0b, 0x25, 0x73, 0x89, 0x9f, 0xa1, 0xdd, 0x80, 0x8a, 0x66, 0x15, + 0x35, 0x8d, 0x8e, 0xd9, 0xab, 0xe2, 0xf5, 0xad, 0xfb, 0xd3, 0x84, 0xfd, 0xdb, 0xa9, 0x53, 0x4e, + 0xa7, 0x17, 0x48, 0x41, 0xdb, 0xdd, 0xc8, 0x36, 0xcf, 0xb8, 0x4b, 0xf7, 0x5d, 0xeb, 0x3f, 0x2f, + 0xa2, 0x9e, 0x27, 0xfa, 0xb8, 0x84, 0x9b, 0x6e, 0x9e, 0x21, 0x96, 0xf0, 0x94, 0xa5, 0x53, 0xbf, + 0x03, 0x59, 0xd6, 0x90, 0x47, 0x45, 0x90, 0x5b, 0x05, 0x1b, 0x97, 0xf0, 0x01, 0xdb, 0xaa, 0xe4, + 0x0f, 0x38, 0x74, 0xaf, 0xe7, 0x75, 0x07, 0xd0, 0xd4, 0x80, 0x2f, 0x0a, 0x7b, 0xcc, 0x1b, 0xf7, + 0xb8, 0x84, 0x5b, 0x6e, 0x5e, 0x70, 0xd8, 0x80, 0x27, 0x19, 0x30, 0x6d, 0x88, 0xee, 0x1f, 0x03, + 0xf6, 0x6e, 0xa7, 0x46, 0x48, 0xc2, 0x7e, 0x36, 0x37, 0x20, 0x42, 0x8b, 0x58, 0xeb, 0x0f, 0x8b, + 0xc8, 0x65, 0x7e, 0xca, 0xdc, 0x4f, 0x89, 0x70, 0xb8, 0x92, 0x09, 0x7e, 0x2c, 0xb2, 0xef, 0xed, + 0x18, 0x1a, 0xdb, 0x93, 0x51, 0x1d, 0xcc, 0x25, 0x4d, 0xb4, 0xfc, 0x55, 0xbc, 0x3a, 0x22, 0x07, + 0x76, 0xae, 0xdd, 0x5e, 0xeb, 0xdb, 0xff, 0xcf, 0x48, 0xfb, 0x0c, 0xa7, 0xd5, 0xaf, 0xca, 0x2f, + 0x8d, 0xe1, 0xdb, 0xcf, 0x6f, 0x3c, 0xa6, 0xbe, 0xc5, 0x0b, 0xcb, 0x0d, 0x03, 0x5b, 0xff, 0x13, + 0x4a, 0x2f, 0x3d, 0xd8, 0x9b, 0xd5, 0xe7, 0x51, 0x6e, 0x8b, 0xc5, 0x33, 0x2f, 0xb4, 0xb3, 0xdb, + 0x70, 0x51, 0xd1, 0x3b, 0xef, 0xf8, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf1, 0xad, 0x19, 0x6c, + 0x28, 0x05, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker/training_job.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker/training_job.pb.go index 58a6213aec..f7b36978b6 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker/training_job.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker/training_job.pb.go @@ -5,9 +5,10 @@ package plugins import ( fmt "fmt" + math "math" + proto "github.com/golang/protobuf/proto" _ "github.com/golang/protobuf/ptypes/duration" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -545,47 +546,47 @@ func init() { } var fileDescriptor_6a68f64d8fd9fe30 = []byte{ - // 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, + // 662 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x94, 0x5d, 0x4f, 0xdb, 0x3c, + 0x14, 0xc7, 0x5b, 0x5a, 0xde, 0x4e, 0xa1, 0x4f, 0x30, 0x3c, 0x3c, 0x85, 0x67, 0x9a, 0x58, 0xa6, + 0x49, 0x20, 0x46, 0xa2, 0x31, 0x4d, 0xda, 0xc5, 0xa6, 0x69, 0x94, 0x82, 0x82, 0x56, 0xa8, 0xd2, + 0x52, 0xa1, 0xed, 0x22, 0xcb, 0x8b, 0x6b, 0x3c, 0x12, 0x3b, 0x4a, 0x1c, 0x34, 0xf8, 0x44, 0xfb, + 0x7c, 0xbb, 0xde, 0xc5, 0x14, 0xe7, 0x85, 0xae, 0x2a, 0xdd, 0x9d, 0xf3, 0xf7, 0xf1, 0xc9, 0xf9, + 0xff, 0xce, 0xb1, 0xe1, 0x60, 0xe4, 0xdf, 0x09, 0x4c, 0x3d, 0x5f, 0x0f, 0xfd, 0x84, 0x50, 0x16, + 0xeb, 0xb1, 0x4d, 0x70, 0x60, 0xdf, 0xe0, 0x48, 0x17, 0x91, 0x4d, 0x19, 0x65, 0xc4, 0xfa, 0xc6, + 0x1d, 0x2d, 0x8c, 0xb8, 0xe0, 0x68, 0xbb, 0x08, 0xd7, 0xf2, 0x70, 0xad, 0x0c, 0xdf, 0x7e, 0x4a, + 0x38, 0x27, 0x3e, 0xd6, 0x65, 0xa4, 0x93, 0x8c, 0x74, 0x2f, 0x89, 0x6c, 0x41, 0x39, 0xcb, 0xce, + 0xaa, 0xbb, 0xb0, 0x6c, 0xb0, 0x30, 0x11, 0x5d, 0xee, 0x61, 0xf5, 0x7f, 0x98, 0x1f, 0xda, 0x7e, + 0x82, 0xd1, 0x12, 0xd4, 0x4f, 0x8c, 0x4f, 0x1d, 0xa5, 0x92, 0xae, 0x7a, 0x46, 0xaf, 0xa3, 0x54, + 0xd5, 0x57, 0xb0, 0xfa, 0xd1, 0x27, 0x3c, 0xa2, 0xe2, 0x3a, 0x38, 0xb7, 0x03, 0xac, 0xee, 0x14, + 0xd1, 0x00, 0x0b, 0xed, 0xcb, 0xfe, 0xe0, 0xa2, 0xab, 0x54, 0x50, 0x03, 0x16, 0xaf, 0x4e, 0x8f, + 0x2e, 0x2e, 0xfa, 0x03, 0xa5, 0xaa, 0xee, 0x81, 0x22, 0x93, 0xb7, 0x39, 0x13, 0x98, 0x89, 0xc1, + 0x5d, 0x88, 0xd5, 0x7f, 0x8b, 0x53, 0x2b, 0xb0, 0x34, 0xe8, 0x5c, 0x0d, 0xac, 0x76, 0x7f, 0xa8, + 0x54, 0xd4, 0x77, 0xa0, 0x74, 0xb1, 0x88, 0xa8, 0x7b, 0x8c, 0x47, 0x94, 0xd1, 0xb4, 0x42, 0x84, + 0xa0, 0xce, 0xec, 0x00, 0xb7, 0xaa, 0x3b, 0xd5, 0xdd, 0x65, 0x53, 0xae, 0xd1, 0x06, 0xcc, 0x47, + 0x98, 0xe0, 0xef, 0xad, 0x39, 0x29, 0x66, 0x1f, 0xea, 0x8f, 0x1a, 0x6c, 0x96, 0xc5, 0xf5, 0x43, + 0xec, 0xd2, 0x11, 0x75, 0xa5, 0x4d, 0x74, 0x06, 0x40, 0xd3, 0x1a, 0xac, 0x80, 0x7b, 0x59, 0xaa, + 0xe6, 0xe1, 0xbe, 0xf6, 0x38, 0x31, 0xad, 0xc4, 0xa1, 0xc9, 0x3a, 0xcd, 0x65, 0x5a, 0x08, 0x68, + 0x08, 0x4d, 0xbb, 0xf8, 0x8b, 0x25, 0x4b, 0x9b, 0x93, 0xf9, 0xf4, 0x59, 0xf9, 0xfe, 0x80, 0x96, + 0xe7, 0x5c, 0xb5, 0xc7, 0x45, 0xb4, 0x0f, 0x6b, 0x0f, 0x79, 0x6f, 0x71, 0x14, 0x53, 0xce, 0x5a, + 0x35, 0x69, 0x50, 0x29, 0x37, 0x86, 0x99, 0x8e, 0xbe, 0x00, 0x0a, 0x24, 0x29, 0xcb, 0x2b, 0x51, + 0xc5, 0xad, 0xfa, 0x4e, 0x6d, 0xb7, 0x71, 0xf8, 0x72, 0x56, 0x21, 0x93, 0x7c, 0xcd, 0xb5, 0x60, + 0x42, 0x89, 0xd1, 0x57, 0x40, 0x19, 0x2d, 0x37, 0x6b, 0x99, 0x25, 0xee, 0x42, 0xdc, 0x9a, 0x97, + 0x2e, 0x0f, 0xff, 0x4a, 0x6d, 0xac, 0xcf, 0xb9, 0x51, 0x85, 0x4e, 0xf6, 0xff, 0x2d, 0xac, 0x1f, + 0xd3, 0x58, 0x44, 0xd4, 0x49, 0x04, 0xf6, 0x7a, 0xe9, 0x10, 0xba, 0xdc, 0x57, 0x9f, 0x15, 0x63, + 0xf1, 0x0f, 0x34, 0x2e, 0xcf, 0xfb, 0xbd, 0x4e, 0xdb, 0x38, 0x31, 0x3a, 0xc7, 0x4a, 0x05, 0x2d, + 0x42, 0xad, 0xdb, 0x33, 0x94, 0xaa, 0xfa, 0xab, 0x0a, 0x5b, 0x83, 0x7c, 0xfa, 0xcf, 0xb8, 0x63, + 0xe2, 0x98, 0x27, 0x91, 0x8b, 0xdb, 0x9c, 0x8d, 0x28, 0x41, 0x2f, 0xa0, 0x49, 0x59, 0x2c, 0x6c, + 0xe6, 0x62, 0xcb, 0xe5, 0x09, 0x13, 0xb2, 0xd7, 0x35, 0x73, 0xb5, 0x50, 0xdb, 0xa9, 0x88, 0x9e, + 0x43, 0x29, 0x64, 0xde, 0xb2, 0x39, 0x5a, 0x29, 0xc4, 0xb4, 0x46, 0xb4, 0x07, 0x6b, 0xb7, 0xdc, + 0x4f, 0x02, 0x6c, 0xc5, 0xf4, 0x1e, 0x5b, 0x94, 0x59, 0xc4, 0x91, 0xfd, 0xa8, 0x99, 0xcd, 0x6c, + 0xa3, 0x4f, 0xef, 0xb1, 0xc1, 0x4e, 0x1d, 0x74, 0x0d, 0x1b, 0xde, 0x83, 0x1d, 0x2b, 0xcc, 0xfd, + 0xb4, 0xea, 0x12, 0xd9, 0x9b, 0x59, 0xc8, 0xa6, 0x60, 0xc8, 0xa9, 0xad, 0x7b, 0x53, 0x08, 0xfd, + 0xac, 0x42, 0x63, 0xcc, 0x3e, 0xba, 0x81, 0xff, 0x1e, 0x86, 0x26, 0x1e, 0x9f, 0x79, 0xe9, 0xbc, + 0x31, 0xbb, 0x5f, 0xd3, 0x6f, 0x8b, 0xb9, 0x69, 0x4f, 0xbf, 0x45, 0xb7, 0xf0, 0x64, 0xfc, 0xe1, + 0xb1, 0xa2, 0x1c, 0x7e, 0x3a, 0x27, 0x23, 0x4a, 0x24, 0xc5, 0xc6, 0x6c, 0xbb, 0x8f, 0xb6, 0xce, + 0xdc, 0x12, 0x8f, 0x6d, 0x1d, 0x7d, 0xf8, 0xfc, 0x9e, 0x50, 0x71, 0x9d, 0x38, 0x9a, 0xcb, 0x03, + 0x5d, 0x66, 0xe7, 0x11, 0xc9, 0x16, 0x7a, 0xf9, 0x4a, 0x12, 0xcc, 0xf4, 0xd0, 0x39, 0x20, 0x5c, + 0x9f, 0x7c, 0x38, 0x9d, 0x05, 0xd9, 0x91, 0xd7, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x50, 0x80, + 0x56, 0x45, 0x53, 0x05, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/spark.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/spark.pb.go index 768bd46bac..1be43fcf8e 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/spark.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/spark.pb.go @@ -5,9 +5,10 @@ package plugins import ( fmt "fmt" + math "math" + proto "github.com/golang/protobuf/proto" _struct "github.com/golang/protobuf/ptypes/struct" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -204,33 +205,33 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/spark.proto", fileDescriptor_ca8a069b9820144a) } var fileDescriptor_ca8a069b9820144a = []byte{ - // 442 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0x5d, 0x8b, 0xd3, 0x40, - 0x14, 0x35, 0xfd, 0xb2, 0xb9, 0x2b, 0x6d, 0xb8, 0x0a, 0x86, 0xd2, 0x87, 0xd2, 0x17, 0xa3, 0xe0, - 0x44, 0xea, 0x83, 0x1f, 0x28, 0x92, 0x2d, 0xea, 0x5a, 0x44, 0xd7, 0xb4, 0x08, 0xfa, 0x36, 0x49, - 0xa7, 0x69, 0xe8, 0xec, 0xcc, 0x90, 0x4c, 0xc4, 0xfc, 0x79, 0x91, 0x4c, 0xec, 0x66, 0x37, 0xac, - 0x82, 0x6f, 0xc9, 0xb9, 0xe7, 0x9c, 0x7b, 0x39, 0x87, 0x81, 0xe9, 0x8e, 0x97, 0x9a, 0xa5, 0x5b, - 0xee, 0x2b, 0x5e, 0x24, 0xa9, 0xc8, 0xfd, 0x5c, 0xd1, 0xec, 0x40, 0x54, 0x26, 0xb5, 0x44, 0xe7, - 0x38, 0x25, 0x7f, 0xa6, 0x93, 0x69, 0x22, 0x65, 0xc2, 0x99, 0x6f, 0xe6, 0x51, 0xb1, 0xf3, 0x73, - 0x9d, 0x15, 0xb1, 0xae, 0xf9, 0xf3, 0x53, 0x70, 0xd6, 0x95, 0x3c, 0x50, 0x8a, 0xa7, 0x31, 0xd5, - 0xa9, 0x14, 0x73, 0x02, 0xbd, 0x4d, 0xa9, 0x18, 0x02, 0x0c, 0xce, 0xbf, 0x6d, 0xce, 0x3e, 0x7f, - 0x72, 0x6e, 0xe1, 0x10, 0x7a, 0xab, 0xe0, 0x6b, 0xe0, 0x58, 0x68, 0x43, 0x7f, 0xbd, 0x0c, 0x3e, - 0x06, 0x4e, 0x07, 0xfb, 0x60, 0x85, 0x4e, 0x77, 0xfe, 0xab, 0x07, 0x43, 0x63, 0xb2, 0x92, 0x11, - 0x7e, 0x81, 0x31, 0x6d, 0xbc, 0x2a, 0x1f, 0xd7, 0x9a, 0x59, 0xde, 0x68, 0xf1, 0x80, 0xb4, 0x4f, - 0x23, 0xed, 0xcd, 0xa4, 0xa2, 0x87, 0x6d, 0x3d, 0x3e, 0x81, 0xbb, 0x17, 0x34, 0x15, 0x57, 0x88, - 0xef, 0x52, 0xce, 0xdc, 0xce, 0xcc, 0xf2, 0xec, 0xf0, 0xa6, 0x11, 0x4e, 0xc1, 0xae, 0xe0, 0x25, - 0xa7, 0x79, 0xee, 0x76, 0x0d, 0xaf, 0x01, 0xf0, 0x3d, 0xd8, 0x26, 0xb2, 0xa5, 0x14, 0x3b, 0xb7, - 0x37, 0xeb, 0x7a, 0x27, 0x8b, 0x87, 0x7f, 0x39, 0x6e, 0x25, 0xa3, 0xfa, 0xa3, 0xe2, 0xbe, 0x15, - 0x3a, 0x2b, 0xc3, 0x46, 0x8b, 0x2b, 0x80, 0x3d, 0xdd, 0x4a, 0xa9, 0x8c, 0x53, 0xdf, 0x38, 0x3d, - 0xfa, 0x87, 0xd3, 0xd9, 0x25, 0xb9, 0xb6, 0xba, 0xa2, 0xc6, 0x39, 0xdc, 0x61, 0x3f, 0x59, 0x5c, - 0x68, 0x99, 0x9d, 0x53, 0xbd, 0x77, 0x07, 0xe6, 0xea, 0x6b, 0x18, 0xbe, 0x81, 0xd1, 0x96, 0x6a, - 0x1a, 0x65, 0x69, 0x7c, 0xc8, 0xcd, 0xce, 0xdb, 0x33, 0xcb, 0x3b, 0x59, 0xdc, 0x27, 0x75, 0xc7, - 0xe4, 0xd8, 0x31, 0x59, 0x9b, 0x8e, 0xc3, 0x16, 0x1d, 0x3d, 0x18, 0x37, 0xc8, 0x46, 0x1e, 0x98, - 0x70, 0x87, 0x66, 0x4f, 0x1b, 0x46, 0x02, 0xd8, 0x40, 0x1f, 0x44, 0xae, 0xa9, 0x88, 0x99, 0x6b, - 0x1b, 0xf2, 0x0d, 0x93, 0xc9, 0x2b, 0x18, 0x5d, 0xcf, 0x09, 0x1d, 0xe8, 0x1e, 0x58, 0x69, 0xca, - 0xb7, 0xc3, 0xea, 0x13, 0xef, 0x41, 0xff, 0x07, 0xe5, 0xc5, 0xb1, 0xb9, 0xfa, 0xe7, 0x65, 0xe7, - 0xb9, 0x35, 0x79, 0x0d, 0xe3, 0x56, 0x36, 0xff, 0x23, 0x3f, 0x7d, 0xf1, 0xfd, 0x59, 0x92, 0xea, - 0x7d, 0x11, 0x91, 0x58, 0x5e, 0xf8, 0x26, 0x7f, 0x99, 0x25, 0xfe, 0xe5, 0x43, 0x49, 0x98, 0xf0, - 0x55, 0xf4, 0x38, 0x91, 0x7e, 0xfb, 0xed, 0x44, 0x03, 0x13, 0xd9, 0xd3, 0xdf, 0x01, 0x00, 0x00, - 0xff, 0xff, 0x02, 0x51, 0x7a, 0xdc, 0x56, 0x03, 0x00, 0x00, + // 443 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0xdf, 0x8b, 0xd3, 0x40, + 0x10, 0x36, 0xfd, 0x65, 0x33, 0x27, 0x6d, 0x18, 0x05, 0x43, 0xe9, 0x43, 0xe9, 0x8b, 0x51, 0x70, + 0x23, 0xf5, 0x45, 0xc4, 0xe3, 0xc8, 0x15, 0xf5, 0x2c, 0xa2, 0x67, 0x5a, 0x04, 0x7d, 0xdb, 0xa4, + 0xdb, 0x34, 0x74, 0x6f, 0x77, 0x49, 0x36, 0x62, 0xfe, 0x79, 0x91, 0x6c, 0xec, 0xe5, 0x2e, 0x9c, + 0x82, 0x6f, 0xb3, 0xdf, 0x7c, 0xf3, 0xcd, 0xf0, 0x7d, 0x2c, 0x4c, 0x77, 0xbc, 0xd4, 0x2c, 0xdd, + 0x72, 0x5f, 0xf1, 0x22, 0x49, 0x45, 0xee, 0xe7, 0x8a, 0x66, 0x07, 0xa2, 0x32, 0xa9, 0x25, 0x3a, + 0xc7, 0x2e, 0xf9, 0xd3, 0x9d, 0x4c, 0x13, 0x29, 0x13, 0xce, 0x7c, 0xd3, 0x8f, 0x8a, 0x9d, 0x9f, + 0xeb, 0xac, 0x88, 0x75, 0xcd, 0x9f, 0x9f, 0x83, 0xb3, 0xae, 0xc6, 0x03, 0xa5, 0x78, 0x1a, 0x53, + 0x9d, 0x4a, 0x31, 0x27, 0xd0, 0xdb, 0x94, 0x8a, 0x21, 0xc0, 0xe0, 0xf2, 0xdb, 0xe6, 0xe2, 0xf3, + 0x27, 0xe7, 0x1e, 0x0e, 0xa1, 0xb7, 0x0a, 0xbe, 0x06, 0x8e, 0x85, 0x36, 0xf4, 0xd7, 0xcb, 0xe0, + 0x63, 0xe0, 0x74, 0xb0, 0x0f, 0x56, 0xe8, 0x74, 0xe7, 0xbf, 0x7a, 0x30, 0x34, 0x22, 0x2b, 0x19, + 0xe1, 0x17, 0x18, 0xd3, 0x46, 0xab, 0xd2, 0x71, 0xad, 0x99, 0xe5, 0x8d, 0x16, 0x4f, 0x48, 0xfb, + 0x34, 0xd2, 0xde, 0x4c, 0x2a, 0x7a, 0xd8, 0x9e, 0xc7, 0x17, 0xf0, 0xf0, 0x8a, 0xa6, 0xe2, 0x06, + 0xf1, 0x5d, 0xca, 0x99, 0xdb, 0x99, 0x59, 0x9e, 0x1d, 0xde, 0xd5, 0xc2, 0x29, 0xd8, 0x15, 0xbc, + 0xe4, 0x34, 0xcf, 0xdd, 0xae, 0xe1, 0x35, 0x00, 0xbe, 0x07, 0xdb, 0x58, 0xb6, 0x94, 0x62, 0xe7, + 0xf6, 0x66, 0x5d, 0xef, 0x64, 0xf1, 0xf4, 0x2f, 0xc7, 0xad, 0x64, 0x54, 0x17, 0x15, 0xf7, 0xad, + 0xd0, 0x59, 0x19, 0x36, 0xb3, 0xb8, 0x02, 0xd8, 0xd3, 0xad, 0x94, 0xca, 0x28, 0xf5, 0x8d, 0xd2, + 0xb3, 0x7f, 0x28, 0x5d, 0x5c, 0x93, 0x6b, 0xa9, 0x1b, 0xd3, 0x38, 0x87, 0x07, 0xec, 0x27, 0x8b, + 0x0b, 0x2d, 0xb3, 0x4b, 0xaa, 0xf7, 0xee, 0xc0, 0x5c, 0x7d, 0x0b, 0xc3, 0x33, 0x18, 0x6d, 0xa9, + 0xa6, 0x51, 0x96, 0xc6, 0x87, 0xdc, 0xec, 0xbc, 0x3f, 0xb3, 0xbc, 0x93, 0xc5, 0x63, 0x52, 0x67, + 0x4c, 0x8e, 0x19, 0x93, 0xb5, 0xc9, 0x38, 0x6c, 0xd1, 0xd1, 0x83, 0x71, 0x83, 0x6c, 0xe4, 0x81, + 0x09, 0x77, 0x68, 0xf6, 0xb4, 0x61, 0x24, 0x80, 0x0d, 0xf4, 0x41, 0xe4, 0x9a, 0x8a, 0x98, 0xb9, + 0xb6, 0x21, 0xdf, 0xd1, 0x99, 0xbc, 0x81, 0xd1, 0x6d, 0x9f, 0xd0, 0x81, 0xee, 0x81, 0x95, 0x26, + 0x7c, 0x3b, 0xac, 0x4a, 0x7c, 0x04, 0xfd, 0x1f, 0x94, 0x17, 0xc7, 0xe4, 0xea, 0xc7, 0xeb, 0xce, + 0x2b, 0x6b, 0x72, 0x0a, 0xe3, 0x96, 0x37, 0xff, 0x33, 0x7e, 0x7e, 0xf6, 0xfd, 0x34, 0x49, 0xf5, + 0xbe, 0x88, 0x48, 0x2c, 0xaf, 0x7c, 0xe3, 0xbf, 0xcc, 0x92, 0xba, 0xf0, 0xaf, 0xbf, 0x4b, 0xc2, + 0x84, 0xaf, 0xa2, 0xe7, 0x89, 0xf4, 0xdb, 0x3f, 0x28, 0x1a, 0x18, 0xe3, 0x5e, 0xfe, 0x0e, 0x00, + 0x00, 0xff, 0xff, 0x07, 0x7f, 0xfa, 0xf2, 0x5c, 0x03, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/tensorflow.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/tensorflow.pb.go index f466c1c972..4dea38ae52 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/tensorflow.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/tensorflow.pb.go @@ -5,8 +5,9 @@ package plugins import ( fmt "fmt" - proto "github.com/golang/protobuf/proto" math "math" + + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -85,18 +86,18 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/tensorflow.proto", fileDescriptor_8da02783614e1bcc) } var fileDescriptor_8da02783614e1bcc = []byte{ - // 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, + // 203 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x8f, 0xc1, 0x4a, 0xc4, 0x30, + 0x10, 0x86, 0xa9, 0xa2, 0x42, 0x44, 0x91, 0x9c, 0x7a, 0xd3, 0x0a, 0x82, 0x17, 0x9b, 0x83, 0x67, + 0x11, 0xc4, 0x27, 0x28, 0x3d, 0x79, 0x91, 0xa6, 0x4d, 0xd3, 0xa1, 0xd9, 0x4c, 0x98, 0x49, 0x29, + 0xfb, 0x00, 0xfb, 0xde, 0x0b, 0xd9, 0xb6, 0x0b, 0x7b, 0x9b, 0xf9, 0xe7, 0x1b, 0xf8, 0x3f, 0x51, + 0xf4, 0x6e, 0x1f, 0x0d, 0x74, 0x4e, 0x05, 0x37, 0x59, 0xf0, 0xac, 0xa2, 0xf1, 0x8c, 0xd4, 0x3b, + 0x9c, 0xcb, 0x40, 0x18, 0x51, 0x3e, 0xad, 0x48, 0xb9, 0x20, 0xaf, 0x87, 0x4c, 0x14, 0xbf, 0xc0, + 0x91, 0x40, 0x4f, 0xd1, 0x74, 0xf5, 0xf6, 0x51, 0x53, 0x03, 0x1e, 0xbc, 0xad, 0x1b, 0x1e, 0x65, + 0x2e, 0xee, 0x66, 0xa4, 0xd1, 0x10, 0xe7, 0xd9, 0x4b, 0xf6, 0x7e, 0x53, 0xad, 0xab, 0x7c, 0x16, + 0xf7, 0x81, 0xff, 0xc9, 0x04, 0x07, 0x6d, 0xc3, 0xf9, 0x55, 0xba, 0x8a, 0xc0, 0xd5, 0x92, 0xc8, + 0x37, 0xf1, 0xd8, 0x0e, 0x60, 0xfa, 0x33, 0x73, 0x9d, 0x98, 0x87, 0x94, 0xae, 0xd8, 0xcf, 0xf7, + 0xdf, 0x97, 0x85, 0x38, 0x4c, 0xba, 0x6c, 0x71, 0xa7, 0x52, 0x4d, 0x24, 0x7b, 0x1a, 0xd4, 0x26, + 0x66, 0x8d, 0x57, 0x41, 0x7f, 0x58, 0x54, 0x97, 0xae, 0xfa, 0x36, 0x19, 0x7e, 0x1e, 0x03, 0x00, + 0x00, 0xff, 0xff, 0x55, 0x40, 0x42, 0x06, 0x06, 0x01, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/waitable.pb.go b/flyteidl/gen/pb-go/flyteidl/plugins/waitable.pb.go index 56f80c8614..2122bb316e 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/waitable.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/waitable.pb.go @@ -5,9 +5,10 @@ package plugins import ( fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" - proto "github.com/golang/protobuf/proto" math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + proto "github.com/golang/protobuf/proto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -84,7 +85,7 @@ func init() { func init() { proto.RegisterFile("flyteidl/plugins/waitable.proto", fileDescriptor_6ff9364c45e52921) } var fileDescriptor_6ff9364c45e52921 = []byte{ - // 244 bytes of a gzipped FileDescriptorProto + // 246 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 +97,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, 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, + 0x00, 0x39, 0x84, 0x59, 0x81, 0x51, 0x83, 0x33, 0x88, 0x0b, 0x26, 0xe4, 0x99, 0xe2, 0x64, 0x1f, + 0x65, 0x9b, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, 0x36, 0x3b, 0xbf, + 0x28, 0x1d, 0xc2, 0xd0, 0x87, 0xfb, 0x38, 0x3d, 0x35, 0x4f, 0xbf, 0x20, 0x49, 0x37, 0x3d, 0x5f, + 0x1f, 0x3d, 0x58, 0x93, 0xd8, 0xc0, 0xbe, 0x37, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x8f, 0x78, + 0xb5, 0x11, 0x71, 0x01, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/plugins/waitable.pb.validate.go b/flyteidl/gen/pb-go/flyteidl/plugins/waitable.pb.validate.go index cd52b41c62..1923947c32 100644 --- a/flyteidl/gen/pb-go/flyteidl/plugins/waitable.pb.validate.go +++ b/flyteidl/gen/pb-go/flyteidl/plugins/waitable.pb.validate.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/ptypes" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" ) // ensure the imports are used diff --git a/flyteidl/gen/pb-go/flyteidl/service/admin.pb.go b/flyteidl/gen/pb-go/flyteidl/service/admin.pb.go index 1b35e94e46..3e94c83487 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/admin.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/service/admin.pb.go @@ -6,13 +6,14 @@ package service import ( context "context" fmt "fmt" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + math "math" + + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" proto "github.com/golang/protobuf/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -29,143 +30,143 @@ const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package func init() { proto.RegisterFile("flyteidl/service/admin.proto", fileDescriptor_5cfa31da1d67295d) } var fileDescriptor_5cfa31da1d67295d = []byte{ - // 2163 bytes of a gzipped FileDescriptorProto + // 2165 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x9a, 0xdf, 0x6f, 0x1d, 0x47, 0x15, 0xc7, 0x35, 0x36, 0x02, 0x31, 0x4d, 0x62, 0x7b, 0x9a, 0x60, 0x67, 0x63, 0x27, 0xe9, 0xba, - 0x8e, 0x7f, 0xdf, 0x75, 0x93, 0xb4, 0x51, 0x42, 0x7f, 0xb9, 0xb5, 0x73, 0x65, 0x48, 0x93, 0x62, - 0x52, 0x90, 0x2c, 0xa4, 0xab, 0xf5, 0xdd, 0x89, 0xb3, 0xc9, 0xbd, 0x77, 0x6f, 0x77, 0xc7, 0x2e, - 0x96, 0x65, 0xf1, 0x43, 0x08, 0x51, 0x21, 0xf1, 0xc0, 0x0f, 0x41, 0x21, 0xa2, 0x14, 0x8a, 0xf8, - 0x59, 0x5e, 0x40, 0x45, 0xbc, 0x54, 0x42, 0x80, 0xc4, 0x0b, 0x2f, 0xf0, 0xce, 0x0b, 0x7d, 0xe6, - 0x6f, 0x40, 0x7b, 0x66, 0x66, 0xef, 0xce, 0xee, 0xce, 0xee, 0xac, 0x49, 0x79, 0xe2, 0xcd, 0xbe, - 0xe7, 0x3b, 0x33, 0x9f, 0x73, 0xe6, 0xcc, 0x99, 0xd9, 0xdd, 0xc1, 0x93, 0x77, 0x3a, 0xfb, 0x8c, - 0xfa, 0x5e, 0xc7, 0x89, 0x68, 0xb8, 0xe7, 0xb7, 0xa9, 0xe3, 0x7a, 0x5d, 0xbf, 0xd7, 0xe8, 0x87, - 0x01, 0x0b, 0xc8, 0xa8, 0xb4, 0x36, 0x84, 0xd5, 0x9a, 0xdc, 0x09, 0x82, 0x9d, 0x0e, 0x75, 0xdc, - 0xbe, 0xef, 0xb8, 0xbd, 0x5e, 0xc0, 0x5c, 0xe6, 0x07, 0xbd, 0x88, 0xeb, 0xad, 0x41, 0x6f, 0xd0, - 0x8b, 0xd3, 0x0f, 0x83, 0x7b, 0xb4, 0xcd, 0x84, 0xb5, 0x51, 0x6c, 0x6d, 0x79, 0x41, 0xd7, 0xf5, - 0x7b, 0x2d, 0x97, 0xb1, 0xd0, 0xdf, 0xde, 0x65, 0x54, 0xf6, 0x36, 0xab, 0xd1, 0xe7, 0x84, 0xa7, - 0x33, 0x42, 0xe6, 0x46, 0xf7, 0x85, 0x69, 0x2a, 0x63, 0x7a, 0x2d, 0x08, 0xef, 0xdf, 0xe9, 0x04, - 0xaf, 0x09, 0xf3, 0x9c, 0xc6, 0x9c, 0x1f, 0xe3, 0x7c, 0x46, 0xd9, 0x71, 0x77, 0x7b, 0xed, 0xbb, - 0xad, 0x7e, 0xc7, 0x15, 0xc1, 0xb2, 0xac, 0x8c, 0x82, 0xee, 0xd1, 0x9e, 0x74, 0xfd, 0x6c, 0xd6, - 0xf6, 0x79, 0xda, 0xde, 0x8d, 0x23, 0xa7, 0x71, 0xb5, 0xeb, 0xb2, 0xf6, 0x5d, 0x77, 0xbb, 0x43, - 0x5b, 0x21, 0x8d, 0x82, 0xdd, 0xb0, 0x4d, 0x85, 0x70, 0x3a, 0x23, 0xec, 0x05, 0x1e, 0x6d, 0x65, - 0x7b, 0x9b, 0x2e, 0x88, 0x47, 0x4e, 0x94, 0x9d, 0xab, 0x3d, 0x1a, 0x46, 0x03, 0xeb, 0x99, 0x8c, - 0xb5, 0x1d, 0x74, 0xbb, 0x5a, 0x5a, 0x8f, 0x46, 0xed, 0xd0, 0xef, 0xc7, 0x9d, 0xb7, 0x68, 0x8f, - 0xf9, 0x6c, 0x9f, 0x0b, 0x2f, 0x7e, 0xe5, 0x26, 0x3e, 0xb6, 0x1a, 0x4b, 0x3e, 0xcd, 0xd3, 0x87, - 0x74, 0x31, 0x7e, 0x31, 0xa4, 0x2e, 0xa3, 0xb7, 0xdd, 0xe8, 0x3e, 0x79, 0x2c, 0xc9, 0x88, 0x06, - 0xcf, 0xba, 0xf8, 0x57, 0x6e, 0xdf, 0xa4, 0xaf, 0xee, 0xd2, 0x88, 0x59, 0x76, 0x99, 0x24, 0xea, - 0x07, 0xbd, 0x88, 0xda, 0x13, 0x5f, 0xfe, 0xc7, 0xfb, 0xdf, 0x1a, 0x22, 0xf6, 0x71, 0xc8, 0xca, - 0xbd, 0x27, 0xc0, 0xdf, 0xe8, 0x1a, 0x5a, 0x20, 0x5f, 0x43, 0xf8, 0x23, 0x4d, 0xca, 0x60, 0xb0, - 0xf3, 0xd9, 0x9e, 0x6e, 0x6d, 0xc7, 0xd9, 0xd4, 0xa4, 0x4c, 0x8e, 0x75, 0xb2, 0x68, 0x2c, 0x7b, - 0x1d, 0x7a, 0x7f, 0x8e, 0x3c, 0xa3, 0xf4, 0xee, 0x1c, 0xf8, 0x5e, 0x43, 0x24, 0xe4, 0x21, 0xfc, - 0xc3, 0xb3, 0x98, 0xff, 0xdd, 0x73, 0xbb, 0x94, 0xff, 0x25, 0xa2, 0x7a, 0x48, 0xbe, 0x8b, 0xf0, - 0x23, 0x37, 0xfc, 0x08, 0x58, 0x36, 0xbc, 0x88, 0xac, 0x64, 0x07, 0xbb, 0xe9, 0x76, 0xa9, 0xb7, - 0x0e, 0xd1, 0xdb, 0xf0, 0xe2, 0x28, 0xde, 0xf1, 0x69, 0x18, 0xb7, 0x90, 0x78, 0xf3, 0xc6, 0x2d, - 0xec, 0x45, 0x60, 0x9e, 0x21, 0xd3, 0x69, 0xe6, 0x96, 0xef, 0x45, 0xce, 0xc1, 0x80, 0x59, 0x00, - 0x93, 0xdf, 0x20, 0xfc, 0x51, 0x49, 0x16, 0x91, 0xe9, 0xec, 0x28, 0x9b, 0x22, 0x01, 0xd3, 0x28, - 0x13, 0x45, 0x91, 0x82, 0x91, 0xb7, 0x61, 0xe4, 0xcf, 0x91, 0x95, 0xba, 0xd1, 0xda, 0x9a, 0x23, - 0x17, 0xcc, 0xda, 0x90, 0x43, 0x7c, 0x82, 0x67, 0xc0, 0x67, 0xc5, 0x6a, 0x25, 0x33, 0x59, 0x1e, - 0x69, 0x51, 0x93, 0xe9, 0x42, 0x95, 0x4c, 0x24, 0xd4, 0x24, 0x38, 0xf1, 0x31, 0x7b, 0x4c, 0x02, - 0xc9, 0xb2, 0x00, 0x49, 0xf5, 0x6d, 0x84, 0x1f, 0x69, 0x52, 0x96, 0x0c, 0x5e, 0x9d, 0x58, 0x13, - 0xba, 0x71, 0xed, 0x0d, 0x18, 0xe9, 0x45, 0xb2, 0x9a, 0x1b, 0xa9, 0x76, 0x82, 0xbd, 0x89, 0xf0, - 0x48, 0x3c, 0x05, 0xb2, 0xef, 0x0f, 0x3c, 0xc9, 0x1c, 0x60, 0x9f, 0x27, 0xb3, 0x59, 0x76, 0x5d, - 0xa2, 0xbd, 0x87, 0xf0, 0xf1, 0x34, 0xa1, 0x61, 0xb2, 0x4d, 0xea, 0xa2, 0x07, 0x14, 0xf7, 0x80, - 0xc2, 0x23, 0x97, 0x8f, 0x12, 0xc1, 0xad, 0x25, 0xb2, 0x60, 0xde, 0x8e, 0x7c, 0x15, 0xe1, 0x51, - 0x9e, 0x2a, 0x37, 0xa0, 0xfa, 0xbf, 0xdc, 0x71, 0x7b, 0x64, 0x36, 0x8b, 0x37, 0xb0, 0xa9, 0xd9, - 0x37, 0x57, 0x2d, 0x14, 0xf9, 0x77, 0x0e, 0x7c, 0x3a, 0x6d, 0x9f, 0x94, 0x6c, 0xa9, 0xcd, 0x06, - 0x52, 0xf0, 0x07, 0x08, 0x1f, 0x6f, 0x52, 0x96, 0xa2, 0xa8, 0x4e, 0x42, 0x4b, 0x3f, 0xbc, 0x7d, - 0x03, 0x06, 0xbc, 0x4e, 0xd6, 0x8a, 0x06, 0xac, 0x9d, 0x89, 0x3f, 0x46, 0xf8, 0xd1, 0x26, 0x65, - 0xab, 0x6d, 0xe6, 0xef, 0x95, 0x46, 0x2a, 0xab, 0x30, 0x41, 0xbd, 0x0e, 0xa8, 0xcf, 0x93, 0x67, - 0x25, 0xaa, 0x0b, 0x9d, 0xb4, 0x6a, 0x12, 0x93, 0x07, 0x08, 0x9f, 0x8a, 0x13, 0x28, 0xcb, 0x10, - 0x91, 0xc5, 0x2a, 0xcc, 0x74, 0x72, 0x9e, 0xd5, 0xa3, 0x42, 0x7a, 0x3e, 0x05, 0xb8, 0x2b, 0xa4, - 0x51, 0x8a, 0x9b, 0x5f, 0x2b, 0x6f, 0x23, 0x3c, 0x16, 0x77, 0x30, 0xe8, 0xee, 0x03, 0x5f, 0xcf, - 0x17, 0x01, 0x35, 0xb5, 0x22, 0x52, 0x8c, 0xba, 0x25, 0xfd, 0x57, 0x51, 0x74, 0xd2, 0xf1, 0x33, - 0x5a, 0xd4, 0x55, 0x71, 0xeb, 0x03, 0xcc, 0x3d, 0x72, 0xe5, 0x88, 0x19, 0xb9, 0xe5, 0x90, 0xe5, - 0x5a, 0x4d, 0xc9, 0xbb, 0x08, 0x8f, 0xbe, 0xd2, 0xf7, 0x8c, 0x17, 0x37, 0xd7, 0x1a, 0x2c, 0x6e, - 0x29, 0x14, 0x8b, 0xfb, 0x16, 0x78, 0xb6, 0x61, 0x3d, 0x94, 0xb5, 0x16, 0x17, 0x83, 0x2f, 0x21, - 0x3c, 0xc2, 0x0b, 0xc8, 0xba, 0x3c, 0xe2, 0x91, 0xdc, 0x4e, 0x97, 0x98, 0xd4, 0x9a, 0x34, 0x5b, - 0xa9, 0x13, 0xd4, 0x53, 0x40, 0x3d, 0x6e, 0x13, 0x49, 0x9d, 0x1c, 0x27, 0xa1, 0x20, 0x7d, 0x03, - 0xe1, 0xb1, 0x4d, 0xca, 0x3d, 0x19, 0x50, 0xcc, 0x69, 0x7b, 0x97, 0xda, 0xda, 0x1c, 0x17, 0x80, - 0xe3, 0xbc, 0x7d, 0x26, 0xcf, 0xe1, 0x84, 0xa2, 0xd3, 0x18, 0xe8, 0xeb, 0x08, 0x8f, 0x6e, 0xd2, - 0x76, 0xb0, 0x47, 0xc3, 0x01, 0xcf, 0x6c, 0x09, 0x0f, 0x48, 0x6b, 0xe3, 0xcc, 0x00, 0xce, 0x39, - 0xdb, 0x2a, 0xc4, 0x81, 0x3e, 0x63, 0x9a, 0xef, 0x20, 0x7c, 0xac, 0x49, 0xd9, 0x80, 0x64, 0x51, - 0xb7, 0xa7, 0x25, 0x92, 0x54, 0xe5, 0x3e, 0xad, 0xa5, 0xb1, 0x9f, 0x81, 0xf1, 0xaf, 0x90, 0x27, - 0x0b, 0xc6, 0x37, 0x28, 0x82, 0x6f, 0x23, 0x3c, 0xc2, 0xd3, 0xd3, 0x24, 0x75, 0xd4, 0x8c, 0x9f, - 0xad, 0xd4, 0x89, 0x18, 0x3d, 0x0f, 0x8c, 0xd7, 0xac, 0xa3, 0x31, 0xc6, 0xe1, 0xfb, 0x03, 0xc2, - 0xa3, 0xe9, 0xf0, 0xad, 0xb9, 0xcc, 0x25, 0x8e, 0x49, 0x08, 0x63, 0xa5, 0x04, 0x5e, 0x31, 0x6f, - 0x20, 0xc8, 0x5f, 0x00, 0xf2, 0xa7, 0xc9, 0x35, 0x49, 0xee, 0xb9, 0xcc, 0xad, 0x19, 0xe2, 0xd7, - 0x11, 0x3e, 0x11, 0x57, 0xb4, 0x64, 0x10, 0xc3, 0x02, 0x39, 0xa5, 0x0d, 0x2f, 0xd4, 0xc7, 0x4b, - 0x80, 0xb6, 0x4c, 0x16, 0x6b, 0x04, 0x95, 0xbc, 0x83, 0x30, 0xb9, 0x4d, 0xc3, 0xae, 0xdf, 0x53, - 0x66, 0x7c, 0x5e, 0x3b, 0x54, 0x22, 0x96, 0x54, 0x0b, 0x26, 0x52, 0x75, 0xde, 0x17, 0x8e, 0x3e, - 0xef, 0x7f, 0xe7, 0xf3, 0x7e, 0x33, 0xf0, 0x68, 0xc9, 0x22, 0x56, 0xcc, 0xa9, 0x65, 0x33, 0x55, - 0x2a, 0xb4, 0xf7, 0x00, 0xaf, 0x4f, 0x7a, 0x12, 0x4f, 0x7d, 0x94, 0xe6, 0x8c, 0xc9, 0xbf, 0xad, - 0x2c, 0xb0, 0x62, 0x49, 0xd3, 0x2b, 0x86, 0x41, 0xc5, 0x86, 0xde, 0x7d, 0xef, 0x90, 0xfc, 0x13, - 0x61, 0x12, 0x4f, 0xa1, 0x42, 0x13, 0xe5, 0x6b, 0xa5, 0x62, 0x4f, 0x67, 0xc6, 0x63, 0x95, 0x4a, - 0xfb, 0x00, 0x7c, 0xdb, 0x25, 0x91, 0xd6, 0xb7, 0xe4, 0xac, 0xae, 0xf1, 0xb0, 0xd8, 0x9e, 0xf8, - 0x59, 0x6c, 0xe6, 0x19, 0xff, 0xd3, 0x0f, 0xe1, 0xd3, 0x79, 0x07, 0xaf, 0x07, 0x21, 0x3c, 0x86, - 0x3b, 0xa5, 0xf4, 0x42, 0x55, 0xd3, 0xdd, 0xdf, 0x0e, 0x83, 0xbf, 0xbf, 0x1e, 0x26, 0xbf, 0x18, - 0x96, 0x1e, 0xb7, 0xef, 0xfa, 0x1d, 0x2f, 0xa4, 0xd9, 0x97, 0x1f, 0x91, 0x73, 0xa0, 0xfe, 0xd0, - 0x92, 0x73, 0xa3, 0xfc, 0xa2, 0x89, 0x4a, 0xed, 0xa6, 0x49, 0xc0, 0x6a, 0xb7, 0x14, 0x99, 0x63, - 0xd2, 0x4e, 0xa6, 0x56, 0x91, 0x5a, 0x3c, 0xf8, 0x97, 0xfa, 0x20, 0x35, 0x25, 0xb0, 0x52, 0xa2, - 0xa5, 0x92, 0x02, 0x79, 0x30, 0x29, 0xd2, 0x84, 0x94, 0x85, 0xfb, 0x2d, 0x97, 0x31, 0xda, 0xed, - 0xb3, 0x43, 0xf2, 0x6f, 0x84, 0x4f, 0x66, 0x57, 0x37, 0x54, 0xf6, 0xc5, 0xaa, 0x15, 0x9e, 0xae, - 0xea, 0x4b, 0x66, 0x62, 0x51, 0x93, 0x72, 0x0b, 0x03, 0x2a, 0xfa, 0xff, 0x68, 0xe5, 0x7f, 0x01, - 0x8f, 0x6c, 0xd2, 0x1d, 0x3f, 0x62, 0x34, 0x7c, 0x99, 0x77, 0x98, 0xdf, 0x6c, 0x85, 0x41, 0xea, - 0xb4, 0x9b, 0x6d, 0x4e, 0x27, 0x1c, 0x3c, 0x03, 0x0e, 0x9e, 0xb2, 0x47, 0xa5, 0x83, 0x02, 0x1d, - 0x4e, 0x69, 0xaf, 0xe2, 0xe3, 0x7c, 0x6f, 0x96, 0xc3, 0x8f, 0x6b, 0xba, 0xb5, 0x66, 0x34, 0x86, - 0xcc, 0xd6, 0x7e, 0x1e, 0x46, 0xb3, 0xac, 0x53, 0xd9, 0xd1, 0x62, 0xc7, 0xa1, 0x84, 0xdf, 0xc1, - 0xc7, 0xe2, 0x25, 0x2a, 0x9a, 0x47, 0xc4, 0xd6, 0x74, 0x5c, 0xfa, 0x76, 0x49, 0xb6, 0x96, 0x6f, - 0xfa, 0x48, 0xce, 0x3b, 0xf2, 0x06, 0xc2, 0x8f, 0xaa, 0x2f, 0x85, 0xd6, 0xf7, 0x68, 0x8f, 0x91, - 0xe5, 0xca, 0x4d, 0x1f, 0x74, 0x72, 0xe8, 0x86, 0xa9, 0x5c, 0x04, 0x60, 0x1a, 0x80, 0xa6, 0xec, - 0x89, 0x64, 0x8f, 0x8b, 0xcd, 0x91, 0xfa, 0xc2, 0xe8, 0xf5, 0xe4, 0x80, 0x0e, 0xb9, 0x09, 0x5c, - 0xf3, 0xa5, 0x69, 0xab, 0x30, 0x2d, 0x98, 0x48, 0x75, 0x6f, 0x0e, 0x04, 0x4f, 0x9c, 0x83, 0x19, - 0x96, 0xb8, 0xce, 0x6a, 0x58, 0xc0, 0x64, 0xc6, 0x52, 0x24, 0xad, 0x60, 0x49, 0xde, 0xce, 0x7e, - 0x71, 0x18, 0xb6, 0x77, 0xa5, 0x8b, 0xfc, 0xf6, 0xae, 0x98, 0xcb, 0xb6, 0x77, 0x45, 0x68, 0xff, - 0x64, 0x08, 0x86, 0x7f, 0x30, 0x44, 0xde, 0x18, 0x52, 0xde, 0x82, 0x66, 0xd6, 0xb9, 0x71, 0xed, - 0xaf, 0x51, 0xec, 0x8d, 0xab, 0x7b, 0x45, 0x39, 0x2f, 0xac, 0xdf, 0x45, 0x05, 0x3b, 0x5f, 0xa1, - 0x0b, 0x4b, 0x72, 0xbe, 0x06, 0x7f, 0x6f, 0x88, 0x1f, 0x46, 0x94, 0xd8, 0x15, 0x1c, 0x46, 0x14, - 0x7b, 0xe9, 0xee, 0x9c, 0x53, 0xda, 0xbf, 0x43, 0x30, 0x13, 0xef, 0x20, 0xf2, 0x4b, 0xa4, 0x9d, - 0x09, 0xe3, 0x69, 0x30, 0x9d, 0x03, 0xb3, 0x09, 0xd0, 0x47, 0x9f, 0x3c, 0x18, 0x86, 0xed, 0x49, - 0xf1, 0xa7, 0x78, 0x7b, 0xca, 0x66, 0x68, 0xe9, 0xf6, 0x54, 0x2c, 0x16, 0x4b, 0xe6, 0xe7, 0x3c, - 0x69, 0xdf, 0x1a, 0x22, 0x3f, 0x1c, 0x52, 0x76, 0xa8, 0xff, 0x67, 0x6e, 0x36, 0x73, 0xff, 0x85, - 0xf0, 0x94, 0xb2, 0x99, 0xad, 0x41, 0x97, 0xab, 0xc9, 0x77, 0x3b, 0x72, 0x59, 0xb3, 0x8d, 0x64, - 0x85, 0xea, 0x63, 0xed, 0x93, 0x35, 0x5b, 0x89, 0x99, 0x7b, 0x05, 0x26, 0xee, 0x96, 0xf5, 0x89, - 0xcc, 0xce, 0x94, 0xff, 0xb8, 0xe9, 0x1c, 0xa8, 0xdf, 0x16, 0x45, 0x70, 0x52, 0x3f, 0x8a, 0xe0, - 0xc4, 0x25, 0xf2, 0x8f, 0x08, 0x5b, 0x4d, 0xca, 0x74, 0x2e, 0x3e, 0x61, 0x08, 0x9b, 0x2a, 0x9b, - 0x17, 0xeb, 0x34, 0x11, 0xce, 0x3d, 0x0d, 0xce, 0x3d, 0x35, 0x78, 0xc7, 0x5e, 0xe2, 0x5c, 0xfe, - 0x1d, 0xe1, 0xdf, 0x10, 0x9e, 0x5a, 0xa3, 0x1d, 0xfa, 0xdf, 0xcf, 0x14, 0xef, 0xa5, 0xee, 0x4c, - 0xc9, 0x56, 0xc2, 0x99, 0xe7, 0xc0, 0x99, 0xab, 0x0b, 0x47, 0x72, 0x26, 0x9e, 0x93, 0x77, 0x11, - 0x1e, 0x57, 0x32, 0x2f, 0xe5, 0x49, 0x43, 0xc3, 0xa4, 0xcb, 0x36, 0xc7, 0x58, 0x2f, 0xe8, 0xaf, - 0x01, 0xfd, 0x65, 0xcb, 0xc9, 0xd2, 0x57, 0x24, 0x58, 0x0c, 0xfe, 0x26, 0x3f, 0x70, 0xe7, 0xa9, - 0x17, 0x2b, 0x29, 0x52, 0x09, 0xb4, 0x64, 0x26, 0x16, 0xbc, 0x4b, 0xc0, 0x7b, 0x81, 0x3c, 0x5e, - 0xc6, 0x2b, 0x21, 0xc9, 0xaf, 0x10, 0x1e, 0x57, 0x52, 0xa5, 0x56, 0x68, 0xd5, 0xf4, 0x70, 0x8c, - 0xf5, 0x02, 0x55, 0x7c, 0xcf, 0x5a, 0x30, 0x42, 0x8d, 0xe3, 0xf9, 0x3e, 0xc2, 0x13, 0x7c, 0x7a, - 0xe4, 0x29, 0x31, 0x85, 0xab, 0x7d, 0x3d, 0xa5, 0x4b, 0x85, 0x15, 0xf3, 0x06, 0x02, 0x98, 0x02, - 0x70, 0xcb, 0xda, 0xca, 0x7d, 0x80, 0x3b, 0x42, 0xb5, 0x51, 0x7e, 0x93, 0x1d, 0x81, 0x9b, 0xbf, - 0x47, 0xf8, 0x54, 0xea, 0x7b, 0x67, 0xca, 0xc7, 0xa5, 0x6a, 0xe4, 0x54, 0xe2, 0x2c, 0x1b, 0xaa, - 0x85, 0x77, 0xab, 0xe0, 0xdd, 0xc7, 0xc9, 0xd5, 0x52, 0xef, 0x72, 0x2b, 0x74, 0xf0, 0x6e, 0xe2, - 0x90, 0xfc, 0x09, 0xe1, 0x09, 0x3e, 0xc9, 0x47, 0x9b, 0x20, 0x35, 0xa1, 0x56, 0xcc, 0x1b, 0x08, - 0x17, 0xd6, 0xc0, 0x85, 0x67, 0x17, 0x8e, 0xee, 0x42, 0x1c, 0xff, 0x1f, 0x21, 0x3c, 0x1e, 0x1f, - 0xa4, 0x5e, 0x92, 0x77, 0x42, 0xca, 0x16, 0x85, 0x46, 0xa8, 0x5d, 0x14, 0x5a, 0xbd, 0x70, 0xe1, - 0x71, 0x70, 0xe1, 0x2c, 0x99, 0x94, 0x2e, 0x0c, 0x6e, 0xa6, 0x0c, 0x7c, 0x88, 0x2b, 0x0b, 0x7c, - 0xad, 0x1a, 0x7c, 0x5c, 0xf2, 0x69, 0x94, 0x7f, 0xb8, 0x4d, 0x7d, 0x7b, 0x4a, 0x9f, 0x21, 0xcf, - 0x55, 0xe8, 0xf2, 0xa9, 0x10, 0x1f, 0x15, 0x3c, 0x7e, 0xd5, 0xc4, 0x8f, 0x43, 0x28, 0x2f, 0xc9, - 0xb4, 0xd8, 0x7e, 0x3f, 0x3e, 0x43, 0xe4, 0x37, 0xa1, 0x9f, 0x21, 0x7c, 0xa2, 0x49, 0x53, 0x80, - 0xfb, 0xf9, 0x4b, 0x03, 0x29, 0x63, 0x2a, 0x6d, 0xcf, 0x94, 0xc8, 0xec, 0x4f, 0x01, 0xd9, 0x27, - 0xc9, 0x86, 0x29, 0x59, 0xf5, 0x0b, 0xe3, 0xf7, 0x10, 0x1e, 0xe3, 0x0b, 0x3d, 0x0d, 0x3b, 0x57, - 0x42, 0xa1, 0xd6, 0x91, 0x79, 0x03, 0xa5, 0x98, 0xdc, 0xdb, 0x40, 0x7f, 0xd3, 0x7a, 0x78, 0xf4, - 0x71, 0xbe, 0x76, 0x30, 0x6e, 0x52, 0xf6, 0x19, 0x7e, 0x76, 0xcb, 0xdf, 0xf1, 0x19, 0xd8, 0xb4, - 0x77, 0x7c, 0xd2, 0x12, 0x81, 0x3a, 0x0e, 0xa8, 0x63, 0x64, 0x44, 0xa2, 0x8a, 0xb3, 0x21, 0xf9, - 0x33, 0xdf, 0xd4, 0xd6, 0x06, 0x57, 0x90, 0x44, 0xc4, 0xaa, 0xbf, 0x88, 0xe7, 0xd0, 0x72, 0x9d, - 0xd8, 0x3b, 0x30, 0xac, 0x4b, 0x5a, 0xc9, 0x69, 0x3c, 0x7b, 0xd5, 0x09, 0xe2, 0x04, 0xc7, 0xd3, - 0x9a, 0xa1, 0x52, 0xbf, 0x99, 0x7f, 0x73, 0x88, 0x2f, 0xf2, 0x2c, 0x82, 0x5f, 0x54, 0x66, 0x73, - 0x9c, 0xe9, 0xd5, 0x34, 0x63, 0xa4, 0xb6, 0xdf, 0xe2, 0x4f, 0x65, 0xdf, 0x47, 0xe4, 0x56, 0xb9, - 0x6f, 0xb5, 0x1d, 0xdb, 0x6a, 0x92, 0xf5, 0x87, 0xd2, 0x25, 0xf9, 0x0b, 0xbf, 0x48, 0x90, 0x3c, - 0x2e, 0xbd, 0x44, 0x59, 0xe8, 0xb7, 0x23, 0x72, 0xd1, 0xe4, 0x4b, 0x8e, 0x10, 0xcb, 0xb0, 0x5c, - 0xaa, 0xd5, 0x46, 0x64, 0x5d, 0xee, 0xee, 0x57, 0x97, 0x0b, 0xea, 0x7d, 0xca, 0x78, 0xe1, 0xea, - 0xd6, 0x95, 0x1d, 0x9f, 0xdd, 0xdd, 0xdd, 0x6e, 0xb4, 0x83, 0xae, 0x03, 0x1c, 0x41, 0xb8, 0xe3, - 0x24, 0xb7, 0xe8, 0x76, 0x68, 0xcf, 0xe9, 0x6f, 0x2f, 0xef, 0x04, 0x4e, 0xf6, 0x36, 0xe6, 0xf6, - 0x87, 0xe1, 0x22, 0xdd, 0xa5, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x92, 0x51, 0x02, 0xc6, 0xa8, - 0x29, 0x00, 0x00, + 0x8e, 0x7f, 0xdf, 0x75, 0x93, 0xb4, 0x55, 0x43, 0xd3, 0xd4, 0xad, 0x9d, 0x2b, 0x43, 0x9a, 0x14, + 0x93, 0x82, 0x64, 0x21, 0x5d, 0xad, 0xef, 0x4e, 0x9c, 0x4d, 0xee, 0xbd, 0x7b, 0xbb, 0x3b, 0x76, + 0xb1, 0x2c, 0x8b, 0x1f, 0x42, 0x88, 0x0a, 0x89, 0x07, 0x7e, 0x08, 0x0a, 0x11, 0xa5, 0x50, 0xc4, + 0xcf, 0xf2, 0x02, 0x2a, 0xe2, 0xa5, 0x12, 0x02, 0x24, 0x5e, 0x78, 0x81, 0x77, 0x5e, 0xe8, 0x33, + 0x7f, 0x03, 0xda, 0x33, 0x33, 0x7b, 0x77, 0x76, 0x77, 0x76, 0x67, 0x4d, 0xca, 0x13, 0x6f, 0xf6, + 0x3d, 0xdf, 0x99, 0xf9, 0x9c, 0x33, 0x67, 0xce, 0xcc, 0xee, 0x0e, 0x9e, 0xbc, 0xd3, 0xd9, 0x67, + 0xd4, 0xf7, 0x3a, 0x4e, 0x44, 0xc3, 0x3d, 0xbf, 0x4d, 0x1d, 0xd7, 0xeb, 0xfa, 0xbd, 0x46, 0x3f, + 0x0c, 0x58, 0x40, 0x46, 0xa5, 0xb5, 0x21, 0xac, 0xd6, 0xe4, 0x4e, 0x10, 0xec, 0x74, 0xa8, 0xe3, + 0xf6, 0x7d, 0xc7, 0xed, 0xf5, 0x02, 0xe6, 0x32, 0x3f, 0xe8, 0x45, 0x5c, 0x6f, 0x0d, 0x7a, 0x83, + 0x5e, 0x9c, 0x7e, 0x18, 0xdc, 0xa3, 0x6d, 0x26, 0xac, 0x8d, 0x62, 0x6b, 0xcb, 0x0b, 0xba, 0xae, + 0xdf, 0x6b, 0xb9, 0x8c, 0x85, 0xfe, 0xf6, 0x2e, 0xa3, 0xb2, 0xb7, 0x59, 0x8d, 0x3e, 0x27, 0x3c, + 0x9d, 0x11, 0x32, 0x37, 0xba, 0x2f, 0x4c, 0x53, 0x19, 0xd3, 0x6b, 0x41, 0x78, 0xff, 0x4e, 0x27, + 0x78, 0x4d, 0x98, 0xe7, 0x34, 0xe6, 0xfc, 0x18, 0xe7, 0x33, 0xca, 0x8e, 0xbb, 0xdb, 0x6b, 0xdf, + 0x6d, 0xf5, 0x3b, 0xae, 0x08, 0x96, 0x65, 0x65, 0x14, 0x74, 0x8f, 0xf6, 0xa4, 0xeb, 0x67, 0xb3, + 0xb6, 0xcf, 0xd3, 0xf6, 0x6e, 0x1c, 0x39, 0x8d, 0xab, 0x5d, 0x97, 0xb5, 0xef, 0xba, 0xdb, 0x1d, + 0xda, 0x0a, 0x69, 0x14, 0xec, 0x86, 0x6d, 0x2a, 0x84, 0xd3, 0x19, 0x61, 0x2f, 0xf0, 0x68, 0x2b, + 0xdb, 0xdb, 0x74, 0x41, 0x3c, 0x72, 0xa2, 0xec, 0x5c, 0xed, 0xd1, 0x30, 0x1a, 0x58, 0xcf, 0x64, + 0xac, 0xed, 0xa0, 0xdb, 0xd5, 0xd2, 0x7a, 0x34, 0x6a, 0x87, 0x7e, 0x3f, 0xee, 0xbc, 0x45, 0x7b, + 0xcc, 0x67, 0xfb, 0x5c, 0x78, 0xf1, 0x2b, 0x37, 0xf1, 0xb1, 0xd5, 0x58, 0xf2, 0x69, 0x9e, 0x3e, + 0xa4, 0x8b, 0xf1, 0x8b, 0x21, 0x75, 0x19, 0xbd, 0xed, 0x46, 0xf7, 0xc9, 0x63, 0x49, 0x46, 0x34, + 0x78, 0xd6, 0xc5, 0xbf, 0x72, 0xfb, 0x26, 0x7d, 0x75, 0x97, 0x46, 0xcc, 0xb2, 0xcb, 0x24, 0x51, + 0x3f, 0xe8, 0x45, 0xd4, 0x9e, 0xf8, 0xf2, 0x3f, 0xde, 0xff, 0xd6, 0x10, 0xb1, 0x8f, 0x43, 0x56, + 0xee, 0x3d, 0x01, 0xfe, 0x46, 0x57, 0xd0, 0x02, 0xf9, 0x1a, 0xc2, 0x1f, 0x69, 0x52, 0x06, 0x83, + 0x9d, 0xcf, 0xf6, 0x74, 0x6b, 0x3b, 0xce, 0xa6, 0x26, 0x65, 0x72, 0xac, 0x93, 0x45, 0x63, 0xd9, + 0xeb, 0xd0, 0xfb, 0x35, 0x72, 0x55, 0xe9, 0xdd, 0x39, 0xf0, 0xbd, 0x86, 0x48, 0xc8, 0x43, 0xf8, + 0x87, 0x67, 0x31, 0xff, 0xbb, 0xe7, 0x76, 0x29, 0xff, 0x4b, 0x44, 0xf5, 0x90, 0x7c, 0x17, 0xe1, + 0x47, 0x6e, 0xf8, 0x11, 0xb0, 0x6c, 0x78, 0x11, 0x59, 0xc9, 0x0e, 0x76, 0xd3, 0xed, 0x52, 0x6f, + 0x1d, 0xa2, 0xb7, 0xe1, 0xc5, 0x51, 0xbc, 0xe3, 0xd3, 0x30, 0x6e, 0x21, 0xf1, 0xe6, 0x8d, 0x5b, + 0xd8, 0x8b, 0xc0, 0x3c, 0x43, 0xa6, 0xd3, 0xcc, 0x2d, 0xdf, 0x8b, 0x9c, 0x83, 0x01, 0xb3, 0x00, + 0x26, 0xbf, 0x41, 0xf8, 0xa3, 0x92, 0x2c, 0x22, 0xd3, 0xd9, 0x51, 0x36, 0x45, 0x02, 0xa6, 0x51, + 0x26, 0x8a, 0x22, 0x05, 0x23, 0x6f, 0xc3, 0xc8, 0x9f, 0x23, 0x2b, 0x75, 0xa3, 0xb5, 0x35, 0x47, + 0x2e, 0x98, 0xb5, 0x21, 0x87, 0xf8, 0x04, 0xcf, 0x80, 0xcf, 0x8a, 0xd5, 0x4a, 0x66, 0xb2, 0x3c, + 0xd2, 0xa2, 0x26, 0xd3, 0x85, 0x2a, 0x99, 0x48, 0xa8, 0x49, 0x70, 0xe2, 0x63, 0xf6, 0x98, 0x04, + 0x92, 0x65, 0x01, 0x92, 0xea, 0xdb, 0x08, 0x3f, 0xd2, 0xa4, 0x2c, 0x19, 0xbc, 0x3a, 0xb1, 0x26, + 0x74, 0xe3, 0xda, 0x1b, 0x30, 0xd2, 0x8b, 0x64, 0x35, 0x37, 0x52, 0xed, 0x04, 0x7b, 0x13, 0xe1, + 0x91, 0x78, 0x0a, 0x64, 0xdf, 0x1f, 0x78, 0x92, 0x39, 0xc0, 0x3e, 0x4f, 0x66, 0xb3, 0xec, 0xba, + 0x44, 0x7b, 0x0f, 0xe1, 0xe3, 0x69, 0x42, 0xc3, 0x64, 0x9b, 0xd4, 0x45, 0x0f, 0x28, 0xee, 0x01, + 0x85, 0x47, 0x2e, 0x1f, 0x25, 0x82, 0x5b, 0x4b, 0x64, 0xc1, 0xbc, 0x1d, 0xf9, 0x2a, 0xc2, 0xa3, + 0x3c, 0x55, 0x6e, 0x40, 0xf5, 0x7f, 0xb9, 0xe3, 0xf6, 0xc8, 0x6c, 0x16, 0x6f, 0x60, 0x53, 0xb3, + 0x6f, 0xae, 0x5a, 0x28, 0xf2, 0xef, 0x1c, 0xf8, 0x74, 0xda, 0x3e, 0x29, 0xd9, 0x52, 0x9b, 0x0d, + 0xa4, 0xe0, 0x0f, 0x10, 0x3e, 0xde, 0xa4, 0x2c, 0x45, 0x51, 0x9d, 0x84, 0x96, 0x7e, 0x78, 0xfb, + 0x06, 0x0c, 0x78, 0x9d, 0xac, 0x15, 0x0d, 0x58, 0x3b, 0x13, 0x7f, 0x8c, 0xf0, 0xa3, 0x4d, 0xca, + 0x56, 0xdb, 0xcc, 0xdf, 0x2b, 0x8d, 0x54, 0x56, 0x61, 0x82, 0x7a, 0x1d, 0x50, 0x9f, 0x27, 0xcf, + 0x49, 0x54, 0x17, 0x3a, 0x69, 0xd5, 0x24, 0x26, 0x0f, 0x10, 0x3e, 0x15, 0x27, 0x50, 0x96, 0x21, + 0x22, 0x8b, 0x55, 0x98, 0xe9, 0xe4, 0x3c, 0xab, 0x47, 0x85, 0xf4, 0x7c, 0x0a, 0x70, 0x57, 0x48, + 0xa3, 0x14, 0x37, 0xbf, 0x56, 0xde, 0x46, 0x78, 0x2c, 0xee, 0x60, 0xd0, 0xdd, 0x07, 0xbe, 0x9e, + 0x2f, 0x02, 0x6a, 0x6a, 0x45, 0xa4, 0x18, 0x75, 0x4b, 0xfa, 0xaf, 0xa2, 0xe8, 0xa4, 0xe3, 0x67, + 0xb4, 0xa8, 0xab, 0xe2, 0xd6, 0x07, 0x98, 0x7b, 0xe4, 0xe9, 0x23, 0x66, 0xe4, 0x96, 0x43, 0x96, + 0x6b, 0x35, 0x25, 0xef, 0x22, 0x3c, 0xfa, 0x4a, 0xdf, 0x33, 0x5e, 0xdc, 0x5c, 0x6b, 0xb0, 0xb8, + 0xa5, 0x50, 0x2c, 0xee, 0x5b, 0xe0, 0xd9, 0x86, 0xf5, 0x50, 0xd6, 0x5a, 0x5c, 0x0c, 0xbe, 0x84, + 0xf0, 0x08, 0x2f, 0x20, 0xeb, 0xf2, 0x88, 0x47, 0x72, 0x3b, 0x5d, 0x62, 0x52, 0x6b, 0xd2, 0x6c, + 0xa5, 0x4e, 0x50, 0x4f, 0x01, 0xf5, 0xb8, 0x4d, 0x24, 0x75, 0x72, 0x9c, 0x84, 0x82, 0xf4, 0x0d, + 0x84, 0xc7, 0x36, 0x29, 0xf7, 0x64, 0x40, 0x31, 0xa7, 0xed, 0x5d, 0x6a, 0x6b, 0x73, 0x5c, 0x00, + 0x8e, 0xf3, 0xf6, 0x99, 0x3c, 0x87, 0x13, 0x8a, 0x4e, 0x63, 0xa0, 0xaf, 0x23, 0x3c, 0xba, 0x49, + 0xdb, 0xc1, 0x1e, 0x0d, 0x07, 0x3c, 0xb3, 0x25, 0x3c, 0x20, 0xad, 0x8d, 0x33, 0x03, 0x38, 0xe7, + 0x6c, 0xab, 0x10, 0x07, 0xfa, 0x8c, 0x69, 0xbe, 0x83, 0xf0, 0xb1, 0x26, 0x65, 0x03, 0x92, 0x45, + 0xdd, 0x9e, 0x96, 0x48, 0x52, 0x95, 0xfb, 0xb4, 0x96, 0xc6, 0xbe, 0x0a, 0xe3, 0x3f, 0x4d, 0x9e, + 0x2c, 0x18, 0xdf, 0xa0, 0x08, 0xbe, 0x8d, 0xf0, 0x08, 0x4f, 0x4f, 0x93, 0xd4, 0x51, 0x33, 0x7e, + 0xb6, 0x52, 0x27, 0x62, 0xf4, 0x3c, 0x30, 0x5e, 0xb1, 0x8e, 0xc6, 0x18, 0x87, 0xef, 0x0f, 0x08, + 0x8f, 0xa6, 0xc3, 0xb7, 0xe6, 0x32, 0x97, 0x38, 0x26, 0x21, 0x8c, 0x95, 0x12, 0x78, 0xc5, 0xbc, + 0x81, 0x20, 0x7f, 0x01, 0xc8, 0x9f, 0x25, 0x57, 0x24, 0xb9, 0xe7, 0x32, 0xb7, 0x66, 0x88, 0x5f, + 0x47, 0xf8, 0x44, 0x5c, 0xd1, 0x92, 0x41, 0x0c, 0x0b, 0xe4, 0x94, 0x36, 0xbc, 0x50, 0x1f, 0x2f, + 0x01, 0xda, 0x32, 0x59, 0xac, 0x11, 0x54, 0xf2, 0x0e, 0xc2, 0xe4, 0x36, 0x0d, 0xbb, 0x7e, 0x4f, + 0x99, 0xf1, 0x79, 0xed, 0x50, 0x89, 0x58, 0x52, 0x2d, 0x98, 0x48, 0xd5, 0x79, 0x5f, 0x38, 0xfa, + 0xbc, 0xff, 0x9d, 0xcf, 0xfb, 0xcd, 0xc0, 0xa3, 0x25, 0x8b, 0x58, 0x31, 0xa7, 0x96, 0xcd, 0x54, + 0xa9, 0xd0, 0xde, 0x03, 0xbc, 0x3e, 0xe9, 0x49, 0x3c, 0xf5, 0x51, 0x9a, 0x33, 0x26, 0xff, 0xb6, + 0xb2, 0xc0, 0x8a, 0x25, 0x4d, 0xaf, 0x18, 0x06, 0x15, 0x1b, 0x7a, 0xf7, 0xbd, 0x43, 0xf2, 0x4f, + 0x84, 0x49, 0x3c, 0x85, 0x0a, 0x4d, 0x94, 0xaf, 0x95, 0x8a, 0x3d, 0x9d, 0x19, 0x8f, 0x55, 0x2a, + 0xed, 0x03, 0xf0, 0x6d, 0x97, 0x44, 0x5a, 0xdf, 0x92, 0xb3, 0xba, 0xc6, 0xc3, 0x62, 0x7b, 0xe2, + 0x67, 0xb1, 0x99, 0x67, 0xfc, 0x4f, 0x3f, 0x84, 0x4f, 0xe7, 0x1d, 0xbc, 0x1e, 0x84, 0xf0, 0x18, + 0xee, 0x94, 0xd2, 0x0b, 0x55, 0x4d, 0x77, 0x7f, 0x3b, 0x0c, 0xfe, 0xfe, 0x7a, 0x98, 0xfc, 0x62, + 0x58, 0x7a, 0xdc, 0xbe, 0xeb, 0x77, 0xbc, 0x90, 0x66, 0x5f, 0x7e, 0x44, 0xce, 0x81, 0xfa, 0x43, + 0x4b, 0xce, 0x8d, 0xf2, 0x8b, 0x26, 0x2a, 0xb5, 0x9b, 0x26, 0x01, 0xab, 0xdd, 0x52, 0x64, 0x8e, + 0x49, 0x3b, 0x99, 0x5a, 0x45, 0x6a, 0xf1, 0xe0, 0x5f, 0xea, 0x83, 0xd4, 0x94, 0xc0, 0x4a, 0x89, + 0x96, 0x4a, 0x0a, 0xe4, 0xc1, 0xa4, 0x48, 0x13, 0x52, 0x16, 0xee, 0xb7, 0x5c, 0xc6, 0x68, 0xb7, + 0xcf, 0x0e, 0xc9, 0xbf, 0x11, 0x3e, 0x99, 0x5d, 0xdd, 0x50, 0xd9, 0x17, 0xab, 0x56, 0x78, 0xba, + 0xaa, 0x2f, 0x99, 0x89, 0x45, 0x4d, 0xca, 0x2d, 0x0c, 0xa8, 0xe8, 0xff, 0xa3, 0x95, 0xff, 0x05, + 0x3c, 0xb2, 0x49, 0x77, 0xfc, 0x88, 0xd1, 0xf0, 0x65, 0xde, 0x61, 0x7e, 0xb3, 0x15, 0x06, 0xa9, + 0xd3, 0x6e, 0xb6, 0x39, 0x9d, 0x70, 0xf0, 0x0c, 0x38, 0x78, 0xca, 0x1e, 0x95, 0x0e, 0x0a, 0x74, + 0x38, 0xa5, 0xbd, 0x8a, 0x8f, 0xf3, 0xbd, 0x59, 0x0e, 0x3f, 0xae, 0xe9, 0xd6, 0x9a, 0xd1, 0x18, + 0x32, 0x5b, 0xfb, 0x79, 0x18, 0xcd, 0xb2, 0x4e, 0x65, 0x47, 0x8b, 0x1d, 0x87, 0x12, 0x7e, 0x07, + 0x1f, 0x8b, 0x97, 0xa8, 0x68, 0x1e, 0x11, 0x5b, 0xd3, 0x71, 0xe9, 0xdb, 0x25, 0xd9, 0x5a, 0xbe, + 0xe9, 0x23, 0x39, 0xef, 0xc8, 0x1b, 0x08, 0x3f, 0xaa, 0xbe, 0x14, 0x5a, 0xdf, 0xa3, 0x3d, 0x46, + 0x96, 0x2b, 0x37, 0x7d, 0xd0, 0xc9, 0xa1, 0x1b, 0xa6, 0x72, 0x11, 0x80, 0x69, 0x00, 0x9a, 0xb2, + 0x27, 0x92, 0x3d, 0x2e, 0x36, 0x47, 0xea, 0x0b, 0xa3, 0xd7, 0x93, 0x03, 0x3a, 0xe4, 0x26, 0x70, + 0xcd, 0x97, 0xa6, 0xad, 0xc2, 0xb4, 0x60, 0x22, 0xd5, 0xbd, 0x39, 0x10, 0x3c, 0x71, 0x0e, 0x66, + 0x58, 0xe2, 0x3a, 0xab, 0x61, 0x01, 0x93, 0x19, 0x4b, 0x91, 0xb4, 0x82, 0x25, 0x79, 0x3b, 0xfb, + 0xc5, 0x61, 0xd8, 0xde, 0x95, 0x2e, 0xf2, 0xdb, 0xbb, 0x62, 0x2e, 0xdb, 0xde, 0x15, 0xa1, 0xfd, + 0x93, 0x21, 0x18, 0xfe, 0xc1, 0x10, 0x79, 0x63, 0x48, 0x79, 0x0b, 0x9a, 0x59, 0xe7, 0xc6, 0xb5, + 0xbf, 0x46, 0xb1, 0x37, 0xae, 0xee, 0x15, 0xe5, 0xbc, 0xb0, 0x7e, 0x17, 0x15, 0xec, 0x7c, 0x85, + 0x2e, 0x2c, 0xc9, 0xf9, 0x1a, 0xfc, 0xbd, 0x21, 0x7e, 0x18, 0x51, 0x62, 0x57, 0x70, 0x18, 0x51, + 0xec, 0xa5, 0xbb, 0x73, 0x4e, 0x69, 0xff, 0x0e, 0xc1, 0x4c, 0xbc, 0x83, 0xc8, 0x2f, 0x91, 0x76, + 0x26, 0x8c, 0xa7, 0xc1, 0x74, 0x0e, 0xcc, 0x26, 0x40, 0x1f, 0x7d, 0xf2, 0x60, 0x18, 0xb6, 0x27, + 0xc5, 0x9f, 0xe2, 0xed, 0x29, 0x9b, 0xa1, 0xa5, 0xdb, 0x53, 0xb1, 0x58, 0x2c, 0x99, 0x9f, 0xf3, + 0xa4, 0x7d, 0x6b, 0x88, 0xfc, 0x70, 0x48, 0xd9, 0xa1, 0xfe, 0x9f, 0xb9, 0xd9, 0xcc, 0xfd, 0x17, + 0xc2, 0x53, 0xca, 0x66, 0xb6, 0x06, 0x5d, 0xae, 0x26, 0xdf, 0xed, 0xc8, 0x65, 0xcd, 0x36, 0x92, + 0x15, 0xaa, 0x8f, 0xb5, 0x4f, 0xd6, 0x6c, 0x25, 0x66, 0xee, 0x15, 0x98, 0xb8, 0x5b, 0xd6, 0x27, + 0x32, 0x3b, 0x53, 0xfe, 0xe3, 0xa6, 0x73, 0xa0, 0x7e, 0x5b, 0x14, 0xc1, 0x49, 0xfd, 0x28, 0x82, + 0x13, 0x97, 0xc8, 0x3f, 0x22, 0x6c, 0x35, 0x29, 0xd3, 0xb9, 0xf8, 0x84, 0x21, 0x6c, 0xaa, 0x6c, + 0x5e, 0xac, 0xd3, 0x44, 0x38, 0xf7, 0x2c, 0x38, 0xf7, 0xd4, 0xe0, 0x1d, 0x7b, 0x89, 0x73, 0xf9, + 0x77, 0x84, 0x7f, 0x43, 0x78, 0x6a, 0x8d, 0x76, 0xe8, 0x7f, 0x3f, 0x53, 0xbc, 0x97, 0xba, 0x33, + 0x25, 0x5b, 0x09, 0x67, 0xae, 0x81, 0x33, 0xcf, 0x2c, 0x1c, 0xc9, 0x99, 0x78, 0x4e, 0xde, 0x45, + 0x78, 0x5c, 0xc9, 0xbc, 0x94, 0x27, 0x0d, 0x0d, 0x93, 0x2e, 0xdb, 0x1c, 0x63, 0xbd, 0xa0, 0xbf, + 0x02, 0xf4, 0x97, 0x2d, 0x27, 0x4b, 0x5f, 0x91, 0x60, 0x31, 0xf8, 0x9b, 0xfc, 0xc0, 0x9d, 0xa7, + 0x5e, 0xac, 0xa4, 0x48, 0x25, 0xd0, 0x92, 0x99, 0x58, 0xf0, 0x2e, 0x01, 0xef, 0x05, 0xf2, 0x78, + 0x19, 0xaf, 0x84, 0x24, 0xbf, 0x42, 0x78, 0x5c, 0x49, 0x95, 0x5a, 0xa1, 0x55, 0xd3, 0xc3, 0x31, + 0xd6, 0x0b, 0x54, 0xf1, 0x3d, 0x6b, 0xc1, 0x08, 0x35, 0x8e, 0xe7, 0xfb, 0x08, 0x4f, 0xf0, 0xe9, + 0x91, 0xa7, 0xc4, 0x14, 0xae, 0xf6, 0xf5, 0x94, 0x2e, 0x15, 0x56, 0xcc, 0x1b, 0x08, 0x60, 0x0a, + 0xc0, 0x2d, 0x6b, 0x2b, 0xf7, 0x01, 0xee, 0x08, 0xd5, 0x46, 0xf9, 0x4d, 0x76, 0x04, 0x6e, 0xfe, + 0x1e, 0xe1, 0x53, 0xa9, 0xef, 0x9d, 0x29, 0x1f, 0x97, 0xaa, 0x91, 0x53, 0x89, 0xb3, 0x6c, 0xa8, + 0x16, 0xde, 0xad, 0x82, 0x77, 0x1f, 0x27, 0xcf, 0x94, 0x7a, 0x97, 0x5b, 0xa1, 0x83, 0x77, 0x13, + 0x87, 0xe4, 0x4f, 0x08, 0x4f, 0xf0, 0x49, 0x3e, 0xda, 0x04, 0xa9, 0x09, 0xb5, 0x62, 0xde, 0x40, + 0xb8, 0xb0, 0x06, 0x2e, 0x3c, 0xb7, 0x70, 0x74, 0x17, 0xe2, 0xf8, 0xff, 0x08, 0xe1, 0xf1, 0xf8, + 0x20, 0xf5, 0x92, 0xbc, 0x13, 0x52, 0xb6, 0x28, 0x34, 0x42, 0xed, 0xa2, 0xd0, 0xea, 0x85, 0x0b, + 0x8f, 0x83, 0x0b, 0x67, 0xc9, 0xa4, 0x74, 0x61, 0x70, 0x33, 0x65, 0xe0, 0x43, 0x5c, 0x59, 0xe0, + 0x6b, 0xd5, 0xe0, 0xe3, 0x92, 0x4f, 0xa3, 0xfc, 0xc3, 0x6d, 0xea, 0xdb, 0x53, 0xfa, 0x0c, 0x79, + 0xae, 0x42, 0x97, 0x4f, 0x85, 0xf8, 0xa8, 0xe0, 0xf1, 0xab, 0x26, 0x7e, 0x1c, 0x42, 0x79, 0x49, + 0xa6, 0xc5, 0xf6, 0xfb, 0xf1, 0x19, 0x22, 0xbf, 0x09, 0xfd, 0x0c, 0xe1, 0x13, 0x4d, 0x9a, 0x02, + 0xdc, 0xcf, 0x5f, 0x1a, 0x48, 0x19, 0x53, 0x69, 0x7b, 0xa6, 0x44, 0x66, 0x7f, 0x0a, 0xc8, 0x3e, + 0x49, 0x36, 0x4c, 0xc9, 0xaa, 0x5f, 0x18, 0xbf, 0x87, 0xf0, 0x18, 0x5f, 0xe8, 0x69, 0xd8, 0xb9, + 0x12, 0x0a, 0xb5, 0x8e, 0xcc, 0x1b, 0x28, 0xc5, 0xe4, 0xde, 0x06, 0xfa, 0x9b, 0xd6, 0xc3, 0xa3, + 0x8f, 0xf3, 0xb5, 0x83, 0x71, 0x93, 0xb2, 0xcf, 0xf0, 0xb3, 0x5b, 0xfe, 0x8e, 0xcf, 0xc0, 0xa6, + 0xbd, 0xe3, 0x93, 0x96, 0x08, 0xd4, 0x71, 0x40, 0x1d, 0x23, 0x23, 0x12, 0x55, 0x9c, 0x0d, 0xc9, + 0x9f, 0xf9, 0xa6, 0xb6, 0x36, 0xb8, 0x82, 0x24, 0x22, 0x56, 0xfd, 0x45, 0x3c, 0x87, 0x96, 0xeb, + 0xc4, 0xde, 0x81, 0x61, 0x5d, 0xd2, 0x4a, 0x4e, 0xe3, 0xd9, 0xab, 0x4e, 0x10, 0x27, 0x38, 0x9e, + 0xd6, 0x0c, 0x95, 0xfa, 0xcd, 0xfc, 0x9b, 0x43, 0x7c, 0x91, 0x67, 0x11, 0xfc, 0xa2, 0x32, 0x9b, + 0xe3, 0x4c, 0xaf, 0xa6, 0x19, 0x23, 0xb5, 0xfd, 0x16, 0x7f, 0x2a, 0xfb, 0x3e, 0x22, 0xb7, 0xca, + 0x7d, 0xab, 0xed, 0xd8, 0x56, 0x93, 0xac, 0x3f, 0x94, 0x2e, 0xc9, 0x5f, 0xf8, 0x45, 0x82, 0xe4, + 0x71, 0xe9, 0x25, 0xca, 0x42, 0xbf, 0x1d, 0x91, 0x8b, 0x26, 0x5f, 0x72, 0x84, 0x58, 0x86, 0xe5, + 0x52, 0xad, 0x36, 0x22, 0xeb, 0x72, 0x77, 0xbf, 0xba, 0x5c, 0x50, 0xef, 0x53, 0xc6, 0x0b, 0xd7, + 0xb6, 0xae, 0xee, 0xf8, 0xec, 0xee, 0xee, 0x76, 0xa3, 0x1d, 0x74, 0x1d, 0xe0, 0x08, 0xc2, 0x1d, + 0xfe, 0x87, 0x93, 0xdc, 0xa5, 0xdb, 0xa1, 0x3d, 0xa7, 0xbf, 0xbd, 0xbc, 0x13, 0x38, 0xd9, 0x3b, + 0x99, 0xdb, 0x1f, 0x86, 0xeb, 0x74, 0x97, 0xfe, 0x13, 0x00, 0x00, 0xff, 0xff, 0x69, 0x42, 0xd8, + 0x48, 0xae, 0x29, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/flyteidl/gen/pb-go/flyteidl/service/admin.pb.gw.go b/flyteidl/gen/pb-go/flyteidl/service/admin.pb.gw.go index fa3a3110d3..ea8c99459c 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/admin.pb.gw.go +++ b/flyteidl/gen/pb-go/flyteidl/service/admin.pb.gw.go @@ -13,8 +13,8 @@ import ( "io" "net/http" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/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" diff --git a/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json b/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json index aed368ddfc..9de4c01d14 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json @@ -4263,11 +4263,11 @@ }, "default_inputs": { "$ref": "#/definitions/coreParameterMap", - "description": "Input values to be passed for the execution.\nThese can be overriden when an execution is created with this launch plan." + "description": "Input values to be passed for the execution.\nThese can be overridden when an execution is created with this launch plan." }, "fixed_inputs": { "$ref": "#/definitions/coreLiteralMap", - "description": "Fixed, non-overridable inputs for the Launch Plan.\nThese can not be overriden when an execution is created with this launch plan." + "description": "Fixed, non-overridable inputs for the Launch Plan.\nThese can not be overridden when an execution is created with this launch plan." }, "role": { "type": "string", diff --git a/flyteidl/gen/pb-go/flyteidl/service/agent.pb.go b/flyteidl/gen/pb-go/flyteidl/service/agent.pb.go index 13122a9012..915d54d449 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/agent.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/service/agent.pb.go @@ -6,12 +6,13 @@ package service import ( context "context" fmt "fmt" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + math "math" + + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" proto "github.com/golang/protobuf/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -28,7 +29,7 @@ const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package func init() { proto.RegisterFile("flyteidl/service/agent.proto", fileDescriptor_f7d1dfd1fb77d2ef) } var fileDescriptor_f7d1dfd1fb77d2ef = []byte{ - // 212 bytes of a gzipped FileDescriptorProto + // 214 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x49, 0xcb, 0xa9, 0x2c, 0x49, 0xcd, 0x4c, 0xc9, 0xd1, 0x2f, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x4f, 0x4c, 0x4f, 0xcd, 0x2b, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x80, 0xc9, 0xea, 0x41, 0x65, 0xa5, @@ -38,11 +39,11 @@ var fileDescriptor_f7d1dfd1fb77d2ef = []byte{ 0x43, 0xc8, 0x05, 0xa5, 0x16, 0x96, 0xa6, 0x16, 0x97, 0x48, 0x29, 0xe1, 0x53, 0x52, 0x5c, 0x90, 0x9f, 0x57, 0x9c, 0xaa, 0xc4, 0x20, 0xe4, 0xc3, 0xc5, 0xee, 0x9e, 0x5a, 0x02, 0x36, 0x53, 0x0e, 0x5d, 0x03, 0x54, 0x02, 0x66, 0xa0, 0x3c, 0x4e, 0x79, 0xb8, 0x69, 0xa1, 0x5c, 0x5c, 0x2e, 0xa9, - 0x39, 0xa9, 0xb8, 0x1c, 0x89, 0x90, 0xc3, 0xe9, 0x48, 0x64, 0x25, 0x30, 0x63, 0x9d, 0x2c, 0xa3, - 0xcc, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xc1, 0x3a, 0xf2, 0x8b, - 0xd2, 0xf5, 0xe1, 0x61, 0x98, 0x9e, 0x9a, 0xa7, 0x5f, 0x90, 0xa4, 0x9b, 0x9e, 0xaf, 0x8f, 0x1e, - 0x0d, 0x49, 0x6c, 0xe0, 0x30, 0x35, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x38, 0xbf, 0x55, 0xcc, - 0xa1, 0x01, 0x00, 0x00, + 0x39, 0xa9, 0xb8, 0x1c, 0x89, 0x90, 0xc3, 0xe9, 0x48, 0x64, 0x25, 0x30, 0x63, 0x9d, 0xec, 0xa3, + 0x6c, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xc1, 0x3a, 0xf2, 0x8b, + 0xd2, 0x21, 0x0c, 0x7d, 0x78, 0x48, 0xa6, 0xa7, 0xe6, 0xe9, 0x17, 0x24, 0xe9, 0xa6, 0xe7, 0xeb, + 0xa3, 0x47, 0x46, 0x12, 0x1b, 0x38, 0x64, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x92, 0xbb, + 0xf6, 0x3c, 0xa7, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/flyteidl/gen/pb-go/flyteidl/service/auth.pb.go b/flyteidl/gen/pb-go/flyteidl/service/auth.pb.go index 6dc8211ac9..9c47eed1a3 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/auth.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/service/auth.pb.go @@ -6,12 +6,13 @@ package service import ( context "context" fmt "fmt" + math "math" + proto "github.com/golang/protobuf/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -313,47 +314,47 @@ func init() { func init() { proto.RegisterFile("flyteidl/service/auth.proto", fileDescriptor_6eee4a0c193ab842) } var fileDescriptor_6eee4a0c193ab842 = []byte{ - // 633 bytes of a gzipped FileDescriptorProto + // 636 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xcd, 0x4e, 0x14, 0x41, 0x10, 0xce, 0x2e, 0xb0, 0xec, 0x96, 0x7f, 0xd8, 0x64, 0x97, 0x61, 0x11, 0x81, 0x4d, 0x08, 0x70, - 0xd8, 0x6d, 0xc5, 0x18, 0x35, 0xf1, 0x02, 0xc4, 0xa0, 0x31, 0x44, 0x02, 0x7a, 0xf1, 0xd2, 0x99, - 0x9d, 0x29, 0x66, 0xdb, 0x1d, 0xba, 0xc7, 0x9e, 0x1e, 0xc8, 0x7a, 0xf4, 0xe0, 0x0b, 0x78, 0xf0, - 0xe0, 0xc9, 0x07, 0xf2, 0xe4, 0x2b, 0xf8, 0x20, 0x66, 0xba, 0x7b, 0x80, 0x59, 0x40, 0x3d, 0x76, - 0x7f, 0x5f, 0x75, 0x55, 0x7d, 0xf5, 0x55, 0xc3, 0xc2, 0x51, 0x3c, 0xd2, 0xc8, 0xc3, 0x98, 0xa6, - 0xa8, 0x4e, 0x78, 0x80, 0xd4, 0xcf, 0xf4, 0xa0, 0x97, 0x28, 0xa9, 0x25, 0x99, 0x29, 0xc0, 0x9e, - 0x03, 0xdb, 0xf7, 0x22, 0x29, 0xa3, 0x18, 0xa9, 0x9f, 0x70, 0xea, 0x0b, 0x21, 0xb5, 0xaf, 0xb9, - 0x14, 0xa9, 0xe5, 0x77, 0xe6, 0xa0, 0xf9, 0x66, 0x2b, 0xd3, 0x83, 0xcd, 0x3d, 0xd4, 0x7e, 0xe8, - 0x6b, 0xff, 0x00, 0x3f, 0x66, 0x98, 0xea, 0xce, 0x8f, 0x49, 0x68, 0x8d, 0x23, 0x69, 0x22, 0x45, - 0x8a, 0xa4, 0x05, 0x35, 0x9e, 0xa6, 0x19, 0x2a, 0xaf, 0xb2, 0x5c, 0x59, 0x6f, 0x1c, 0xb8, 0x13, - 0x79, 0x0c, 0xad, 0xbc, 0x12, 0xa9, 0xf8, 0x27, 0x93, 0x83, 0xa1, 0x08, 0x13, 0xc9, 0x85, 0xf6, - 0xaa, 0x86, 0xd7, 0x2c, 0xa1, 0x2f, 0x1c, 0x48, 0x56, 0xe1, 0xb6, 0x96, 0x43, 0xbc, 0x40, 0x9f, - 0x30, 0xf4, 0x5b, 0xe6, 0xf6, 0x8c, 0xf6, 0x14, 0x3c, 0xe5, 0x2a, 0x60, 0x7a, 0x94, 0x60, 0xca, - 0xd2, 0x2c, 0x49, 0xa4, 0xd2, 0x18, 0x7a, 0x93, 0xcb, 0x13, 0xeb, 0x8d, 0x83, 0x56, 0x81, 0xbf, - 0xcd, 0xe1, 0xc3, 0x02, 0x25, 0x1b, 0x30, 0x93, 0x06, 0xb2, 0x1c, 0x31, 0x65, 0x22, 0xee, 0xd8, - 0xfb, 0x73, 0xea, 0x3e, 0xac, 0x96, 0x6b, 0x61, 0x79, 0xcd, 0xec, 0x18, 0xf5, 0x40, 0x86, 0x17, - 0xe3, 0x6b, 0x26, 0x7e, 0xa5, 0x54, 0x62, 0xae, 0xd6, 0x9e, 0x65, 0x9e, 0xbf, 0x38, 0x0f, 0xf5, - 0x0f, 0xa7, 0xc3, 0x94, 0x65, 0x8a, 0x7b, 0xd3, 0xa6, 0xaf, 0xe9, 0xfc, 0xfc, 0x4e, 0x71, 0xb2, - 0x0b, 0xcb, 0x81, 0x0c, 0x91, 0x05, 0x03, 0x3f, 0x8e, 0x51, 0x44, 0x78, 0x45, 0x9e, 0xba, 0xc9, - 0xb3, 0x98, 0xf3, 0x76, 0x0a, 0xda, 0xa5, 0x1c, 0x9b, 0xd0, 0x8c, 0x94, 0x2f, 0xf4, 0x25, 0x5d, - 0x1a, 0x26, 0x7a, 0xd6, 0x80, 0x63, 0xa2, 0x6c, 0xc3, 0x62, 0x88, 0xb9, 0x41, 0xd8, 0x35, 0x33, - 0x03, 0x53, 0xec, 0x82, 0x25, 0x6d, 0x5d, 0x35, 0xb9, 0xce, 0x12, 0x2c, 0xee, 0x67, 0xfd, 0x98, - 0x07, 0x3b, 0x31, 0x47, 0xdb, 0xff, 0x8e, 0x14, 0x47, 0x3c, 0x2a, 0x4c, 0xf4, 0xa5, 0x0a, 0xf7, - 0xaf, 0x63, 0x38, 0x33, 0x2d, 0x40, 0x23, 0x30, 0x18, 0xe3, 0xa1, 0xf3, 0x53, 0xdd, 0x5e, 0xbc, - 0x0a, 0xc9, 0x0a, 0xdc, 0x54, 0x18, 0x72, 0x85, 0x81, 0x36, 0x02, 0x5a, 0x1f, 0xdd, 0x28, 0xee, - 0x72, 0x11, 0x5b, 0x50, 0xb3, 0x43, 0xf4, 0x26, 0x4c, 0xb3, 0xee, 0x44, 0x9e, 0x43, 0xbb, 0xdc, - 0xd8, 0xb1, 0xb3, 0x31, 0x1b, 0xe2, 0xc8, 0x9b, 0x34, 0x0f, 0x79, 0x25, 0x46, 0xe1, 0xf3, 0xd7, - 0x38, 0xca, 0x15, 0x75, 0xfb, 0xc3, 0x06, 0x5a, 0x27, 0xe7, 0xaa, 0x4c, 0x99, 0xc0, 0x59, 0x07, - 0xbe, 0xd4, 0x3a, 0x39, 0x33, 0x68, 0x1b, 0xea, 0x7e, 0x16, 0x72, 0x14, 0x01, 0x7a, 0x35, 0xdb, - 0x48, 0x71, 0xde, 0xfc, 0x59, 0x85, 0x59, 0x67, 0x0f, 0x93, 0xe3, 0xd0, 0xc6, 0x93, 0x6f, 0x15, - 0xb8, 0xbb, 0x8b, 0xba, 0xbc, 0x68, 0x64, 0xad, 0x37, 0xbe, 0xc5, 0xbd, 0x2b, 0x97, 0xb4, 0xbd, - 0xfe, 0x6f, 0xa2, 0x95, 0xb9, 0x43, 0x3f, 0xff, 0xfa, 0xfd, 0xb5, 0xba, 0x41, 0xd6, 0x68, 0xef, - 0x14, 0xe3, 0xb8, 0x3b, 0x14, 0xf2, 0x54, 0x50, 0x99, 0x0b, 0xd0, 0x2d, 0xa9, 0xd0, 0xcd, 0x1f, - 0x42, 0x45, 0xbe, 0x57, 0xa0, 0xb9, 0x8b, 0xfa, 0xe2, 0xf4, 0xec, 0xe4, 0x08, 0xbd, 0x9c, 0xf4, - 0xaf, 0x2e, 0x68, 0x3f, 0xf8, 0xff, 0x00, 0x57, 0xed, 0x92, 0xa9, 0x76, 0x9e, 0xcc, 0xd1, 0xc0, - 0x00, 0xf4, 0xe4, 0x21, 0x35, 0x6f, 0x30, 0x6b, 0x8d, 0xed, 0x67, 0xef, 0x9f, 0x44, 0x5c, 0x0f, - 0xb2, 0x7e, 0x2f, 0x90, 0xc7, 0x16, 0x92, 0x2a, 0xa2, 0x67, 0x3f, 0x63, 0x84, 0x82, 0x26, 0xfd, - 0x6e, 0x24, 0xe9, 0xf8, 0x67, 0xd9, 0xaf, 0x99, 0x8f, 0xef, 0xd1, 0x9f, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x39, 0xb1, 0x8a, 0x3d, 0x47, 0x05, 0x00, 0x00, + 0xd8, 0x6d, 0xc5, 0x98, 0x78, 0xd0, 0x18, 0x20, 0x06, 0x8d, 0x21, 0x12, 0xd0, 0x8b, 0x97, 0xce, + 0xec, 0x4c, 0x31, 0xdb, 0xee, 0xd0, 0x3d, 0xf6, 0xf4, 0x40, 0xd6, 0xa3, 0x07, 0x5f, 0xc0, 0x83, + 0x07, 0x4f, 0x3e, 0x90, 0x27, 0x5f, 0xc1, 0x07, 0x31, 0xd3, 0xdd, 0x03, 0xcc, 0x02, 0xea, 0x6d, + 0xba, 0xbf, 0xaf, 0xba, 0xaa, 0xbe, 0xfa, 0x6a, 0x60, 0xe1, 0x28, 0x1e, 0x69, 0xe4, 0x61, 0x4c, + 0x53, 0x54, 0x27, 0x3c, 0x40, 0xea, 0x67, 0x7a, 0xd0, 0x4b, 0x94, 0xd4, 0x92, 0xcc, 0x14, 0x60, + 0xcf, 0x81, 0xed, 0x7b, 0x91, 0x94, 0x51, 0x8c, 0xd4, 0x4f, 0x38, 0xf5, 0x85, 0x90, 0xda, 0xd7, + 0x5c, 0x8a, 0xd4, 0xf2, 0x3b, 0x73, 0xd0, 0x7c, 0xb3, 0x95, 0xe9, 0xc1, 0xe6, 0x1e, 0x6a, 0x3f, + 0xf4, 0xb5, 0x7f, 0x80, 0x1f, 0x33, 0x4c, 0x75, 0xe7, 0xc7, 0x24, 0xb4, 0xc6, 0x91, 0x34, 0x91, + 0x22, 0x45, 0xd2, 0x82, 0x1a, 0x4f, 0xd3, 0x0c, 0x95, 0x57, 0x59, 0xae, 0xac, 0x37, 0x0e, 0xdc, + 0x89, 0x3c, 0x86, 0x56, 0x5e, 0x89, 0x54, 0xfc, 0x93, 0xc9, 0xc1, 0x50, 0x84, 0x89, 0xe4, 0x42, + 0x7b, 0x55, 0xc3, 0x6b, 0x96, 0xd0, 0x17, 0x0e, 0x24, 0xab, 0x70, 0x5b, 0xcb, 0x21, 0x5e, 0xa0, + 0x4f, 0x18, 0xfa, 0x2d, 0x73, 0x7b, 0x46, 0x7b, 0x02, 0x9e, 0x72, 0x15, 0x30, 0x3d, 0x4a, 0x30, + 0x65, 0x69, 0x96, 0x24, 0x52, 0x69, 0x0c, 0xbd, 0xc9, 0xe5, 0x89, 0xf5, 0xc6, 0x41, 0xab, 0xc0, + 0xdf, 0xe6, 0xf0, 0x61, 0x81, 0x92, 0x0d, 0x98, 0x49, 0x03, 0x59, 0x8e, 0x98, 0x32, 0x11, 0x77, + 0xec, 0xfd, 0x39, 0x75, 0x1f, 0x56, 0xcb, 0xb5, 0xb0, 0xbc, 0x66, 0x76, 0x8c, 0x7a, 0x20, 0xc3, + 0x8b, 0xf1, 0x35, 0x13, 0xbf, 0x52, 0x2a, 0x31, 0x57, 0x6b, 0xcf, 0x32, 0xcf, 0x5f, 0x9c, 0x87, + 0xfa, 0x87, 0xd3, 0x61, 0xca, 0x32, 0xc5, 0xbd, 0x69, 0xd3, 0xd7, 0x74, 0x7e, 0x7e, 0xa7, 0x38, + 0xd9, 0x85, 0xe5, 0x40, 0x86, 0xc8, 0x82, 0x81, 0x1f, 0xc7, 0x28, 0x22, 0xbc, 0x22, 0x4f, 0xdd, + 0xe4, 0x59, 0xcc, 0x79, 0x3b, 0x05, 0xed, 0x52, 0x8e, 0x4d, 0x68, 0x46, 0xca, 0x17, 0xfa, 0x92, + 0x2e, 0x0d, 0x13, 0x3d, 0x6b, 0xc0, 0x31, 0x51, 0xb6, 0x61, 0x31, 0xc4, 0xdc, 0x20, 0xec, 0x9a, + 0x99, 0x81, 0x29, 0x76, 0xc1, 0x92, 0xb6, 0xae, 0x9a, 0x5c, 0x67, 0x09, 0x16, 0xf7, 0xb3, 0x7e, + 0xcc, 0x83, 0x9d, 0x98, 0xa3, 0xed, 0x7f, 0x47, 0x8a, 0x23, 0x1e, 0x15, 0x26, 0xfa, 0x52, 0x85, + 0xfb, 0xd7, 0x31, 0x9c, 0x99, 0x16, 0xa0, 0x11, 0x18, 0x8c, 0xf1, 0xd0, 0xf9, 0xa9, 0x6e, 0x2f, + 0x5e, 0x85, 0x64, 0x05, 0x6e, 0x2a, 0x0c, 0xb9, 0xc2, 0x40, 0x1b, 0x01, 0xad, 0x8f, 0x6e, 0x14, + 0x77, 0xb9, 0x88, 0x2d, 0xa8, 0xd9, 0x21, 0x7a, 0x13, 0xa6, 0x59, 0x77, 0x22, 0x4f, 0xa1, 0x5d, + 0x6e, 0xec, 0xd8, 0xd9, 0x98, 0x0d, 0x71, 0xe4, 0x4d, 0x9a, 0x87, 0xbc, 0x12, 0xa3, 0xf0, 0xf9, + 0x6b, 0x1c, 0xe5, 0x8a, 0xba, 0xfd, 0x61, 0x03, 0xad, 0x93, 0x73, 0x55, 0xa6, 0x4c, 0xe0, 0xac, + 0x03, 0x5f, 0x6a, 0x9d, 0x9c, 0x19, 0xb4, 0x0d, 0x75, 0x3f, 0x0b, 0x39, 0x8a, 0x00, 0xbd, 0x9a, + 0x6d, 0xa4, 0x38, 0x6f, 0xfe, 0xac, 0xc2, 0xac, 0xb3, 0x87, 0xc9, 0x71, 0x68, 0xe3, 0xc9, 0xb7, + 0x0a, 0xdc, 0xdd, 0x45, 0x5d, 0x5e, 0x34, 0xb2, 0xd6, 0x1b, 0xdf, 0xe2, 0xde, 0x95, 0x4b, 0xda, + 0x5e, 0xff, 0x37, 0xd1, 0xca, 0xdc, 0xa1, 0x9f, 0x7f, 0xfd, 0xfe, 0x5a, 0xdd, 0x20, 0x6b, 0xb4, + 0x77, 0x8a, 0x71, 0xdc, 0x1d, 0x0a, 0x79, 0x2a, 0xa8, 0xcc, 0x05, 0xe8, 0x96, 0x54, 0xe8, 0xe6, + 0x0f, 0xa1, 0x22, 0xdf, 0x2b, 0xd0, 0xdc, 0x45, 0x7d, 0x71, 0x7a, 0x76, 0x72, 0x84, 0x5e, 0x4e, + 0xfa, 0x57, 0x17, 0xb4, 0x1f, 0xfc, 0x7f, 0x80, 0xab, 0x76, 0xc9, 0x54, 0x3b, 0x4f, 0xe6, 0x68, + 0x60, 0x00, 0x7a, 0xf2, 0x90, 0x9a, 0x37, 0x98, 0xb5, 0xc6, 0xf6, 0xf3, 0xf7, 0xcf, 0x22, 0xae, + 0x07, 0x59, 0xbf, 0x17, 0xc8, 0x63, 0x0b, 0x49, 0x15, 0xd9, 0x0f, 0x7a, 0xf6, 0x7f, 0x8c, 0x50, + 0xd0, 0xa4, 0xdf, 0x8d, 0x24, 0x1d, 0xff, 0x65, 0xf6, 0x6b, 0xe6, 0xf7, 0xf7, 0xe8, 0x4f, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x7e, 0x66, 0xab, 0x82, 0x4d, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/flyteidl/gen/pb-go/flyteidl/service/dataproxy.pb.go b/flyteidl/gen/pb-go/flyteidl/service/dataproxy.pb.go index c59c3099fe..e39491ad96 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/dataproxy.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/service/dataproxy.pb.go @@ -6,7 +6,9 @@ package service import ( context "context" fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + math "math" + + core "github.com/flyteorg/flyte/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" @@ -14,7 +16,6 @@ import ( grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -519,7 +520,7 @@ func (m *PreSignedURLs) GetExpiresAt() *timestamp.Timestamp { // General request artifact to retrieve data from a Flyte artifact url. type GetDataRequest struct { // A unique identifier in the form of flyte:// that uniquely, for a given Flyte - // backend, identifies a Flyte artifact ([i]nput, [o]utput, flyte [d]eck, etc.). + // backend, identifies a Flyte artifact ([i]nput, [o]output, flyte [d]eck, etc.). // e.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input) // flyte://v1/proj/development/execid/n2/i (for node execution input) // flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node) @@ -672,64 +673,64 @@ func init() { func init() { proto.RegisterFile("flyteidl/service/dataproxy.proto", fileDescriptor_bffb71366d75dab0) } var fileDescriptor_bffb71366d75dab0 = []byte{ - // 907 bytes of a gzipped FileDescriptorProto + // 910 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x4f, 0x6f, 0xe3, 0x44, 0x14, 0xef, 0xa4, 0x25, 0x6d, 0x5e, 0xd3, 0x3f, 0x8c, 0x56, 0x25, 0xeb, 0x76, 0xdb, 0xac, 0x17, - 0xa1, 0x52, 0xa8, 0x0d, 0x45, 0x2b, 0xd8, 0x15, 0x1c, 0xda, 0x24, 0xbb, 0x8d, 0xe8, 0x56, 0x95, - 0x37, 0x3d, 0xc0, 0xc5, 0x9a, 0xda, 0x93, 0x30, 0xac, 0x33, 0x63, 0xc6, 0x93, 0xd2, 0x4a, 0x88, - 0x03, 0x27, 0xee, 0x1c, 0x38, 0x70, 0xe1, 0xc4, 0x57, 0xe1, 0x03, 0x20, 0xf1, 0x01, 0x10, 0x37, - 0xbe, 0x01, 0x27, 0x64, 0x7b, 0xec, 0xc4, 0x49, 0xda, 0xcd, 0xa2, 0x3d, 0xbe, 0x79, 0x3f, 0xcf, - 0xef, 0xf7, 0x7e, 0xf3, 0xe6, 0x8d, 0xa1, 0xde, 0x0d, 0xae, 0x15, 0x65, 0x7e, 0x60, 0x47, 0x54, - 0x5e, 0x32, 0x8f, 0xda, 0x3e, 0x51, 0x24, 0x94, 0xe2, 0xea, 0xda, 0x0a, 0xa5, 0x50, 0x02, 0xaf, - 0x67, 0x08, 0x4b, 0x23, 0x8c, 0xad, 0x9e, 0x10, 0xbd, 0x80, 0xda, 0x24, 0x64, 0x36, 0xe1, 0x5c, - 0x28, 0xa2, 0x98, 0xe0, 0x51, 0x8a, 0x37, 0xb6, 0x75, 0x36, 0x89, 0x2e, 0x06, 0x5d, 0xdb, 0x1f, - 0xc8, 0x04, 0xa0, 0xf3, 0x3b, 0xe3, 0x79, 0xc5, 0xfa, 0x34, 0x52, 0xa4, 0x1f, 0x66, 0x1b, 0xe4, - 0x92, 0x3c, 0x21, 0xa9, 0xcd, 0x7c, 0xca, 0x15, 0xeb, 0x32, 0x2a, 0x75, 0x7e, 0xab, 0x98, 0x0f, - 0x98, 0xa2, 0x92, 0x04, 0x9a, 0xde, 0xfc, 0x19, 0xc1, 0x56, 0x43, 0x52, 0xa2, 0xe8, 0x79, 0x18, - 0x08, 0xe2, 0x9f, 0x08, 0x2f, 0x61, 0x77, 0x68, 0x14, 0x0a, 0x1e, 0x51, 0x7c, 0x0f, 0x20, 0x62, - 0x3d, 0x4e, 0x7d, 0x77, 0x20, 0x83, 0x1a, 0xaa, 0xa3, 0xdd, 0x8a, 0x53, 0x49, 0x57, 0xce, 0x65, - 0x10, 0xa7, 0x39, 0x51, 0xec, 0x92, 0x26, 0xe9, 0x52, 0x9a, 0x4e, 0x57, 0xe2, 0xf4, 0x23, 0x00, - 0x7a, 0x15, 0x32, 0x49, 0x23, 0x97, 0xa8, 0xda, 0x7c, 0x1d, 0xed, 0x2e, 0x1f, 0x18, 0x56, 0x5a, - 0x92, 0x95, 0x95, 0x64, 0x75, 0xb2, 0x92, 0x9c, 0x8a, 0x46, 0x1f, 0x2a, 0xf3, 0x1f, 0x04, 0x9b, - 0xd3, 0x95, 0x7d, 0x33, 0xa0, 0x91, 0xc2, 0x35, 0x58, 0x0c, 0xa5, 0xf8, 0x9a, 0x7a, 0x4a, 0xab, - 0xca, 0x42, 0xbc, 0x01, 0x65, 0x5f, 0xf4, 0x09, 0xe3, 0x5a, 0x8f, 0x8e, 0xb0, 0x01, 0x4b, 0x5d, - 0x16, 0x50, 0x4e, 0xfa, 0x34, 0x91, 0x52, 0x71, 0xf2, 0x18, 0x7f, 0x32, 0x14, 0xca, 0x78, 0x6d, - 0x21, 0x11, 0x7a, 0x77, 0x42, 0x68, 0x53, 0x9f, 0x4d, 0xae, 0xb3, 0xcd, 0xf1, 0x0e, 0x2c, 0x7b, - 0x82, 0x2b, 0xca, 0x95, 0xdb, 0xf7, 0x1f, 0xd6, 0xde, 0xa8, 0xa3, 0xdd, 0xaa, 0x03, 0x7a, 0xe9, - 0x99, 0xff, 0x10, 0x3f, 0x80, 0x95, 0x8c, 0xc6, 0x95, 0x42, 0xa8, 0x5a, 0x39, 0xe1, 0xae, 0x66, - 0x8b, 0x8e, 0x10, 0xca, 0xfc, 0x0e, 0xee, 0xa5, 0xc5, 0x36, 0xc5, 0xb7, 0x7c, 0x5a, 0xb9, 0x45, - 0xa3, 0xd1, 0xb8, 0xd1, 0x45, 0xfd, 0xa5, 0xd9, 0xf5, 0x3f, 0x2e, 0xd5, 0x90, 0xf9, 0x3d, 0x6c, - 0xdf, 0xc4, 0x3e, 0x5b, 0x1b, 0x14, 0xcf, 0xb9, 0xf4, 0x0a, 0xe7, 0x9c, 0xf0, 0xff, 0x8b, 0xe0, - 0xee, 0x98, 0x00, 0xc6, 0x5f, 0x64, 0xa5, 0x37, 0x60, 0x85, 0x48, 0xc5, 0xba, 0xc4, 0x53, 0xae, - 0xba, 0x0e, 0x69, 0x42, 0xbf, 0x7a, 0xb0, 0x6d, 0x8d, 0x5f, 0x35, 0xeb, 0x50, 0xc3, 0x3a, 0xd7, - 0x21, 0x75, 0xaa, 0x64, 0x24, 0xfa, 0xff, 0x06, 0xe1, 0x0e, 0xbc, 0xc9, 0x85, 0x4f, 0x5d, 0x7a, - 0x45, 0xbd, 0x41, 0x9c, 0x74, 0x99, 0xaf, 0x5b, 0xf9, 0x9d, 0xa1, 0x84, 0xf8, 0x72, 0x59, 0xa7, - 0xc2, 0xa7, 0xad, 0x0c, 0xd6, 0xce, 0x6f, 0xe2, 0xf1, 0x9c, 0xb3, 0xc6, 0x8b, 0xa9, 0xa3, 0x25, - 0x28, 0x47, 0x62, 0x20, 0x3d, 0x6a, 0xfe, 0x8e, 0xc0, 0x98, 0x56, 0xbc, 0x76, 0xfe, 0xfe, 0x98, - 0xf3, 0xf3, 0xbb, 0x95, 0xa3, 0x52, 0x0d, 0x8d, 0xba, 0xff, 0xd9, 0xab, 0xb9, 0x9f, 0x7e, 0x9e, - 0x9f, 0x00, 0x7e, 0x0a, 0x6b, 0xa1, 0xa4, 0xee, 0x90, 0x25, 0xd2, 0xe5, 0xed, 0x4c, 0x3a, 0x7c, - 0x26, 0xe9, 0xf3, 0x94, 0xd7, 0x39, 0x89, 0x9c, 0x95, 0x30, 0x0f, 0x65, 0x10, 0x99, 0x0c, 0x56, - 0x0a, 0xf9, 0x89, 0xae, 0x99, 0x7f, 0x5d, 0x5d, 0x63, 0xee, 0xc3, 0xea, 0x53, 0xaa, 0x9a, 0x44, - 0x91, 0xac, 0x4b, 0x36, 0xa1, 0x92, 0xa8, 0x1d, 0x69, 0xd0, 0xa5, 0x64, 0xe1, 0x5c, 0x06, 0xe6, - 0x9f, 0x08, 0xd6, 0x72, 0xbc, 0x36, 0xf6, 0x53, 0x58, 0xd6, 0xc3, 0xd0, 0xed, 0x93, 0x30, 0xf9, - 0x24, 0x6e, 0x89, 0xe2, 0x89, 0x9e, 0xa4, 0x88, 0x67, 0x24, 0x3c, 0x9e, 0x73, 0x20, 0xc8, 0x23, - 0xdc, 0x9e, 0x34, 0xad, 0x34, 0x93, 0x69, 0xc7, 0x73, 0x63, 0xb6, 0xe1, 0x03, 0x58, 0xd4, 0x1b, - 0x6b, 0xdf, 0x37, 0xa6, 0x8b, 0x38, 0x9e, 0x73, 0x32, 0xe0, 0x51, 0x19, 0x16, 0xe2, 0x97, 0x67, - 0xaf, 0x01, 0xd5, 0xd1, 0xa6, 0xc7, 0x9b, 0xf0, 0xd6, 0xa1, 0xd3, 0x69, 0x3f, 0x39, 0x6c, 0x74, - 0xdc, 0xce, 0x17, 0x67, 0x2d, 0xf7, 0xfc, 0xb4, 0xd9, 0x7a, 0xd2, 0x3e, 0x6d, 0x35, 0xd7, 0xe7, - 0xf0, 0x06, 0xe0, 0x62, 0xb2, 0xd9, 0x6a, 0x7c, 0xbe, 0x8e, 0x0e, 0xfe, 0x5a, 0x80, 0xf5, 0xd8, - 0x9a, 0xb3, 0xf8, 0x1d, 0x7b, 0x9e, 0x8a, 0xc6, 0xbf, 0x22, 0xb8, 0x33, 0x6d, 0xfe, 0xe2, 0xfd, - 0xc9, 0x02, 0x6f, 0x99, 0xd3, 0x86, 0x35, 0x2b, 0x3c, 0x3d, 0x16, 0xf3, 0xdd, 0x1f, 0xfe, 0xf8, - 0xfb, 0xa7, 0xd2, 0x03, 0x73, 0x3b, 0x79, 0x30, 0x2f, 0x3f, 0x1c, 0xbe, 0xb0, 0x76, 0x3e, 0x05, - 0x06, 0x92, 0x3f, 0x46, 0x7b, 0xf8, 0x37, 0x04, 0x1b, 0xd3, 0xe7, 0x16, 0xb6, 0x6f, 0x62, 0xbd, - 0x61, 0xbe, 0x1a, 0x1f, 0xcc, 0xfe, 0x41, 0x41, 0x68, 0x1d, 0xbf, 0x44, 0xe8, 0x8f, 0x25, 0x84, - 0x7f, 0x41, 0x80, 0x27, 0xaf, 0x38, 0x7e, 0xef, 0xa5, 0x9c, 0xc3, 0x29, 0x68, 0xbc, 0x3f, 0x1b, - 0x58, 0x8b, 0xdb, 0x4b, 0xc4, 0xbd, 0x6d, 0xee, 0xdc, 0x22, 0x2e, 0x60, 0xfc, 0x45, 0x6c, 0xa3, - 0x0f, 0x8b, 0xfa, 0x6e, 0xe0, 0xfa, 0x24, 0x49, 0xf1, 0x9a, 0x19, 0xf7, 0x6f, 0x41, 0x68, 0xee, - 0x3b, 0x09, 0xf7, 0x2a, 0xae, 0x8e, 0x72, 0x1f, 0x3d, 0xfa, 0xf2, 0xe3, 0x1e, 0x53, 0x5f, 0x0d, - 0x2e, 0x2c, 0x4f, 0xf4, 0xed, 0x64, 0x13, 0x21, 0x7b, 0x76, 0xfe, 0x77, 0xd2, 0xa3, 0xdc, 0x0e, - 0x2f, 0xf6, 0x7b, 0xc2, 0x1e, 0xff, 0xc7, 0xba, 0x28, 0x27, 0xb3, 0xe0, 0xa3, 0xff, 0x02, 0x00, - 0x00, 0xff, 0xff, 0x31, 0x6c, 0xda, 0xe4, 0x7e, 0x09, 0x00, 0x00, + 0xa1, 0x52, 0xa8, 0x0d, 0x45, 0x2b, 0xc1, 0x8a, 0x15, 0x6a, 0x93, 0xec, 0x36, 0xa2, 0x5b, 0x55, + 0xde, 0xf4, 0x00, 0x17, 0x6b, 0x6a, 0x4f, 0xc2, 0xb0, 0xce, 0x8c, 0x19, 0x4f, 0x4a, 0x2b, 0x21, + 0x0e, 0x9c, 0xb8, 0x73, 0xe0, 0xc0, 0x85, 0x13, 0x5f, 0x85, 0x0f, 0x80, 0xc4, 0x07, 0x40, 0xdc, + 0xf8, 0x06, 0x9c, 0x90, 0xed, 0xb1, 0x13, 0x27, 0x69, 0x37, 0x8b, 0xf6, 0x96, 0x37, 0xef, 0xe7, + 0xf9, 0xfd, 0xde, 0x6f, 0xde, 0xbc, 0x09, 0xd4, 0xbb, 0xc1, 0xb5, 0xa2, 0xcc, 0x0f, 0xec, 0x88, + 0xca, 0x4b, 0xe6, 0x51, 0xdb, 0x27, 0x8a, 0x84, 0x52, 0x5c, 0x5d, 0x5b, 0xa1, 0x14, 0x4a, 0xe0, + 0xf5, 0x0c, 0x61, 0x69, 0x84, 0xb1, 0xd5, 0x13, 0xa2, 0x17, 0x50, 0x9b, 0x84, 0xcc, 0x26, 0x9c, + 0x0b, 0x45, 0x14, 0x13, 0x3c, 0x4a, 0xf1, 0xc6, 0xb6, 0xce, 0x26, 0xd1, 0xc5, 0xa0, 0x6b, 0xfb, + 0x03, 0x99, 0x00, 0x74, 0x7e, 0x67, 0x3c, 0xaf, 0x58, 0x9f, 0x46, 0x8a, 0xf4, 0xc3, 0x6c, 0x83, + 0x5c, 0x92, 0x27, 0x24, 0xb5, 0x99, 0x4f, 0xb9, 0x62, 0x5d, 0x46, 0xa5, 0xce, 0x6f, 0x15, 0xf3, + 0x01, 0x53, 0x54, 0x92, 0x40, 0xd3, 0x9b, 0x3f, 0x23, 0xd8, 0x6a, 0x48, 0x4a, 0x14, 0x3d, 0x0f, + 0x03, 0x41, 0xfc, 0x13, 0xe1, 0x25, 0xec, 0x0e, 0x8d, 0x42, 0xc1, 0x23, 0x8a, 0xef, 0x01, 0x44, + 0xac, 0xc7, 0xa9, 0xef, 0x0e, 0x64, 0x50, 0x43, 0x75, 0xb4, 0x5b, 0x71, 0x2a, 0xe9, 0xca, 0xb9, + 0x0c, 0xe2, 0x34, 0x27, 0x8a, 0x5d, 0xd2, 0x24, 0x5d, 0x4a, 0xd3, 0xe9, 0x4a, 0x9c, 0xfe, 0x04, + 0x80, 0x5e, 0x85, 0x4c, 0xd2, 0xc8, 0x25, 0xaa, 0x36, 0x5f, 0x47, 0xbb, 0xcb, 0x07, 0x86, 0x95, + 0x96, 0x64, 0x65, 0x25, 0x59, 0x9d, 0xac, 0x24, 0xa7, 0xa2, 0xd1, 0x87, 0xca, 0xfc, 0x07, 0xc1, + 0xe6, 0x74, 0x65, 0xdf, 0x0c, 0x68, 0xa4, 0x70, 0x0d, 0x16, 0x43, 0x29, 0xbe, 0xa6, 0x9e, 0xd2, + 0xaa, 0xb2, 0x10, 0x6f, 0x40, 0xd9, 0x17, 0x7d, 0xc2, 0xb8, 0xd6, 0xa3, 0x23, 0x6c, 0xc0, 0x52, + 0x97, 0x05, 0x94, 0x93, 0x3e, 0x4d, 0xa4, 0x54, 0x9c, 0x3c, 0xc6, 0x1f, 0x0f, 0x85, 0x32, 0x5e, + 0x5b, 0x48, 0x84, 0xde, 0x9d, 0x10, 0xda, 0xd4, 0x67, 0x93, 0xeb, 0x6c, 0x73, 0xbc, 0x03, 0xcb, + 0x9e, 0xe0, 0x8a, 0x72, 0xe5, 0xf6, 0xfd, 0x87, 0xb5, 0x37, 0xea, 0x68, 0xb7, 0xea, 0x80, 0x5e, + 0x7a, 0xe6, 0x3f, 0xc4, 0x0f, 0x60, 0x25, 0xa3, 0x71, 0xa5, 0x10, 0xaa, 0x56, 0x4e, 0xb8, 0xab, + 0xd9, 0xa2, 0x23, 0x84, 0x32, 0xbf, 0x83, 0x7b, 0x69, 0xb1, 0x4d, 0xf1, 0x2d, 0x9f, 0x56, 0x6e, + 0xd1, 0x68, 0x34, 0x6e, 0x74, 0x51, 0x7f, 0x69, 0x76, 0xfd, 0x8f, 0x4a, 0x35, 0x64, 0x7e, 0x0f, + 0xdb, 0x37, 0xb1, 0xcf, 0xd6, 0x06, 0xc5, 0x73, 0x2e, 0xbd, 0xc2, 0x39, 0x27, 0xfc, 0xff, 0x22, + 0xb8, 0x3b, 0x26, 0x80, 0xf1, 0x17, 0x59, 0xe9, 0x0d, 0x58, 0x21, 0x52, 0xb1, 0x2e, 0xf1, 0x94, + 0xab, 0xae, 0x43, 0x9a, 0xd0, 0xaf, 0x1e, 0x6c, 0x5b, 0xe3, 0x57, 0xcd, 0x3a, 0xd4, 0xb0, 0xce, + 0x75, 0x48, 0x9d, 0x2a, 0x19, 0x89, 0xfe, 0xbf, 0x41, 0xb8, 0x03, 0x6f, 0x72, 0xe1, 0x53, 0x97, + 0x5e, 0x51, 0x6f, 0x10, 0x27, 0x5d, 0xe6, 0xeb, 0x56, 0x7e, 0x67, 0x28, 0x21, 0xbe, 0x5c, 0xd6, + 0xa9, 0xf0, 0x69, 0x2b, 0x83, 0xb5, 0xf3, 0x9b, 0x78, 0x3c, 0xe7, 0xac, 0xf1, 0x62, 0xea, 0x68, + 0x09, 0xca, 0x91, 0x18, 0x48, 0x8f, 0x9a, 0xbf, 0x23, 0x30, 0xa6, 0x15, 0xaf, 0x9d, 0xbf, 0x3f, + 0xe6, 0xfc, 0xfc, 0x6e, 0xe5, 0xa8, 0x54, 0x43, 0xa3, 0xee, 0x3f, 0x7e, 0x35, 0xf7, 0xd3, 0xcf, + 0xf3, 0x13, 0xc0, 0x4f, 0x61, 0x2d, 0x94, 0xd4, 0x1d, 0xb2, 0x44, 0xba, 0xbc, 0x9d, 0x49, 0x87, + 0xcf, 0x24, 0x7d, 0x9e, 0xf2, 0x3a, 0x27, 0x91, 0xb3, 0x12, 0xe6, 0xa1, 0x0c, 0x22, 0x93, 0xc1, + 0x4a, 0x21, 0x3f, 0xd1, 0x35, 0xf3, 0xaf, 0xab, 0x6b, 0xcc, 0x7d, 0x58, 0x7d, 0x4a, 0x55, 0x93, + 0x28, 0x92, 0x75, 0xc9, 0x26, 0x54, 0x12, 0xb5, 0x23, 0x0d, 0xba, 0x94, 0x2c, 0x9c, 0xcb, 0xc0, + 0xfc, 0x13, 0xc1, 0x5a, 0x8e, 0xd7, 0xc6, 0x7e, 0x0a, 0xcb, 0x7a, 0x18, 0xba, 0x7d, 0x12, 0x26, + 0x9f, 0xc4, 0x2d, 0x51, 0x3c, 0xd1, 0x93, 0x14, 0xf1, 0x8c, 0x84, 0xc7, 0x73, 0x0e, 0x04, 0x79, + 0x84, 0xdb, 0x93, 0xa6, 0x95, 0x66, 0x32, 0xed, 0x78, 0x6e, 0xcc, 0x36, 0x7c, 0x00, 0x8b, 0x7a, + 0x63, 0xed, 0xfb, 0xc6, 0x74, 0x11, 0xc7, 0x73, 0x4e, 0x06, 0x3c, 0x2a, 0xc3, 0x42, 0xfc, 0xf2, + 0xec, 0x35, 0xa0, 0x3a, 0xda, 0xf4, 0x78, 0x13, 0xde, 0x3a, 0x74, 0x3a, 0xed, 0x27, 0x87, 0x8d, + 0x8e, 0xdb, 0xf9, 0xe2, 0xac, 0xe5, 0x9e, 0x9f, 0x36, 0x5b, 0x4f, 0xda, 0xa7, 0xad, 0xe6, 0xfa, + 0x1c, 0xde, 0x00, 0x5c, 0x4c, 0x36, 0x5b, 0x8d, 0xcf, 0xd7, 0xd1, 0xc1, 0x5f, 0x0b, 0xb0, 0x1e, + 0x5b, 0x73, 0x16, 0xbf, 0x63, 0xcf, 0x53, 0xd1, 0xf8, 0x57, 0x04, 0x77, 0xa6, 0xcd, 0x5f, 0xbc, + 0x3f, 0x59, 0xe0, 0x2d, 0x73, 0xda, 0xb0, 0x66, 0x85, 0xa7, 0xc7, 0x62, 0xbe, 0xfb, 0xc3, 0x1f, + 0x7f, 0xff, 0x54, 0x7a, 0x60, 0x6e, 0x27, 0x0f, 0xe6, 0xe5, 0x87, 0xc3, 0x17, 0xd6, 0xce, 0xa7, + 0xc0, 0x40, 0xf2, 0x47, 0x68, 0x0f, 0xff, 0x86, 0x60, 0x63, 0xfa, 0xdc, 0xc2, 0xf6, 0x4d, 0xac, + 0x37, 0xcc, 0x57, 0xe3, 0x83, 0xd9, 0x3f, 0x28, 0x08, 0xad, 0xe3, 0x97, 0x08, 0xfd, 0xb1, 0x84, + 0xf0, 0x2f, 0x08, 0xf0, 0xe4, 0x15, 0xc7, 0xef, 0xbd, 0x94, 0x73, 0x38, 0x05, 0x8d, 0xf7, 0x67, + 0x03, 0x6b, 0x71, 0x7b, 0x89, 0xb8, 0xb7, 0xcd, 0x9d, 0x5b, 0xc4, 0x05, 0x8c, 0xbf, 0x88, 0x6d, + 0xf4, 0x61, 0x51, 0xdf, 0x0d, 0x5c, 0x9f, 0x24, 0x29, 0x5e, 0x33, 0xe3, 0xfe, 0x2d, 0x08, 0xcd, + 0x7d, 0x27, 0xe1, 0x5e, 0xc5, 0xd5, 0x51, 0xee, 0xa3, 0xcf, 0xbe, 0x7c, 0xdc, 0x63, 0xea, 0xab, + 0xc1, 0x85, 0xe5, 0x89, 0xbe, 0x9d, 0x6c, 0x22, 0x64, 0x2f, 0xfd, 0x61, 0xe7, 0xff, 0x51, 0x7a, + 0x94, 0xdb, 0xe1, 0xc5, 0x7e, 0x4f, 0xd8, 0xe3, 0xff, 0xb4, 0x2e, 0xca, 0xc9, 0x44, 0xf8, 0xe8, + 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x5e, 0xc8, 0x56, 0x84, 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/flyteidl/gen/pb-go/flyteidl/service/dataproxy.swagger.json b/flyteidl/gen/pb-go/flyteidl/service/dataproxy.swagger.json index 973243441c..4534435f3d 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/dataproxy.swagger.json +++ b/flyteidl/gen/pb-go/flyteidl/service/dataproxy.swagger.json @@ -29,7 +29,7 @@ "parameters": [ { "name": "flyte_url", - "description": "A unique identifier in the form of flyte://\u003csomething\u003e that uniquely, for a given Flyte\nbackend, identifies a Flyte artifact ([i]nput, [o]utput, flyte [d]eck, etc.).\ne.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input)\n flyte://v1/proj/development/execid/n2/i (for node execution input)\n flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node).", + "description": "A unique identifier in the form of flyte://\u003csomething\u003e that uniquely, for a given Flyte\nbackend, identifies a Flyte artifact ([i]nput, [o]output, flyte [d]eck, etc.).\ne.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input)\n flyte://v1/proj/development/execid/n2/i (for node execution input)\n flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node).", "in": "query", "required": false, "type": "string" diff --git a/flyteidl/gen/pb-go/flyteidl/service/external_plugin_service.pb.go b/flyteidl/gen/pb-go/flyteidl/service/external_plugin_service.pb.go index ad06a4df4e..398c8455d0 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/external_plugin_service.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/service/external_plugin_service.pb.go @@ -6,12 +6,13 @@ package service import ( context "context" fmt "fmt" - core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" + math "math" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" proto "github.com/golang/protobuf/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -371,41 +372,41 @@ func init() { } var fileDescriptor_74cbdb08eef5b1d1 = []byte{ - // 540 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xc1, 0x6e, 0xda, 0x40, - 0x10, 0xad, 0x9d, 0x26, 0x84, 0x49, 0x93, 0x92, 0x95, 0x50, 0x1d, 0xd2, 0x4a, 0x94, 0xf4, 0x10, - 0x55, 0x8a, 0xad, 0x92, 0x43, 0xd4, 0xde, 0x08, 0xb8, 0x14, 0x95, 0x58, 0xc8, 0xc0, 0xa1, 0x55, - 0x24, 0xcb, 0x86, 0x81, 0x3a, 0x71, 0xec, 0xad, 0xbd, 0xae, 0xc2, 0x1f, 0xf4, 0x53, 0xf2, 0x99, - 0xd5, 0xee, 0xda, 0x0e, 0x90, 0x96, 0x43, 0x8f, 0x9e, 0x79, 0xf3, 0x66, 0xde, 0x9b, 0x59, 0x83, - 0x3e, 0x0b, 0x16, 0x0c, 0xfd, 0x69, 0x60, 0x24, 0x18, 0xff, 0xf2, 0x27, 0x68, 0xe0, 0x3d, 0xc3, - 0x38, 0x74, 0x03, 0x87, 0x06, 0xe9, 0xdc, 0x0f, 0x9d, 0x2c, 0xae, 0xd3, 0x38, 0x62, 0x11, 0xa9, - 0xe4, 0x78, 0x3d, 0x8b, 0xd7, 0x5e, 0x17, 0x0c, 0x93, 0x28, 0x46, 0x23, 0xf0, 0x19, 0xc6, 0x6e, - 0x90, 0x48, 0x7c, 0xed, 0x68, 0x35, 0xcb, 0xdc, 0xe4, 0x36, 0x4f, 0xbd, 0x59, 0x4d, 0xf9, 0x21, - 0xc3, 0x78, 0xe6, 0xe6, 0x9d, 0x1a, 0x0f, 0x0a, 0x1c, 0x8e, 0xdc, 0xe4, 0xb6, 0x1d, 0xa3, 0xcb, - 0xd0, 0xc6, 0x9f, 0x29, 0x26, 0x8c, 0x7c, 0x80, 0x1d, 0x3f, 0xa4, 0x29, 0x4b, 0x34, 0xa5, 0xae, - 0x9c, 0xee, 0x35, 0x8f, 0x0a, 0x01, 0x3a, 0x67, 0xd1, 0xfb, 0xb2, 0xfd, 0x95, 0x4b, 0xed, 0x0c, - 0x48, 0x2e, 0x60, 0x97, 0xe1, 0x1d, 0x0d, 0x5c, 0x86, 0x9a, 0x2a, 0x8a, 0x8e, 0xd7, 0x8a, 0x78, - 0x9b, 0x51, 0x06, 0xb1, 0x0b, 0x30, 0x39, 0x81, 0xfd, 0x28, 0x65, 0x34, 0x65, 0x0e, 0x8d, 0x71, - 0xe6, 0xdf, 0x6b, 0x5b, 0x75, 0xe5, 0xb4, 0x6c, 0xbf, 0x90, 0xc1, 0x81, 0x88, 0x7d, 0x52, 0x35, - 0xa5, 0x61, 0x00, 0x59, 0x9e, 0x34, 0xa1, 0x51, 0x98, 0x20, 0xa9, 0xc2, 0xce, 0x4d, 0xe4, 0x39, - 0xfe, 0x54, 0x8c, 0x5a, 0xb6, 0xb7, 0x6f, 0x22, 0xaf, 0x37, 0x15, 0x05, 0x5f, 0xe0, 0x80, 0x17, - 0x74, 0x91, 0xe5, 0xba, 0x8e, 0xa1, 0xcc, 0xbd, 0x71, 0xd8, 0x82, 0x62, 0x86, 0xdf, 0xe5, 0x81, - 0xd1, 0x82, 0x2e, 0x33, 0xa9, 0xeb, 0x4c, 0x0b, 0x78, 0x59, 0x30, 0x65, 0x7d, 0xcf, 0x60, 0x3b, - 0x61, 0x5c, 0x2c, 0xa7, 0x39, 0x68, 0xbe, 0xd2, 0xd7, 0x57, 0xa6, 0x0f, 0x79, 0xda, 0x96, 0x28, - 0x72, 0x0e, 0x25, 0x29, 0x28, 0xc9, 0xdc, 0xd9, 0x60, 0x69, 0x8e, 0x14, 0xad, 0xbf, 0xca, 0xfd, - 0x74, 0x30, 0xc0, 0xc7, 0xfd, 0xfc, 0xaf, 0x0e, 0x4d, 0x5a, 0x98, 0x93, 0x49, 0x29, 0x3c, 0xf3, - 0xde, 0x83, 0x6d, 0x31, 0x2f, 0xa9, 0xc2, 0xa1, 0x6d, 0x8e, 0xec, 0x6f, 0xad, 0xcb, 0xbe, 0xe9, - 0x7c, 0x6e, 0xf5, 0xfa, 0x63, 0xdb, 0xac, 0x3c, 0xe3, 0xe1, 0x81, 0x69, 0x5f, 0xb5, 0x2c, 0xd3, - 0x1a, 0x15, 0x61, 0x85, 0xec, 0x41, 0x69, 0x60, 0x5a, 0x9d, 0x9e, 0xd5, 0xad, 0xa8, 0xfc, 0xc3, - 0x1e, 0x5b, 0x16, 0xff, 0xd8, 0x22, 0xfb, 0x50, 0x1e, 0x8e, 0xdb, 0x6d, 0xd3, 0xec, 0x98, 0x9d, - 0xca, 0xf3, 0x9a, 0xaa, 0x29, 0xcd, 0x07, 0x15, 0xaa, 0x66, 0x76, 0xf7, 0x03, 0x71, 0xf6, 0x43, - 0x69, 0x15, 0xb9, 0x06, 0x90, 0x6b, 0xe5, 0xd3, 0x91, 0x93, 0xa7, 0x5e, 0x3e, 0x39, 0xd1, 0xda, - 0xbb, 0xcd, 0x20, 0x29, 0xad, 0xb1, 0xf5, 0x5b, 0x55, 0xc8, 0x10, 0x4a, 0x5d, 0x64, 0x82, 0xba, - 0xfe, 0xf7, 0xaa, 0xc7, 0x13, 0xa9, 0xbd, 0xdd, 0x80, 0x58, 0x26, 0xbd, 0x06, 0x90, 0x36, 0x6e, - 0x1a, 0x79, 0x65, 0x6b, 0xff, 0x1a, 0x79, 0x75, 0x1b, 0x82, 0xfd, 0xf2, 0xe3, 0xf7, 0x8b, 0xb9, - 0xcf, 0x7e, 0xa4, 0x9e, 0x3e, 0x89, 0xee, 0x0c, 0x51, 0x16, 0xc5, 0x73, 0xa3, 0x78, 0xcb, 0x73, - 0x0c, 0x0d, 0xea, 0x9d, 0xcd, 0x23, 0x63, 0xfd, 0xcf, 0xe2, 0xed, 0x88, 0x87, 0x7d, 0xfe, 0x27, - 0x00, 0x00, 0xff, 0xff, 0x1c, 0x25, 0x84, 0x2b, 0x74, 0x04, 0x00, 0x00, + // 544 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x51, 0x6f, 0xd2, 0x50, + 0x14, 0xb6, 0x9d, 0x1b, 0xe3, 0xcc, 0x4d, 0x76, 0x13, 0x62, 0xc7, 0x34, 0x41, 0xe6, 0xc3, 0x62, + 0xb2, 0x36, 0xb2, 0x07, 0x13, 0x13, 0x63, 0x18, 0x54, 0x24, 0xb2, 0x86, 0x14, 0x78, 0xd0, 0x2c, + 0x69, 0x5a, 0x38, 0x60, 0xb7, 0xae, 0xbd, 0xb6, 0xb7, 0x66, 0xfc, 0x03, 0x7f, 0xca, 0x7e, 0xa6, + 0xb9, 0xf7, 0xb6, 0x1d, 0x30, 0xe5, 0xc1, 0x37, 0x7a, 0xce, 0x77, 0xbe, 0x73, 0xbe, 0xef, 0x9c, + 0x0b, 0xe8, 0xb3, 0x60, 0xc1, 0xd0, 0x9f, 0x06, 0x46, 0x82, 0xf1, 0x2f, 0x7f, 0x82, 0x06, 0xde, + 0x31, 0x8c, 0x43, 0x37, 0x70, 0x68, 0x90, 0xce, 0xfd, 0xd0, 0xc9, 0xe2, 0x3a, 0x8d, 0x23, 0x16, + 0x91, 0x4a, 0x8e, 0xd7, 0xb3, 0x78, 0xed, 0x65, 0xc1, 0x30, 0x89, 0x62, 0x34, 0x02, 0x9f, 0x61, + 0xec, 0x06, 0x89, 0xc4, 0xd7, 0x8e, 0x56, 0xb3, 0xcc, 0x4d, 0x6e, 0xf2, 0xd4, 0xab, 0xd5, 0x94, + 0x1f, 0x32, 0x8c, 0x67, 0x6e, 0xde, 0xa9, 0x71, 0xaf, 0xc0, 0xe1, 0xc8, 0x4d, 0x6e, 0xda, 0x31, + 0xba, 0x0c, 0x6d, 0xfc, 0x99, 0x62, 0xc2, 0xc8, 0x3b, 0xd8, 0xf1, 0x43, 0x9a, 0xb2, 0x44, 0x53, + 0xea, 0xca, 0xe9, 0x5e, 0xf3, 0xa8, 0x10, 0xa0, 0x73, 0x16, 0xbd, 0x2f, 0xdb, 0x5f, 0xba, 0xd4, + 0xce, 0x80, 0xe4, 0x3d, 0xec, 0x32, 0xbc, 0xa5, 0x81, 0xcb, 0x50, 0x53, 0x45, 0xd1, 0xf1, 0x5a, + 0x11, 0x6f, 0x33, 0xca, 0x20, 0x76, 0x01, 0x26, 0x27, 0xb0, 0x1f, 0xa5, 0x8c, 0xa6, 0xcc, 0xa1, + 0x31, 0xce, 0xfc, 0x3b, 0x6d, 0xab, 0xae, 0x9c, 0x96, 0xed, 0x67, 0x32, 0x38, 0x10, 0xb1, 0x0f, + 0xaa, 0xa6, 0x34, 0x0c, 0x20, 0xcb, 0x93, 0x26, 0x34, 0x0a, 0x13, 0x24, 0x55, 0xd8, 0xb9, 0x8e, + 0x3c, 0xc7, 0x9f, 0x8a, 0x51, 0xcb, 0xf6, 0xf6, 0x75, 0xe4, 0xf5, 0xa6, 0xa2, 0xe0, 0x0b, 0x1c, + 0xf0, 0x82, 0x2e, 0xb2, 0x5c, 0xd7, 0x31, 0x94, 0xb9, 0x37, 0x0e, 0x5b, 0x50, 0xcc, 0xf0, 0xbb, + 0x3c, 0x30, 0x5a, 0xd0, 0x65, 0x26, 0x75, 0x9d, 0x69, 0x01, 0xcf, 0x0b, 0xa6, 0xac, 0xef, 0x19, + 0x6c, 0x27, 0x8c, 0x8b, 0xe5, 0x34, 0x07, 0xcd, 0x17, 0xfa, 0xfa, 0xca, 0xf4, 0x21, 0x4f, 0xdb, + 0x12, 0x45, 0xce, 0xa1, 0x24, 0x05, 0x25, 0x99, 0x3b, 0x1b, 0x2c, 0xcd, 0x91, 0xa2, 0xf5, 0x57, + 0xb9, 0x9f, 0x0e, 0x06, 0xf8, 0xb0, 0x9f, 0xff, 0xd5, 0xa1, 0x49, 0x0b, 0x73, 0x32, 0x29, 0x85, + 0x67, 0xde, 0x7a, 0xb0, 0x2d, 0xe6, 0x25, 0x55, 0x38, 0xb4, 0xcd, 0x91, 0xfd, 0xad, 0x75, 0xd1, + 0x37, 0x9d, 0xcf, 0xad, 0x5e, 0x7f, 0x6c, 0x9b, 0x95, 0x27, 0x3c, 0x3c, 0x30, 0xed, 0xcb, 0x96, + 0x65, 0x5a, 0xa3, 0x22, 0xac, 0x90, 0x3d, 0x28, 0x0d, 0x4c, 0xab, 0xd3, 0xb3, 0xba, 0x15, 0x95, + 0x7f, 0xd8, 0x63, 0xcb, 0xe2, 0x1f, 0x5b, 0x64, 0x1f, 0xca, 0xc3, 0x71, 0xbb, 0x6d, 0x9a, 0x1d, + 0xb3, 0x53, 0x79, 0x5a, 0x53, 0x35, 0xa5, 0x79, 0xaf, 0x42, 0xd5, 0xcc, 0xee, 0x7e, 0x20, 0xce, + 0x7e, 0x28, 0xad, 0x22, 0x57, 0x00, 0x72, 0xad, 0x7c, 0x3a, 0x72, 0xf2, 0xd8, 0xcb, 0x47, 0x27, + 0x5a, 0x7b, 0xb3, 0x19, 0x24, 0xa5, 0x35, 0xb6, 0x7e, 0xab, 0x0a, 0x19, 0x42, 0xa9, 0x8b, 0x4c, + 0x50, 0xd7, 0xff, 0x5e, 0xf5, 0x70, 0x22, 0xb5, 0xd7, 0x1b, 0x10, 0xcb, 0xa4, 0x57, 0x00, 0xd2, + 0xc6, 0x4d, 0x23, 0xaf, 0x6c, 0xed, 0x5f, 0x23, 0xaf, 0x6e, 0x43, 0xb0, 0x5f, 0x7c, 0xfa, 0xfe, + 0x71, 0xee, 0xb3, 0x1f, 0xa9, 0xa7, 0x4f, 0xa2, 0x5b, 0x43, 0x94, 0x45, 0xf1, 0x5c, 0xfe, 0x30, + 0x8a, 0x17, 0x3d, 0xc7, 0xd0, 0xa0, 0xde, 0xd9, 0x3c, 0x32, 0xd6, 0xff, 0x5f, 0xbc, 0x1d, 0xf1, + 0xbc, 0xcf, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xda, 0xdb, 0x38, 0x09, 0x7a, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml index dc5adf6fd7..09bc4affd9 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -6593,12 +6593,12 @@ definitions: title: "Metadata for the Launch Plan" $ref: "#/definitions/adminLaunchPlanMetadata" default_inputs: - description: "Input values to be passed for the execution.\nThese can be overriden\ + description: "Input values to be passed for the execution.\nThese can be overridden\ \ when an execution is created with this launch plan." $ref: "#/definitions/coreParameterMap" fixed_inputs: description: "Fixed, non-overridable inputs for the Launch Plan.\nThese can\ - \ not be overriden when an execution is created with this launch plan." + \ not be overridden when an execution is created with this launch plan." $ref: "#/definitions/coreLiteralMap" role: type: "string" diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go index 1ad9e1f583..5751a073e0 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api_admin_service.go @@ -11,11 +11,12 @@ package flyteadmin import ( "context" + "fmt" "io/ioutil" "net/http" "net/url" "strings" - "fmt" + "github.com/antihax/optional" ) @@ -26,19 +27,19 @@ var ( type AdminServiceApiService service -/* +/* AdminServiceApiService Triggers the creation of a :ref:`ref_flyteidl.admin.Execution` - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param body @return AdminExecutionCreateResponse */ func (a *AdminServiceApiService) CreateExecution(ctx context.Context, body AdminExecutionCreateRequest) (AdminExecutionCreateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Post") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Post") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminExecutionCreateResponse ) @@ -86,48 +87,48 @@ func (a *AdminServiceApiService) CreateExecution(ctx context.Context, body Admin if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminExecutionCreateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Create and upload a :ref:`ref_flyteidl.admin.LaunchPlan` definition - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param body @return AdminLaunchPlanCreateResponse */ func (a *AdminServiceApiService) CreateLaunchPlan(ctx context.Context, body AdminLaunchPlanCreateRequest) (AdminLaunchPlanCreateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Post") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Post") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminLaunchPlanCreateResponse ) @@ -175,48 +176,48 @@ func (a *AdminServiceApiService) CreateLaunchPlan(ctx context.Context, body Admi if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminLaunchPlanCreateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Indicates a :ref:`ref_flyteidl.event.NodeExecutionEvent` has occurred. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param body @return AdminNodeExecutionEventResponse */ func (a *AdminServiceApiService) CreateNodeEvent(ctx context.Context, body AdminNodeExecutionEventRequest) (AdminNodeExecutionEventResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Post") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Post") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminNodeExecutionEventResponse ) @@ -264,48 +265,48 @@ func (a *AdminServiceApiService) CreateNodeEvent(ctx context.Context, body Admin if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminNodeExecutionEventResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Create and upload a :ref:`ref_flyteidl.admin.Task` definition - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param body @return FlyteidladminTaskCreateResponse */ func (a *AdminServiceApiService) CreateTask(ctx context.Context, body FlyteidladminTaskCreateRequest) (FlyteidladminTaskCreateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Post") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Post") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue FlyteidladminTaskCreateResponse ) @@ -353,48 +354,48 @@ func (a *AdminServiceApiService) CreateTask(ctx context.Context, body Flyteidlad if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v FlyteidladminTaskCreateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Indicates a :ref:`ref_flyteidl.event.TaskExecutionEvent` has occurred. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param body @return AdminTaskExecutionEventResponse */ func (a *AdminServiceApiService) CreateTaskEvent(ctx context.Context, body AdminTaskExecutionEventRequest) (AdminTaskExecutionEventResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Post") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Post") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminTaskExecutionEventResponse ) @@ -442,48 +443,48 @@ func (a *AdminServiceApiService) CreateTaskEvent(ctx context.Context, body Admin if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminTaskExecutionEventResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Create and upload a :ref:`ref_flyteidl.admin.Workflow` definition - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param body @return AdminWorkflowCreateResponse */ func (a *AdminServiceApiService) CreateWorkflow(ctx context.Context, body AdminWorkflowCreateRequest) (AdminWorkflowCreateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Post") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Post") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminWorkflowCreateResponse ) @@ -531,48 +532,48 @@ func (a *AdminServiceApiService) CreateWorkflow(ctx context.Context, body AdminW if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminWorkflowCreateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Indicates a :ref:`ref_flyteidl.event.WorkflowExecutionEvent` has occurred. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param body @return AdminWorkflowExecutionEventResponse */ func (a *AdminServiceApiService) CreateWorkflowEvent(ctx context.Context, body AdminWorkflowExecutionEventRequest) (AdminWorkflowExecutionEventResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Post") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Post") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminWorkflowExecutionEventResponse ) @@ -620,49 +621,49 @@ func (a *AdminServiceApiService) CreateWorkflowEvent(ctx context.Context, body A if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminWorkflowExecutionEventResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Deletes custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project and domain. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param project Unique project id which this set of attributes references. +required - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param project Unique project id which this set of attributes references. +required + - @param body @return AdminProjectAttributesDeleteResponse */ func (a *AdminServiceApiService) DeleteProjectAttributes(ctx context.Context, project string, body AdminProjectAttributesDeleteRequest) (AdminProjectAttributesDeleteResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Delete") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Delete") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminProjectAttributesDeleteResponse ) @@ -711,50 +712,50 @@ func (a *AdminServiceApiService) DeleteProjectAttributes(ctx context.Context, pr if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminProjectAttributesDeleteResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Deletes custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project and domain. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param project Unique project id which this set of attributes references. +required - * @param domain Unique domain id which this set of attributes references. +required - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param project Unique project id which this set of attributes references. +required + - @param domain Unique domain id which this set of attributes references. +required + - @param body @return AdminProjectDomainAttributesDeleteResponse */ func (a *AdminServiceApiService) DeleteProjectDomainAttributes(ctx context.Context, project string, domain string, body AdminProjectDomainAttributesDeleteRequest) (AdminProjectDomainAttributesDeleteResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Delete") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Delete") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminProjectDomainAttributesDeleteResponse ) @@ -804,51 +805,51 @@ func (a *AdminServiceApiService) DeleteProjectDomainAttributes(ctx context.Conte if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminProjectDomainAttributesDeleteResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Deletes custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project, domain and workflow. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param project Unique project id which this set of attributes references. +required - * @param domain Unique domain id which this set of attributes references. +required - * @param workflow Workflow name which this set of attributes references. +required - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param project Unique project id which this set of attributes references. +required + - @param domain Unique domain id which this set of attributes references. +required + - @param workflow Workflow name which this set of attributes references. +required + - @param body @return AdminWorkflowAttributesDeleteResponse */ func (a *AdminServiceApiService) DeleteWorkflowAttributes(ctx context.Context, project string, domain string, workflow string, body AdminWorkflowAttributesDeleteRequest) (AdminWorkflowAttributesDeleteResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Delete") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Delete") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminWorkflowAttributesDeleteResponse ) @@ -899,50 +900,50 @@ func (a *AdminServiceApiService) DeleteWorkflowAttributes(ctx context.Context, p if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminWorkflowAttributesDeleteResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch the active version of a :ref:`ref_flyteidl.admin.LaunchPlan`. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param idProject Name of the project the resource belongs to. - * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. - * @param idName User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param idProject Name of the project the resource belongs to. + - @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. + - @param idName User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' @return AdminLaunchPlan */ func (a *AdminServiceApiService) GetActiveLaunchPlan(ctx context.Context, idProject string, idDomain string, idName string) (AdminLaunchPlan, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminLaunchPlan ) @@ -991,52 +992,52 @@ func (a *AdminServiceApiService) GetActiveLaunchPlan(ctx context.Context, idProj if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminLaunchPlan - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a :ref:`ref_flyteidl.admin.DescriptionEntity` object. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param idResourceType Identifies the specific type of resource that this identifier corresponds to. - * @param idProject Name of the project the resource belongs to. - * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. - * @param idName User provided value for the resource. - * @param idVersion Specific version of the resource. + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param idResourceType Identifies the specific type of resource that this identifier corresponds to. + - @param idProject Name of the project the resource belongs to. + - @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. + - @param idName User provided value for the resource. + - @param idVersion Specific version of the resource. @return AdminDescriptionEntity */ func (a *AdminServiceApiService) GetDescriptionEntity(ctx context.Context, idResourceType string, idProject string, idDomain string, idName string, idVersion string) (AdminDescriptionEntity, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminDescriptionEntity ) @@ -1087,50 +1088,50 @@ func (a *AdminServiceApiService) GetDescriptionEntity(ctx context.Context, idRes if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminDescriptionEntity - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetches a :ref:`ref_flyteidl.admin.Execution`. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param idProject Name of the project the resource belongs to. - * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. - * @param idName User or system provided value for the resource. + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param idProject Name of the project the resource belongs to. + - @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. + - @param idName User or system provided value for the resource. @return AdminExecution */ func (a *AdminServiceApiService) GetExecution(ctx context.Context, idProject string, idDomain string, idName string) (AdminExecution, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminExecution ) @@ -1179,50 +1180,50 @@ func (a *AdminServiceApiService) GetExecution(ctx context.Context, idProject str if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminExecution - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetches input and output data for a :ref:`ref_flyteidl.admin.Execution`. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param idProject Name of the project the resource belongs to. - * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. - * @param idName User or system provided value for the resource. + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param idProject Name of the project the resource belongs to. + - @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. + - @param idName User or system provided value for the resource. @return AdminWorkflowExecutionGetDataResponse */ func (a *AdminServiceApiService) GetExecutionData(ctx context.Context, idProject string, idDomain string, idName string) (AdminWorkflowExecutionGetDataResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminWorkflowExecutionGetDataResponse ) @@ -1271,36 +1272,36 @@ func (a *AdminServiceApiService) GetExecutionData(ctx context.Context, idProject if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminWorkflowExecutionGetDataResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetches runtime metrics for a :ref:`ref_flyteidl.admin.Execution`. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idProject Name of the project the resource belongs to. @@ -1312,16 +1313,16 @@ AdminServiceApiService Fetches runtime metrics for a :ref:`ref_flyteidl.adm @return AdminWorkflowExecutionGetMetricsResponse */ -type GetExecutionMetricsOpts struct { +type GetExecutionMetricsOpts struct { Depth optional.Int32 } func (a *AdminServiceApiService) GetExecutionMetrics(ctx context.Context, idProject string, idDomain string, idName string, localVarOptionals *GetExecutionMetricsOpts) (AdminWorkflowExecutionGetMetricsResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminWorkflowExecutionGetMetricsResponse ) @@ -1373,36 +1374,36 @@ func (a *AdminServiceApiService) GetExecutionMetrics(ctx context.Context, idProj if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminWorkflowExecutionGetMetricsResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a :ref:`ref_flyteidl.admin.LaunchPlan` definition. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idProject Name of the project the resource belongs to. @@ -1415,16 +1416,16 @@ AdminServiceApiService Fetch a :ref:`ref_flyteidl.admin.LaunchPlan` de @return AdminLaunchPlan */ -type GetLaunchPlanOpts struct { +type GetLaunchPlanOpts struct { IdResourceType optional.String } func (a *AdminServiceApiService) GetLaunchPlan(ctx context.Context, idProject string, idDomain string, idName string, idVersion string, localVarOptionals *GetLaunchPlanOpts) (AdminLaunchPlan, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminLaunchPlan ) @@ -1477,51 +1478,51 @@ func (a *AdminServiceApiService) GetLaunchPlan(ctx context.Context, idProject st if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminLaunchPlan - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Returns a :ref:`ref_flyteidl.admin.NamedEntity` object. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param resourceType Resource type of the metadata to get. One of Task, Workflow or LaunchPlan. +required - * @param idProject Name of the project the resource belongs to. - * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. - * @param idName User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param resourceType Resource type of the metadata to get. One of Task, Workflow or LaunchPlan. +required + - @param idProject Name of the project the resource belongs to. + - @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. + - @param idName User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' @return AdminNamedEntity */ func (a *AdminServiceApiService) GetNamedEntity(ctx context.Context, resourceType string, idProject string, idDomain string, idName string) (AdminNamedEntity, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminNamedEntity ) @@ -1571,51 +1572,51 @@ func (a *AdminServiceApiService) GetNamedEntity(ctx context.Context, resourceTyp if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminNamedEntity - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetches a :ref:`ref_flyteidl.admin.NodeExecution`. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param idExecutionIdProject Name of the project the resource belongs to. - * @param idExecutionIdDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. - * @param idExecutionIdName User or system provided value for the resource. - * @param idNodeId + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param idExecutionIdProject Name of the project the resource belongs to. + - @param idExecutionIdDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. + - @param idExecutionIdName User or system provided value for the resource. + - @param idNodeId @return FlyteidladminNodeExecution */ func (a *AdminServiceApiService) GetNodeExecution(ctx context.Context, idExecutionIdProject string, idExecutionIdDomain string, idExecutionIdName string, idNodeId string) (FlyteidladminNodeExecution, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue FlyteidladminNodeExecution ) @@ -1665,51 +1666,51 @@ func (a *AdminServiceApiService) GetNodeExecution(ctx context.Context, idExecuti if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v FlyteidladminNodeExecution - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetches input and output data for a :ref:`ref_flyteidl.admin.NodeExecution`. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param idExecutionIdProject Name of the project the resource belongs to. - * @param idExecutionIdDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. - * @param idExecutionIdName User or system provided value for the resource. - * @param idNodeId + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param idExecutionIdProject Name of the project the resource belongs to. + - @param idExecutionIdDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. + - @param idExecutionIdName User or system provided value for the resource. + - @param idNodeId @return AdminNodeExecutionGetDataResponse */ func (a *AdminServiceApiService) GetNodeExecutionData(ctx context.Context, idExecutionIdProject string, idExecutionIdDomain string, idExecutionIdName string, idNodeId string) (AdminNodeExecutionGetDataResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminNodeExecutionGetDataResponse ) @@ -1759,36 +1760,36 @@ func (a *AdminServiceApiService) GetNodeExecutionData(ctx context.Context, idExe if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminNodeExecutionGetDataResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetches custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project and domain. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param project Unique project id which this set of attributes references. +required @@ -1798,16 +1799,16 @@ AdminServiceApiService Fetches custom :ref:`ref_flyteidl.admin.MatchableAtt @return AdminProjectAttributesGetResponse */ -type GetProjectAttributesOpts struct { +type GetProjectAttributesOpts struct { ResourceType optional.String } func (a *AdminServiceApiService) GetProjectAttributes(ctx context.Context, project string, localVarOptionals *GetProjectAttributesOpts) (AdminProjectAttributesGetResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminProjectAttributesGetResponse ) @@ -1857,36 +1858,36 @@ func (a *AdminServiceApiService) GetProjectAttributes(ctx context.Context, proje if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminProjectAttributesGetResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetches custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project and domain. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param project Unique project id which this set of attributes references. +required @@ -1897,16 +1898,16 @@ AdminServiceApiService Fetches custom :ref:`ref_flyteidl.admin.MatchableAtt @return AdminProjectDomainAttributesGetResponse */ -type GetProjectDomainAttributesOpts struct { +type GetProjectDomainAttributesOpts struct { ResourceType optional.String } func (a *AdminServiceApiService) GetProjectDomainAttributes(ctx context.Context, project string, domain string, localVarOptionals *GetProjectDomainAttributesOpts) (AdminProjectDomainAttributesGetResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminProjectDomainAttributesGetResponse ) @@ -1957,36 +1958,36 @@ func (a *AdminServiceApiService) GetProjectDomainAttributes(ctx context.Context, if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminProjectDomainAttributesGetResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a :ref:`ref_flyteidl.admin.Task` definition. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idProject Name of the project the resource belongs to. @@ -1999,16 +2000,16 @@ AdminServiceApiService Fetch a :ref:`ref_flyteidl.admin.Task` definiti @return AdminTask */ -type GetTaskOpts struct { +type GetTaskOpts struct { IdResourceType optional.String } func (a *AdminServiceApiService) GetTask(ctx context.Context, idProject string, idDomain string, idName string, idVersion string, localVarOptionals *GetTaskOpts) (AdminTask, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminTask ) @@ -2061,36 +2062,36 @@ func (a *AdminServiceApiService) GetTask(ctx context.Context, idProject string, if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminTask - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetches a :ref:`ref_flyteidl.admin.TaskExecution`. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idNodeExecutionIdExecutionIdProject Name of the project the resource belongs to. @@ -2108,16 +2109,16 @@ AdminServiceApiService Fetches a :ref:`ref_flyteidl.admin.TaskExecution @return FlyteidladminTaskExecution */ -type GetTaskExecutionOpts struct { +type GetTaskExecutionOpts struct { IdTaskIdResourceType optional.String } func (a *AdminServiceApiService) GetTaskExecution(ctx context.Context, idNodeExecutionIdExecutionIdProject string, idNodeExecutionIdExecutionIdDomain string, idNodeExecutionIdExecutionIdName string, idNodeExecutionIdNodeId string, idTaskIdProject string, idTaskIdDomain string, idTaskIdName string, idTaskIdVersion string, idRetryAttempt int64, localVarOptionals *GetTaskExecutionOpts) (FlyteidladminTaskExecution, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue FlyteidladminTaskExecution ) @@ -2175,36 +2176,36 @@ func (a *AdminServiceApiService) GetTaskExecution(ctx context.Context, idNodeExe if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v FlyteidladminTaskExecution - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetches input and output data for a :ref:`ref_flyteidl.admin.TaskExecution`. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idNodeExecutionIdExecutionIdProject Name of the project the resource belongs to. @@ -2222,16 +2223,16 @@ AdminServiceApiService Fetches input and output data for a :ref:`ref_flytei @return AdminTaskExecutionGetDataResponse */ -type GetTaskExecutionDataOpts struct { +type GetTaskExecutionDataOpts struct { IdTaskIdResourceType optional.String } func (a *AdminServiceApiService) GetTaskExecutionData(ctx context.Context, idNodeExecutionIdExecutionIdProject string, idNodeExecutionIdExecutionIdDomain string, idNodeExecutionIdExecutionIdName string, idNodeExecutionIdNodeId string, idTaskIdProject string, idTaskIdDomain string, idTaskIdName string, idTaskIdVersion string, idRetryAttempt int64, localVarOptionals *GetTaskExecutionDataOpts) (AdminTaskExecutionGetDataResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminTaskExecutionGetDataResponse ) @@ -2289,47 +2290,47 @@ func (a *AdminServiceApiService) GetTaskExecutionData(ctx context.Context, idNod if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminTaskExecutionGetDataResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return AdminGetVersionResponse */ func (a *AdminServiceApiService) GetVersion(ctx context.Context) (AdminGetVersionResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminGetVersionResponse ) @@ -2375,36 +2376,36 @@ func (a *AdminServiceApiService) GetVersion(ctx context.Context) (AdminGetVersio if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminGetVersionResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a :ref:`ref_flyteidl.admin.Workflow` definition. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idProject Name of the project the resource belongs to. @@ -2417,16 +2418,16 @@ AdminServiceApiService Fetch a :ref:`ref_flyteidl.admin.Workflow` defi @return AdminWorkflow */ -type GetWorkflowOpts struct { +type GetWorkflowOpts struct { IdResourceType optional.String } func (a *AdminServiceApiService) GetWorkflow(ctx context.Context, idProject string, idDomain string, idName string, idVersion string, localVarOptionals *GetWorkflowOpts) (AdminWorkflow, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminWorkflow ) @@ -2479,36 +2480,36 @@ func (a *AdminServiceApiService) GetWorkflow(ctx context.Context, idProject stri if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminWorkflow - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetches custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project, domain and workflow. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param project Unique project id which this set of attributes references. +required @@ -2520,16 +2521,16 @@ AdminServiceApiService Fetches custom :ref:`ref_flyteidl.admin.MatchableAtt @return AdminWorkflowAttributesGetResponse */ -type GetWorkflowAttributesOpts struct { +type GetWorkflowAttributesOpts struct { ResourceType optional.String } func (a *AdminServiceApiService) GetWorkflowAttributes(ctx context.Context, project string, domain string, workflow string, localVarOptionals *GetWorkflowAttributesOpts) (AdminWorkflowAttributesGetResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminWorkflowAttributesGetResponse ) @@ -2581,36 +2582,36 @@ func (a *AdminServiceApiService) GetWorkflowAttributes(ctx context.Context, proj if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminWorkflowAttributesGetResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService List active versions of :ref:`ref_flyteidl.admin.LaunchPlan`. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param project Name of the project that contains the identifiers. +required. @@ -2624,19 +2625,19 @@ AdminServiceApiService List active versions of :ref:`ref_flyteidl.admin.Lau @return AdminLaunchPlanList */ -type ListActiveLaunchPlansOpts struct { - Limit optional.Int64 - Token optional.String - SortByKey optional.String +type ListActiveLaunchPlansOpts struct { + Limit optional.Int64 + Token optional.String + SortByKey optional.String SortByDirection optional.String } func (a *AdminServiceApiService) ListActiveLaunchPlans(ctx context.Context, project string, domain string, localVarOptionals *ListActiveLaunchPlansOpts) (AdminLaunchPlanList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminLaunchPlanList ) @@ -2696,36 +2697,36 @@ func (a *AdminServiceApiService) ListActiveLaunchPlans(ctx context.Context, proj if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminLaunchPlanList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param resourceType Identifies the specific type of resource that this identifier corresponds to. @@ -2742,20 +2743,20 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.Description @return AdminDescriptionEntityList */ -type ListDescriptionEntitiesOpts struct { - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String +type ListDescriptionEntitiesOpts struct { + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String SortByDirection optional.String } func (a *AdminServiceApiService) ListDescriptionEntities(ctx context.Context, resourceType string, idProject string, idDomain string, idName string, localVarOptionals *ListDescriptionEntitiesOpts) (AdminDescriptionEntityList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminDescriptionEntityList ) @@ -2820,36 +2821,36 @@ func (a *AdminServiceApiService) ListDescriptionEntities(ctx context.Context, re if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminDescriptionEntityList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.DescriptionEntity` definitions. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param resourceType Identifies the specific type of resource that this identifier corresponds to. @@ -2866,21 +2867,21 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.Description @return AdminDescriptionEntityList */ -type ListDescriptionEntities2Opts struct { - IdName optional.String - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String +type ListDescriptionEntities2Opts struct { + IdName optional.String + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String SortByDirection optional.String } func (a *AdminServiceApiService) ListDescriptionEntities2(ctx context.Context, resourceType string, idProject string, idDomain string, localVarOptionals *ListDescriptionEntities2Opts) (AdminDescriptionEntityList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminDescriptionEntityList ) @@ -2947,36 +2948,36 @@ func (a *AdminServiceApiService) ListDescriptionEntities2(ctx context.Context, r if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminDescriptionEntityList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.Execution`. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idProject Name of the project the resource belongs to. @@ -2992,21 +2993,21 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.Execution&# @return AdminExecutionList */ -type ListExecutionsOpts struct { - IdName optional.String - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String +type ListExecutionsOpts struct { + IdName optional.String + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String SortByDirection optional.String } func (a *AdminServiceApiService) ListExecutions(ctx context.Context, idProject string, idDomain string, localVarOptionals *ListExecutionsOpts) (AdminExecutionList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminExecutionList ) @@ -3072,36 +3073,36 @@ func (a *AdminServiceApiService) ListExecutions(ctx context.Context, idProject s if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminExecutionList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.NamedEntityIdentifier` of launch plan objects. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param project Name of the project that contains the identifiers. +required @@ -3116,20 +3117,20 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.NamedEntity @return AdminNamedEntityIdentifierList */ -type ListLaunchPlanIdsOpts struct { - Limit optional.Int64 - Token optional.String - SortByKey optional.String +type ListLaunchPlanIdsOpts struct { + Limit optional.Int64 + Token optional.String + SortByKey optional.String SortByDirection optional.String - Filters optional.String + Filters optional.String } func (a *AdminServiceApiService) ListLaunchPlanIds(ctx context.Context, project string, domain string, localVarOptionals *ListLaunchPlanIdsOpts) (AdminNamedEntityIdentifierList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminNamedEntityIdentifierList ) @@ -3192,36 +3193,36 @@ func (a *AdminServiceApiService) ListLaunchPlanIds(ctx context.Context, project if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminNamedEntityIdentifierList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.LaunchPlan` definitions. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idProject Name of the project the resource belongs to. @@ -3237,20 +3238,20 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.LaunchPlan& @return AdminLaunchPlanList */ -type ListLaunchPlansOpts struct { - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String +type ListLaunchPlansOpts struct { + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String SortByDirection optional.String } func (a *AdminServiceApiService) ListLaunchPlans(ctx context.Context, idProject string, idDomain string, idName string, localVarOptionals *ListLaunchPlansOpts) (AdminLaunchPlanList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminLaunchPlanList ) @@ -3314,36 +3315,36 @@ func (a *AdminServiceApiService) ListLaunchPlans(ctx context.Context, idProject if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminLaunchPlanList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.LaunchPlan` definitions. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idProject Name of the project the resource belongs to. @@ -3359,21 +3360,21 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.LaunchPlan& @return AdminLaunchPlanList */ -type ListLaunchPlans2Opts struct { - IdName optional.String - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String +type ListLaunchPlans2Opts struct { + IdName optional.String + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String SortByDirection optional.String } func (a *AdminServiceApiService) ListLaunchPlans2(ctx context.Context, idProject string, idDomain string, localVarOptionals *ListLaunchPlans2Opts) (AdminLaunchPlanList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminLaunchPlanList ) @@ -3439,36 +3440,36 @@ func (a *AdminServiceApiService) ListLaunchPlans2(ctx context.Context, idProject if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminLaunchPlanList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Lists custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a specific resource type. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param optional nil or *ListMatchableAttributesOpts - Optional Parameters: @@ -3477,16 +3478,16 @@ AdminServiceApiService Lists custom :ref:`ref_flyteidl.admin.MatchableAttri @return AdminListMatchableAttributesResponse */ -type ListMatchableAttributesOpts struct { +type ListMatchableAttributesOpts struct { ResourceType optional.String } func (a *AdminServiceApiService) ListMatchableAttributes(ctx context.Context, localVarOptionals *ListMatchableAttributesOpts) (AdminListMatchableAttributesResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminListMatchableAttributesResponse ) @@ -3535,36 +3536,36 @@ func (a *AdminServiceApiService) ListMatchableAttributes(ctx context.Context, lo if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminListMatchableAttributesResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Returns a list of :ref:`ref_flyteidl.admin.NamedEntity` objects. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param resourceType Resource type of the metadata to query. One of Task, Workflow or LaunchPlan. +required @@ -3580,20 +3581,20 @@ AdminServiceApiService Returns a list of :ref:`ref_flyteidl.admin.NamedEnti @return AdminNamedEntityList */ -type ListNamedEntitiesOpts struct { - Limit optional.Int64 - Token optional.String - SortByKey optional.String +type ListNamedEntitiesOpts struct { + Limit optional.Int64 + Token optional.String + SortByKey optional.String SortByDirection optional.String - Filters optional.String + Filters optional.String } func (a *AdminServiceApiService) ListNamedEntities(ctx context.Context, resourceType string, project string, domain string, localVarOptionals *ListNamedEntitiesOpts) (AdminNamedEntityList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminNamedEntityList ) @@ -3657,36 +3658,36 @@ func (a *AdminServiceApiService) ListNamedEntities(ctx context.Context, resource if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminNamedEntityList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution`. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param workflowExecutionIdProject Name of the project the resource belongs to. @@ -3694,7 +3695,7 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.NodeExecuti * @param workflowExecutionIdName User or system provided value for the resource. * @param optional nil or *ListNodeExecutionsOpts - Optional Parameters: * @param "Limit" (optional.Int64) - Indicates the number of resources to be returned. +required. - * @param "Token" (optional.String) - + * @param "Token" (optional.String) - * @param "Filters" (optional.String) - Indicates a list of filters passed as string. More info on constructing filters : <Link> +optional. * @param "SortByKey" (optional.String) - Indicates an attribute to sort the response values. +required. * @param "SortByDirection" (optional.String) - Indicates the direction to apply sort key for response values. +optional. - DESCENDING: By default, fields are sorted in descending order. @@ -3703,21 +3704,21 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.NodeExecuti @return AdminNodeExecutionList */ -type ListNodeExecutionsOpts struct { - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String +type ListNodeExecutionsOpts struct { + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String SortByDirection optional.String - UniqueParentId optional.String + UniqueParentId optional.String } func (a *AdminServiceApiService) ListNodeExecutions(ctx context.Context, workflowExecutionIdProject string, workflowExecutionIdDomain string, workflowExecutionIdName string, localVarOptionals *ListNodeExecutionsOpts) (AdminNodeExecutionList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminNodeExecutionList ) @@ -3784,36 +3785,36 @@ func (a *AdminServiceApiService) ListNodeExecutions(ctx context.Context, workflo if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminNodeExecutionList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.NodeExecution` launched by the reference :ref:`ref_flyteidl.admin.TaskExecution`. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param taskExecutionIdNodeExecutionIdExecutionIdProject Name of the project the resource belongs to. @@ -3836,21 +3837,21 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.NodeExecuti @return AdminNodeExecutionList */ -type ListNodeExecutionsForTaskOpts struct { +type ListNodeExecutionsForTaskOpts struct { TaskExecutionIdTaskIdResourceType optional.String - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String - SortByDirection optional.String + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String + SortByDirection optional.String } func (a *AdminServiceApiService) ListNodeExecutionsForTask(ctx context.Context, taskExecutionIdNodeExecutionIdExecutionIdProject string, taskExecutionIdNodeExecutionIdExecutionIdDomain string, taskExecutionIdNodeExecutionIdExecutionIdName string, taskExecutionIdNodeExecutionIdNodeId string, taskExecutionIdTaskIdProject string, taskExecutionIdTaskIdDomain string, taskExecutionIdTaskIdName string, taskExecutionIdTaskIdVersion string, taskExecutionIdRetryAttempt int64, localVarOptionals *ListNodeExecutionsForTaskOpts) (AdminNodeExecutionList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminNodeExecutionList ) @@ -3923,36 +3924,36 @@ func (a *AdminServiceApiService) ListNodeExecutionsForTask(ctx context.Context, if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminNodeExecutionList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetches a list of :ref:`ref_flyteidl.admin.Project` * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param optional nil or *ListProjectsOpts - Optional Parameters: @@ -3965,20 +3966,20 @@ AdminServiceApiService Fetches a list of :ref:`ref_flyteidl.admin.Project&# @return AdminProjects */ -type ListProjectsOpts struct { - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String +type ListProjectsOpts struct { + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String SortByDirection optional.String } func (a *AdminServiceApiService) ListProjects(ctx context.Context, localVarOptionals *ListProjectsOpts) (AdminProjects, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminProjects ) @@ -4039,36 +4040,36 @@ func (a *AdminServiceApiService) ListProjects(ctx context.Context, localVarOptio if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminProjects - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetches a list of :ref:`ref_flyteidl.admin.TaskExecution`. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param nodeExecutionIdExecutionIdProject Name of the project the resource belongs to. @@ -4085,20 +4086,20 @@ AdminServiceApiService Fetches a list of :ref:`ref_flyteidl.admin.TaskExecu @return AdminTaskExecutionList */ -type ListTaskExecutionsOpts struct { - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String +type ListTaskExecutionsOpts struct { + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String SortByDirection optional.String } func (a *AdminServiceApiService) ListTaskExecutions(ctx context.Context, nodeExecutionIdExecutionIdProject string, nodeExecutionIdExecutionIdDomain string, nodeExecutionIdExecutionIdName string, nodeExecutionIdNodeId string, localVarOptionals *ListTaskExecutionsOpts) (AdminTaskExecutionList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminTaskExecutionList ) @@ -4163,36 +4164,36 @@ func (a *AdminServiceApiService) ListTaskExecutions(ctx context.Context, nodeExe if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminTaskExecutionList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.NamedEntityIdentifier` of task objects. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param project Name of the project that contains the identifiers. +required @@ -4207,20 +4208,20 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.NamedEntity @return AdminNamedEntityIdentifierList */ -type ListTaskIdsOpts struct { - Limit optional.Int64 - Token optional.String - SortByKey optional.String +type ListTaskIdsOpts struct { + Limit optional.Int64 + Token optional.String + SortByKey optional.String SortByDirection optional.String - Filters optional.String + Filters optional.String } func (a *AdminServiceApiService) ListTaskIds(ctx context.Context, project string, domain string, localVarOptionals *ListTaskIdsOpts) (AdminNamedEntityIdentifierList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminNamedEntityIdentifierList ) @@ -4283,36 +4284,36 @@ func (a *AdminServiceApiService) ListTaskIds(ctx context.Context, project string if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminNamedEntityIdentifierList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.Task` definitions. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idProject Name of the project the resource belongs to. @@ -4328,20 +4329,20 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.Task` @return AdminTaskList */ -type ListTasksOpts struct { - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String +type ListTasksOpts struct { + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String SortByDirection optional.String } func (a *AdminServiceApiService) ListTasks(ctx context.Context, idProject string, idDomain string, idName string, localVarOptionals *ListTasksOpts) (AdminTaskList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminTaskList ) @@ -4405,36 +4406,36 @@ func (a *AdminServiceApiService) ListTasks(ctx context.Context, idProject string if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminTaskList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.Task` definitions. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idProject Name of the project the resource belongs to. @@ -4450,21 +4451,21 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.Task` @return AdminTaskList */ -type ListTasks2Opts struct { - IdName optional.String - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String +type ListTasks2Opts struct { + IdName optional.String + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String SortByDirection optional.String } func (a *AdminServiceApiService) ListTasks2(ctx context.Context, idProject string, idDomain string, localVarOptionals *ListTasks2Opts) (AdminTaskList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminTaskList ) @@ -4530,36 +4531,36 @@ func (a *AdminServiceApiService) ListTasks2(ctx context.Context, idProject strin if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminTaskList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.NamedEntityIdentifier` of workflow objects. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param project Name of the project that contains the identifiers. +required @@ -4574,20 +4575,20 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.NamedEntity @return AdminNamedEntityIdentifierList */ -type ListWorkflowIdsOpts struct { - Limit optional.Int64 - Token optional.String - SortByKey optional.String +type ListWorkflowIdsOpts struct { + Limit optional.Int64 + Token optional.String + SortByKey optional.String SortByDirection optional.String - Filters optional.String + Filters optional.String } func (a *AdminServiceApiService) ListWorkflowIds(ctx context.Context, project string, domain string, localVarOptionals *ListWorkflowIdsOpts) (AdminNamedEntityIdentifierList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminNamedEntityIdentifierList ) @@ -4650,36 +4651,36 @@ func (a *AdminServiceApiService) ListWorkflowIds(ctx context.Context, project st if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminNamedEntityIdentifierList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.Workflow` definitions. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idProject Name of the project the resource belongs to. @@ -4695,20 +4696,20 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.Workflow&#x @return AdminWorkflowList */ -type ListWorkflowsOpts struct { - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String +type ListWorkflowsOpts struct { + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String SortByDirection optional.String } func (a *AdminServiceApiService) ListWorkflows(ctx context.Context, idProject string, idDomain string, idName string, localVarOptionals *ListWorkflowsOpts) (AdminWorkflowList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminWorkflowList ) @@ -4772,36 +4773,36 @@ func (a *AdminServiceApiService) ListWorkflows(ctx context.Context, idProject st if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminWorkflowList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.Workflow` definitions. * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param idProject Name of the project the resource belongs to. @@ -4817,21 +4818,21 @@ AdminServiceApiService Fetch a list of :ref:`ref_flyteidl.admin.Workflow&#x @return AdminWorkflowList */ -type ListWorkflows2Opts struct { - IdName optional.String - Limit optional.Int64 - Token optional.String - Filters optional.String - SortByKey optional.String +type ListWorkflows2Opts struct { + IdName optional.String + Limit optional.Int64 + Token optional.String + Filters optional.String + SortByKey optional.String SortByDirection optional.String } func (a *AdminServiceApiService) ListWorkflows2(ctx context.Context, idProject string, idDomain string, localVarOptionals *ListWorkflows2Opts) (AdminWorkflowList, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Get") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Get") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminWorkflowList ) @@ -4897,48 +4898,48 @@ func (a *AdminServiceApiService) ListWorkflows2(ctx context.Context, idProject s if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminWorkflowList - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Recreates a previously-run workflow execution that will only start executing from the last known failure point. In Recover mode, users cannot change any input parameters or update the version of the execution. This is extremely useful to recover from system errors and byzantine faults like - Loss of K8s cluster, bugs in platform or instability, machine failures, downstream system failures (downstream services), or simply to recover executions that failed because of retry exhaustion and should complete if tried again. See :ref:`ref_flyteidl.admin.ExecutionRecoverRequest` for more details. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param body @return AdminExecutionCreateResponse */ func (a *AdminServiceApiService) RecoverExecution(ctx context.Context, body AdminExecutionRecoverRequest) (AdminExecutionCreateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Post") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Post") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminExecutionCreateResponse ) @@ -4986,48 +4987,48 @@ func (a *AdminServiceApiService) RecoverExecution(ctx context.Context, body Admi if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminExecutionCreateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Registers a :ref:`ref_flyteidl.admin.Project` with the Flyte deployment. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param body @return AdminProjectRegisterResponse */ func (a *AdminServiceApiService) RegisterProject(ctx context.Context, body AdminProjectRegisterRequest) (AdminProjectRegisterResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Post") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Post") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminProjectRegisterResponse ) @@ -5075,48 +5076,48 @@ func (a *AdminServiceApiService) RegisterProject(ctx context.Context, body Admin if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminProjectRegisterResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Triggers the creation of an identical :ref:`ref_flyteidl.admin.Execution` - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param body @return AdminExecutionCreateResponse */ func (a *AdminServiceApiService) RelaunchExecution(ctx context.Context, body AdminExecutionRelaunchRequest) (AdminExecutionCreateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Post") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Post") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminExecutionCreateResponse ) @@ -5164,51 +5165,51 @@ func (a *AdminServiceApiService) RelaunchExecution(ctx context.Context, body Adm if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminExecutionCreateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Terminates an in-progress :ref:`ref_flyteidl.admin.Execution`. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param idProject Name of the project the resource belongs to. - * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. - * @param idName User or system provided value for the resource. - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param idProject Name of the project the resource belongs to. + - @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. + - @param idName User or system provided value for the resource. + - @param body @return AdminExecutionTerminateResponse */ func (a *AdminServiceApiService) TerminateExecution(ctx context.Context, idProject string, idDomain string, idName string, body AdminExecutionTerminateRequest) (AdminExecutionTerminateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Delete") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Delete") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminExecutionTerminateResponse ) @@ -5259,51 +5260,51 @@ func (a *AdminServiceApiService) TerminateExecution(ctx context.Context, idProje if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminExecutionTerminateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Update execution belonging to project domain :ref:`ref_flyteidl.admin.Execution`. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param idProject Name of the project the resource belongs to. - * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. - * @param idName User or system provided value for the resource. - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param idProject Name of the project the resource belongs to. + - @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. + - @param idName User or system provided value for the resource. + - @param body @return AdminExecutionUpdateResponse */ func (a *AdminServiceApiService) UpdateExecution(ctx context.Context, idProject string, idDomain string, idName string, body AdminExecutionUpdateRequest) (AdminExecutionUpdateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Put") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Put") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminExecutionUpdateResponse ) @@ -5354,52 +5355,52 @@ func (a *AdminServiceApiService) UpdateExecution(ctx context.Context, idProject if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminExecutionUpdateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Updates the status of a registered :ref:`ref_flyteidl.admin.LaunchPlan`. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param idProject Name of the project the resource belongs to. - * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. - * @param idName User provided value for the resource. - * @param idVersion Specific version of the resource. - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param idProject Name of the project the resource belongs to. + - @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. + - @param idName User provided value for the resource. + - @param idVersion Specific version of the resource. + - @param body @return AdminLaunchPlanUpdateResponse */ func (a *AdminServiceApiService) UpdateLaunchPlan(ctx context.Context, idProject string, idDomain string, idName string, idVersion string, body AdminLaunchPlanUpdateRequest) (AdminLaunchPlanUpdateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Put") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Put") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminLaunchPlanUpdateResponse ) @@ -5451,52 +5452,52 @@ func (a *AdminServiceApiService) UpdateLaunchPlan(ctx context.Context, idProject if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminLaunchPlanUpdateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Updates a :ref:`ref_flyteidl.admin.NamedEntity` object. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param resourceType Resource type of the metadata to update +required - * @param idProject Name of the project the resource belongs to. - * @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. - * @param idName User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param resourceType Resource type of the metadata to update +required + - @param idProject Name of the project the resource belongs to. + - @param idDomain Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. + - @param idName User provided value for the resource. The combination of project + domain + name uniquely identifies the resource. +optional - in certain contexts - like 'List API', 'Launch plans' + - @param body @return AdminNamedEntityUpdateResponse */ func (a *AdminServiceApiService) UpdateNamedEntity(ctx context.Context, resourceType string, idProject string, idDomain string, idName string, body AdminNamedEntityUpdateRequest) (AdminNamedEntityUpdateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Put") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Put") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminNamedEntityUpdateResponse ) @@ -5548,49 +5549,49 @@ func (a *AdminServiceApiService) UpdateNamedEntity(ctx context.Context, resource if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminNamedEntityUpdateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Updates an existing :ref:`ref_flyteidl.admin.Project` flyteidl.admin.Project should be passed but the domains property should be empty; it will be ignored in the handler as domains cannot be updated via this API. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param id Globally unique project name. - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param id Globally unique project name. + - @param body @return AdminProjectUpdateResponse */ func (a *AdminServiceApiService) UpdateProject(ctx context.Context, id string, body AdminProject) (AdminProjectUpdateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Put") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Put") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminProjectUpdateResponse ) @@ -5639,49 +5640,49 @@ func (a *AdminServiceApiService) UpdateProject(ctx context.Context, id string, b if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminProjectUpdateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Creates or updates custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` at the project level - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param attributesProject Unique project id for which this set of attributes will be applied. - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param attributesProject Unique project id for which this set of attributes will be applied. + - @param body @return AdminProjectAttributesUpdateResponse */ func (a *AdminServiceApiService) UpdateProjectAttributes(ctx context.Context, attributesProject string, body AdminProjectAttributesUpdateRequest) (AdminProjectAttributesUpdateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Put") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Put") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminProjectAttributesUpdateResponse ) @@ -5730,50 +5731,50 @@ func (a *AdminServiceApiService) UpdateProjectAttributes(ctx context.Context, at if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminProjectAttributesUpdateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Creates or updates custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project and domain. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param attributesProject Unique project id for which this set of attributes will be applied. - * @param attributesDomain Unique domain id for which this set of attributes will be applied. - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param attributesProject Unique project id for which this set of attributes will be applied. + - @param attributesDomain Unique domain id for which this set of attributes will be applied. + - @param body @return AdminProjectDomainAttributesUpdateResponse */ func (a *AdminServiceApiService) UpdateProjectDomainAttributes(ctx context.Context, attributesProject string, attributesDomain string, body AdminProjectDomainAttributesUpdateRequest) (AdminProjectDomainAttributesUpdateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Put") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Put") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminProjectDomainAttributesUpdateResponse ) @@ -5823,51 +5824,51 @@ func (a *AdminServiceApiService) UpdateProjectDomainAttributes(ctx context.Conte if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminProjectDomainAttributesUpdateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } return localVarReturnValue, localVarHttpResponse, nil } -/* +/* AdminServiceApiService Creates or updates custom :ref:`ref_flyteidl.admin.MatchableAttributesConfiguration` for a project, domain and workflow. - * @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - * @param attributesProject Unique project id for which this set of attributes will be applied. - * @param attributesDomain Unique domain id for which this set of attributes will be applied. - * @param attributesWorkflow Workflow name for which this set of attributes will be applied. - * @param body + - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param attributesProject Unique project id for which this set of attributes will be applied. + - @param attributesDomain Unique domain id for which this set of attributes will be applied. + - @param attributesWorkflow Workflow name for which this set of attributes will be applied. + - @param body @return AdminWorkflowAttributesUpdateResponse */ func (a *AdminServiceApiService) UpdateWorkflowAttributes(ctx context.Context, attributesProject string, attributesDomain string, attributesWorkflow string, body AdminWorkflowAttributesUpdateRequest) (AdminWorkflowAttributesUpdateResponse, *http.Response, error) { var ( - localVarHttpMethod = strings.ToUpper("Put") - localVarPostBody interface{} - localVarFileName string - localVarFileBytes []byte + localVarHttpMethod = strings.ToUpper("Put") + localVarPostBody interface{} + localVarFileName string + localVarFileBytes []byte localVarReturnValue AdminWorkflowAttributesUpdateResponse ) @@ -5918,29 +5919,29 @@ func (a *AdminServiceApiService) UpdateWorkflowAttributes(ctx context.Context, a if localVarHttpResponse.StatusCode < 300 { // If we succeed, return the data, otherwise pass on to decode error. - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err == nil { + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err == nil { return localVarReturnValue, localVarHttpResponse, err } } if localVarHttpResponse.StatusCode >= 300 { newErr := GenericSwaggerError{ - body: localVarBody, + body: localVarBody, error: localVarHttpResponse.Status, } - + if localVarHttpResponse.StatusCode == 200 { var v AdminWorkflowAttributesUpdateResponse - err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")); - if err != nil { - newErr.error = err.Error() - return localVarReturnValue, localVarHttpResponse, newErr - } - newErr.model = v + err = a.client.decode(&v, localVarBody, localVarHttpResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() return localVarReturnValue, localVarHttpResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHttpResponse, newErr } - + return localVarReturnValue, localVarHttpResponse, newErr } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/client.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/client.go index 8fd676821e..9b5b227be7 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/client.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/client.go @@ -300,17 +300,17 @@ func (c *APIClient) prepareRequest( } func (c *APIClient) decode(v interface{}, b []byte, contentType string) (err error) { - if strings.Contains(contentType, "application/xml") { - if err = xml.Unmarshal(b, v); err != nil { - return err - } - return nil - } else if strings.Contains(contentType, "application/json") { - if err = json.Unmarshal(b, v); err != nil { - return err - } - return nil + if strings.Contains(contentType, "application/xml") { + if err = xml.Unmarshal(b, v); err != nil { + return err + } + return nil + } else if strings.Contains(contentType, "application/json") { + if err = json.Unmarshal(b, v); err != nil { + return err } + return nil + } return errors.New("undefined response type") } @@ -461,4 +461,4 @@ func (e GenericSwaggerError) Body() []byte { // Model returns the unpacked model of the error func (e GenericSwaggerError) Model() interface{} { return e.model -} \ No newline at end of file +} diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_abort_metadata.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_abort_metadata.go index f2bd1e1146..2f6f2e95dc 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_abort_metadata.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_abort_metadata.go @@ -12,6 +12,6 @@ package flyteadmin // Specifies metadata around an aborted workflow execution. type AdminAbortMetadata struct { // In the case of a user-specified abort, this will pass along the user-supplied cause. - Cause string `json:"cause,omitempty"` + Cause string `json:"cause,omitempty"` Principal string `json:"principal,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_cron_schedule.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_cron_schedule.go index fa40dd16bc..87a32e2ec1 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_cron_schedule.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_cron_schedule.go @@ -12,5 +12,5 @@ package flyteadmin // Options for schedules to run according to a cron expression. type AdminCronSchedule struct { Schedule string `json:"schedule,omitempty"` - Offset string `json:"offset,omitempty"` + Offset string `json:"offset,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_description.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_description.go index 6e696d7c12..dbcca9eb0a 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_description.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_description.go @@ -11,8 +11,8 @@ package flyteadmin // Full user description with formatting preserved. This can be rendered by clients, such as the console or command line tools with in-tact formatting. type AdminDescription struct { - Value string `json:"value,omitempty"` - Uri string `json:"uri,omitempty"` - Format *AdminDescriptionFormat `json:"format,omitempty"` - IconLink string `json:"icon_link,omitempty"` + Value string `json:"value,omitempty"` + Uri string `json:"uri,omitempty"` + Format *AdminDescriptionFormat `json:"format,omitempty"` + IconLink string `json:"icon_link,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_description_format.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_description_format.go index c392910277..8c15023457 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_description_format.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_description_format.go @@ -8,13 +8,14 @@ */ package flyteadmin + // AdminDescriptionFormat : - DESCRIPTION_FORMAT_RST: python default documentation - comments is rst type AdminDescriptionFormat string // List of adminDescriptionFormat const ( - AdminDescriptionFormatUNKNOWN AdminDescriptionFormat = "DESCRIPTION_FORMAT_UNKNOWN" + AdminDescriptionFormatUNKNOWN AdminDescriptionFormat = "DESCRIPTION_FORMAT_UNKNOWN" AdminDescriptionFormatMARKDOWN AdminDescriptionFormat = "DESCRIPTION_FORMAT_MARKDOWN" - AdminDescriptionFormatHTML AdminDescriptionFormat = "DESCRIPTION_FORMAT_HTML" - AdminDescriptionFormatRST AdminDescriptionFormat = "DESCRIPTION_FORMAT_RST" + AdminDescriptionFormatHTML AdminDescriptionFormat = "DESCRIPTION_FORMAT_HTML" + AdminDescriptionFormatRST AdminDescriptionFormat = "DESCRIPTION_FORMAT_RST" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_closure.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_closure.go index 831dcb9d02..e166e5ac77 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_closure.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_closure.go @@ -23,7 +23,7 @@ type AdminExecutionClosure struct { // In the case of a user-specified abort, this will pass along the user and their supplied cause. AbortMetadata *AdminAbortMetadata `json:"abort_metadata,omitempty"` // Raw output data produced by this execution. DEPRECATED. Use GetExecutionData to fetch output data instead. - OutputData *CoreLiteralMap `json:"output_data,omitempty"` + OutputData *CoreLiteralMap `json:"output_data,omitempty"` ComputedInputs *CoreLiteralMap `json:"computed_inputs,omitempty"` // Most recent recorded phase for the execution. Phase *CoreWorkflowExecutionPhase `json:"phase,omitempty"` @@ -38,6 +38,6 @@ type AdminExecutionClosure struct { // The notification settings to use after merging the CreateExecutionRequest and the launch plan notification settings. An execution launched with notifications will always prefer that definition to notifications defined statically in a launch plan. Notifications []AdminNotification `json:"notifications,omitempty"` // Identifies the workflow definition for this execution. - WorkflowId *CoreIdentifier `json:"workflow_id,omitempty"` + WorkflowId *CoreIdentifier `json:"workflow_id,omitempty"` StateChangeDetails *AdminExecutionStateChangeDetails `json:"state_change_details,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_create_request.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_create_request.go index b8da1d4fca..3ccc424c25 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_create_request.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_create_request.go @@ -11,9 +11,9 @@ package flyteadmin // Request to launch an execution with the given project, domain and optionally-assigned name. type AdminExecutionCreateRequest struct { - Project string `json:"project,omitempty"` - Domain string `json:"domain,omitempty"` - Name string `json:"name,omitempty"` - Spec *AdminExecutionSpec `json:"spec,omitempty"` - Inputs *CoreLiteralMap `json:"inputs,omitempty"` + Project string `json:"project,omitempty"` + Domain string `json:"domain,omitempty"` + Name string `json:"name,omitempty"` + Spec *AdminExecutionSpec `json:"spec,omitempty"` + Inputs *CoreLiteralMap `json:"inputs,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_metadata.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_metadata.go index 9db8ddfd7f..8a0b5c0a8a 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_metadata.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_metadata.go @@ -21,7 +21,7 @@ type AdminExecutionMetadata struct { // Indicates the nestedness of this execution. If a user launches a workflow execution, the default nesting is 0. If this execution further launches a workflow (child workflow), the nesting level is incremented by 0 => 1 Generally, if workflow at nesting level k launches a workflow then the child workflow will have nesting = k + 1. Nesting int64 `json:"nesting,omitempty"` // For scheduled executions, the requested time for execution for this specific schedule invocation. - ScheduledAt time.Time `json:"scheduled_at,omitempty"` + ScheduledAt time.Time `json:"scheduled_at,omitempty"` ParentNodeExecution *CoreNodeExecutionIdentifier `json:"parent_node_execution,omitempty"` // Optional, a reference workflow execution related to this execution. In the case of a relaunch, this references the original workflow execution. ReferenceExecution *CoreWorkflowExecutionIdentifier `json:"reference_execution,omitempty"` diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_recover_request.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_recover_request.go index 571e0013f9..ec74645374 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_recover_request.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_recover_request.go @@ -12,8 +12,8 @@ package flyteadmin // Request to recover the referenced execution. type AdminExecutionRecoverRequest struct { // Identifier of the workflow execution to recover. - Id *CoreWorkflowExecutionIdentifier `json:"id,omitempty"` - Name string `json:"name,omitempty"` + Id *CoreWorkflowExecutionIdentifier `json:"id,omitempty"` + Name string `json:"name,omitempty"` // Additional metadata which will be used to overwrite any metadata in the reference execution when triggering a recovery execution. Metadata *AdminExecutionMetadata `json:"metadata,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_relaunch_request.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_relaunch_request.go index 0f8ccc51c0..0be4d207d8 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_relaunch_request.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_relaunch_request.go @@ -11,8 +11,8 @@ package flyteadmin // Request to relaunch the referenced execution. type AdminExecutionRelaunchRequest struct { - Id *CoreWorkflowExecutionIdentifier `json:"id,omitempty"` - Name string `json:"name,omitempty"` + Id *CoreWorkflowExecutionIdentifier `json:"id,omitempty"` + Name string `json:"name,omitempty"` // Allows for all cached values of a workflow and its tasks to be overwritten for a single execution. If enabled, all calculations are performed even if cached results would be available, overwriting the stored data once execution finishes successfully. OverwriteCache bool `json:"overwrite_cache,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_spec.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_spec.go index 3c9dc0ffdb..4a9d287e72 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_spec.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_spec.go @@ -11,9 +11,9 @@ package flyteadmin // An ExecutionSpec encompasses all data used to launch this execution. The Spec does not change over the lifetime of an execution as it progresses across phase changes. type AdminExecutionSpec struct { - LaunchPlan *CoreIdentifier `json:"launch_plan,omitempty"` - Inputs *CoreLiteralMap `json:"inputs,omitempty"` - Metadata *AdminExecutionMetadata `json:"metadata,omitempty"` + LaunchPlan *CoreIdentifier `json:"launch_plan,omitempty"` + Inputs *CoreLiteralMap `json:"inputs,omitempty"` + Metadata *AdminExecutionMetadata `json:"metadata,omitempty"` // List of notifications based on Execution status transitions When this list is not empty it is used rather than any notifications defined in the referenced launch plan. When this list is empty, the notifications defined for the launch plan will be applied. Notifications *AdminNotificationList `json:"notifications,omitempty"` // This should be set to true if all notifications are intended to be disabled for this execution. @@ -29,7 +29,7 @@ type AdminExecutionSpec struct { // Indicates the runtime priority of the execution. QualityOfService *CoreQualityOfService `json:"quality_of_service,omitempty"` // Controls the maximum number of task nodes that can be run in parallel for the entire workflow. This is useful to achieve fairness. Note: MapTasks are regarded as one unit, and parallelism/concurrency of MapTasks is independent from this. - MaxParallelism int32 `json:"max_parallelism,omitempty"` + MaxParallelism int32 `json:"max_parallelism,omitempty"` RawOutputDataConfig *AdminRawOutputDataConfig `json:"raw_output_data_config,omitempty"` // Controls how to select an available cluster on which this execution should run. ClusterAssignment *AdminClusterAssignment `json:"cluster_assignment,omitempty"` diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_state.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_state.go index c67d546f89..306d6b8dbd 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_state.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_state.go @@ -8,11 +8,12 @@ */ package flyteadmin + // AdminExecutionState : The state of the execution is used to control its visibility in the UI/CLI. - EXECUTION_ACTIVE: By default, all executions are considered active. - EXECUTION_ARCHIVED: Archived executions are no longer visible in the UI. type AdminExecutionState string // List of adminExecutionState const ( - AdminExecutionStateACTIVE AdminExecutionState = "EXECUTION_ACTIVE" + AdminExecutionStateACTIVE AdminExecutionState = "EXECUTION_ACTIVE" AdminExecutionStateARCHIVED AdminExecutionState = "EXECUTION_ARCHIVED" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_state_change_details.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_state_change_details.go index 44e3d275a0..e13f2c24e7 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_state_change_details.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_state_change_details.go @@ -18,5 +18,5 @@ type AdminExecutionStateChangeDetails struct { State *AdminExecutionState `json:"state,omitempty"` // This timestamp represents when the state changed. OccurredAt time.Time `json:"occurred_at,omitempty"` - Principal string `json:"principal,omitempty"` + Principal string `json:"principal,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_update_request.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_update_request.go index 681eb05ed9..910f10fe6e 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_update_request.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_execution_update_request.go @@ -10,6 +10,6 @@ package flyteadmin type AdminExecutionUpdateRequest struct { - Id *CoreWorkflowExecutionIdentifier `json:"id,omitempty"` - State *AdminExecutionState `json:"state,omitempty"` + Id *CoreWorkflowExecutionIdentifier `json:"id,omitempty"` + State *AdminExecutionState `json:"state,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_fixed_rate.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_fixed_rate.go index b92e2a45e2..4a6de17fa4 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_fixed_rate.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_fixed_rate.go @@ -11,6 +11,6 @@ package flyteadmin // Option for schedules run at a certain frequency e.g. every 2 minutes. type AdminFixedRate struct { - Value int64 `json:"value,omitempty"` - Unit *AdminFixedRateUnit `json:"unit,omitempty"` + Value int64 `json:"value,omitempty"` + Unit *AdminFixedRateUnit `json:"unit,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_fixed_rate_unit.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_fixed_rate_unit.go index 4a6dd4877a..7ad83474ba 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_fixed_rate_unit.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_fixed_rate_unit.go @@ -8,12 +8,13 @@ */ package flyteadmin + // AdminFixedRateUnit : Represents a frequency at which to run a schedule. type AdminFixedRateUnit string // List of adminFixedRateUnit const ( AdminFixedRateUnitMINUTE AdminFixedRateUnit = "MINUTE" - AdminFixedRateUnitHOUR AdminFixedRateUnit = "HOUR" - AdminFixedRateUnitDAY AdminFixedRateUnit = "DAY" + AdminFixedRateUnitHOUR AdminFixedRateUnit = "HOUR" + AdminFixedRateUnitDAY AdminFixedRateUnit = "DAY" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_flyte_ur_ls.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_flyte_ur_ls.go index 6b8a49a661..b0d74055df 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_flyte_ur_ls.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_flyte_ur_ls.go @@ -11,7 +11,7 @@ package flyteadmin // These URLs are returned as part of node and task execution data requests. type AdminFlyteUrLs struct { - Inputs string `json:"inputs,omitempty"` + Inputs string `json:"inputs,omitempty"` Outputs string `json:"outputs,omitempty"` - Deck string `json:"deck,omitempty"` + Deck string `json:"deck,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_closure.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_closure.go index 540110cb0f..d6aa0a0550 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_closure.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_closure.go @@ -16,9 +16,9 @@ import ( // Values computed by the flyte platform after launch plan registration. These include expected_inputs required to be present in a CreateExecutionRequest to launch the reference workflow as well timestamp values associated with the launch plan. type AdminLaunchPlanClosure struct { // Indicate the Launch plan state. - State *AdminLaunchPlanState `json:"state,omitempty"` - ExpectedInputs *CoreParameterMap `json:"expected_inputs,omitempty"` - ExpectedOutputs *CoreVariableMap `json:"expected_outputs,omitempty"` + State *AdminLaunchPlanState `json:"state,omitempty"` + ExpectedInputs *CoreParameterMap `json:"expected_inputs,omitempty"` + ExpectedOutputs *CoreVariableMap `json:"expected_outputs,omitempty"` // Time at which the launch plan was created. CreatedAt time.Time `json:"created_at,omitempty"` // Time at which the launch plan was last updated. diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_metadata.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_metadata.go index f368501cd8..3260b1b039 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_metadata.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_metadata.go @@ -11,6 +11,6 @@ package flyteadmin // Additional launch plan attributes included in the LaunchPlanSpec not strictly required to launch the reference workflow. type AdminLaunchPlanMetadata struct { - Schedule *AdminSchedule `json:"schedule,omitempty"` + Schedule *AdminSchedule `json:"schedule,omitempty"` Notifications []AdminNotification `json:"notifications,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_spec.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_spec.go index 644ea168f5..ca1b6c5475 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_spec.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_spec.go @@ -11,20 +11,20 @@ package flyteadmin // User-provided launch plan definition and configuration values. type AdminLaunchPlanSpec struct { - WorkflowId *CoreIdentifier `json:"workflow_id,omitempty"` + WorkflowId *CoreIdentifier `json:"workflow_id,omitempty"` EntityMetadata *AdminLaunchPlanMetadata `json:"entity_metadata,omitempty"` - // Input values to be passed for the execution. These can be overriden when an execution is created with this launch plan. + // Input values to be passed for the execution. These can be overridden when an execution is created with this launch plan. DefaultInputs *CoreParameterMap `json:"default_inputs,omitempty"` - // Fixed, non-overridable inputs for the Launch Plan. These can not be overriden when an execution is created with this launch plan. + // Fixed, non-overridable inputs for the Launch Plan. These can not be overridden when an execution is created with this launch plan. FixedInputs *CoreLiteralMap `json:"fixed_inputs,omitempty"` - Role string `json:"role,omitempty"` + Role string `json:"role,omitempty"` // Custom labels to be applied to the execution resource. Labels *AdminLabels `json:"labels,omitempty"` // Custom annotations to be applied to the execution resource. Annotations *AdminAnnotations `json:"annotations,omitempty"` // Indicates the permission associated with workflow executions triggered with this launch plan. - Auth *AdminAuth `json:"auth,omitempty"` - AuthRole *AdminAuthRole `json:"auth_role,omitempty"` + Auth *AdminAuth `json:"auth,omitempty"` + AuthRole *AdminAuthRole `json:"auth_role,omitempty"` SecurityContext *CoreSecurityContext `json:"security_context,omitempty"` // Indicates the runtime priority of the execution. QualityOfService *CoreQualityOfService `json:"quality_of_service,omitempty"` diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_state.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_state.go index f0a1d32782..da3902a397 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_state.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_launch_plan_state.go @@ -8,11 +8,12 @@ */ package flyteadmin + // AdminLaunchPlanState : By default any launch plan regardless of state can be used to launch a workflow execution. However, at most one version of a launch plan (e.g. a NamedEntityIdentifier set of shared project, domain and name values) can be active at a time in regards to *schedules*. That is, at most one schedule in a NamedEntityIdentifier group will be observed and trigger executions at a defined cadence. type AdminLaunchPlanState string // List of adminLaunchPlanState const ( AdminLaunchPlanStateINACTIVE AdminLaunchPlanState = "INACTIVE" - AdminLaunchPlanStateACTIVE AdminLaunchPlanState = "ACTIVE" + AdminLaunchPlanStateACTIVE AdminLaunchPlanState = "ACTIVE" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_literal_map_blob.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_literal_map_blob.go index ac5e29d42c..f5dc3399e6 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_literal_map_blob.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_literal_map_blob.go @@ -11,5 +11,5 @@ package flyteadmin type AdminLiteralMapBlob struct { Values *CoreLiteralMap `json:"values,omitempty"` - Uri string `json:"uri,omitempty"` + Uri string `json:"uri,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matchable_attributes_configuration.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matchable_attributes_configuration.go index df6a99884c..daba0caaf9 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matchable_attributes_configuration.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matchable_attributes_configuration.go @@ -12,8 +12,8 @@ package flyteadmin // Represents a custom set of attributes applied for either a domain; a domain and project; or domain, project and workflow name. These are used to override system level defaults for kubernetes cluster resource management, default execution values, and more all across different levels of specificity. type AdminMatchableAttributesConfiguration struct { Attributes *AdminMatchingAttributes `json:"attributes,omitempty"` - Domain string `json:"domain,omitempty"` - Project string `json:"project,omitempty"` - Workflow string `json:"workflow,omitempty"` - LaunchPlan string `json:"launch_plan,omitempty"` + Domain string `json:"domain,omitempty"` + Project string `json:"project,omitempty"` + Workflow string `json:"workflow,omitempty"` + LaunchPlan string `json:"launch_plan,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matchable_resource.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matchable_resource.go index 411a7becc0..df4a350bba 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matchable_resource.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matchable_resource.go @@ -8,17 +8,18 @@ */ package flyteadmin + // AdminMatchableResource : Defines a resource that can be configured by customizable Project-, ProjectDomain- or WorkflowAttributes based on matching tags. - TASK_RESOURCE: Applies to customizable task resource requests and limits. - CLUSTER_RESOURCE: Applies to configuring templated kubernetes cluster resources. - EXECUTION_QUEUE: Configures task and dynamic task execution queue assignment. - EXECUTION_CLUSTER_LABEL: Configures the K8s cluster label to be used for execution to be run - QUALITY_OF_SERVICE_SPECIFICATION: Configures default quality of service when undefined in an execution spec. - PLUGIN_OVERRIDE: Selects configurable plugin implementation behavior for a given task type. - WORKFLOW_EXECUTION_CONFIG: Adds defaults for customizable workflow-execution specifications and overrides. - CLUSTER_ASSIGNMENT: Controls how to select an available cluster on which this execution should run. type AdminMatchableResource string // List of adminMatchableResource const ( - AdminMatchableResourceTASK_RESOURCE AdminMatchableResource = "TASK_RESOURCE" - AdminMatchableResourceCLUSTER_RESOURCE AdminMatchableResource = "CLUSTER_RESOURCE" - AdminMatchableResourceEXECUTION_QUEUE AdminMatchableResource = "EXECUTION_QUEUE" - AdminMatchableResourceEXECUTION_CLUSTER_LABEL AdminMatchableResource = "EXECUTION_CLUSTER_LABEL" + AdminMatchableResourceTASK_RESOURCE AdminMatchableResource = "TASK_RESOURCE" + AdminMatchableResourceCLUSTER_RESOURCE AdminMatchableResource = "CLUSTER_RESOURCE" + AdminMatchableResourceEXECUTION_QUEUE AdminMatchableResource = "EXECUTION_QUEUE" + AdminMatchableResourceEXECUTION_CLUSTER_LABEL AdminMatchableResource = "EXECUTION_CLUSTER_LABEL" AdminMatchableResourceQUALITY_OF_SERVICE_SPECIFICATION AdminMatchableResource = "QUALITY_OF_SERVICE_SPECIFICATION" - AdminMatchableResourcePLUGIN_OVERRIDE AdminMatchableResource = "PLUGIN_OVERRIDE" - AdminMatchableResourceWORKFLOW_EXECUTION_CONFIG AdminMatchableResource = "WORKFLOW_EXECUTION_CONFIG" - AdminMatchableResourceCLUSTER_ASSIGNMENT AdminMatchableResource = "CLUSTER_ASSIGNMENT" + AdminMatchableResourcePLUGIN_OVERRIDE AdminMatchableResource = "PLUGIN_OVERRIDE" + AdminMatchableResourceWORKFLOW_EXECUTION_CONFIG AdminMatchableResource = "WORKFLOW_EXECUTION_CONFIG" + AdminMatchableResourceCLUSTER_ASSIGNMENT AdminMatchableResource = "CLUSTER_ASSIGNMENT" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matching_attributes.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matching_attributes.go index 2af9b6d702..c9f2f02754 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matching_attributes.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_matching_attributes.go @@ -11,12 +11,12 @@ package flyteadmin // Generic container for encapsulating all types of the above attributes messages. type AdminMatchingAttributes struct { - TaskResourceAttributes *AdminTaskResourceAttributes `json:"task_resource_attributes,omitempty"` + TaskResourceAttributes *AdminTaskResourceAttributes `json:"task_resource_attributes,omitempty"` ClusterResourceAttributes *AdminClusterResourceAttributes `json:"cluster_resource_attributes,omitempty"` - ExecutionQueueAttributes *AdminExecutionQueueAttributes `json:"execution_queue_attributes,omitempty"` - ExecutionClusterLabel *AdminExecutionClusterLabel `json:"execution_cluster_label,omitempty"` - QualityOfService *CoreQualityOfService `json:"quality_of_service,omitempty"` - PluginOverrides *AdminPluginOverrides `json:"plugin_overrides,omitempty"` - WorkflowExecutionConfig *AdminWorkflowExecutionConfig `json:"workflow_execution_config,omitempty"` - ClusterAssignment *AdminClusterAssignment `json:"cluster_assignment,omitempty"` + ExecutionQueueAttributes *AdminExecutionQueueAttributes `json:"execution_queue_attributes,omitempty"` + ExecutionClusterLabel *AdminExecutionClusterLabel `json:"execution_cluster_label,omitempty"` + QualityOfService *CoreQualityOfService `json:"quality_of_service,omitempty"` + PluginOverrides *AdminPluginOverrides `json:"plugin_overrides,omitempty"` + WorkflowExecutionConfig *AdminWorkflowExecutionConfig `json:"workflow_execution_config,omitempty"` + ClusterAssignment *AdminClusterAssignment `json:"cluster_assignment,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity.go index 6239ddb45a..d3e11e0b3c 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity.go @@ -12,8 +12,8 @@ package flyteadmin // Encapsulates information common to a NamedEntity, a Flyte resource such as a task, workflow or launch plan. A NamedEntity is exclusively identified by its resource type and identifier. type AdminNamedEntity struct { // Resource type of the named entity. One of Task, Workflow or LaunchPlan. - ResourceType *CoreResourceType `json:"resource_type,omitempty"` - Id *AdminNamedEntityIdentifier `json:"id,omitempty"` + ResourceType *CoreResourceType `json:"resource_type,omitempty"` + Id *AdminNamedEntityIdentifier `json:"id,omitempty"` // Additional metadata around a named entity. Metadata *AdminNamedEntityMetadata `json:"metadata,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_identifier.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_identifier.go index 9fa96c57b2..c6e36319e0 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_identifier.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_identifier.go @@ -15,5 +15,5 @@ type AdminNamedEntityIdentifier struct { Project string `json:"project,omitempty"` // Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project. Domain string `json:"domain,omitempty"` - Name string `json:"name,omitempty"` + Name string `json:"name,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_state.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_state.go index eed0505492..de574e1b99 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_state.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_state.go @@ -8,12 +8,13 @@ */ package flyteadmin + // AdminNamedEntityState : The status of the named entity is used to control its visibility in the UI. - NAMED_ENTITY_ACTIVE: By default, all named entities are considered active and under development. - NAMED_ENTITY_ARCHIVED: Archived named entities are no longer visible in the UI. - SYSTEM_GENERATED: System generated entities that aren't explicitly created or managed by a user. type AdminNamedEntityState string // List of adminNamedEntityState const ( - AdminNamedEntityStateNAMED_ENTITY_ACTIVE AdminNamedEntityState = "NAMED_ENTITY_ACTIVE" + AdminNamedEntityStateNAMED_ENTITY_ACTIVE AdminNamedEntityState = "NAMED_ENTITY_ACTIVE" AdminNamedEntityStateNAMED_ENTITY_ARCHIVED AdminNamedEntityState = "NAMED_ENTITY_ARCHIVED" - AdminNamedEntityStateSYSTEM_GENERATED AdminNamedEntityState = "SYSTEM_GENERATED" + AdminNamedEntityStateSYSTEM_GENERATED AdminNamedEntityState = "SYSTEM_GENERATED" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_update_request.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_update_request.go index 66fb02ea37..2596276eae 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_update_request.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_named_entity_update_request.go @@ -11,7 +11,7 @@ package flyteadmin // Request to set the referenced named entity state to the configured value. type AdminNamedEntityUpdateRequest struct { - ResourceType *CoreResourceType `json:"resource_type,omitempty"` - Id *AdminNamedEntityIdentifier `json:"id,omitempty"` - Metadata *AdminNamedEntityMetadata `json:"metadata,omitempty"` + ResourceType *CoreResourceType `json:"resource_type,omitempty"` + Id *AdminNamedEntityIdentifier `json:"id,omitempty"` + Metadata *AdminNamedEntityMetadata `json:"metadata,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_closure.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_closure.go index a522ec663e..4ce61a3af3 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_closure.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_closure.go @@ -16,8 +16,8 @@ import ( // Container for node execution details and results. type AdminNodeExecutionClosure struct { // Links to a remotely stored, serialized core.LiteralMap of node execution outputs. DEPRECATED. Use GetNodeExecutionData to fetch output data instead. - OutputUri string `json:"output_uri,omitempty"` - Error_ *CoreExecutionError `json:"error,omitempty"` + OutputUri string `json:"output_uri,omitempty"` + Error_ *CoreExecutionError `json:"error,omitempty"` // Raw output data produced by this node execution. DEPRECATED. Use GetNodeExecutionData to fetch output data instead. OutputData *CoreLiteralMap `json:"output_data,omitempty"` // The last recorded phase for this node execution. @@ -29,10 +29,10 @@ type AdminNodeExecutionClosure struct { // Time at which the node execution was created. CreatedAt time.Time `json:"created_at,omitempty"` // Time at which the node execution was last updated. - UpdatedAt time.Time `json:"updated_at,omitempty"` + UpdatedAt time.Time `json:"updated_at,omitempty"` WorkflowNodeMetadata *FlyteidladminWorkflowNodeMetadata `json:"workflow_node_metadata,omitempty"` - TaskNodeMetadata *FlyteidladminTaskNodeMetadata `json:"task_node_metadata,omitempty"` - DeckUri string `json:"deck_uri,omitempty"` + TaskNodeMetadata *FlyteidladminTaskNodeMetadata `json:"task_node_metadata,omitempty"` + DeckUri string `json:"deck_uri,omitempty"` // dynamic_job_spec_uri is the location of the DynamicJobSpec proto message for a DynamicWorkflow. This is required to correctly recover partially completed executions where the subworkflow has already been compiled. DynamicJobSpecUri string `json:"dynamic_job_spec_uri,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_get_data_response.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_get_data_response.go index 0ab85da7cc..dcaa570e7d 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_get_data_response.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_get_data_response.go @@ -21,5 +21,5 @@ type AdminNodeExecutionGetDataResponse struct { FullOutputs *CoreLiteralMap `json:"full_outputs,omitempty"` // Optional Workflow closure for a dynamically generated workflow, in the case this node yields a dynamic workflow we return its structure here. DynamicWorkflow *FlyteidladminDynamicWorkflowNodeMetadata `json:"dynamic_workflow,omitempty"` - FlyteUrls *AdminFlyteUrLs `json:"flyte_urls,omitempty"` + FlyteUrls *AdminFlyteUrLs `json:"flyte_urls,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_meta_data.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_meta_data.go index 08ad839a7e..36f87c5e9c 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_meta_data.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_meta_data.go @@ -13,8 +13,8 @@ type AdminNodeExecutionMetaData struct { // Node executions are grouped depending on retries of the parent Retry group is unique within the context of a parent node. RetryGroup string `json:"retry_group,omitempty"` // Boolean flag indicating if the node has child nodes under it This can be true when a node contains a dynamic workflow which then produces child nodes. - IsParentNode bool `json:"is_parent_node,omitempty"` - SpecNodeId string `json:"spec_node_id,omitempty"` + IsParentNode bool `json:"is_parent_node,omitempty"` + SpecNodeId string `json:"spec_node_id,omitempty"` // Boolean flag indicating if the node has contains a dynamic workflow which then produces child nodes. This is to distinguish between subworkflows and dynamic workflows which can both have is_parent_node as true. IsDynamic bool `json:"is_dynamic,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_notification.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_notification.go index 16cc5a3c71..c042528a21 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_notification.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_notification.go @@ -11,8 +11,8 @@ package flyteadmin // Represents a structure for notifications based on execution status. The notification content is configured within flyte admin but can be templatized. Future iterations could expose configuring notifications with custom content. type AdminNotification struct { - Phases []CoreWorkflowExecutionPhase `json:"phases,omitempty"` - Email *AdminEmailNotification `json:"email,omitempty"` - PagerDuty *AdminPagerDutyNotification `json:"pager_duty,omitempty"` - Slack *AdminSlackNotification `json:"slack,omitempty"` + Phases []CoreWorkflowExecutionPhase `json:"phases,omitempty"` + Email *AdminEmailNotification `json:"email,omitempty"` + PagerDuty *AdminPagerDutyNotification `json:"pager_duty,omitempty"` + Slack *AdminSlackNotification `json:"slack,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project.go index 59da87f6cc..66ca8d4c65 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project.go @@ -14,10 +14,10 @@ type AdminProject struct { // Globally unique project name. Id string `json:"id,omitempty"` // Display name. - Name string `json:"name,omitempty"` - Domains []AdminDomain `json:"domains,omitempty"` - Description string `json:"description,omitempty"` + Name string `json:"name,omitempty"` + Domains []AdminDomain `json:"domains,omitempty"` + Description string `json:"description,omitempty"` // Leverage Labels from flyteidl.admin.common.proto to tag projects with ownership information. - Labels *AdminLabels `json:"labels,omitempty"` - State *ProjectProjectState `json:"state,omitempty"` + Labels *AdminLabels `json:"labels,omitempty"` + State *ProjectProjectState `json:"state,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_attributes.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_attributes.go index a719e4737b..e7098c6db2 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_attributes.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_attributes.go @@ -11,6 +11,6 @@ package flyteadmin type AdminProjectAttributes struct { // Unique project id for which this set of attributes will be applied. - Project string `json:"project,omitempty"` + Project string `json:"project,omitempty"` MatchingAttributes *AdminMatchingAttributes `json:"matching_attributes,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_attributes_delete_request.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_attributes_delete_request.go index 3081254e92..fec33ca92f 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_attributes_delete_request.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_attributes_delete_request.go @@ -10,6 +10,6 @@ package flyteadmin type AdminProjectAttributesDeleteRequest struct { - Project string `json:"project,omitempty"` + Project string `json:"project,omitempty"` ResourceType *AdminMatchableResource `json:"resource_type,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_domain_attributes.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_domain_attributes.go index 8cc141bc42..8f736c6e91 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_domain_attributes.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_domain_attributes.go @@ -13,6 +13,6 @@ type AdminProjectDomainAttributes struct { // Unique project id for which this set of attributes will be applied. Project string `json:"project,omitempty"` // Unique domain id for which this set of attributes will be applied. - Domain string `json:"domain,omitempty"` + Domain string `json:"domain,omitempty"` MatchingAttributes *AdminMatchingAttributes `json:"matching_attributes,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_domain_attributes_delete_request.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_domain_attributes_delete_request.go index 00b251417d..4c3ed6cbb2 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_domain_attributes_delete_request.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_project_domain_attributes_delete_request.go @@ -10,7 +10,7 @@ package flyteadmin type AdminProjectDomainAttributesDeleteRequest struct { - Project string `json:"project,omitempty"` - Domain string `json:"domain,omitempty"` + Project string `json:"project,omitempty"` + Domain string `json:"domain,omitempty"` ResourceType *AdminMatchableResource `json:"resource_type,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_schedule.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_schedule.go index b6c0a02014..bc95ee283a 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_schedule.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_schedule.go @@ -11,9 +11,9 @@ package flyteadmin // Defines complete set of information required to trigger an execution on a schedule. type AdminSchedule struct { - CronExpression string `json:"cron_expression,omitempty"` - Rate *AdminFixedRate `json:"rate,omitempty"` - CronSchedule *AdminCronSchedule `json:"cron_schedule,omitempty"` + CronExpression string `json:"cron_expression,omitempty"` + Rate *AdminFixedRate `json:"rate,omitempty"` + CronSchedule *AdminCronSchedule `json:"cron_schedule,omitempty"` // Name of the input variable that the kickoff time will be supplied to when the workflow is kicked off. KickoffTimeInputArg string `json:"kickoff_time_input_arg,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_sort.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_sort.go index 7469a2cb02..22ebe3f221 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_sort.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_sort.go @@ -11,6 +11,6 @@ package flyteadmin // Specifies sort ordering in a list request. type AdminSort struct { - Key string `json:"key,omitempty"` + Key string `json:"key,omitempty"` Direction *SortDirection `json:"direction,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_task_execution_get_data_response.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_task_execution_get_data_response.go index 75c3e8423e..5bfac3ba94 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_task_execution_get_data_response.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_task_execution_get_data_response.go @@ -19,5 +19,5 @@ type AdminTaskExecutionGetDataResponse struct { FullInputs *CoreLiteralMap `json:"full_inputs,omitempty"` // Full_outputs will only be populated if they are under a configured size threshold. FullOutputs *CoreLiteralMap `json:"full_outputs,omitempty"` - FlyteUrls *AdminFlyteUrLs `json:"flyte_urls,omitempty"` + FlyteUrls *AdminFlyteUrLs `json:"flyte_urls,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_task_resource_attributes.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_task_resource_attributes.go index 3917b5f2f8..ee090c89ce 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_task_resource_attributes.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_task_resource_attributes.go @@ -12,5 +12,5 @@ package flyteadmin // Defines task resource defaults and limits that will be applied at task registration. type AdminTaskResourceAttributes struct { Defaults *AdminTaskResourceSpec `json:"defaults,omitempty"` - Limits *AdminTaskResourceSpec `json:"limits,omitempty"` + Limits *AdminTaskResourceSpec `json:"limits,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_task_resource_spec.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_task_resource_spec.go index b022f1a976..0d2713f7f6 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_task_resource_spec.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_task_resource_spec.go @@ -11,9 +11,9 @@ package flyteadmin // Defines a set of overridable task resource attributes set during task registration. type AdminTaskResourceSpec struct { - Cpu string `json:"cpu,omitempty"` - Gpu string `json:"gpu,omitempty"` - Memory string `json:"memory,omitempty"` - Storage string `json:"storage,omitempty"` + Cpu string `json:"cpu,omitempty"` + Gpu string `json:"gpu,omitempty"` + Memory string `json:"memory,omitempty"` + Storage string `json:"storage,omitempty"` EphemeralStorage string `json:"ephemeral_storage,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_version.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_version.go index 559cc80b93..a316d8ad64 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_version.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_version.go @@ -10,7 +10,7 @@ package flyteadmin type AdminVersion struct { - Build string `json:"Build,omitempty"` - Version string `json:"Version,omitempty"` + Build string `json:"Build,omitempty"` + Version string `json:"Version,omitempty"` BuildTime string `json:"BuildTime,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_attributes.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_attributes.go index dba5c88346..26cfff6479 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_attributes.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_attributes.go @@ -15,6 +15,6 @@ type AdminWorkflowAttributes struct { // Unique domain id for which this set of attributes will be applied. Domain string `json:"domain,omitempty"` // Workflow name for which this set of attributes will be applied. - Workflow string `json:"workflow,omitempty"` + Workflow string `json:"workflow,omitempty"` MatchingAttributes *AdminMatchingAttributes `json:"matching_attributes,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_attributes_delete_request.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_attributes_delete_request.go index 31bca658db..ecc0b76053 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_attributes_delete_request.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_attributes_delete_request.go @@ -10,8 +10,8 @@ package flyteadmin type AdminWorkflowAttributesDeleteRequest struct { - Project string `json:"project,omitempty"` - Domain string `json:"domain,omitempty"` - Workflow string `json:"workflow,omitempty"` + Project string `json:"project,omitempty"` + Domain string `json:"domain,omitempty"` + Workflow string `json:"workflow,omitempty"` ResourceType *AdminMatchableResource `json:"resource_type,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_create_request.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_create_request.go index 53b4cbbb08..68ee62801f 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_create_request.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_workflow_create_request.go @@ -10,6 +10,6 @@ package flyteadmin type AdminWorkflowCreateRequest struct { - Id *CoreIdentifier `json:"id,omitempty"` + Id *CoreIdentifier `json:"id,omitempty"` Spec *AdminWorkflowSpec `json:"spec,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_blob_type_blob_dimensionality.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_blob_type_blob_dimensionality.go index c2557772aa..ed4ddcc9e8 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_blob_type_blob_dimensionality.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_blob_type_blob_dimensionality.go @@ -13,6 +13,6 @@ type BlobTypeBlobDimensionality string // List of BlobTypeBlobDimensionality const ( - BlobTypeBlobDimensionalitySINGLE BlobTypeBlobDimensionality = "SINGLE" + BlobTypeBlobDimensionalitySINGLE BlobTypeBlobDimensionality = "SINGLE" BlobTypeBlobDimensionalityMULTIPART BlobTypeBlobDimensionality = "MULTIPART" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_catalog_reservation_status.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_catalog_reservation_status.go index 42b34515db..3f3c587e87 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_catalog_reservation_status.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_catalog_reservation_status.go @@ -8,6 +8,7 @@ */ package flyteadmin + // CatalogReservationStatus : Indicates the status of a catalog reservation operation. - RESERVATION_DISABLED: Used to indicate that reservations are disabled - RESERVATION_ACQUIRED: Used to indicate that a reservation was successfully acquired or extended - RESERVATION_EXISTS: Used to indicate that an active reservation currently exists - RESERVATION_RELEASED: Used to indicate that the reservation has been successfully released - RESERVATION_FAILURE: Used to indicate that a reservation operation resulted in failure type CatalogReservationStatus string @@ -15,7 +16,7 @@ type CatalogReservationStatus string const ( CatalogReservationStatusDISABLED CatalogReservationStatus = "RESERVATION_DISABLED" CatalogReservationStatusACQUIRED CatalogReservationStatus = "RESERVATION_ACQUIRED" - CatalogReservationStatusEXISTS CatalogReservationStatus = "RESERVATION_EXISTS" + CatalogReservationStatusEXISTS CatalogReservationStatus = "RESERVATION_EXISTS" CatalogReservationStatusRELEASED CatalogReservationStatus = "RESERVATION_RELEASED" - CatalogReservationStatusFAILURE CatalogReservationStatus = "RESERVATION_FAILURE" + CatalogReservationStatusFAILURE CatalogReservationStatus = "RESERVATION_FAILURE" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_comparison_expression_operator.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_comparison_expression_operator.go index f12c82ff7d..5eb1db946d 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_comparison_expression_operator.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_comparison_expression_operator.go @@ -8,15 +8,16 @@ */ package flyteadmin + // ComparisonExpressionOperator : - GT: Greater Than - LT: Less Than type ComparisonExpressionOperator string // List of ComparisonExpressionOperator const ( - ComparisonExpressionOperatorEQ ComparisonExpressionOperator = "EQ" + ComparisonExpressionOperatorEQ ComparisonExpressionOperator = "EQ" ComparisonExpressionOperatorNEQ ComparisonExpressionOperator = "NEQ" - ComparisonExpressionOperatorGT ComparisonExpressionOperator = "GT" + ComparisonExpressionOperatorGT ComparisonExpressionOperator = "GT" ComparisonExpressionOperatorGTE ComparisonExpressionOperator = "GTE" - ComparisonExpressionOperatorLT ComparisonExpressionOperator = "LT" + ComparisonExpressionOperatorLT ComparisonExpressionOperator = "LT" ComparisonExpressionOperatorLTE ComparisonExpressionOperator = "LTE" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_conjunction_expression_logical_operator.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_conjunction_expression_logical_operator.go index 537e3b45e7..9634c360a0 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_conjunction_expression_logical_operator.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_conjunction_expression_logical_operator.go @@ -8,11 +8,12 @@ */ package flyteadmin + // ConjunctionExpressionLogicalOperator : - AND: Conjunction type ConjunctionExpressionLogicalOperator string // List of ConjunctionExpressionLogicalOperator const ( ConjunctionExpressionLogicalOperatorAND ConjunctionExpressionLogicalOperator = "AND" - ConjunctionExpressionLogicalOperatorOR ConjunctionExpressionLogicalOperator = "OR" + ConjunctionExpressionLogicalOperatorOR ConjunctionExpressionLogicalOperator = "OR" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_container_architecture.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_container_architecture.go index 2ec668c981..78970da88a 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_container_architecture.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_container_architecture.go @@ -8,14 +8,15 @@ */ package flyteadmin + // ContainerArchitecture : Architecture-type the container image supports. type ContainerArchitecture string // List of ContainerArchitecture const ( ContainerArchitectureUNKNOWN ContainerArchitecture = "UNKNOWN" - ContainerArchitectureAMD64 ContainerArchitecture = "AMD64" - ContainerArchitectureARM64 ContainerArchitecture = "ARM64" - ContainerArchitectureARM_V6 ContainerArchitecture = "ARM_V6" - ContainerArchitectureARM_V7 ContainerArchitecture = "ARM_V7" + ContainerArchitectureAMD64 ContainerArchitecture = "AMD64" + ContainerArchitectureARM64 ContainerArchitecture = "ARM64" + ContainerArchitectureARM_V6 ContainerArchitecture = "ARM_V6" + ContainerArchitectureARM_V7 ContainerArchitecture = "ARM_V7" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_binary.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_binary.go index b66a50bd78..db36793283 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_binary.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_binary.go @@ -12,5 +12,5 @@ package flyteadmin // A simple byte array with a tag to help different parts of the system communicate about what is in the byte array. It's strongly advisable that consumers of this type define a unique tag and validate the tag before parsing the data. type CoreBinary struct { Value string `json:"value,omitempty"` - Tag string `json:"tag,omitempty"` + Tag string `json:"tag,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_binding_data.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_binding_data.go index 903ef1f8e2..742616fdc2 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_binding_data.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_binding_data.go @@ -18,6 +18,6 @@ type CoreBindingData struct { // References an output promised by another node. Promise *CoreOutputReference `json:"promise,omitempty"` // A map of bindings. The key is always a string. - Map_ *CoreBindingDataMap `json:"map,omitempty"` - Union *CoreUnionInfo `json:"union,omitempty"` + Map_ *CoreBindingDataMap `json:"map,omitempty"` + Union *CoreUnionInfo `json:"union,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_blob.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_blob.go index 081e36a03d..d7bcd89170 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_blob.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_blob.go @@ -12,5 +12,5 @@ package flyteadmin // Refers to an offloaded set of files. It encapsulates the type of the store and a unique uri for where the data is. There are no restrictions on how the uri is formatted since it will depend on how to interact with the store. type CoreBlob struct { Metadata *CoreBlobMetadata `json:"metadata,omitempty"` - Uri string `json:"uri,omitempty"` + Uri string `json:"uri,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_blob_type.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_blob_type.go index 5c751b9562..4add1c0946 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_blob_type.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_blob_type.go @@ -10,6 +10,6 @@ package flyteadmin type CoreBlobType struct { - Format string `json:"format,omitempty"` + Format string `json:"format,omitempty"` Dimensionality *BlobTypeBlobDimensionality `json:"dimensionality,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_boolean_expression.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_boolean_expression.go index 0ee33d7c3a..894e3d4cc4 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_boolean_expression.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_boolean_expression.go @@ -12,5 +12,5 @@ package flyteadmin // Defines a boolean expression tree. It can be a simple or a conjunction expression. Multiple expressions can be combined using a conjunction or a disjunction to result in a final boolean result. type CoreBooleanExpression struct { Conjunction *CoreConjunctionExpression `json:"conjunction,omitempty"` - Comparison *CoreComparisonExpression `json:"comparison,omitempty"` + Comparison *CoreComparisonExpression `json:"comparison,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_catalog_artifact_tag.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_catalog_artifact_tag.go index 94c8826d3a..49ecd55bc1 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_catalog_artifact_tag.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_catalog_artifact_tag.go @@ -11,5 +11,5 @@ package flyteadmin type CoreCatalogArtifactTag struct { ArtifactId string `json:"artifact_id,omitempty"` - Name string `json:"name,omitempty"` + Name string `json:"name,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_catalog_cache_status.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_catalog_cache_status.go index 6e50baf228..7126460fbe 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_catalog_cache_status.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_catalog_cache_status.go @@ -8,16 +8,17 @@ */ package flyteadmin + // CoreCatalogCacheStatus : - CACHE_DISABLED: Used to indicate that caching was disabled - CACHE_MISS: Used to indicate that the cache lookup resulted in no matches - CACHE_HIT: used to indicate that the associated artifact was a result of a previous execution - CACHE_POPULATED: used to indicate that the resultant artifact was added to the cache - CACHE_LOOKUP_FAILURE: Used to indicate that cache lookup failed because of an error - CACHE_PUT_FAILURE: Used to indicate that cache lookup failed because of an error - CACHE_SKIPPED: Used to indicate the cache lookup was skipped type CoreCatalogCacheStatus string // List of coreCatalogCacheStatus const ( - CoreCatalogCacheStatusDISABLED CoreCatalogCacheStatus = "CACHE_DISABLED" - CoreCatalogCacheStatusMISS CoreCatalogCacheStatus = "CACHE_MISS" - CoreCatalogCacheStatusHIT CoreCatalogCacheStatus = "CACHE_HIT" - CoreCatalogCacheStatusPOPULATED CoreCatalogCacheStatus = "CACHE_POPULATED" + CoreCatalogCacheStatusDISABLED CoreCatalogCacheStatus = "CACHE_DISABLED" + CoreCatalogCacheStatusMISS CoreCatalogCacheStatus = "CACHE_MISS" + CoreCatalogCacheStatusHIT CoreCatalogCacheStatus = "CACHE_HIT" + CoreCatalogCacheStatusPOPULATED CoreCatalogCacheStatus = "CACHE_POPULATED" CoreCatalogCacheStatusLOOKUP_FAILURE CoreCatalogCacheStatus = "CACHE_LOOKUP_FAILURE" - CoreCatalogCacheStatusPUT_FAILURE CoreCatalogCacheStatus = "CACHE_PUT_FAILURE" - CoreCatalogCacheStatusSKIPPED CoreCatalogCacheStatus = "CACHE_SKIPPED" + CoreCatalogCacheStatusPUT_FAILURE CoreCatalogCacheStatus = "CACHE_PUT_FAILURE" + CoreCatalogCacheStatusSKIPPED CoreCatalogCacheStatus = "CACHE_SKIPPED" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_catalog_metadata.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_catalog_metadata.go index a4223f28b8..43e1cbb858 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_catalog_metadata.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_catalog_metadata.go @@ -10,7 +10,7 @@ package flyteadmin type CoreCatalogMetadata struct { - DatasetId *CoreIdentifier `json:"dataset_id,omitempty"` - ArtifactTag *CoreCatalogArtifactTag `json:"artifact_tag,omitempty"` + DatasetId *CoreIdentifier `json:"dataset_id,omitempty"` + ArtifactTag *CoreCatalogArtifactTag `json:"artifact_tag,omitempty"` SourceTaskExecution *CoreTaskExecutionIdentifier `json:"source_task_execution,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_comparison_expression.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_comparison_expression.go index 86e9586a7d..0c0487d705 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_comparison_expression.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_comparison_expression.go @@ -11,7 +11,7 @@ package flyteadmin // Defines a 2-level tree where the root is a comparison operator and Operands are primitives or known variables. Each expression results in a boolean result. type CoreComparisonExpression struct { - Operator *ComparisonExpressionOperator `json:"operator,omitempty"` - LeftValue *CoreOperand `json:"left_value,omitempty"` - RightValue *CoreOperand `json:"right_value,omitempty"` + Operator *ComparisonExpressionOperator `json:"operator,omitempty"` + LeftValue *CoreOperand `json:"left_value,omitempty"` + RightValue *CoreOperand `json:"right_value,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_compiled_workflow_closure.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_compiled_workflow_closure.go index 64753a21b5..8439d4d710 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_compiled_workflow_closure.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_compiled_workflow_closure.go @@ -11,7 +11,7 @@ package flyteadmin // A Compiled Workflow Closure contains all the information required to start a new execution, or to visualize a workflow and its details. The CompiledWorkflowClosure should always contain a primary workflow, that is the main workflow that will being the execution. All subworkflows are denormalized. WorkflowNodes refer to the workflow identifiers of compiled subworkflows. type CoreCompiledWorkflowClosure struct { - Primary *CoreCompiledWorkflow `json:"primary,omitempty"` + Primary *CoreCompiledWorkflow `json:"primary,omitempty"` SubWorkflows []CoreCompiledWorkflow `json:"sub_workflows,omitempty"` - Tasks []CoreCompiledTask `json:"tasks,omitempty"` + Tasks []CoreCompiledTask `json:"tasks,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_conjunction_expression.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_conjunction_expression.go index cf8c99b9bb..ea24c0aeca 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_conjunction_expression.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_conjunction_expression.go @@ -11,7 +11,7 @@ package flyteadmin // Defines a conjunction expression of two boolean expressions. type CoreConjunctionExpression struct { - Operator *ConjunctionExpressionLogicalOperator `json:"operator,omitempty"` - LeftExpression *CoreBooleanExpression `json:"left_expression,omitempty"` - RightExpression *CoreBooleanExpression `json:"right_expression,omitempty"` + Operator *ConjunctionExpressionLogicalOperator `json:"operator,omitempty"` + LeftExpression *CoreBooleanExpression `json:"left_expression,omitempty"` + RightExpression *CoreBooleanExpression `json:"right_expression,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_connection_set.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_connection_set.go index 8d7b9bc344..5f05c8ffb6 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_connection_set.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_connection_set.go @@ -11,5 +11,5 @@ package flyteadmin type CoreConnectionSet struct { Downstream map[string]ConnectionSetIdList `json:"downstream,omitempty"` - Upstream map[string]ConnectionSetIdList `json:"upstream,omitempty"` + Upstream map[string]ConnectionSetIdList `json:"upstream,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_container.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_container.go index 26f0e9d65a..ad1d569645 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_container.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_container.go @@ -20,8 +20,8 @@ type CoreContainer struct { // Environment variables will be set as the container is starting up. Env []CoreKeyValuePair `json:"env,omitempty"` // Allows extra configs to be available for the container. TODO: elaborate on how configs will become available. Deprecated, please use TaskTemplate.config instead. - Config []CoreKeyValuePair `json:"config,omitempty"` - Ports []CoreContainerPort `json:"ports,omitempty"` - DataConfig *CoreDataLoadingConfig `json:"data_config,omitempty"` + Config []CoreKeyValuePair `json:"config,omitempty"` + Ports []CoreContainerPort `json:"ports,omitempty"` + DataConfig *CoreDataLoadingConfig `json:"data_config,omitempty"` Architecture *ContainerArchitecture `json:"architecture,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_data_loading_config.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_data_loading_config.go index f74fb3aaa1..5861de21a6 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_data_loading_config.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_data_loading_config.go @@ -11,9 +11,9 @@ package flyteadmin // This configuration allows executing raw containers in Flyte using the Flyte CoPilot system. Flyte CoPilot, eliminates the needs of flytekit or sdk inside the container. Any inputs required by the users container are side-loaded in the input_path Any outputs generated by the user container - within output_path are automatically uploaded. type CoreDataLoadingConfig struct { - Enabled bool `json:"enabled,omitempty"` - InputPath string `json:"input_path,omitempty"` - OutputPath string `json:"output_path,omitempty"` - Format *DataLoadingConfigLiteralMapFormat `json:"format,omitempty"` - IoStrategy *CoreIoStrategy `json:"io_strategy,omitempty"` + Enabled bool `json:"enabled,omitempty"` + InputPath string `json:"input_path,omitempty"` + OutputPath string `json:"output_path,omitempty"` + Format *DataLoadingConfigLiteralMapFormat `json:"format,omitempty"` + IoStrategy *CoreIoStrategy `json:"io_strategy,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_execution_error.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_execution_error.go index 4b2b6e07b4..cb796560c5 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_execution_error.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_execution_error.go @@ -13,7 +13,7 @@ package flyteadmin type CoreExecutionError struct { Code string `json:"code,omitempty"` // Detailed description of the error - including stack trace. - Message string `json:"message,omitempty"` - ErrorUri string `json:"error_uri,omitempty"` - Kind *ExecutionErrorErrorKind `json:"kind,omitempty"` + Message string `json:"message,omitempty"` + ErrorUri string `json:"error_uri,omitempty"` + Kind *ExecutionErrorErrorKind `json:"kind,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_identity.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_identity.go index 60251e7b6b..11d8f3cfde 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_identity.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_identity.go @@ -16,6 +16,6 @@ type CoreIdentity struct { // k8s_service_account references a kubernetes service account to impersonate. K8sServiceAccount string `json:"k8s_service_account,omitempty"` // oauth2_client references an oauth2 client. Backend plugins can use this information to impersonate the client when making external calls. - Oauth2Client *CoreOAuth2Client `json:"oauth2_client,omitempty"` - ExecutionIdentity string `json:"execution_identity,omitempty"` + Oauth2Client *CoreOAuth2Client `json:"oauth2_client,omitempty"` + ExecutionIdentity string `json:"execution_identity,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_if_block.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_if_block.go index 88c084f857..fe1f9e02fc 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_if_block.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_if_block.go @@ -12,5 +12,5 @@ package flyteadmin // Defines a condition and the execution unit that should be executed if the condition is satisfied. type CoreIfBlock struct { Condition *CoreBooleanExpression `json:"condition,omitempty"` - ThenNode *CoreNode `json:"then_node,omitempty"` + ThenNode *CoreNode `json:"then_node,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_io_strategy.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_io_strategy.go index d310d02903..7fdf7e07ad 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_io_strategy.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_io_strategy.go @@ -11,5 +11,5 @@ package flyteadmin type CoreIoStrategy struct { DownloadMode *IoStrategyDownloadMode `json:"download_mode,omitempty"` - UploadMode *IoStrategyUploadMode `json:"upload_mode,omitempty"` + UploadMode *IoStrategyUploadMode `json:"upload_mode,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_k8s_pod.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_k8s_pod.go index df6db9479b..3288876b6e 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_k8s_pod.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_k8s_pod.go @@ -12,7 +12,7 @@ package flyteadmin // Defines a pod spec and additional pod metadata that is created when a task is executed. type CoreK8sPod struct { // Contains additional metadata for building a kubernetes pod. - Metadata *CoreK8sObjectMetadata `json:"metadata,omitempty"` - PodSpec *ProtobufStruct `json:"pod_spec,omitempty"` + Metadata *CoreK8sObjectMetadata `json:"metadata,omitempty"` + PodSpec *ProtobufStruct `json:"pod_spec,omitempty"` DataConfig *CoreDataLoadingConfig `json:"data_config,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_literal.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_literal.go index 03ee493617..827463a72b 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_literal.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_literal.go @@ -17,5 +17,5 @@ type CoreLiteral struct { Collection *CoreLiteralCollection `json:"collection,omitempty"` // A map of strings to literals. Map_ *CoreLiteralMap `json:"map,omitempty"` - Hash string `json:"hash,omitempty"` + Hash string `json:"hash,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_literal_type.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_literal_type.go index 08611bf6c0..934d0c8ff6 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_literal_type.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_literal_type.go @@ -22,7 +22,7 @@ type CoreLiteralType struct { // A blob might have specialized implementation details depending on associated metadata. Blob *CoreBlobType `json:"blob,omitempty"` // Defines an enum with pre-defined string values. - EnumType *CoreEnumType `json:"enum_type,omitempty"` + EnumType *CoreEnumType `json:"enum_type,omitempty"` StructuredDatasetType *CoreStructuredDatasetType `json:"structured_dataset_type,omitempty"` // Defines an union type with pre-defined LiteralTypes. UnionType *CoreUnionType `json:"union_type,omitempty"` diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_node_execution_identifier.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_node_execution_identifier.go index 2a391e095f..44a74ea49f 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_node_execution_identifier.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_node_execution_identifier.go @@ -11,6 +11,6 @@ package flyteadmin // Encapsulation of fields that identify a Flyte node execution entity. type CoreNodeExecutionIdentifier struct { - NodeId string `json:"node_id,omitempty"` + NodeId string `json:"node_id,omitempty"` ExecutionId *CoreWorkflowExecutionIdentifier `json:"execution_id,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_node_execution_phase.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_node_execution_phase.go index 55c46425a5..aa619393bf 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_node_execution_phase.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_node_execution_phase.go @@ -13,15 +13,15 @@ type CoreNodeExecutionPhase string // List of coreNodeExecutionPhase const ( - CoreNodeExecutionPhaseUNDEFINED CoreNodeExecutionPhase = "UNDEFINED" - CoreNodeExecutionPhaseQUEUED CoreNodeExecutionPhase = "QUEUED" - CoreNodeExecutionPhaseRUNNING CoreNodeExecutionPhase = "RUNNING" - CoreNodeExecutionPhaseSUCCEEDED CoreNodeExecutionPhase = "SUCCEEDED" - CoreNodeExecutionPhaseFAILING CoreNodeExecutionPhase = "FAILING" - CoreNodeExecutionPhaseFAILED CoreNodeExecutionPhase = "FAILED" - CoreNodeExecutionPhaseABORTED CoreNodeExecutionPhase = "ABORTED" - CoreNodeExecutionPhaseSKIPPED CoreNodeExecutionPhase = "SKIPPED" - CoreNodeExecutionPhaseTIMED_OUT CoreNodeExecutionPhase = "TIMED_OUT" + CoreNodeExecutionPhaseUNDEFINED CoreNodeExecutionPhase = "UNDEFINED" + CoreNodeExecutionPhaseQUEUED CoreNodeExecutionPhase = "QUEUED" + CoreNodeExecutionPhaseRUNNING CoreNodeExecutionPhase = "RUNNING" + CoreNodeExecutionPhaseSUCCEEDED CoreNodeExecutionPhase = "SUCCEEDED" + CoreNodeExecutionPhaseFAILING CoreNodeExecutionPhase = "FAILING" + CoreNodeExecutionPhaseFAILED CoreNodeExecutionPhase = "FAILED" + CoreNodeExecutionPhaseABORTED CoreNodeExecutionPhase = "ABORTED" + CoreNodeExecutionPhaseSKIPPED CoreNodeExecutionPhase = "SKIPPED" + CoreNodeExecutionPhaseTIMED_OUT CoreNodeExecutionPhase = "TIMED_OUT" CoreNodeExecutionPhaseDYNAMIC_RUNNING CoreNodeExecutionPhase = "DYNAMIC_RUNNING" - CoreNodeExecutionPhaseRECOVERED CoreNodeExecutionPhase = "RECOVERED" + CoreNodeExecutionPhaseRECOVERED CoreNodeExecutionPhase = "RECOVERED" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_node_metadata.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_node_metadata.go index 3913c96c83..79e9c1e380 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_node_metadata.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_node_metadata.go @@ -15,6 +15,6 @@ type CoreNodeMetadata struct { // The overall timeout of a task. Timeout string `json:"timeout,omitempty"` // Number of retries per task. - Retries *CoreRetryStrategy `json:"retries,omitempty"` - Interruptible bool `json:"interruptible,omitempty"` + Retries *CoreRetryStrategy `json:"retries,omitempty"` + Interruptible bool `json:"interruptible,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_o_auth2_client.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_o_auth2_client.go index 8413c9169f..b44f969059 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_o_auth2_client.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_o_auth2_client.go @@ -11,6 +11,6 @@ package flyteadmin // OAuth2Client encapsulates OAuth2 Client Credentials to be used when making calls on behalf of that task. type CoreOAuth2Client struct { - ClientId string `json:"client_id,omitempty"` + ClientId string `json:"client_id,omitempty"` ClientSecret *CoreSecret `json:"client_secret,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_o_auth2_token_request.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_o_auth2_token_request.go index 6dcdb2dddd..7edeb1353f 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_o_auth2_token_request.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_o_auth2_token_request.go @@ -11,9 +11,9 @@ package flyteadmin // OAuth2TokenRequest encapsulates information needed to request an OAuth2 token. FLYTE_TOKENS_ENV_PREFIX will be passed to indicate the prefix of the environment variables that will be present if tokens are passed through environment variables. FLYTE_TOKENS_PATH_PREFIX will be passed to indicate the prefix of the path where secrets will be mounted if tokens are passed through file mounts. type CoreOAuth2TokenRequest struct { - Name string `json:"name,omitempty"` - Type_ *CoreOAuth2TokenRequestType `json:"type,omitempty"` - Client *CoreOAuth2Client `json:"client,omitempty"` - IdpDiscoveryEndpoint string `json:"idp_discovery_endpoint,omitempty"` - TokenEndpoint string `json:"token_endpoint,omitempty"` + Name string `json:"name,omitempty"` + Type_ *CoreOAuth2TokenRequestType `json:"type,omitempty"` + Client *CoreOAuth2Client `json:"client,omitempty"` + IdpDiscoveryEndpoint string `json:"idp_discovery_endpoint,omitempty"` + TokenEndpoint string `json:"token_endpoint,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_o_auth2_token_request_type.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_o_auth2_token_request_type.go index 5e9b5d4e6f..27ec7f050c 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_o_auth2_token_request_type.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_o_auth2_token_request_type.go @@ -8,6 +8,7 @@ */ package flyteadmin + // CoreOAuth2TokenRequestType : Type of the token requested. - CLIENT_CREDENTIALS: CLIENT_CREDENTIALS indicates a 2-legged OAuth token requested using client credentials. type CoreOAuth2TokenRequestType string diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_operand.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_operand.go index 07f2887e70..10f10fc233 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_operand.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_operand.go @@ -12,6 +12,6 @@ package flyteadmin // Defines an operand to a comparison expression. type CoreOperand struct { Primitive *CorePrimitive `json:"primitive,omitempty"` - Var_ string `json:"var,omitempty"` - Scalar *CoreScalar `json:"scalar,omitempty"` + Var_ string `json:"var,omitempty"` + Scalar *CoreScalar `json:"scalar,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_output_reference.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_output_reference.go index 469e79f2dd..9faccb26aa 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_output_reference.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_output_reference.go @@ -14,6 +14,6 @@ type CoreOutputReference struct { // Node id must exist at the graph layer. NodeId string `json:"node_id,omitempty"` // Variable name must refer to an output variable for the node. - Var_ string `json:"var,omitempty"` + Var_ string `json:"var,omitempty"` AttrPath []CorePromiseAttribute `json:"attr_path,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_primitive.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_primitive.go index efe369c246..5b976320d2 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_primitive.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_primitive.go @@ -14,10 +14,10 @@ import ( ) type CorePrimitive struct { - Integer string `json:"integer,omitempty"` - FloatValue float64 `json:"float_value,omitempty"` - StringValue string `json:"string_value,omitempty"` - Boolean bool `json:"boolean,omitempty"` - Datetime time.Time `json:"datetime,omitempty"` - Duration string `json:"duration,omitempty"` + Integer string `json:"integer,omitempty"` + FloatValue float64 `json:"float_value,omitempty"` + StringValue string `json:"string_value,omitempty"` + Boolean bool `json:"boolean,omitempty"` + Datetime time.Time `json:"datetime,omitempty"` + Duration string `json:"duration,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_promise_attribute.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_promise_attribute.go index 2c6ab252f1..85428df90b 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_promise_attribute.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_promise_attribute.go @@ -11,5 +11,5 @@ package flyteadmin type CorePromiseAttribute struct { StringValue string `json:"string_value,omitempty"` - IntValue int32 `json:"int_value,omitempty"` + IntValue int32 `json:"int_value,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_quality_of_service.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_quality_of_service.go index d735974d03..9378a683a6 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_quality_of_service.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_quality_of_service.go @@ -11,6 +11,6 @@ package flyteadmin // Indicates the priority of an execution. type CoreQualityOfService struct { - Tier *QualityOfServiceTier `json:"tier,omitempty"` + Tier *QualityOfServiceTier `json:"tier,omitempty"` Spec *CoreQualityOfServiceSpec `json:"spec,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_resource_type.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_resource_type.go index 26866d1c4c..33c7ff4bf9 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_resource_type.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_resource_type.go @@ -8,14 +8,15 @@ */ package flyteadmin + // CoreResourceType : Indicates a resource type within Flyte. - DATASET: A dataset represents an entity modeled in Flyte DataCatalog. A Dataset is also a versioned entity and can be a compilation of multiple individual objects. Eventually all Catalog objects should be modeled similar to Flyte Objects. The Dataset entities makes it possible for the UI and CLI to act on the objects in a similar manner to other Flyte objects type CoreResourceType string // List of coreResourceType const ( CoreResourceTypeUNSPECIFIED CoreResourceType = "UNSPECIFIED" - CoreResourceTypeTASK CoreResourceType = "TASK" - CoreResourceTypeWORKFLOW CoreResourceType = "WORKFLOW" + CoreResourceTypeTASK CoreResourceType = "TASK" + CoreResourceTypeWORKFLOW CoreResourceType = "WORKFLOW" CoreResourceTypeLAUNCH_PLAN CoreResourceType = "LAUNCH_PLAN" - CoreResourceTypeDATASET CoreResourceType = "DATASET" + CoreResourceTypeDATASET CoreResourceType = "DATASET" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_scalar.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_scalar.go index 09c05e7bef..3e3dbffbfa 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_scalar.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_scalar.go @@ -10,13 +10,13 @@ package flyteadmin type CoreScalar struct { - Primitive *CorePrimitive `json:"primitive,omitempty"` - Blob *CoreBlob `json:"blob,omitempty"` - Binary *CoreBinary `json:"binary,omitempty"` - Schema *CoreSchema `json:"schema,omitempty"` - NoneType *CoreVoid `json:"none_type,omitempty"` - Error_ *CoreError `json:"error,omitempty"` - Generic *ProtobufStruct `json:"generic,omitempty"` + Primitive *CorePrimitive `json:"primitive,omitempty"` + Blob *CoreBlob `json:"blob,omitempty"` + Binary *CoreBinary `json:"binary,omitempty"` + Schema *CoreSchema `json:"schema,omitempty"` + NoneType *CoreVoid `json:"none_type,omitempty"` + Error_ *CoreError `json:"error,omitempty"` + Generic *ProtobufStruct `json:"generic,omitempty"` StructuredDataset *CoreStructuredDataset `json:"structured_dataset,omitempty"` - Union *CoreUnion `json:"union,omitempty"` + Union *CoreUnion `json:"union,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_schema.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_schema.go index b621770da0..df6af8e450 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_schema.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_schema.go @@ -11,6 +11,6 @@ package flyteadmin // A strongly typed schema that defines the interface of data retrieved from the underlying storage medium. type CoreSchema struct { - Uri string `json:"uri,omitempty"` + Uri string `json:"uri,omitempty"` Type_ *CoreSchemaType `json:"type,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_secret.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_secret.go index 3b709cefe6..94025fa6d2 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_secret.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_secret.go @@ -11,8 +11,8 @@ package flyteadmin // Secret encapsulates information about the secret a task needs to proceed. An environment variable FLYTE_SECRETS_ENV_PREFIX will be passed to indicate the prefix of the environment variables that will be present if secrets are passed through environment variables. FLYTE_SECRETS_DEFAULT_DIR will be passed to indicate the prefix of the path where secrets will be mounted if secrets are passed through file mounts. type CoreSecret struct { - Group string `json:"group,omitempty"` - GroupVersion string `json:"group_version,omitempty"` - Key string `json:"key,omitempty"` + Group string `json:"group,omitempty"` + GroupVersion string `json:"group_version,omitempty"` + Key string `json:"key,omitempty"` MountRequirement *SecretMountType `json:"mount_requirement,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_simple_type.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_simple_type.go index 23988bb9c1..4dada71aaa 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_simple_type.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_simple_type.go @@ -8,19 +8,20 @@ */ package flyteadmin + // CoreSimpleType : Define a set of simple types. type CoreSimpleType string // List of coreSimpleType const ( - CoreSimpleTypeNONE CoreSimpleType = "NONE" - CoreSimpleTypeINTEGER CoreSimpleType = "INTEGER" - CoreSimpleTypeFLOAT CoreSimpleType = "FLOAT" - CoreSimpleTypeSTRING_ CoreSimpleType = "STRING" - CoreSimpleTypeBOOLEAN CoreSimpleType = "BOOLEAN" + CoreSimpleTypeNONE CoreSimpleType = "NONE" + CoreSimpleTypeINTEGER CoreSimpleType = "INTEGER" + CoreSimpleTypeFLOAT CoreSimpleType = "FLOAT" + CoreSimpleTypeSTRING_ CoreSimpleType = "STRING" + CoreSimpleTypeBOOLEAN CoreSimpleType = "BOOLEAN" CoreSimpleTypeDATETIME CoreSimpleType = "DATETIME" CoreSimpleTypeDURATION CoreSimpleType = "DURATION" - CoreSimpleTypeBINARY CoreSimpleType = "BINARY" - CoreSimpleTypeERROR_ CoreSimpleType = "ERROR" - CoreSimpleTypeSTRUCT_ CoreSimpleType = "STRUCT" + CoreSimpleTypeBINARY CoreSimpleType = "BINARY" + CoreSimpleTypeERROR_ CoreSimpleType = "ERROR" + CoreSimpleTypeSTRUCT_ CoreSimpleType = "STRUCT" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_sql.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_sql.go index c0cd22cb48..508b2018bc 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_sql.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_sql.go @@ -11,6 +11,6 @@ package flyteadmin // Sql represents a generic sql workload with a statement and dialect. type CoreSql struct { - Statement string `json:"statement,omitempty"` - Dialect *SqlDialect `json:"dialect,omitempty"` + Statement string `json:"statement,omitempty"` + Dialect *SqlDialect `json:"dialect,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_structured_dataset.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_structured_dataset.go index 88fb473fcc..92b97bb11e 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_structured_dataset.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_structured_dataset.go @@ -10,6 +10,6 @@ package flyteadmin type CoreStructuredDataset struct { - Uri string `json:"uri,omitempty"` + Uri string `json:"uri,omitempty"` Metadata *CoreStructuredDatasetMetadata `json:"metadata,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_execution_identifier.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_execution_identifier.go index c0f0264ad2..33cb47e05e 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_execution_identifier.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_execution_identifier.go @@ -11,7 +11,7 @@ package flyteadmin // Encapsulation of fields that identify a Flyte task execution entity. type CoreTaskExecutionIdentifier struct { - TaskId *CoreIdentifier `json:"task_id,omitempty"` + TaskId *CoreIdentifier `json:"task_id,omitempty"` NodeExecutionId *CoreNodeExecutionIdentifier `json:"node_execution_id,omitempty"` - RetryAttempt int64 `json:"retry_attempt,omitempty"` + RetryAttempt int64 `json:"retry_attempt,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_execution_phase.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_execution_phase.go index 0dd23b9a2c..4e70781eb1 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_execution_phase.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_execution_phase.go @@ -13,12 +13,12 @@ type CoreTaskExecutionPhase string // List of coreTaskExecutionPhase const ( - CoreTaskExecutionPhaseUNDEFINED CoreTaskExecutionPhase = "UNDEFINED" - CoreTaskExecutionPhaseQUEUED CoreTaskExecutionPhase = "QUEUED" - CoreTaskExecutionPhaseRUNNING CoreTaskExecutionPhase = "RUNNING" - CoreTaskExecutionPhaseSUCCEEDED CoreTaskExecutionPhase = "SUCCEEDED" - CoreTaskExecutionPhaseABORTED CoreTaskExecutionPhase = "ABORTED" - CoreTaskExecutionPhaseFAILED CoreTaskExecutionPhase = "FAILED" - CoreTaskExecutionPhaseINITIALIZING CoreTaskExecutionPhase = "INITIALIZING" + CoreTaskExecutionPhaseUNDEFINED CoreTaskExecutionPhase = "UNDEFINED" + CoreTaskExecutionPhaseQUEUED CoreTaskExecutionPhase = "QUEUED" + CoreTaskExecutionPhaseRUNNING CoreTaskExecutionPhase = "RUNNING" + CoreTaskExecutionPhaseSUCCEEDED CoreTaskExecutionPhase = "SUCCEEDED" + CoreTaskExecutionPhaseABORTED CoreTaskExecutionPhase = "ABORTED" + CoreTaskExecutionPhaseFAILED CoreTaskExecutionPhase = "FAILED" + CoreTaskExecutionPhaseINITIALIZING CoreTaskExecutionPhase = "INITIALIZING" CoreTaskExecutionPhaseWAITING_FOR_RESOURCES CoreTaskExecutionPhase = "WAITING_FOR_RESOURCES" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_log.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_log.go index 1eef3655de..6822e903b5 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_log.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_log.go @@ -10,8 +10,8 @@ package flyteadmin type CoreTaskLog struct { - Uri string `json:"uri,omitempty"` - Name string `json:"name,omitempty"` + Uri string `json:"uri,omitempty"` + Name string `json:"name,omitempty"` MessageFormat *TaskLogMessageFormat `json:"message_format,omitempty"` - Ttl string `json:"ttl,omitempty"` + Ttl string `json:"ttl,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_metadata.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_metadata.go index 658e8e1607..d81e25707a 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_metadata.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_metadata.go @@ -22,11 +22,11 @@ type CoreTaskMetadata struct { DiscoveryVersion string `json:"discovery_version,omitempty"` // If set, this indicates that this task is deprecated. This will enable owners of tasks to notify consumers of the ending of support for a given task. DeprecatedErrorMessage string `json:"deprecated_error_message,omitempty"` - Interruptible bool `json:"interruptible,omitempty"` - CacheSerializable bool `json:"cache_serializable,omitempty"` + Interruptible bool `json:"interruptible,omitempty"` + CacheSerializable bool `json:"cache_serializable,omitempty"` // Indicates whether the task will generate a Deck URI when it finishes executing. - GeneratesDeck bool `json:"generates_deck,omitempty"` - Tags map[string]string `json:"tags,omitempty"` + GeneratesDeck bool `json:"generates_deck,omitempty"` + Tags map[string]string `json:"tags,omitempty"` // pod_template_name is the unique name of a PodTemplate k8s resource to be used as the base configuration if this task creates a k8s Pod. If this value is set, the specified PodTemplate will be used instead of, but applied identically as, the default PodTemplate configured in FlytePropeller. PodTemplateName string `json:"pod_template_name,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_template.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_template.go index 163a0eb7c8..a817298971 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_template.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_task_template.go @@ -20,13 +20,13 @@ type CoreTaskTemplate struct { // A strongly typed interface for the task. This enables others to use this task within a workflow and guarantees compile-time validation of the workflow to avoid costly runtime failures. Interface_ *CoreTypedInterface `json:"interface,omitempty"` // Custom data about the task. This is extensible to allow various plugins in the system. - Custom *ProtobufStruct `json:"custom,omitempty"` - Container *CoreContainer `json:"container,omitempty"` - K8sPod *CoreK8sPod `json:"k8s_pod,omitempty"` - Sql *CoreSql `json:"sql,omitempty"` + Custom *ProtobufStruct `json:"custom,omitempty"` + Container *CoreContainer `json:"container,omitempty"` + K8sPod *CoreK8sPod `json:"k8s_pod,omitempty"` + Sql *CoreSql `json:"sql,omitempty"` // This can be used to customize task handling at execution time for the same task type. TaskTypeVersion int32 `json:"task_type_version,omitempty"` // security_context encapsulates security attributes requested to run this task. SecurityContext *CoreSecurityContext `json:"security_context,omitempty"` - Config map[string]string `json:"config,omitempty"` + Config map[string]string `json:"config,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_typed_interface.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_typed_interface.go index 8a14876460..c214430aa8 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_typed_interface.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_typed_interface.go @@ -11,6 +11,6 @@ package flyteadmin // Defines strongly typed inputs and outputs. type CoreTypedInterface struct { - Inputs *CoreVariableMap `json:"inputs,omitempty"` + Inputs *CoreVariableMap `json:"inputs,omitempty"` Outputs *CoreVariableMap `json:"outputs,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_union.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_union.go index dc4a92e0d4..9868ba7db4 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_union.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_union.go @@ -11,6 +11,6 @@ package flyteadmin // The runtime representation of a tagged union value. See `UnionType` for more details. type CoreUnion struct { - Value *CoreLiteral `json:"value,omitempty"` + Value *CoreLiteral `json:"value,omitempty"` Type_ *CoreLiteralType `json:"type,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_variable.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_variable.go index 40e43f0588..2b7beb0890 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_variable.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_variable.go @@ -12,6 +12,6 @@ package flyteadmin // Defines a strongly typed variable. type CoreVariable struct { // Variable literal type. - Type_ *CoreLiteralType `json:"type,omitempty"` - Description string `json:"description,omitempty"` + Type_ *CoreLiteralType `json:"type,omitempty"` + Description string `json:"description,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_execution_phase.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_execution_phase.go index 0745afacd7..343edc0df2 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_execution_phase.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_execution_phase.go @@ -13,14 +13,14 @@ type CoreWorkflowExecutionPhase string // List of coreWorkflowExecutionPhase const ( - CoreWorkflowExecutionPhaseUNDEFINED CoreWorkflowExecutionPhase = "UNDEFINED" - CoreWorkflowExecutionPhaseQUEUED CoreWorkflowExecutionPhase = "QUEUED" - CoreWorkflowExecutionPhaseRUNNING CoreWorkflowExecutionPhase = "RUNNING" + CoreWorkflowExecutionPhaseUNDEFINED CoreWorkflowExecutionPhase = "UNDEFINED" + CoreWorkflowExecutionPhaseQUEUED CoreWorkflowExecutionPhase = "QUEUED" + CoreWorkflowExecutionPhaseRUNNING CoreWorkflowExecutionPhase = "RUNNING" CoreWorkflowExecutionPhaseSUCCEEDING CoreWorkflowExecutionPhase = "SUCCEEDING" - CoreWorkflowExecutionPhaseSUCCEEDED CoreWorkflowExecutionPhase = "SUCCEEDED" - CoreWorkflowExecutionPhaseFAILING CoreWorkflowExecutionPhase = "FAILING" - CoreWorkflowExecutionPhaseFAILED CoreWorkflowExecutionPhase = "FAILED" - CoreWorkflowExecutionPhaseABORTED CoreWorkflowExecutionPhase = "ABORTED" - CoreWorkflowExecutionPhaseTIMED_OUT CoreWorkflowExecutionPhase = "TIMED_OUT" - CoreWorkflowExecutionPhaseABORTING CoreWorkflowExecutionPhase = "ABORTING" + CoreWorkflowExecutionPhaseSUCCEEDED CoreWorkflowExecutionPhase = "SUCCEEDED" + CoreWorkflowExecutionPhaseFAILING CoreWorkflowExecutionPhase = "FAILING" + CoreWorkflowExecutionPhaseFAILED CoreWorkflowExecutionPhase = "FAILED" + CoreWorkflowExecutionPhaseABORTED CoreWorkflowExecutionPhase = "ABORTED" + CoreWorkflowExecutionPhaseTIMED_OUT CoreWorkflowExecutionPhase = "TIMED_OUT" + CoreWorkflowExecutionPhaseABORTING CoreWorkflowExecutionPhase = "ABORTING" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_metadata.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_metadata.go index 9761a3abc4..4147e1babf 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_metadata.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_metadata.go @@ -15,5 +15,5 @@ type CoreWorkflowMetadata struct { QualityOfService *CoreQualityOfService `json:"quality_of_service,omitempty"` // Defines how the system should behave when a failure is detected in the workflow execution. OnFailure *WorkflowMetadataOnFailurePolicy `json:"on_failure,omitempty"` - Tags map[string]string `json:"tags,omitempty"` + Tags map[string]string `json:"tags,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_node.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_node.go index 42b07706aa..01f56e0571 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_node.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_node.go @@ -12,6 +12,6 @@ package flyteadmin // Refers to a the workflow the node is to execute. type CoreWorkflowNode struct { // A globally unique identifier for the launch plan. - LaunchplanRef *CoreIdentifier `json:"launchplan_ref,omitempty"` + LaunchplanRef *CoreIdentifier `json:"launchplan_ref,omitempty"` SubWorkflowRef *CoreIdentifier `json:"sub_workflow_ref,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_template.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_template.go index 377a19bf82..8ceba64866 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_template.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_core_workflow_template.go @@ -22,6 +22,6 @@ type CoreWorkflowTemplate struct { // A list of output bindings that specify how to construct workflow outputs. Bindings can pull node outputs or specify literals. All workflow outputs specified in the interface field must be bound in order for the workflow to be validated. A workflow has an implicit dependency on all of its nodes to execute successfully in order to bind final outputs. Most of these outputs will be Binding's with a BindingData of type OutputReference. That is, your workflow can just have an output of some constant (`Output(5)`), but usually, the workflow will be pulling outputs from the output of a task. Outputs []CoreBinding `json:"outputs,omitempty"` // +optional A catch-all node. This node is executed whenever the execution engine determines the workflow has failed. The interface of this node must match the Workflow interface with an additional input named 'error' of type pb.lyft.flyte.core.Error. - FailureNode *CoreNode `json:"failure_node,omitempty"` + FailureNode *CoreNode `json:"failure_node,omitempty"` MetadataDefaults *CoreWorkflowMetadataDefaults `json:"metadata_defaults,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_data_loading_config_literal_map_format.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_data_loading_config_literal_map_format.go index bfb25fd456..f63e8685f4 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_data_loading_config_literal_map_format.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_data_loading_config_literal_map_format.go @@ -8,12 +8,13 @@ */ package flyteadmin + // DataLoadingConfigLiteralMapFormat : - JSON: JSON / YAML for the metadata (which contains inlined primitive values). The representation is inline with the standard json specification as specified - https://www.json.org/json-en.html - PROTO: Proto is a serialized binary of `core.LiteralMap` defined in flyteidl/core type DataLoadingConfigLiteralMapFormat string // List of DataLoadingConfigLiteralMapFormat const ( - DataLoadingConfigLiteralMapFormatJSON DataLoadingConfigLiteralMapFormat = "JSON" - DataLoadingConfigLiteralMapFormatYAML DataLoadingConfigLiteralMapFormat = "YAML" + DataLoadingConfigLiteralMapFormatJSON DataLoadingConfigLiteralMapFormat = "JSON" + DataLoadingConfigLiteralMapFormatYAML DataLoadingConfigLiteralMapFormat = "YAML" DataLoadingConfigLiteralMapFormatPROTO DataLoadingConfigLiteralMapFormat = "PROTO" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_event_reason.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_event_reason.go index 2f85376781..8a5ec617ff 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_event_reason.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_event_reason.go @@ -14,6 +14,6 @@ import ( ) type EventEventReason struct { - Reason string `json:"reason,omitempty"` + Reason string `json:"reason,omitempty"` OccurredAt time.Time `json:"occurred_at,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_external_resource_info.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_external_resource_info.go index 8daa059ed9..0b9f2deb29 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_external_resource_info.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_external_resource_info.go @@ -14,10 +14,10 @@ type EventExternalResourceInfo struct { // Identifier for an external resource created by this task execution, for example Qubole query ID or presto query ids. ExternalId string `json:"external_id,omitempty"` // A unique index for the external resource with respect to all external resources for this task. Although the identifier may change between task reporting events or retries, this will remain the same to enable aggregating information from multiple reports. - Index int64 `json:"index,omitempty"` - RetryAttempt int64 `json:"retry_attempt,omitempty"` - Phase *CoreTaskExecutionPhase `json:"phase,omitempty"` + Index int64 `json:"index,omitempty"` + RetryAttempt int64 `json:"retry_attempt,omitempty"` + Phase *CoreTaskExecutionPhase `json:"phase,omitempty"` // Captures the status of caching for this external resource execution. CacheStatus *CoreCatalogCacheStatus `json:"cache_status,omitempty"` - Logs []CoreTaskLog `json:"logs,omitempty"` + Logs []CoreTaskLog `json:"logs,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_node_execution_event.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_node_execution_event.go index 8d80e2a1e5..c08a047db1 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_node_execution_event.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_node_execution_event.go @@ -14,34 +14,34 @@ import ( ) type EventNodeExecutionEvent struct { - Id *CoreNodeExecutionIdentifier `json:"id,omitempty"` - ProducerId string `json:"producer_id,omitempty"` - Phase *CoreNodeExecutionPhase `json:"phase,omitempty"` + Id *CoreNodeExecutionIdentifier `json:"id,omitempty"` + ProducerId string `json:"producer_id,omitempty"` + Phase *CoreNodeExecutionPhase `json:"phase,omitempty"` // This timestamp represents when the original event occurred, it is generated by the executor of the node. OccurredAt time.Time `json:"occurred_at,omitempty"` - InputUri string `json:"input_uri,omitempty"` + InputUri string `json:"input_uri,omitempty"` // Raw input data consumed by this node execution. InputData *CoreLiteralMap `json:"input_data,omitempty"` // URL to the output of the execution, it encodes all the information including Cloud source provider. ie., s3://... - OutputUri string `json:"output_uri,omitempty"` - Error_ *CoreExecutionError `json:"error,omitempty"` + OutputUri string `json:"output_uri,omitempty"` + Error_ *CoreExecutionError `json:"error,omitempty"` // Raw output data produced by this node execution. - OutputData *CoreLiteralMap `json:"output_data,omitempty"` + OutputData *CoreLiteralMap `json:"output_data,omitempty"` WorkflowNodeMetadata *FlyteidleventWorkflowNodeMetadata `json:"workflow_node_metadata,omitempty"` - TaskNodeMetadata *FlyteidleventTaskNodeMetadata `json:"task_node_metadata,omitempty"` + TaskNodeMetadata *FlyteidleventTaskNodeMetadata `json:"task_node_metadata,omitempty"` // [To be deprecated] Specifies which task (if any) launched this node. ParentTaskMetadata *EventParentTaskExecutionMetadata `json:"parent_task_metadata,omitempty"` // Specifies the parent node of the current node execution. Node executions at level zero will not have a parent node. ParentNodeMetadata *EventParentNodeExecutionMetadata `json:"parent_node_metadata,omitempty"` - RetryGroup string `json:"retry_group,omitempty"` - SpecNodeId string `json:"spec_node_id,omitempty"` - NodeName string `json:"node_name,omitempty"` - EventVersion int32 `json:"event_version,omitempty"` + RetryGroup string `json:"retry_group,omitempty"` + SpecNodeId string `json:"spec_node_id,omitempty"` + NodeName string `json:"node_name,omitempty"` + EventVersion int32 `json:"event_version,omitempty"` // Whether this node launched a subworkflow. IsParent bool `json:"is_parent,omitempty"` // Whether this node yielded a dynamic workflow. - IsDynamic bool `json:"is_dynamic,omitempty"` - DeckUri string `json:"deck_uri,omitempty"` + IsDynamic bool `json:"is_dynamic,omitempty"` + DeckUri string `json:"deck_uri,omitempty"` // This timestamp represents the instant when the event was reported by the executing framework. For example, when first processing a node the `occurred_at` timestamp should be the instant propeller makes progress, so when literal inputs are initially copied. The event however will not be sent until after the copy completes. Extracting both of these timestamps facilitates a more accurate portrayal of the evaluation time-series. ReportedAt time.Time `json:"reported_at,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_task_execution_event.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_task_execution_event.go index dac65497ac..2445468bac 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_task_execution_event.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_task_execution_event.go @@ -16,12 +16,12 @@ import ( // Plugin specific execution event information. For tasks like Python, Hive, Spark, DynamicJob. type EventTaskExecutionEvent struct { // ID of the task. In combination with the retryAttempt this will indicate the task execution uniquely for a given parent node execution. - TaskId *CoreIdentifier `json:"task_id,omitempty"` + TaskId *CoreIdentifier `json:"task_id,omitempty"` ParentNodeExecutionId *CoreNodeExecutionIdentifier `json:"parent_node_execution_id,omitempty"` - RetryAttempt int64 `json:"retry_attempt,omitempty"` - Phase *CoreTaskExecutionPhase `json:"phase,omitempty"` - ProducerId string `json:"producer_id,omitempty"` - Logs []CoreTaskLog `json:"logs,omitempty"` + RetryAttempt int64 `json:"retry_attempt,omitempty"` + Phase *CoreTaskExecutionPhase `json:"phase,omitempty"` + ProducerId string `json:"producer_id,omitempty"` + Logs []CoreTaskLog `json:"logs,omitempty"` // This timestamp represents when the original event occurred, it is generated by the executor of the task. OccurredAt time.Time `json:"occurred_at,omitempty"` // URI of the input file, it encodes all the information including Cloud source provider. ie., s3://... @@ -29,8 +29,8 @@ type EventTaskExecutionEvent struct { // Raw input data consumed by this task execution. InputData *CoreLiteralMap `json:"input_data,omitempty"` // URI to the output of the execution, it will be in a format that encodes all the information including Cloud source provider. ie., s3://... - OutputUri string `json:"output_uri,omitempty"` - Error_ *CoreExecutionError `json:"error,omitempty"` + OutputUri string `json:"output_uri,omitempty"` + Error_ *CoreExecutionError `json:"error,omitempty"` // Raw output data produced by this task execution. OutputData *CoreLiteralMap `json:"output_data,omitempty"` // Custom data that the task plugin sends back. This is extensible to allow various plugins in the system. diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_workflow_execution_event.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_workflow_execution_event.go index 279f0d5a5c..ce8d46d58a 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_workflow_execution_event.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_workflow_execution_event.go @@ -15,13 +15,13 @@ import ( type EventWorkflowExecutionEvent struct { ExecutionId *CoreWorkflowExecutionIdentifier `json:"execution_id,omitempty"` - ProducerId string `json:"producer_id,omitempty"` - Phase *CoreWorkflowExecutionPhase `json:"phase,omitempty"` + ProducerId string `json:"producer_id,omitempty"` + Phase *CoreWorkflowExecutionPhase `json:"phase,omitempty"` // This timestamp represents when the original event occurred, it is generated by the executor of the workflow. OccurredAt time.Time `json:"occurred_at,omitempty"` // URL to the output of the execution, it encodes all the information including Cloud source provider. ie., s3://... - OutputUri string `json:"output_uri,omitempty"` - Error_ *CoreExecutionError `json:"error,omitempty"` + OutputUri string `json:"output_uri,omitempty"` + Error_ *CoreExecutionError `json:"error,omitempty"` // Raw output data produced by this workflow execution. OutputData *CoreLiteralMap `json:"output_data,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_execution_error_error_kind.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_execution_error_error_kind.go index fa2eb9e95e..6958ad770b 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_execution_error_error_kind.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_execution_error_error_kind.go @@ -14,6 +14,6 @@ type ExecutionErrorErrorKind string // List of ExecutionErrorErrorKind const ( ExecutionErrorErrorKindUNKNOWN ExecutionErrorErrorKind = "UNKNOWN" - ExecutionErrorErrorKindUSER ExecutionErrorErrorKind = "USER" - ExecutionErrorErrorKindSYSTEM ExecutionErrorErrorKind = "SYSTEM" + ExecutionErrorErrorKindUSER ExecutionErrorErrorKind = "USER" + ExecutionErrorErrorKindSYSTEM ExecutionErrorErrorKind = "SYSTEM" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_execution_metadata_execution_mode.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_execution_metadata_execution_mode.go index 000c4da4c6..acc8c6bf69 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_execution_metadata_execution_mode.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_execution_metadata_execution_mode.go @@ -8,15 +8,16 @@ */ package flyteadmin + // ExecutionMetadataExecutionMode : The method by which this execution was launched. - MANUAL: The default execution mode, MANUAL implies that an execution was launched by an individual. - SCHEDULED: A schedule triggered this execution launch. - SYSTEM: A system process was responsible for launching this execution rather an individual. - RELAUNCH: This execution was launched with identical inputs as a previous execution. - CHILD_WORKFLOW: This execution was triggered by another execution. - RECOVERED: This execution was recovered from another execution. type ExecutionMetadataExecutionMode string // List of ExecutionMetadataExecutionMode const ( - ExecutionMetadataExecutionModeMANUAL ExecutionMetadataExecutionMode = "MANUAL" - ExecutionMetadataExecutionModeSCHEDULED ExecutionMetadataExecutionMode = "SCHEDULED" - ExecutionMetadataExecutionModeSYSTEM ExecutionMetadataExecutionMode = "SYSTEM" - ExecutionMetadataExecutionModeRELAUNCH ExecutionMetadataExecutionMode = "RELAUNCH" + ExecutionMetadataExecutionModeMANUAL ExecutionMetadataExecutionMode = "MANUAL" + ExecutionMetadataExecutionModeSCHEDULED ExecutionMetadataExecutionMode = "SCHEDULED" + ExecutionMetadataExecutionModeSYSTEM ExecutionMetadataExecutionMode = "SYSTEM" + ExecutionMetadataExecutionModeRELAUNCH ExecutionMetadataExecutionMode = "RELAUNCH" ExecutionMetadataExecutionModeCHILD_WORKFLOW ExecutionMetadataExecutionMode = "CHILD_WORKFLOW" - ExecutionMetadataExecutionModeRECOVERED ExecutionMetadataExecutionMode = "RECOVERED" + ExecutionMetadataExecutionModeRECOVERED ExecutionMetadataExecutionMode = "RECOVERED" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidladmin_node_execution.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidladmin_node_execution.go index 98ec72e86b..7ee8bcb82e 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidladmin_node_execution.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidladmin_node_execution.go @@ -16,6 +16,6 @@ type FlyteidladminNodeExecution struct { // Path to remote data store where input blob is stored. InputUri string `json:"input_uri,omitempty"` // Computed results associated with this node execution. - Closure *AdminNodeExecutionClosure `json:"closure,omitempty"` + Closure *AdminNodeExecutionClosure `json:"closure,omitempty"` Metadata *AdminNodeExecutionMetaData `json:"metadata,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidladmin_task_create_request.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidladmin_task_create_request.go index ab5fca2a45..507033a5ed 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidladmin_task_create_request.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidladmin_task_create_request.go @@ -10,6 +10,6 @@ package flyteadmin type FlyteidladminTaskCreateRequest struct { - Id *CoreIdentifier `json:"id,omitempty"` - Spec *AdminTaskSpec `json:"spec,omitempty"` + Id *CoreIdentifier `json:"id,omitempty"` + Spec *AdminTaskSpec `json:"spec,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidladmin_task_node_metadata.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidladmin_task_node_metadata.go index 56d98b26d1..7e24dd89a1 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidladmin_task_node_metadata.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidladmin_task_node_metadata.go @@ -11,7 +11,7 @@ package flyteadmin type FlyteidladminTaskNodeMetadata struct { // Captures the status of caching for this execution. - CacheStatus *CoreCatalogCacheStatus `json:"cache_status,omitempty"` - CatalogKey *CoreCatalogMetadata `json:"catalog_key,omitempty"` - CheckpointUri string `json:"checkpoint_uri,omitempty"` + CacheStatus *CoreCatalogCacheStatus `json:"cache_status,omitempty"` + CatalogKey *CoreCatalogMetadata `json:"catalog_key,omitempty"` + CheckpointUri string `json:"checkpoint_uri,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidlevent_task_execution_metadata.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidlevent_task_execution_metadata.go index 71d474ab41..aa12b33c61 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidlevent_task_execution_metadata.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidlevent_task_execution_metadata.go @@ -18,6 +18,6 @@ type FlyteidleventTaskExecutionMetadata struct { // Includes additional data on concurrent resource management used during execution.. This is a repeated field because a plugin can request multiple resource allocations during execution. ResourcePoolInfo []EventResourcePoolInfo `json:"resource_pool_info,omitempty"` // The identifier of the plugin used to execute this task. - PluginIdentifier string `json:"plugin_identifier,omitempty"` - InstanceClass *TaskExecutionMetadataInstanceClass `json:"instance_class,omitempty"` + PluginIdentifier string `json:"plugin_identifier,omitempty"` + InstanceClass *TaskExecutionMetadataInstanceClass `json:"instance_class,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidlevent_task_node_metadata.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidlevent_task_node_metadata.go index 50a76526b3..82826c00b0 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidlevent_task_node_metadata.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_flyteidlevent_task_node_metadata.go @@ -12,10 +12,10 @@ package flyteadmin type FlyteidleventTaskNodeMetadata struct { // Captures the status of caching for this execution. CacheStatus *CoreCatalogCacheStatus `json:"cache_status,omitempty"` - CatalogKey *CoreCatalogMetadata `json:"catalog_key,omitempty"` + CatalogKey *CoreCatalogMetadata `json:"catalog_key,omitempty"` // Captures the status of cache reservations for this execution. ReservationStatus *CatalogReservationStatus `json:"reservation_status,omitempty"` - CheckpointUri string `json:"checkpoint_uri,omitempty"` + CheckpointUri string `json:"checkpoint_uri,omitempty"` // In the case this task launched a dynamic workflow we capture its structure here. DynamicWorkflow *FlyteidleventDynamicWorkflowNodeMetadata `json:"dynamic_workflow,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_io_strategy_download_mode.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_io_strategy_download_mode.go index 670fc15294..b330b904c4 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_io_strategy_download_mode.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_io_strategy_download_mode.go @@ -8,12 +8,13 @@ */ package flyteadmin + // IoStrategyDownloadMode : - DOWNLOAD_EAGER: All data will be downloaded before the main container is executed - DOWNLOAD_STREAM: Data will be downloaded as a stream and an End-Of-Stream marker will be written to indicate all data has been downloaded. Refer to protocol for details - DO_NOT_DOWNLOAD: Large objects (offloaded) will not be downloaded type IoStrategyDownloadMode string // List of IOStrategyDownloadMode const ( - IoStrategyDownloadModeDOWNLOAD_EAGER IoStrategyDownloadMode = "DOWNLOAD_EAGER" + IoStrategyDownloadModeDOWNLOAD_EAGER IoStrategyDownloadMode = "DOWNLOAD_EAGER" IoStrategyDownloadModeDOWNLOAD_STREAM IoStrategyDownloadMode = "DOWNLOAD_STREAM" IoStrategyDownloadModeDO_NOT_DOWNLOAD IoStrategyDownloadMode = "DO_NOT_DOWNLOAD" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_io_strategy_upload_mode.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_io_strategy_upload_mode.go index d7b6e5f1fe..39bd91f4a0 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_io_strategy_upload_mode.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_io_strategy_upload_mode.go @@ -8,12 +8,13 @@ */ package flyteadmin + // IoStrategyUploadMode : - UPLOAD_ON_EXIT: All data will be uploaded after the main container exits - UPLOAD_EAGER: Data will be uploaded as it appears. Refer to protocol specification for details - DO_NOT_UPLOAD: Data will not be uploaded, only references will be written type IoStrategyUploadMode string // List of IOStrategyUploadMode const ( IoStrategyUploadModeUPLOAD_ON_EXIT IoStrategyUploadMode = "UPLOAD_ON_EXIT" - IoStrategyUploadModeUPLOAD_EAGER IoStrategyUploadMode = "UPLOAD_EAGER" - IoStrategyUploadModeDO_NOT_UPLOAD IoStrategyUploadMode = "DO_NOT_UPLOAD" + IoStrategyUploadModeUPLOAD_EAGER IoStrategyUploadMode = "UPLOAD_EAGER" + IoStrategyUploadModeDO_NOT_UPLOAD IoStrategyUploadMode = "DO_NOT_UPLOAD" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_plugin_override_missing_plugin_behavior.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_plugin_override_missing_plugin_behavior.go index 2c8ff10df0..e39a5c4181 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_plugin_override_missing_plugin_behavior.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_plugin_override_missing_plugin_behavior.go @@ -8,11 +8,12 @@ */ package flyteadmin + // PluginOverrideMissingPluginBehavior : - FAIL: By default, if this plugin is not enabled for a Flyte deployment then execution will fail. - USE_DEFAULT: Uses the system-configured default implementation. type PluginOverrideMissingPluginBehavior string // List of PluginOverrideMissingPluginBehavior const ( - PluginOverrideMissingPluginBehaviorFAIL PluginOverrideMissingPluginBehavior = "FAIL" + PluginOverrideMissingPluginBehaviorFAIL PluginOverrideMissingPluginBehavior = "FAIL" PluginOverrideMissingPluginBehaviorUSE_DEFAULT PluginOverrideMissingPluginBehavior = "USE_DEFAULT" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_project_project_state.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_project_project_state.go index 112958abfa..12c6095dc7 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_project_project_state.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_project_project_state.go @@ -8,12 +8,13 @@ */ package flyteadmin + // ProjectProjectState : The state of the project is used to control its visibility in the UI and validity. - ACTIVE: By default, all projects are considered active. - ARCHIVED: Archived projects are no longer visible in the UI and no longer valid. - SYSTEM_GENERATED: System generated projects that aren't explicitly created or managed by a user. type ProjectProjectState string // List of ProjectProjectState const ( - ProjectProjectStateACTIVE ProjectProjectState = "ACTIVE" - ProjectProjectStateARCHIVED ProjectProjectState = "ARCHIVED" + ProjectProjectStateACTIVE ProjectProjectState = "ACTIVE" + ProjectProjectStateARCHIVED ProjectProjectState = "ARCHIVED" ProjectProjectStateSYSTEM_GENERATED ProjectProjectState = "SYSTEM_GENERATED" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_protobuf_null_value.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_protobuf_null_value.go index b7bb2d3e80..1eb323f308 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_protobuf_null_value.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_protobuf_null_value.go @@ -8,6 +8,7 @@ */ package flyteadmin + // ProtobufNullValue : `NullValue` is a singleton enumeration to represent the null value for the `Value` type union. The JSON representation for `NullValue` is JSON `null`. - NULL_VALUE: Null value. type ProtobufNullValue string diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_quality_of_service_tier.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_quality_of_service_tier.go index b156cc3b7e..bc006a5085 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_quality_of_service_tier.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_quality_of_service_tier.go @@ -8,13 +8,14 @@ */ package flyteadmin + // QualityOfServiceTier : - UNDEFINED: Default: no quality of service specified. type QualityOfServiceTier string // List of QualityOfServiceTier const ( QualityOfServiceTierUNDEFINED QualityOfServiceTier = "UNDEFINED" - QualityOfServiceTierHIGH QualityOfServiceTier = "HIGH" - QualityOfServiceTierMEDIUM QualityOfServiceTier = "MEDIUM" - QualityOfServiceTierLOW QualityOfServiceTier = "LOW" + QualityOfServiceTierHIGH QualityOfServiceTier = "HIGH" + QualityOfServiceTierMEDIUM QualityOfServiceTier = "MEDIUM" + QualityOfServiceTierLOW QualityOfServiceTier = "LOW" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_resources_resource_entry.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_resources_resource_entry.go index cb02920221..e4c77cb7c8 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_resources_resource_entry.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_resources_resource_entry.go @@ -12,6 +12,6 @@ package flyteadmin // Encapsulates a resource name and value. type ResourcesResourceEntry struct { // Resource name. - Name *ResourcesResourceName `json:"name,omitempty"` - Value string `json:"value,omitempty"` + Name *ResourcesResourceName `json:"name,omitempty"` + Value string `json:"value,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_resources_resource_name.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_resources_resource_name.go index 13b9f8b236..b8bc37546f 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_resources_resource_name.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_resources_resource_name.go @@ -8,15 +8,16 @@ */ package flyteadmin + // ResourcesResourceName : Known resource names. - EPHEMERAL_STORAGE: For Kubernetes-based deployments, pods use ephemeral local storage for scratch space, caching, and for logs. type ResourcesResourceName string // List of ResourcesResourceName const ( - ResourcesResourceNameUNKNOWN ResourcesResourceName = "UNKNOWN" - ResourcesResourceNameCPU ResourcesResourceName = "CPU" - ResourcesResourceNameGPU ResourcesResourceName = "GPU" - ResourcesResourceNameMEMORY ResourcesResourceName = "MEMORY" - ResourcesResourceNameSTORAGE ResourcesResourceName = "STORAGE" + ResourcesResourceNameUNKNOWN ResourcesResourceName = "UNKNOWN" + ResourcesResourceNameCPU ResourcesResourceName = "CPU" + ResourcesResourceNameGPU ResourcesResourceName = "GPU" + ResourcesResourceNameMEMORY ResourcesResourceName = "MEMORY" + ResourcesResourceNameSTORAGE ResourcesResourceName = "STORAGE" ResourcesResourceNameEPHEMERAL_STORAGE ResourcesResourceName = "EPHEMERAL_STORAGE" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_runtime_metadata_runtime_type.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_runtime_metadata_runtime_type.go index 85abd1fbcc..798b8b6784 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_runtime_metadata_runtime_type.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_runtime_metadata_runtime_type.go @@ -13,6 +13,6 @@ type RuntimeMetadataRuntimeType string // List of RuntimeMetadataRuntimeType const ( - RuntimeMetadataRuntimeTypeOTHER RuntimeMetadataRuntimeType = "OTHER" + RuntimeMetadataRuntimeTypeOTHER RuntimeMetadataRuntimeType = "OTHER" RuntimeMetadataRuntimeTypeFLYTE_SDK RuntimeMetadataRuntimeType = "FLYTE_SDK" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_schema_column_schema_column_type.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_schema_column_schema_column_type.go index ece75c9671..dd183d0843 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_schema_column_schema_column_type.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_schema_column_schema_column_type.go @@ -13,10 +13,10 @@ type SchemaColumnSchemaColumnType string // List of SchemaColumnSchemaColumnType const ( - SchemaColumnSchemaColumnTypeINTEGER SchemaColumnSchemaColumnType = "INTEGER" - SchemaColumnSchemaColumnTypeFLOAT SchemaColumnSchemaColumnType = "FLOAT" - SchemaColumnSchemaColumnTypeSTRING_ SchemaColumnSchemaColumnType = "STRING" - SchemaColumnSchemaColumnTypeBOOLEAN SchemaColumnSchemaColumnType = "BOOLEAN" + SchemaColumnSchemaColumnTypeINTEGER SchemaColumnSchemaColumnType = "INTEGER" + SchemaColumnSchemaColumnTypeFLOAT SchemaColumnSchemaColumnType = "FLOAT" + SchemaColumnSchemaColumnTypeSTRING_ SchemaColumnSchemaColumnType = "STRING" + SchemaColumnSchemaColumnTypeBOOLEAN SchemaColumnSchemaColumnType = "BOOLEAN" SchemaColumnSchemaColumnTypeDATETIME SchemaColumnSchemaColumnType = "DATETIME" SchemaColumnSchemaColumnTypeDURATION SchemaColumnSchemaColumnType = "DURATION" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_secret_mount_type.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_secret_mount_type.go index 4f76410bc7..4d0675052c 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_secret_mount_type.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_secret_mount_type.go @@ -8,12 +8,13 @@ */ package flyteadmin + // SecretMountType : - ANY: Default case, indicates the client can tolerate either mounting options. - ENV_VAR: ENV_VAR indicates the secret needs to be mounted as an environment variable. - FILE: FILE indicates the secret needs to be mounted as a file. type SecretMountType string // List of SecretMountType const ( - SecretMountTypeANY SecretMountType = "ANY" + SecretMountTypeANY SecretMountType = "ANY" SecretMountTypeENV_VAR SecretMountType = "ENV_VAR" - SecretMountTypeFILE SecretMountType = "FILE" + SecretMountTypeFILE SecretMountType = "FILE" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_sort_direction.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_sort_direction.go index bc5e709b53..5e8684503e 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_sort_direction.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_sort_direction.go @@ -8,11 +8,12 @@ */ package flyteadmin + // SortDirection : - DESCENDING: By default, fields are sorted in descending order. type SortDirection string // List of SortDirection const ( SortDirectionDESCENDING SortDirection = "DESCENDING" - SortDirectionASCENDING SortDirection = "ASCENDING" + SortDirectionASCENDING SortDirection = "ASCENDING" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_sql_dialect.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_sql_dialect.go index 4f3e1a661a..d6ae9ce5c1 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_sql_dialect.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_sql_dialect.go @@ -8,13 +8,14 @@ */ package flyteadmin + // SqlDialect : The dialect of the SQL statement. This is used to validate and parse SQL statements at compilation time to avoid expensive runtime operations. If set to an unsupported dialect, no validation will be done on the statement. We support the following dialect: ansi, hive. type SqlDialect string // List of SqlDialect const ( SqlDialectUNDEFINED SqlDialect = "UNDEFINED" - SqlDialectANSI SqlDialect = "ANSI" - SqlDialectHIVE SqlDialect = "HIVE" - SqlDialectOTHER SqlDialect = "OTHER" + SqlDialectANSI SqlDialect = "ANSI" + SqlDialectHIVE SqlDialect = "HIVE" + SqlDialectOTHER SqlDialect = "OTHER" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_task_execution_metadata_instance_class.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_task_execution_metadata_instance_class.go index efff48b058..b5552c8c6e 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_task_execution_metadata_instance_class.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_task_execution_metadata_instance_class.go @@ -8,11 +8,12 @@ */ package flyteadmin + // TaskExecutionMetadataInstanceClass : Includes the broad category of machine used for this specific task execution. - DEFAULT: The default instance class configured for the flyte application platform. - INTERRUPTIBLE: The instance class configured for interruptible tasks. type TaskExecutionMetadataInstanceClass string // List of TaskExecutionMetadataInstanceClass const ( - TaskExecutionMetadataInstanceClassDEFAULT_ TaskExecutionMetadataInstanceClass = "DEFAULT" + TaskExecutionMetadataInstanceClassDEFAULT_ TaskExecutionMetadataInstanceClass = "DEFAULT" TaskExecutionMetadataInstanceClassINTERRUPTIBLE TaskExecutionMetadataInstanceClass = "INTERRUPTIBLE" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_task_log_message_format.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_task_log_message_format.go index 46eab08cba..75d9e7a78c 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_task_log_message_format.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_task_log_message_format.go @@ -14,6 +14,6 @@ type TaskLogMessageFormat string // List of TaskLogMessageFormat const ( TaskLogMessageFormatUNKNOWN TaskLogMessageFormat = "UNKNOWN" - TaskLogMessageFormatCSV TaskLogMessageFormat = "CSV" - TaskLogMessageFormatJSON TaskLogMessageFormat = "JSON" + TaskLogMessageFormatCSV TaskLogMessageFormat = "CSV" + TaskLogMessageFormatJSON TaskLogMessageFormat = "JSON" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_workflow_metadata_on_failure_policy.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_workflow_metadata_on_failure_policy.go index 81379f25c6..64efb21dc1 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_workflow_metadata_on_failure_policy.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_workflow_metadata_on_failure_policy.go @@ -8,11 +8,12 @@ */ package flyteadmin + // WorkflowMetadataOnFailurePolicy : - FAIL_IMMEDIATELY: FAIL_IMMEDIATELY instructs the system to fail as soon as a node fails in the workflow. It'll automatically abort all currently running nodes and clean up resources before finally marking the workflow executions as failed. - FAIL_AFTER_EXECUTABLE_NODES_COMPLETE: FAIL_AFTER_EXECUTABLE_NODES_COMPLETE instructs the system to make as much progress as it can. The system will not alter the dependencies of the execution graph so any node that depend on the failed node will not be run. Other nodes that will be executed to completion before cleaning up resources and marking the workflow execution as failed. type WorkflowMetadataOnFailurePolicy string // List of WorkflowMetadataOnFailurePolicy const ( - WorkflowMetadataOnFailurePolicyIMMEDIATELY WorkflowMetadataOnFailurePolicy = "FAIL_IMMEDIATELY" + WorkflowMetadataOnFailurePolicyIMMEDIATELY WorkflowMetadataOnFailurePolicy = "FAIL_IMMEDIATELY" WorkflowMetadataOnFailurePolicyAFTER_EXECUTABLE_NODES_COMPLETE WorkflowMetadataOnFailurePolicy = "FAIL_AFTER_EXECUTABLE_NODES_COMPLETE" ) diff --git a/flyteidl/gen/pb-go/flyteidl/service/identity.pb.go b/flyteidl/gen/pb-go/flyteidl/service/identity.pb.go index a240b5fbd3..7268a9afa5 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/identity.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/service/identity.pb.go @@ -6,13 +6,14 @@ package service import ( context "context" fmt "fmt" + math "math" + proto "github.com/golang/protobuf/proto" _struct "github.com/golang/protobuf/ptypes/struct" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -170,31 +171,31 @@ func init() { func init() { proto.RegisterFile("flyteidl/service/identity.proto", fileDescriptor_0c3f20efbeb1b3f8) } var fileDescriptor_0c3f20efbeb1b3f8 = []byte{ - // 372 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0xbf, 0x6e, 0xfa, 0x30, - 0x10, 0xc7, 0xc5, 0x7f, 0x30, 0x03, 0x60, 0xfd, 0xa4, 0x5f, 0x84, 0x5a, 0x41, 0x33, 0xb1, 0x60, - 0x4b, 0x74, 0xa8, 0xba, 0xb6, 0x5d, 0x58, 0x3a, 0x80, 0x58, 0x3a, 0x14, 0x39, 0xc9, 0x25, 0x75, - 0x95, 0xd8, 0xc1, 0x76, 0x90, 0x58, 0xfb, 0x0a, 0x7d, 0x86, 0x3e, 0x51, 0x5f, 0xa1, 0x0f, 0x52, - 0x61, 0x27, 0x20, 0x31, 0x74, 0xcb, 0xdd, 0xe7, 0x73, 0x92, 0xf3, 0xbd, 0x43, 0x93, 0x38, 0x3d, - 0x18, 0xe0, 0x51, 0x4a, 0x35, 0xa8, 0x3d, 0x0f, 0x81, 0xf2, 0x08, 0x84, 0xe1, 0xe6, 0x40, 0x72, - 0x25, 0x8d, 0xc4, 0xc3, 0x4a, 0x20, 0xa5, 0x30, 0xbe, 0x4a, 0xa4, 0x4c, 0x52, 0xa0, 0x2c, 0xe7, - 0x94, 0x09, 0x21, 0x0d, 0x33, 0x5c, 0x0a, 0xed, 0xfc, 0x13, 0xb5, 0x55, 0x50, 0xc4, 0x54, 0x1b, - 0x55, 0x84, 0xc6, 0x51, 0x7f, 0x84, 0x06, 0x1b, 0x0d, 0x6a, 0x29, 0x62, 0xb9, 0x82, 0x5d, 0x01, - 0xda, 0xf8, 0x5f, 0x75, 0x34, 0x3c, 0xf7, 0x74, 0x2e, 0x85, 0x06, 0xec, 0xa1, 0x8e, 0x2e, 0x82, - 0x77, 0x08, 0x8d, 0x57, 0x9b, 0xd6, 0x66, 0xbd, 0x55, 0x55, 0x62, 0x8c, 0x9a, 0x82, 0x65, 0xe0, - 0xd5, 0x6d, 0xdb, 0x7e, 0xe3, 0x39, 0xc2, 0xb9, 0x82, 0x18, 0x94, 0x82, 0x68, 0x5b, 0x68, 0x50, - 0xd6, 0x68, 0x58, 0x63, 0x74, 0x22, 0x9b, 0x12, 0xe0, 0x6b, 0x84, 0x12, 0xbe, 0x07, 0xb1, 0xb5, - 0x5a, 0xd3, 0x6a, 0x3d, 0xdb, 0x79, 0x3e, 0xe2, 0x09, 0xea, 0xc7, 0x2c, 0xe3, 0xe9, 0xc1, 0xf1, - 0x96, 0xe5, 0xc8, 0xb5, 0xac, 0xf0, 0x0f, 0xb5, 0x20, 0x63, 0x3c, 0xf5, 0xda, 0x16, 0xb9, 0xe2, - 0xf8, 0xe4, 0x9c, 0x87, 0xa6, 0x50, 0xe0, 0x75, 0xdc, 0x93, 0xcb, 0x12, 0x3f, 0xa1, 0x11, 0x8b, - 0x22, 0x7e, 0x4c, 0x89, 0xa5, 0xdb, 0x30, 0x65, 0x3c, 0xd3, 0x5e, 0x77, 0x5a, 0x9b, 0xf5, 0x17, - 0xff, 0x89, 0x8b, 0x8b, 0x54, 0x71, 0x91, 0xb5, 0x8d, 0x6b, 0x35, 0x3c, 0x4f, 0x3c, 0xda, 0x81, - 0xc5, 0x0e, 0x0d, 0x96, 0xe5, 0x6a, 0xd6, 0x6e, 0x13, 0xf8, 0x15, 0x75, 0xab, 0xe4, 0xf0, 0x0d, - 0xb9, 0x5c, 0x14, 0xb9, 0x48, 0x7a, 0xec, 0xff, 0xa5, 0xb8, 0xe0, 0xfd, 0xfe, 0xc7, 0xf7, 0xcf, - 0x67, 0xbd, 0x85, 0x1b, 0x34, 0x83, 0x87, 0xfb, 0x97, 0xbb, 0x84, 0x9b, 0xb7, 0x22, 0x20, 0xa1, - 0xcc, 0xa8, 0x1d, 0x96, 0x2a, 0xa1, 0xa7, 0x93, 0x49, 0x40, 0xd0, 0x3c, 0x98, 0x27, 0x92, 0x5e, - 0x5e, 0x51, 0xd0, 0xb6, 0x3f, 0x74, 0xfb, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x8e, 0x8e, 0x13, 0xed, - 0x60, 0x02, 0x00, 0x00, + // 374 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0xbf, 0x6e, 0xea, 0x30, + 0x14, 0x87, 0xc5, 0x7f, 0x30, 0x03, 0x60, 0x5d, 0xe9, 0x46, 0xa8, 0x15, 0x34, 0x13, 0x0b, 0xb6, + 0x44, 0xe7, 0xaa, 0x52, 0xdb, 0x85, 0xa5, 0x03, 0x88, 0xa5, 0x43, 0x91, 0x93, 0x9c, 0xa4, 0xae, + 0x12, 0x3b, 0xd8, 0x0e, 0x12, 0x6b, 0x5f, 0xa1, 0xcf, 0xd0, 0x27, 0xea, 0x2b, 0xf4, 0x41, 0x2a, + 0xec, 0x04, 0x24, 0x86, 0x6e, 0x3e, 0xe7, 0xfb, 0x8e, 0x64, 0xff, 0x8e, 0xd1, 0x24, 0x4e, 0x0f, + 0x06, 0x78, 0x94, 0x52, 0x0d, 0x6a, 0xcf, 0x43, 0xa0, 0x3c, 0x02, 0x61, 0xb8, 0x39, 0x90, 0x5c, + 0x49, 0x23, 0xf1, 0xb0, 0x12, 0x48, 0x29, 0x8c, 0xaf, 0x12, 0x29, 0x93, 0x14, 0x28, 0xcb, 0x39, + 0x65, 0x42, 0x48, 0xc3, 0x0c, 0x97, 0x42, 0x3b, 0xff, 0x44, 0x6d, 0x15, 0x14, 0x31, 0xd5, 0x46, + 0x15, 0xa1, 0x71, 0xd4, 0x1f, 0xa1, 0xc1, 0x46, 0x83, 0x5a, 0x8a, 0x58, 0xae, 0x60, 0x57, 0x80, + 0x36, 0xfe, 0x57, 0x1d, 0x0d, 0xcf, 0x3d, 0x9d, 0x4b, 0xa1, 0x01, 0x7b, 0xa8, 0xa3, 0x8b, 0xe0, + 0x1d, 0x42, 0xe3, 0xd5, 0xa6, 0xb5, 0x59, 0x6f, 0x55, 0x95, 0x18, 0xa3, 0xa6, 0x60, 0x19, 0x78, + 0x75, 0xdb, 0xb6, 0x67, 0x3c, 0x47, 0x38, 0x57, 0x10, 0x83, 0x52, 0x10, 0x6d, 0x0b, 0x0d, 0xca, + 0x1a, 0x0d, 0x6b, 0x8c, 0x4e, 0x64, 0x53, 0x02, 0x7c, 0x8d, 0x50, 0xc2, 0xf7, 0x20, 0xb6, 0x56, + 0x6b, 0x5a, 0xad, 0x67, 0x3b, 0xcf, 0x47, 0x3c, 0x41, 0xfd, 0x98, 0x65, 0x3c, 0x3d, 0x38, 0xde, + 0xb2, 0x1c, 0xb9, 0x96, 0x15, 0xfe, 0xa1, 0x16, 0x64, 0x8c, 0xa7, 0x5e, 0xdb, 0x22, 0x57, 0x1c, + 0xaf, 0x9c, 0xf3, 0xd0, 0x14, 0x0a, 0xbc, 0x8e, 0xbb, 0x72, 0x59, 0xe2, 0x27, 0x34, 0x62, 0x51, + 0xc4, 0x8f, 0x29, 0xb1, 0x74, 0x1b, 0xa6, 0x8c, 0x67, 0xda, 0xeb, 0x4e, 0x6b, 0xb3, 0xfe, 0xe2, + 0x3f, 0x71, 0x71, 0x91, 0x2a, 0x2e, 0xb2, 0xb6, 0x71, 0xad, 0x86, 0xe7, 0x89, 0x47, 0x3b, 0xb0, + 0xd8, 0xa1, 0xc1, 0xb2, 0x5c, 0xcd, 0xda, 0x6d, 0x02, 0xbf, 0xa2, 0x6e, 0x95, 0x1c, 0xbe, 0x21, + 0x97, 0x8b, 0x22, 0x17, 0x49, 0x8f, 0xfd, 0xbf, 0x14, 0x17, 0xbc, 0xdf, 0xff, 0xf8, 0xfe, 0xf9, + 0xac, 0xb7, 0x70, 0x83, 0x66, 0xf0, 0x70, 0xff, 0x72, 0x97, 0x70, 0xf3, 0x56, 0x04, 0x24, 0x94, + 0x19, 0xb5, 0xc3, 0x52, 0x25, 0xee, 0x40, 0x4f, 0x1f, 0x27, 0x01, 0x41, 0xf3, 0x60, 0x9e, 0x48, + 0x7a, 0xf9, 0x97, 0x82, 0xb6, 0x7d, 0xd6, 0xed, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfa, 0xf1, + 0xd4, 0xeb, 0x66, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/flyteidl/gen/pb-go/flyteidl/service/openapi.go b/flyteidl/gen/pb-go/flyteidl/service/openapi.go index 4a41c73ba7..5d57550e79 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/openapi.go +++ b/flyteidl/gen/pb-go/flyteidl/service/openapi.go @@ -1,6 +1,6 @@ // Code generated by go-bindata. (@generated) DO NOT EDIT. - //Package service generated by go-bindata.// sources: +// Package service generated by go-bindata.// sources: // ../service/admin.swagger.json package service @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xbb\x80\x69\xa7\xc6\x57\x3c\xb5\x9b\x14\x99\x05\x50\xd1\x9d\x41\xa1\x56\xd1\x09\x74\xe3\x07\xe0\xdd\xb5\x43\xc7\x26\xd2\xc5\x03\x74\x57\xb6\xa4\x34\x61\x5b\xbc\xff\x05\x26\xbd\x6e\x61\xe0\xc0\xdb\x28\x6c\xb4\x2f\x0d\xed\x06\x50\x11\xd8\x06\x49\x56\xf8\xb0\x17\xed\x72\x16\x13\xc1\x08\x56\xf3\xd7\xcb\xb1\x38\xdd\xd6\x38\x1d\x8c\xef\x65\xf3\x2d\x4e\x77\x52\x15\x3e\x1c\x6e\xb9\x42\xfa\xca\x71\xea\xd7\xbb\xd8\x89\x6c\xe8\x81\xaf\x11\x5c\x53\x1c\x1b\x8c\x86\x01\x04\xcd\x3a\x54\xba\x55\x1a\x46\xb3\x32\xf7\x32\x09\x29\x0d\x56\x9f\x5a\x2a\x8a\x3e\xec\x61\x65\xe5\x15\x4b\xf2\x45\x64\x7e\xbc\x7c\x32\xc2\xb2\x1a\xce\x79\x90\x9f\x00\x85\xb4\x15\xa6\xcc\x72\xaf\x65\x29\x09\x5a\xa2\x4c\x71\x53\x16\xc2\xde\xe7\xb7\x7c\xf1\xe9\x2d\x7d\xb2\x43\x9f\xec\xd0\xb0\x47\x7d\xb2\x03\x42\xfb\x96\xec\xb0\x4a\x01\x5d\x66\xfe\xf4\x1e\x39\xa8\xb5\x59\x2a\x70\x63\xf6\x77\x85\x16\xb9\x79\x40\xbf\xb3\x20\x86\xd1\x50\xf6\x17\xfb\x43\x63\x40\x54\xed\xb3\xea\x6c\x43\x6b\x26\x5b\x54\x9d\x02\x58\xc4\x89\x45\xa1\xb3\xe1\xca\x65\xeb\xd3\x32\x43\xe9\x88\x7d\xcf\x9f\xc9\x13\x11\x07\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xe8\x18\x38\x08\x25\x40\x73\x13\x05\x81\xd1\x15\x4e\x49\x6c\xea\x1d\x06\x41\x8d\xd6\x5c\x6b\x1d\xad\x4d\x60\xab\x80\x1b\x6a\xb6\xc1\x45\x4d\x8c\x98\x09\x34\x34\xc1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x37\xf0\xef\x8e\xd0\xbd\xbe\x9f\xa8\x2c\x8f\x37\xc0\x5e\x6b\x1b\xdb\x88\xcd\x04\xcf\x33\x6f\x41\xe3\x13\x53\xf8\xd6\xc4\x3e\xd5\xdd\xc0\x30\x18\xe7\x03\x8e\x70\xac\x35\xf1\xe5\x84\xf3\x26\x31\xa8\x1b\x01\x18\x85\x04\xa4\x8f\xa1\x0f\xac\xb3\x81\xee\xc6\x7b\x1b\xc0\xb6\x2c\x83\x61\x7f\x21\xd7\xf2\x19\x91\x60\x13\xf2\x36\xf7\x52\x16\x79\x19\xa9\xa0\x71\x9c\xcb\x2c\xa2\xde\x6b\xe1\x2c\xfb\xcd\x20\x08\x45\xe7\x36\xe2\xcb\xa4\xa8\xda\x7b\xe2\xc5\x6c\xa5\x9d\x63\x67\xdb\xf8\xc5\x4d\x2e\x32\x0e\x92\x58\xb2\x70\xa0\x0d\x16\xe7\x2d\xe3\x59\x6e\xa2\xda\x68\x18\xe4\xd4\x48\xd9\x54\xaa\x4b\xac\xa2\xb9\xe6\xdc\x05\xde\xd9\x8e\xa2\xfd\x0a\xae\xfc\xb2\xf6\xd3\x86\x19\x9c\x86\xbd\xb7\x38\x14\x3a\xd8\xd3\xcd\xbd\xef\x82\xeb\x9d\x24\x91\xea\xfe\x8c\xd3\xcd\x96\xb3\x0e\xac\xa2\xee\x13\xfb\x44\x4f\x74\x15\x15\xad\x1a\x7f\x37\xda\x2a\xd7\xdb\xda\x79\x1c\xe1\x16\x00\x32\x67\x16\xae\xab\x78\xd1\xd6\x67\x6d\x71\xfe\x0b\xba\x59\x0e\x90\xc5\xc8\x7f\xd2\xe2\x88\xb7\xb7\xa6\x38\xd3\x4a\x84\xe2\xfa\x96\x14\x33\x23\xc7\x9a\x28\x59\x84\x51\x2e\xa8\x3b\xfb\x95\x8c\xf0\x76\xea\x00\xfb\xe4\x71\x58\x4f\x29\xc2\x41\xa9\x39\xe3\xee\xc7\x91\xca\xb1\x0f\x4b\x04\x9a\x70\x25\xd0\x4d\xf6\xbb\x73\xab\x0b\x27\xde\x35\xec\xe9\x4a\xc2\xde\x62\x97\x71\x13\xba\x61\xa7\x93\x46\xd9\x2c\x80\x46\x6c\xb6\x11\x77\xa9\x7c\xd0\xf8\x65\xb7\xea\x0d\x8d\x9f\x3a\xd9\x67\x93\x6f\x97\x40\x37\x6d\x1c\x99\x5d\x8a\x72\xb7\x61\xb0\x56\x7a\x0a\x41\x2b\xad\xfd\x0e\xb0\x67\x29\xb8\xe9\xb1\x95\xa6\xfe\xcb\xff\x65\x2a\x65\x99\xa5\xf9\x2f\xc4\xc5\x88\x99\xdf\x0f\x7c\x95\x0a\xfd\x42\x01\xff\x8a\x53\x52\x00\x64\x8a\x32\x94\x1e\x00\x8a\x58\x28\x34\x03\xf5\xeb\x41\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xe8\x01\xcf\xcc\x52\xcc\xf0\x0c\x80\x85\x0f\x20\x2e\x0e\xc4\xd5\x42\x15\x31\x24\x6d\xaa\x1d\x02\xb7\xd2\xcc\xd2\x66\xdb\x16\x55\x7f\xa1\x4f\x23\xca\x5a\x5c\xd3\x22\xb8\xa2\x99\xfa\x6f\x6d\xff\x9b\x49\xec\xf7\x83\xbb\x1f\xc6\xb7\xc3\xbb\xeb\x87\xdb\xd3\x92\xd8\x7e\x7a\xf1\x70\x77\x3f\xbc\x6d\x7c\x56\x64\xaa\xfe\xf5\x61\xf8\xd0\xf2\xc8\x35\x70\x31\xf8\x6e\x58\x2a\xa1\xfd\xd7\x87\xc1\xc5\xf9\xfd\xcf\xe3\xeb\x8f\xe3\xbb\xe1\xed\x8f\xe7\xa7\xc3\xf1\xdd\xcd\xf0\xf4\xfc\xe3\xf9\xe9\x40\x7f\x19\xbe\x7b\x73\xf1\xf0\xe9\xfc\x6a\xec\x82\x8e\xc3\x47\x3f\x5d\xdf\xfe\xf0\xf1\xe2\xfa\xa7\x71\xd0\xe5\xf5\xd5\xc7\xf3\x4f\x4d\xb3\x18\xdc\xdd\x9d\x7f\xba\xba\x1c\x5e\x2d\x2f\xd5\xdd\xbc\x1a\xad\x55\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xae\x8b\x1b\x43\x8f\x87\x07\xee\x2f\x53\x58\xfb\x50\xb3\x40\xe7\x15\x2b\xb8\xc7\x88\x79\xb7\xa5\xbf\x54\x15\x9e\x49\x97\x78\x5c\x1a\xed\x09\x1a\xc0\x59\x01\x85\xa1\xd4\x29\xe4\x35\xf8\x91\x3a\x47\x37\xd0\x61\x42\x53\x0a\x3e\x6f\x74\x88\xaa\x1b\x5e\x6e\xd0\xce\x09\x86\x60\xbd\x76\xf1\xb2\xd3\x20\xab\x39\xcd\x40\x29\x27\xc8\x71\x68\x62\xcc\x09\x06\x79\x76\xc1\x70\x4a\xa3\x6a\x02\x06\x80\xaf\xa2\x02\x68\xa4\xda\x62\x89\xc0\xca\x2d\xcf\x09\xfa\xe1\x2f\xc5\xa0\xc0\x83\x61\x35\xef\xbc\x56\x4f\xcf\x3e\x10\xb9\x59\xd5\x55\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\xeb\x76\x83\xbb\x29\x67\x01\xd8\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd0\x1d\x00\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xc5\xf7\x09\x99\xe3\x27\xca\x5d\xf1\x0a\x53\xe3\x03\xd6\xd1\x8a\x56\xe8\x10\xb5\x1e\x94\x13\x34\x88\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xb0\x3c\xec\x10\x1f\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xbb\x87\x72\xa9\xb3\xc3\xf2\xdd\xbb\xc5\xf5\xaf\x57\x70\xec\x48\x79\xbc\x91\x30\x70\x8f\xe5\xa3\x63\xcd\xab\x04\x02\x07\xaa\xb3\x5d\x8f\x16\x5d\xa7\x6b\xa7\x7e\x65\xc7\x70\xd0\x36\xeb\xb3\x15\x13\x7a\x45\x97\x6e\xc6\x49\xa5\x70\x57\xe7\xfe\x4a\x85\xbf\x1a\x3b\xdb\xa9\xb7\xa7\x59\x1a\x83\x23\x39\xf6\xf4\xbf\xc6\x3c\x6e\xe0\xd3\x6b\xff\xe5\x52\x91\x6d\x1c\xac\xdb\xba\x3e\xa0\x5a\x8a\xae\xf5\x03\x2d\xa5\xc3\x1d\x81\x3b\x75\x17\x06\xa1\xec\x02\x8d\xc0\xdd\x87\x29\xb3\xc5\x78\x88\xf7\x47\xb9\xf2\xd3\xfa\x1c\xfb\x02\x71\x78\xc2\x9f\x4a\xca\x65\x4a\xa4\xc4\x2d\x70\x25\x81\x49\x6c\x1b\xc6\xe0\x4f\xa8\xfd\xb0\x23\x3d\xb9\x33\x79\xaf\xbf\x5a\x66\xf4\xb9\x0d\x35\x63\x37\x51\x2d\xb0\xc6\x2e\xce\x16\x5d\x9b\x6c\x3b\xcd\x5f\x0e\x8a\x50\x1a\x2e\x82\x08\xa3\x36\xf7\x4f\x47\xb3\x5a\x75\xc1\x1a\x6b\x2c\x85\x2e\xbc\xf5\x23\x70\x82\xd6\x37\xc6\xc3\xb6\x7e\x15\x5c\x5e\x9f\x35\xa8\xae\xe4\xef\x0c\xeb\x4f\x47\x3c\x4d\x8d\x5c\x50\xb2\xa5\x1e\x20\x6c\x92\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\x71\x30\x62\xcf\xc1\x86\x94\xc2\x80\x07\x61\x4b\x80\x25\xfa\x59\x1f\x37\xfa\x54\x0a\xae\x06\x91\x91\x42\xa4\x6f\x40\x08\xc6\x21\x58\x14\x8f\x5a\x41\xe0\xc1\x7e\x6d\x41\xea\x1b\x54\x0a\xac\xac\x6f\x5b\xbd\x40\x3f\xb7\xa0\x4c\xdf\x16\x9a\x72\xd7\x21\x04\x95\x02\x9b\x46\xb0\x83\x42\x81\xaf\x0a\xee\xed\x93\x35\x4d\x6e\x6f\x3a\xb1\x08\x15\x7a\xba\x6e\xb5\x7f\xef\x66\xf4\x7b\xe3\x77\xc8\x5b\x20\x4d\x82\xd6\x3c\xbe\x37\x3a\xd4\x32\xab\x4b\xb5\xb7\x81\x18\x12\x1d\x1a\xcc\xc0\xaf\x20\xce\x72\x70\x73\xfe\xd5\x01\xfa\x2a\xcc\x35\xfb\x6a\xa3\x03\x68\xc7\x6d\x8b\x05\x82\x36\x55\x4a\x38\x28\x1f\x3b\xd8\xab\xca\x49\xb4\x7b\x66\x0f\x22\x6a\x3b\x87\xfa\xcb\xd2\x37\xe0\x9c\x86\xe2\x77\xc6\x7f\xeb\xc3\x9d\xad\x0b\xc8\xc8\xb8\x54\x36\xac\x5d\x3c\x62\x93\x45\xd5\xc9\x73\xe0\xbd\x3c\x9d\x4f\xe9\xd6\x05\xdd\x74\x7b\xf5\xe4\xe4\x1d\x87\xe1\x2e\xbf\x0f\x56\xa4\x3b\x0f\x4c\xc4\x35\x9f\x06\x5c\xac\x2d\x4a\xa1\x8f\x5f\x6f\x9a\x55\xc9\x5e\xe6\x16\xb3\x71\x53\x56\xc9\x3f\xef\x8d\xdc\x3a\x04\x7d\x0f\x9a\x56\xc4\xc6\xfb\xb7\x08\xd7\x3d\x95\xbd\x2c\x95\xed\x22\xdf\xa1\x3c\xb8\xf5\x2f\xd0\x53\x23\xc7\x05\xcd\x38\x83\xab\x56\x26\x3c\x83\x2f\x55\xfd\x5b\x5d\x2e\x77\x4d\x9f\x6f\xb0\x26\xab\x9d\xbe\x77\x26\x70\xc0\xb8\x5d\xeb\x63\xad\x0e\x75\xa0\x6c\x09\x22\x4e\x4d\x6e\xa3\xa2\x29\x39\x40\x9c\x25\x8b\x20\xd8\xc1\x9e\x57\x20\x37\x13\xa3\x34\x27\x54\xb8\x4e\x2c\xc2\xe0\x5a\xc9\xf0\x6b\x4a\xe3\x6d\x34\xb2\x45\xa4\xc9\xd5\xe0\x72\x78\x36\x1e\x5e\xdd\x9f\xdf\xff\xdc\x80\x1e\x59\x7e\xec\x00\x24\x83\x17\xee\x7e\xbe\xbb\x1f\x5e\x8e\x3f\x0d\xaf\x86\xb7\x83\xfb\x15\xe0\x92\xcb\x3a\x6b\x03\x2e\xcc\x65\x93\xfa\xb6\x0e\x78\xa1\x33\xf3\x36\xf4\x5e\x87\x98\x0c\x3a\xa1\xa4\x05\x66\xd2\x24\xfe\xb3\x98\x08\x14\x93\x27\x92\xf0\xac\x30\xab\x36\x2e\x58\x80\x3f\xd9\xd0\xfe\x32\x0c\x4a\x68\xb3\xba\xc6\x27\xc8\x54\x7a\x0b\x8a\xdd\xfa\x06\x41\xe4\xc3\x82\xb0\xaf\x14\x22\x9f\xb3\x84\x46\x54\x05\x89\x81\x5c\x58\xf7\x8a\x71\x1f\x42\x74\xea\x0a\xe2\xda\x59\x34\xca\xce\x75\xfe\xd0\x93\x5e\xd7\xf6\xfd\x89\xf2\x78\x68\x2b\xcb\x07\xed\x40\xb1\x6f\x71\x1a\xd7\xe0\xda\x36\x18\xdd\x4b\x98\x07\xea\x19\x3a\x36\xb9\xaf\x05\xca\xad\x79\x90\xab\x6f\xc3\x65\x71\x32\xa5\x73\xbd\x3c\x50\xa6\x1b\xa5\xbe\x71\xb8\x4b\xa9\xac\xe6\x0e\x70\x37\x6c\xec\xfa\x9a\x01\x0b\xb5\x6a\x31\xcc\xc4\x9c\x62\x24\x48\xca\x95\x56\xc0\x4c\x44\xc0\x81\x16\xaa\x28\x4e\xe8\xaf\x80\x50\x25\xc8\x51\x10\x41\xe1\x70\xbd\x0a\xf7\x81\x45\x8f\x38\x1a\xb1\xb3\xe1\xcd\xed\xf0\x54\x33\xa4\x23\xf4\x20\x01\x7c\xaa\x34\xf5\x33\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xb6\x60\x30\x22\x04\x17\xdd\xf9\x83\xef\x6f\x08\xdf\x35\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb5\x26\x72\x90\x33\xb0\xf3\x94\xac\x5b\xfc\x5c\x5a\x91\x10\x7c\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x7c\x67\xf7\xf9\x95\xfa\xbc\x81\x6f\x97\xcd\xf3\x1e\x42\xec\xa4\x2a\xb0\x40\x0d\x5c\xa8\xaf\x79\x53\x99\x67\xab\xa8\x28\xde\x02\xa8\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x38\x6c\x68\x69\xab\x07\xcd\xac\x7b\x54\xf5\x9a\xe1\x94\xe7\x0c\x94\x06\x08\x63\x6d\x18\x8c\xcc\x08\x53\x2b\x06\xf3\x56\x30\x2c\x95\xa1\xee\x2f\x12\x4b\xc3\x40\xdb\xc0\x58\x9a\xfc\x49\x50\x78\x79\xbd\x6b\xd9\x05\xe5\x95\x9c\x4a\xfa\x50\xf9\xfb\xb9\x59\xcb\xc6\xf2\x71\xeb\xee\xee\xb1\x7c\x5c\xdd\x55\x4c\xa2\xc7\x75\x2f\x9b\x6a\x66\x66\x62\xeb\x56\xd7\x8c\x7d\x0b\xfd\xd4\x16\x66\x81\x72\xe5\xd1\x23\xfa\xfe\xfe\xf2\x02\x4d\xa9\x96\x7b\xf5\xb5\x72\x85\xb5\x8c\xfd\x20\x12\x67\x17\xb6\xb6\xd5\x5c\x24\xfe\xee\x85\x8d\x77\xa2\x54\x20\x25\xe8\x1b\x0d\xcf\x88\x33\xf6\x0a\x8b\xb5\x57\x29\xcc\x22\x30\x8b\x79\x6a\xe6\x71\x2c\xf3\xe9\x94\x7e\x3e\x52\x58\x7c\xd3\xb2\x1e\x26\xaa\x62\xfc\x77\x3e\x19\xeb\x11\x6d\x79\x11\x37\x35\x87\x6c\x39\x65\xbf\x6c\x76\x66\x67\xe6\xdd\xff\xcb\x27\x90\xeb\x9e\x09\x0e\xf8\x7f\xe0\x9d\xb3\x91\x0a\xf6\x15\x47\x49\x47\xc8\x25\x50\x95\x20\x4e\x22\x2e\x04\xb1\x29\xf2\xa6\xb2\x68\x86\x85\xa2\x60\xad\x75\x10\x29\x25\x6c\xfc\x62\x8b\xc2\x82\xdf\x73\x5c\xe0\x50\x4f\x08\x01\x07\x4f\x46\x93\xf5\x94\xde\xd3\x92\x6f\xb2\x72\x02\x6d\xe4\xa9\x45\xcd\x04\x83\xcc\x4a\x11\x6b\xf8\x44\x98\xda\x89\x7e\x02\x4d\x34\x24\xed\x77\xf3\x32\x98\x02\x9f\xe7\x67\xc5\xe5\xe6\x42\x7a\xc3\xa8\x26\x25\x30\xdc\xf3\x36\x51\xca\xba\xd4\xdb\x1c\xfd\x4f\x9d\x7d\xc7\xf0\x6a\x7d\x5d\x56\x84\xc6\xdb\xd5\x2e\x0a\x7d\x17\x61\xad\x0e\xd8\x7f\x43\x18\x1f\x49\x8c\x15\x23\x80\x8f\xb0\xca\x69\x75\xcf\x4d\x9f\x9a\xb6\x2a\x5d\xae\xdc\xf2\x0d\x30\x6b\x4a\xcd\x7c\x22\x90\xd2\xb9\x8b\x40\xf4\x75\x52\xf7\x61\x20\x0f\x22\x81\x10\xea\xa5\x56\x2c\x53\x64\x5c\x73\x3e\x2f\xd9\xe1\x0e\x32\xba\x19\x8c\x16\x1a\x49\x26\x48\xa4\xaf\xb2\x13\x74\x93\x10\x2d\x79\xe5\x5a\xfa\xca\x93\xc4\xe1\x7b\x2d\x97\x0e\xd7\xc2\xa4\x7b\xf1\x79\x05\xba\xc7\x92\x89\x39\x7c\xbb\xe5\x33\x0b\xd6\x60\xf7\x80\x0b\xc1\xfa\x82\x09\x19\x0c\x89\x65\x2d\x12\x38\xfc\xc2\xc4\xcd\x82\x29\x09\x97\x2e\x32\xfa\xab\x66\xbf\x82\xc8\x39\x6f\x4d\x72\x0c\x67\xfb\x32\x73\x70\x4b\xf9\x82\x93\x70\xf7\x61\x5b\x5c\x75\x07\xb9\xa6\x72\x07\x96\x44\x9c\x65\x53\xf4\xb5\x1f\x7c\xf4\x87\x45\x5b\xb5\x77\xab\x1d\x1a\xdc\x92\x85\xa9\x2d\x44\x3e\x2b\x5c\x17\x85\x32\xb3\x30\xbe\x57\xff\x79\x61\x40\x2e\x52\x02\xa8\x92\x45\xcd\x39\xa4\xef\xda\xb6\x2d\xd6\xf3\x1c\xe7\x62\x2d\x48\x8a\x02\xb3\x7c\x1d\xce\x6d\x93\x51\x8a\x61\xe9\x45\x68\x66\x97\xb6\x94\x04\x88\xd1\x36\xd4\x48\x96\x70\xe0\x2c\xd9\x98\x65\x6c\x54\xf1\xda\x99\xf2\xb6\x6e\x35\x90\x92\x0b\x51\xe6\xa5\xbc\x6b\x25\x0a\x2c\x4d\xa0\x47\x16\x5b\x1f\x59\xcc\xd6\x15\xf1\xb4\x07\x38\x80\x4a\x40\xe2\x7f\xe1\x40\xab\x0a\x0e\xd6\xe8\xbd\x2a\xf3\xa9\xb4\x3b\x9d\xd2\x9c\x4a\x5f\x68\x5e\x72\xb6\xa5\x07\x4e\x4f\x66\x31\x86\xc4\xd1\x6d\xa2\x70\x4a\xf3\x37\xde\x03\x68\x93\xc4\xc8\xa0\x17\x18\xdc\x63\xbb\x76\xde\x73\x92\x61\x41\x98\x1a\xb1\x5b\x3d\x0a\xf3\x45\x11\x89\xe1\xe2\x70\x1c\x16\x3d\x54\xac\x9d\x22\x6c\xbf\x82\x45\x6f\x0b\x84\x93\x63\xf3\x12\xa8\xa6\x2f\x98\x64\xff\x9d\x79\xc7\x60\x1e\x58\xcc\x1f\x3d\x55\x3a\x2d\xd4\x78\x2d\x40\x46\x73\x0a\x90\x03\x31\x91\xf6\x42\xa2\xca\x62\x4a\x78\xf1\x3b\x27\x0e\x7d\x19\x3e\xf3\xfc\xab\x89\x61\x3b\x43\x01\x73\x06\x3a\x39\x62\x41\x1f\x4b\xc0\x3a\x8d\xb2\xbe\xa1\x2a\x01\xfb\x4c\x63\xef\xf8\x82\x7f\x9a\x1d\xe2\x82\xce\x28\x0b\x4a\x26\xd9\xe9\xa5\x38\x03\xf3\xae\x39\x83\x7c\xea\xef\xb4\x7b\x9b\x65\x70\x04\x23\xfe\x9f\xff\xfe\xdb\x11\x6d\xf3\x7e\xc8\xb1\x5d\x81\x7d\xd8\xc9\xf5\xb6\x25\xdc\xf9\x00\x45\xa4\x05\x9d\x22\xd0\x69\x65\x29\x73\xa2\xf8\xd5\x5e\x6e\x9a\x68\xb8\x9a\x1b\x77\x6f\x99\xdc\xc1\x37\x22\xf2\xe5\x55\x04\x02\x16\x57\x04\x04\x14\x5e\xdf\x20\xe8\xd6\xd5\x88\x30\xc1\x92\xba\xfd\xca\x85\x52\x61\x50\x01\x98\xdf\x36\xc1\x89\x73\x2c\x5f\x2e\x02\xa5\xb1\xb6\x91\x31\x1a\x87\x77\xe4\xaa\x58\x14\x33\x48\x93\xd4\xa8\x77\x25\x97\x44\x98\x03\xed\x51\x9f\x2c\xf1\x84\x50\x85\x10\x8a\xb8\xc2\xa5\x46\x52\x4c\xd7\x0a\x9b\xd7\xef\x37\x03\x29\x96\x6c\xea\x78\x46\xc4\x38\xce\x4b\x31\xd2\xab\xda\xbe\xd1\x1f\x9d\xe5\x6a\xb1\xba\x7d\x99\xe0\x7a\x6d\x97\x65\xe0\x95\xfa\xfd\x96\x66\x57\x0b\x86\x41\x24\x4b\x59\x38\x6c\x81\x86\x24\x15\x68\x48\x1b\x5a\x59\xb2\x04\xc0\x45\xc3\x14\x20\xc7\x15\x0a\x83\xbd\x89\x0c\x80\x35\x8c\x1c\x4d\xf2\xc2\x72\xe2\x4b\x02\xc4\x47\x23\xf6\xd1\xd4\xd4\x00\x65\xc6\x0c\x20\x82\xbc\x16\xf2\x39\xe3\x92\x94\x12\xad\x1a\x60\xfe\x6d\xa2\xa4\x1d\x46\xb3\x4c\x5a\x7c\xb4\xbd\x48\xfa\xe6\x20\x9f\xf5\x0d\xaf\x4f\xb9\x99\x02\xb7\x92\x7a\x22\x9a\x51\x4d\x3b\xe3\xc6\x93\xf6\x72\xa5\x66\x8b\xd0\x25\x80\x7b\x52\xc9\xe2\x00\xf9\xe9\x55\x08\x22\x21\x4f\x04\xac\xc6\x30\xc6\xb0\x98\x43\xd9\x7c\xd5\xc2\x4e\x56\x1d\xa0\x22\xcb\x11\xd8\x02\x8a\xab\x23\x28\xe7\x82\x35\xd1\x62\x39\xcb\x65\xeb\x84\xac\xa6\xf8\x8b\x35\xa4\xd0\x41\x58\xd4\x62\x41\x14\x22\x9f\x15\xb1\x65\x2f\xef\x5d\xca\x5c\x3d\xca\x1e\x35\x67\xfd\xb4\x8b\x48\x2f\x5e\x80\x78\xe0\x12\xa5\x5d\x4e\x60\xec\xee\x7d\x9b\x23\x37\xc7\x2c\xb6\x89\x9f\x56\x96\xd6\x32\x05\xcc\xce\xd8\x96\x7c\x48\xbc\x4d\x5f\x0c\xd0\xc0\x4d\x9b\x06\xb6\x1c\x2e\x32\xa7\x17\x69\xc9\x1c\xa2\x08\xb8\xd0\x02\x6a\xce\x14\x4d\x34\x71\xd8\x31\x68\xad\x39\x67\x1e\x8f\x0f\x02\xb8\xdb\x20\xdf\xa8\x94\x94\xcd\xc6\x76\x25\x5d\x0e\x63\xb7\x8b\xa1\x4c\x53\x97\xa6\x29\xf3\xe3\x77\xae\xa1\xe5\xb6\x63\x43\xd6\x00\xc7\xe5\xb2\x27\x41\xb0\x66\xdc\x4d\xc6\xe2\xa8\xb9\xa4\xcb\x31\x8d\xcd\x52\x50\x53\x5d\x19\x26\xba\x8e\x79\x19\xc4\xba\x3a\x5c\x41\x71\x85\x48\x9b\x11\x69\xf2\x9c\x20\x20\x5d\xb5\xa4\x7c\xca\xd6\x54\xcf\x73\xe6\x45\x34\x5b\xdb\xc9\x27\xb4\x57\xb2\x46\xb1\xeb\xce\x46\xdd\xe3\x24\x99\xe0\xe8\xd1\x2b\x1b\x5e\xe5\xe6\xc2\x61\xe3\x6b\x01\x15\x8a\x7f\x19\xe2\xd2\x03\x8d\x40\xba\x09\x9d\x62\x06\xb0\xc6\x0e\xbb\xe8\xdc\xac\x9a\x45\x02\x33\x08\x45\x66\xf4\x26\x84\x3f\x26\x59\xc2\x17\x69\xcb\x7d\x56\xcd\x94\xdb\x26\x20\xa5\x2d\x51\x6f\xa7\x57\x59\x85\xe9\xad\x7d\x99\xd5\xd2\x6e\x76\x00\x9f\xb4\x06\x97\xfc\x94\xf0\x09\x58\x0e\xad\x96\xed\x52\x49\x82\x8c\x86\xea\x79\x5e\x37\xc1\xa5\x7a\x22\xa9\xcc\x12\xbc\x58\xd6\x83\x49\xad\x78\xd9\x7d\x33\xa9\xf8\xab\x8d\x60\xdd\x83\x92\x1b\x3f\x7f\x09\xa0\xde\x0b\x27\x09\x98\x77\x0d\xff\xaa\x18\x93\x4c\x4e\xdb\x91\xf1\xc5\x2a\x3e\x62\x0a\xcf\xdc\xe6\x5a\xe1\x92\x3f\x33\x22\xe4\x9c\x66\xa5\xa2\x80\x5b\x47\x41\x5b\x8a\xb6\xff\x31\x31\xbf\x6b\xf0\x4e\x9e\x1d\x1a\x20\x0e\x4d\x1f\x32\xc3\x51\x61\xfc\x8b\x12\x2c\x25\x9d\x2e\x02\xfc\x0c\x1f\x50\x0a\x59\x4a\x65\x6d\x39\xa8\xc3\xd5\xc4\x68\xcc\xf8\x76\x93\x40\xbe\x7d\xf2\xdc\x43\xf9\xf8\xd1\x38\x04\x2a\xd3\xf7\x49\x1d\x2c\xc5\xdd\xd4\x16\x34\xa5\x15\x70\xd5\x64\xca\x6f\x96\xf0\xbd\x14\xe3\xa6\xdd\x8c\x50\x08\x93\x76\xd8\x56\x91\xf1\xb8\x16\x21\xe6\x8b\x2a\x65\x0c\xc2\xe6\x6b\xc5\xc9\x99\x3f\x35\x71\x7a\x4c\x0c\x80\x0e\x28\x3e\x3e\x40\x72\x2b\x2c\xa9\x2e\x74\x71\x46\x12\xb2\x93\xc0\xe2\x0d\x88\xa4\xea\xb5\x0f\xc8\x63\x29\x69\x14\x58\xfa\xab\x8d\x0b\x1b\xc4\x3b\xb7\x20\xd2\x34\x0f\xfd\x27\x33\x50\x1b\xf2\xdc\xb4\x8b\x60\xff\x82\x55\xee\xaa\xbb\x34\x41\xdb\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\xfb\x48\x6a\x6f\x1c\x19\x5c\x1b\xd7\x27\xd2\x25\x8a\x61\xe5\x01\xd8\x88\x03\xd5\xf9\x74\x37\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe2\xde\xd7\xf1\x7f\x4f\x34\xb1\xb3\xbc\x86\x1d\xad\x7e\xf3\x21\x5f\xef\xd4\xde\x11\x25\xdd\x95\x50\x43\x0b\xb4\x9b\xb3\x87\x5b\xb0\x1f\xc7\xd2\x08\xae\x5f\xbc\xdc\xb2\x35\x16\x80\x1d\x99\xcd\x88\xff\x0d\x09\x54\x66\x8e\xb1\xfd\xc2\x67\xbf\x97\x70\x9f\x70\x09\x2b\xcf\xac\xd1\xdb\x73\xbd\x2a\x69\x7f\xe9\xa2\xd7\xfa\x34\x5e\x1d\x55\x41\xdd\xbd\x3c\xb8\x9e\x3c\xe8\xb0\x24\xf7\xf0\xf2\x6f\x3b\x06\xfb\x79\xff\xec\x81\x70\x58\xbb\x12\x77\x27\x22\xbe\x23\x32\xd9\x0b\x49\xb1\xb6\x15\xaf\x25\x2f\x1e\x3a\x30\x9f\x02\x1a\x67\x7f\xb7\x68\x3f\x4e\xf2\xad\x75\x03\xbd\xdc\x05\xbb\x9a\x5e\x76\x42\x1f\x80\x6b\x89\x21\xfd\x37\xb7\x85\x32\xe0\xf0\x06\x21\x63\x35\xdf\xc3\x8a\x60\x3c\x3b\xbc\x4e\x61\x78\xb5\xe5\x7c\x89\xed\xb5\xb9\x5e\x9d\x37\xf7\x25\x49\x6d\xdd\xb1\xec\x42\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x3e\x26\xb6\xdb\x2d\xda\x80\x20\xe3\xb6\x6c\x97\x87\xac\xa9\xba\xd9\xf6\xd9\xea\x2e\x95\x6d\x9c\x09\x32\xa5\x9f\x37\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\xd4\x4b\x03\xf7\x0c\xd4\x57\x0b\xe2\xf6\xec\x4a\xdb\x9a\x4a\x23\x56\x24\x00\xda\xec\xbf\x47\xb2\x40\x5c\x94\x7e\xda\x14\xeb\x70\xf7\xb5\xdd\xcc\xbe\xce\x95\xca\xe4\xc9\xf1\xf1\x8c\xaa\x79\x3e\x39\x8a\x78\x6a\xc2\xcd\xb9\x98\x99\x3f\x8e\xa9\x94\x39\x91\xc7\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\xd0\x63\xea\x7e\xa7\xf2\x96\x13\x2c\xb7\x8b\xec\x71\x99\x5a\x2f\x9c\xb1\x1b\x74\xe3\x72\x24\xf5\x37\x52\xe1\x34\x0b\xa3\x47\x4d\x75\x34\xa9\x70\x51\x93\x01\xd2\xef\xf4\x34\xd1\x1c\x67\x19\x61\xed\x66\x07\x93\x4f\xb9\x05\xeb\x71\x19\x99\x76\x84\xe4\x73\x96\x60\x56\x46\x19\x80\x02\x43\x82\x44\x84\x29\x9b\x01\x5f\xd4\x4b\x06\x6a\x34\x48\x37\x86\xff\xaf\x97\x71\x07\x73\xa4\xb2\xa8\x1c\xe6\x86\x63\xab\x78\xba\xda\x8e\x38\x58\xba\x6a\xe5\xd4\x62\xed\x88\x5b\xb5\x65\xb9\x78\x77\xf5\xfa\xd9\xeb\x57\x6e\x11\x9c\x8d\xc9\x67\xcd\xe4\xe4\xa6\xb8\x54\x0f\x92\x48\x34\xf8\xe9\x0e\xc9\x05\x53\xf8\xf3\x09\xba\xa4\x0c\x04\xd8\xef\x79\x2e\x24\x3a\xc3\x8b\x43\x3e\x3d\x4c\x39\x53\x73\x74\x09\xff\x6b\x7f\x7a\x26\xe4\x11\xfd\x4c\xb0\xb0\xfc\xc1\x56\x5e\xf3\x45\xbc\x35\x09\x89\x9c\x49\x44\x9e\xf4\x09\xfd\xc3\x7f\xa2\xd4\xb4\x7c\x82\xbe\x3d\xfe\xc3\x7f\xa2\xdf\xc1\xff\xff\xff\xd1\xef\x5a\x34\xfd\xf5\x90\xad\xa0\x3e\xef\x6d\xd9\x9d\x7b\x50\x59\xa9\x0d\x4a\x96\x9f\x0a\x5e\xec\x54\x63\xcb\x8f\x34\x7a\xe4\xd3\xe9\x58\x13\x86\xc9\x57\x1b\x63\x51\x43\x45\xde\x10\x26\x94\xda\x02\xcb\xa6\x60\x5b\x51\x2a\xc5\x76\x6a\x80\x0d\x1c\xbb\x96\x79\x51\x60\x16\x82\x88\x4a\x45\x7b\xa9\x84\xaf\x48\xac\xb9\xea\x3a\xa7\xc3\x59\xf7\x5c\x8e\xb3\xb3\xe0\x84\x40\x20\x61\xd1\x70\x1f\xf8\x17\x46\xb1\x9a\x40\x1f\xbb\x90\x8d\xc7\xa1\x16\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\xd6\x3a\x5f\x1d\x2a\x79\xc7\xc5\x56\xfa\xd6\x23\xa9\xc5\x6c\x77\x2c\x0b\xe4\x4a\xd5\x86\xe5\xeb\x21\x11\x9a\x0b\x0f\xd7\x6b\xec\x22\xb6\x78\xe0\x6a\x2b\x26\x15\x26\xb8\xac\xdb\xa1\xd7\x53\x3f\xf3\x9f\xac\x1a\x26\x44\x9a\xb9\xb7\x8b\xb2\x68\x30\x5a\x2d\x22\x69\x96\xd8\x30\xe2\x06\x4c\xbf\x55\x1b\x7a\xe7\x61\x1c\xa0\x71\x08\x7b\x84\x94\x0f\xe6\x24\x5b\x9b\x27\xdf\xbc\x9f\xb9\x88\xc8\x29\xdf\x2e\xec\x35\xa1\xac\x16\x2f\xdf\xbd\xe2\x8e\x5f\xbd\x0b\x5b\x5b\xc9\xc1\xde\xf2\xb8\x50\x16\x8c\x5b\xc0\x16\x5b\x08\xf0\x36\xcb\xb3\x01\xdc\xb6\x5d\x40\x3a\xd6\x4a\x00\x6c\xc1\xb5\x8d\xe1\xb8\x60\x78\xae\x82\x44\xa5\x70\x84\xc0\x9a\x17\x2e\x89\x5d\x83\xa0\xa2\xad\xc7\x11\x14\x43\x29\x22\x95\x2a\x45\xc7\xb1\xa9\x08\x22\x36\x84\xe4\x34\x75\x89\x0e\x90\xc0\x10\x94\xa9\xe6\xba\x3d\x49\xc4\xe1\x14\x47\x94\xcd\x0e\x02\x34\x46\x40\x46\x08\xaf\x83\x26\x22\xbd\xc7\xf2\x71\xb7\x81\x86\x5b\xd7\x69\xa4\x71\x51\x2b\xcc\xe2\xa7\x18\xc7\x06\xad\x41\xd1\x29\x2c\x1f\xdb\x00\x84\x6a\xe8\x65\x4b\x46\xe7\x97\xc2\x61\x9e\x2d\x1b\x9f\xcb\xb4\x26\xa1\x3e\x05\xa5\x09\x5c\xe5\x60\x8b\x65\xe8\x12\xdb\xb0\x07\x1b\xa9\x82\x78\x2e\x19\xbf\x9c\x73\xa1\xc6\x1b\xc2\x9f\x56\xb3\xc5\x19\x39\x4c\x00\xb7\x84\x3f\x11\xf1\x44\xc9\x73\x19\x45\x74\x1d\x5a\x34\x46\xb3\x20\xaa\x0e\x60\x26\xd3\x8c\x43\x0a\xcd\x14\xa5\x98\x2d\x0c\xa3\xd4\xcc\x05\xcb\x47\xe9\xeb\x95\x22\x99\xe2\x24\x39\x40\x82\xe4\xd2\xd4\xf1\x95\x24\x99\x1e\xba\x8a\x0f\x31\x4a\xf8\x8c\x46\x38\x41\x93\x84\x47\x8f\x72\xc4\xb4\xa0\xc0\x66\x86\x49\x65\x82\x47\x44\xca\x40\xb2\x2a\x92\xb6\x6d\x2a\x1d\x14\x2b\x55\x44\xa4\x94\x51\xa9\x68\xe4\x44\xa6\x02\x7b\xc1\x94\xcc\x8e\x30\x98\x84\x21\x31\x11\x86\xab\x25\x3d\x62\x30\x28\x73\x66\x6b\x03\xc1\x75\x6d\xa1\xe5\x5c\x90\x78\xdb\x01\xda\x01\x52\x9e\xa3\x90\xb1\x2a\x1f\xc8\x15\x47\xea\xd4\x7e\x06\xc7\x78\x19\x09\xdc\x96\x4f\x94\x27\x48\x7f\xd2\x4a\xe8\x3d\x10\x53\xee\x43\xe0\x4b\x92\x8b\x8f\x0c\xdf\x33\xe0\x2e\x18\x72\x0b\x5c\xd7\x2a\x9a\xd6\xab\x08\x22\x0f\x94\xa3\xaa\x7a\xcd\x29\x8b\x92\x3c\xf6\x05\x09\xb5\x08\xf0\xa4\x89\xc4\x2d\x8f\x5e\x7b\x2d\x28\x1c\x20\x2c\xd1\x33\x49\x12\xfd\x5f\x13\x01\x7f\xe8\xeb\x03\x68\x96\x6c\x6a\x38\x40\x27\x8e\x4b\xb7\x51\xd4\xde\x81\x30\xde\x60\x35\x37\xa9\xed\x29\x57\xa6\x16\xa4\x01\x61\x74\xf6\x2d\x83\xda\x37\x49\xf8\x04\x4e\x3a\xe0\x33\xba\xd4\xd8\x20\xad\x2e\x8f\x22\x42\x62\x12\xa3\xaf\x83\x83\xeb\x61\x17\xbe\x69\x46\x0b\x2c\xad\xc8\x1e\x60\x33\x56\x0d\x6b\xad\x08\x8d\xe5\x72\x66\x47\xe8\xa6\x82\x3f\x12\x96\x29\xc7\x55\x34\xaa\x83\xda\x16\xbe\x0d\x9e\x63\x65\x12\x2f\xb7\x43\x6b\xe2\x39\x96\xfa\xdc\x01\x9e\x63\x65\x9e\x2d\xb1\xfb\x7c\xf6\xa2\x39\xc7\x7a\x52\x17\xbc\x7b\x22\x98\xc1\xc1\x32\x77\x67\x89\x04\xdd\x81\x5c\x34\x11\xe2\x7e\x61\x55\x56\x8a\xfe\xbd\x2d\x56\x65\x65\x30\xfb\x8c\x55\x59\x19\xea\xfe\x62\x55\x36\x0c\xb4\x03\x56\xa5\x71\xee\x8f\x35\x51\x77\x63\x0a\x90\xd8\x32\xc9\xa7\x77\x90\xea\xbd\x74\x8c\xa7\x26\x70\xc0\x5c\x63\xee\x8e\xb6\xd0\xcd\x30\x5a\x9b\x03\xd9\x16\x0e\x55\x71\x42\xac\x4b\x7b\xde\xfb\x46\xa5\xd1\xd0\xd6\x33\xbb\x1f\x84\xd6\x6e\xb0\x43\x46\x38\xb3\x39\xe5\x6d\x15\x55\xf6\x27\x7b\x76\x33\x18\x50\x80\xda\x2b\xb1\xfc\x4e\x40\x59\x97\x95\xe2\x04\x73\xfe\x6c\x0b\x04\x01\x19\x1a\xa2\x6c\x25\x41\xe8\x74\x6c\x95\xb6\xb6\x95\xa3\x4c\x91\x59\x55\xa7\x2d\x0e\x0d\x65\xea\x4f\x7f\x5c\xc9\x89\x0c\x92\xa0\x53\x0f\x83\x12\x01\xde\xd9\x61\x9f\x91\x18\x45\x73\xad\x15\x49\xad\xbe\xe8\xe9\x98\x9b\x55\xa2\x14\x53\xa7\x48\xe5\xd2\xb8\x96\xa8\x1c\xb1\x12\xf4\xe6\x11\xfa\x08\x75\x4f\x71\x9a\x69\xfd\xcb\xcf\x8f\x6a\x4a\x1a\xe5\xdf\x7e\xfb\x27\x82\xbe\x45\x29\xc1\xac\xa4\xc3\x82\xda\xa4\xaf\x3e\x80\xaa\x53\x73\x32\x62\x8d\x5b\x81\x86\x9f\x4d\x29\x25\x17\xef\x77\xce\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd9\x29\x7c\xd9\x18\x00\xeb\x6e\xec\x7a\x1b\x0f\xe0\x1e\x39\x94\xa4\x04\x61\xd4\xe0\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\x1e\x18\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x0e\x80\x12\xf2\x68\x6e\x1c\xab\x5a\x67\xc1\xb6\x2e\xc3\x13\x95\xb9\x56\x68\xa1\x2d\x57\x06\x42\x2a\x6c\xa0\x97\xe6\x14\xfa\xd1\xea\x37\x81\xaf\xc2\x2c\x39\xd4\x4d\x8b\x0a\xd1\x51\x2b\x3c\xbf\x23\x3a\x6a\x89\xaa\x7a\x74\x54\x8f\x8e\x5a\x5f\x97\x7d\x44\x47\xad\xec\x79\x37\x74\xd4\xa6\x2d\xdf\x00\x1d\xb5\xd4\xcc\x17\x83\x8e\x5a\x59\xd1\x2f\x06\x1d\xb5\x32\xaf\x1e\x1d\xf5\xcb\x43\x47\xdd\x12\xff\xb3\x99\x17\x1b\x7c\x25\x45\xd9\x62\x6d\x22\xfb\x4a\xa2\xf3\x6b\x4d\x60\xd1\x63\x39\xa8\xcd\x5f\x57\xdb\x63\x8e\x36\x33\xa1\xf5\x30\x47\x1b\x55\xf5\x76\x56\xb7\x2d\xc0\x13\x28\x06\xaf\x8c\x39\x5a\x9a\x40\x1f\x5f\xb9\x7e\x7c\x65\x23\xf1\xd9\xbe\xf5\xf0\x5c\xd0\x65\xf5\x42\xee\x88\x3a\x5a\xda\x9f\x4e\x91\x98\x20\xba\xef\x80\x12\x5f\x56\x9a\xbf\x2f\x1d\xf2\x95\xb2\x7c\xb8\x8a\xd2\xe2\x1f\x6b\x09\xcf\xa1\xc5\x19\x25\x3c\xf4\xff\xf7\x94\xbb\x41\x64\x70\x65\x79\xbd\x5f\xc5\xd0\x62\x07\x52\xed\x4c\xa1\x4e\x2b\xdd\x4d\xa2\xac\x4b\x9e\x5c\xd3\xc5\xec\x06\x71\x97\x91\xa8\xc5\xc6\x4c\x53\xba\xab\x66\x57\x5d\x64\x1e\x0b\x0b\x14\xf2\x5a\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x5a\x63\x9b\x6a\x23\xdc\xc6\x55\x9a\xe5\x9d\x03\x62\x82\x55\x9d\x6d\xf6\x59\x4a\x52\x2e\x56\x05\x56\x35\x7e\x69\x2b\xba\x6c\xf2\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xdd\x46\xba\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xce\xdb\xbd\xed\x36\x5b\xcc\xcc\x35\x1d\x42\x0e\x33\x78\xb9\xc1\xcd\xbe\x54\x72\x77\x03\x7d\x37\xc6\x74\xf8\x90\x9a\xd5\x51\x1b\x4b\xe2\x35\x96\xe1\x4e\x15\x5f\xd9\x7a\xc7\x6b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\xeb\x07\x78\xb4\xa0\xa6\xd6\x97\x07\x22\x73\x24\x11\x87\xa1\x66\x50\x1a\x4c\x7d\xbd\x4a\x54\xe2\x34\xca\x2d\x88\x24\x17\xad\x51\xa6\x5d\x0c\xda\x91\xca\x71\x02\x9a\x44\x58\xa4\xb1\xba\xa9\x93\x45\x43\xda\x63\x37\x8f\x09\x65\xea\xcf\xff\xb1\xd6\x6e\x6a\xd5\xca\xae\x1b\x14\x96\xc2\x51\x44\xa4\xb1\xb1\xdb\x28\x64\x3c\xe1\x4f\x50\x53\x6a\x9b\x5d\xd5\x47\x59\xcf\x5b\x33\x78\x0f\x45\x1c\x17\xa4\x6e\xc4\x85\xb9\xe0\xf9\x6c\xee\x6c\x48\xfa\xcc\xe8\xa9\x35\xed\xe5\x8f\x35\x1b\xf9\xda\x7b\xf9\x5d\x4e\x93\xcd\x2c\x74\x77\xa5\x6a\x5b\x9f\xce\xef\x91\x9c\xfb\xd3\x3a\x81\x66\x1b\x37\xb6\x3e\xe8\xee\x7d\xda\x6f\xbd\xbf\x06\xba\x39\x70\xf0\x9b\x53\x9e\x24\xe0\x69\x90\x24\x7d\x0a\x8b\xe4\x87\xdd\xc3\x84\xef\xe9\x7a\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x49\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x4d\x36\xb6\x9f\xea\x85\x4e\xde\x59\xc0\xa0\x8b\x1e\xdb\x59\xd0\xa0\x5b\x92\x57\x0e\x1c\x5c\x31\x8f\x7d\x0d\x1e\xac\x30\x3b\x1f\xcb\x57\x5c\x33\x2e\x70\xc8\x28\x3e\x03\xbd\xc4\x23\x36\x28\xe5\x53\xb8\x82\xd0\x93\x45\x11\x90\x6d\x74\x88\x90\x99\x41\x39\x09\x6b\x58\x01\x37\x9a\xfe\x0b\x34\x1d\x03\x5e\x6b\x42\x0a\x5d\xd8\x20\x44\x93\x93\xf8\x10\x47\x8b\x28\xa1\x51\xa0\x33\xcf\x04\xce\xe6\x4d\x1c\xcf\xed\x7c\x8f\xba\xf3\x56\xa8\x3b\x6d\x75\x97\xd6\x89\xdb\x76\x74\xc5\x70\x4a\x7a\x34\xa0\x26\x34\xa0\x03\x8f\x77\xc1\x8a\x0a\x52\x6f\x08\xa3\x50\x3f\x77\x3d\x24\xd0\x1b\x40\x02\x6d\x72\xf8\x0a\xbc\x9f\xd2\xb1\xeb\x61\x8a\x3e\x74\x82\x29\xf2\x97\xe0\x5e\x21\xcf\xb4\x9f\xc7\x37\x46\x34\xa9\x0f\xec\x2d\x61\x89\x1a\xc4\x85\x75\xe4\xa6\x65\xb8\x44\xcb\xe8\xa2\xd3\xba\xbc\x2d\x4a\xd0\x7a\x2b\xb3\x16\x00\x50\xe3\xdd\xb5\x27\x70\x40\xed\xdb\xb0\x27\xe7\x66\x97\x59\x2d\xeb\x95\xc8\x0c\x33\x5b\xd6\x51\xb0\xd6\x4b\x72\xf1\xf4\xf0\xbe\x12\x5d\x8a\x5a\x62\x9b\x25\xbb\x0c\x9c\x0f\x9a\x08\x34\xe7\x49\xec\x40\x28\xfc\x6a\xf9\x0e\x7c\x26\x80\x5f\x20\xb7\x19\x50\xd3\x1b\xb4\xad\xa2\x20\xd8\xb2\x94\x16\xbf\x89\x30\xdc\x1d\x30\x9a\x5d\x58\x11\x3c\x27\xd9\xc4\x7e\xb0\x52\x16\x91\x65\xf3\xf7\x92\x31\x96\x56\x08\xac\xe6\xcd\xc3\x5c\x69\xf7\x5d\x31\xb8\x65\xa2\x47\x60\x1c\x14\x4d\x15\x2d\x0d\x9d\xc1\xd3\x27\xea\x0c\x11\x38\xec\x71\xa9\x97\xce\xcd\xae\x93\xa7\xae\x4a\x2c\x1b\x04\x83\xd5\x2a\xb7\x6d\x0f\x0e\x94\xe2\xcf\xe3\x0c\x0b\x9c\x24\x24\xa1\x32\x7d\xb1\x60\xe0\xd3\xb2\xbb\x56\x9f\x55\xc1\x8d\x89\x88\xe5\xe9\xc4\x90\xa2\x1b\x88\xad\x17\xa9\x38\x12\x39\x0b\xa1\xcd\x9e\x6b\x45\xf5\x73\xb8\x17\xc0\xaa\x14\xcd\xa1\x38\xe9\x14\x53\xc1\x88\x6c\x2d\x05\x49\xa2\x5c\x50\xb5\x18\xdb\xca\x9a\xdd\x0f\xdc\x9d\xfd\xf2\xd4\x7e\xb8\xdc\xc3\xed\xb2\xfa\x5d\x7f\xbe\x92\x67\x46\x04\x94\x09\x72\x05\x6f\x82\xea\xa1\x16\xb5\x81\xf8\x5a\x43\x10\xfe\x5c\xbb\xb6\xdb\x02\x87\xf1\xf3\x38\xc8\xa8\x1a\x47\x55\xe2\x58\x75\x58\x9b\x70\xa7\x96\x4d\xf2\x85\x91\x97\x5a\xbc\xc8\x2f\x50\x65\xc4\xa6\x4d\x98\xa6\xf5\x80\x03\x57\x30\xd8\x2b\x8b\x8d\x09\x52\xde\xad\x52\xd5\x32\x4e\x8b\xf5\xd3\x14\x7c\xb4\x64\xb0\x83\xe0\xab\x0e\x23\x0e\x3a\xd9\xd1\xb0\xf5\x41\x17\x22\xcf\x14\x9d\xd4\xa1\x6d\xd4\xee\xaa\x8e\x0e\x12\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x34\x62\x03\x89\x9e\x09\x62\xc4\x42\x48\x34\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x03\xdd\x30\x54\x2d\x55\x1c\x82\x3f\x31\x7a\x16\x38\xcb\x88\x18\x31\x9b\xc5\x01\x0e\x17\xce\x13\xd3\x7e\x5b\x88\xab\x5d\x03\x32\x8e\x70\x34\x7f\xa5\x3d\xc2\x90\x8c\x13\xcd\x49\xec\xf2\x85\xcb\xdb\xe3\xe6\x6d\x0c\xd6\x6b\x6c\xd6\xf9\xd4\x95\xcf\x3a\xb0\x9d\x24\x91\xe6\x28\xbe\x9a\x72\x46\x84\x1e\xb5\xa6\xe1\x27\xc2\x10\x9d\xba\x71\xd8\xd8\x1d\xf4\x0c\x9e\x29\x4d\xfa\x4f\x98\x26\x26\x01\xdf\x75\xed\x84\x40\x63\x7e\x1f\x31\xe3\xee\x66\x51\x29\x43\x95\x32\x2a\xe7\x9a\x53\xe7\xe0\x93\x04\x35\xa3\x2d\x71\x86\x3d\xad\x73\x9a\x87\xfa\xf5\xe5\x1c\xf4\x89\x0a\xce\x52\x48\x92\xb1\xb8\x4c\x6e\xf9\x24\x51\xfe\x78\x34\xa6\x38\xae\x94\x88\xe3\x58\x96\x8d\x9f\x46\xad\xa4\xbf\x96\xcc\x2e\x87\xa5\xac\xc0\x28\x80\x15\x82\x20\x4e\x57\x59\x6c\x99\xfc\xdb\xa7\x36\xd4\x53\x1b\x9a\xd7\x66\x1f\xd3\x1b\xfc\x21\x5e\x37\xc5\xa1\x6d\xfb\x77\x21\xd9\xee\x30\xd5\xe1\x8d\x73\x02\x5e\x26\x1d\xe0\x6d\xf3\x37\x5e\x22\x75\xa3\x4f\x70\x78\xc3\x04\x87\xce\x96\xda\x72\x6c\x76\xfb\xb1\x5d\x2b\x39\x60\x05\x98\x53\x53\x2f\x97\x44\x09\x1a\xc9\x5d\xf0\x07\x99\xe1\x8e\x51\x6d\xa0\x05\x66\x2b\xa4\x26\xfd\x82\x77\x42\x42\x9c\x98\xaf\xf3\x37\x11\x04\x3f\xc6\xfc\xb9\x66\xab\x93\x21\x9a\xc6\x25\xd7\x62\x8f\x20\x11\x95\xa4\x14\xc9\x42\x25\x62\x44\x5a\x63\x27\x1e\xb1\x39\x25\x02\x8b\x68\x0e\xd9\x8d\xc5\xc6\x98\x2c\x59\x03\x68\x64\x62\x19\x42\x6f\xd3\x1a\x9b\xde\x61\xdd\xab\x16\x26\x8f\x4f\x67\xf7\x5c\x8f\x24\x35\x9f\x78\x61\xc6\x4a\x19\xa1\x49\xae\xd3\xf6\x6f\x1b\x88\xef\x17\xfb\x45\x83\xf1\x7d\x30\x51\xf0\x45\xc7\x80\xfc\x82\x1a\xfa\xa0\xfc\x17\x0a\xca\x6f\x58\xe2\xf5\x02\xf3\x37\x32\xf9\xbd\x7e\xcc\xb0\xeb\xf9\x35\xe2\x86\x57\x05\x6d\xe5\x93\xf1\x8b\x1f\xbd\xc6\x39\x77\x3d\x81\x3f\x79\xa2\x30\x12\xb1\xd0\x74\x36\x21\x71\x0c\x9c\x56\x71\x5b\x29\xba\xa0\x1d\x67\x1e\xd0\x77\x2f\x96\x9a\xd8\x71\xc2\xd9\x4c\xd2\xd8\x80\xad\x64\x18\x2a\xb6\x86\xc6\x0b\x00\x17\x80\xfd\x4d\x12\x22\x9c\x57\x42\xa0\xaf\x25\x65\x16\x4d\xd1\xff\x16\x73\x22\xd9\x57\xca\x18\x0b\x30\x5b\xa0\x47\xc6\x9f\x13\x12\xcf\x60\x87\xaa\x83\x39\x44\x94\x1c\x20\xaa\xfc\x67\x02\xd0\x08\x78\xae\x46\x7a\xec\x10\x6b\x66\x34\x00\x62\xbf\x0d\x6a\xa2\xfb\x66\xbe\x39\x42\xe8\x9c\xa1\x29\x8e\xd4\x01\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\xf4\x31\xe3\x0d\x9d\x37\x9f\x0d\xc7\x1d\x34\xb9\x0e\x12\x8a\xb7\x8a\xad\x7b\xc2\xdb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xab\xad\xb3\x32\x95\x75\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x9d\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xa6\x4d\xcb\xf4\x8d\x47\x4e\x39\x33\x0e\xc2\xad\xe4\x4e\x3a\x63\x38\x59\xd3\xc6\x51\x5b\xb9\xba\x4f\xcf\xc9\x59\x56\x5c\xd0\x52\x84\x31\xf6\x21\xd3\xe3\x5a\x36\xa4\xca\x7c\x43\x79\x0f\xa3\x98\x64\x84\xc5\x84\x45\x0b\x20\x11\x06\xc8\x39\x82\xe1\x04\x61\xf8\x0e\x27\x47\xe8\xcc\xe4\xd7\x78\x09\xcf\x5e\xeb\x70\xa1\xa7\x98\xd1\xa9\xd6\x13\xc0\x08\x6b\x47\x39\x62\x66\x98\xce\x07\x12\x14\xed\xf7\x2b\xd6\xb4\x33\xfa\x06\xb9\xda\x12\x95\x98\x95\xbf\x47\xcb\x2f\x1c\xe8\x6d\xd9\xee\xe8\xe6\x5c\x0d\x02\x99\x4f\x0e\xe1\xdf\xa5\x84\x33\x07\xd4\x53\xa0\xc8\x90\x84\x80\x39\xd0\x7a\xbc\xe0\x62\x6c\x03\x96\xdb\x85\xdf\x6e\x45\x1e\x47\xd0\x47\x49\xa9\x49\x29\xa3\x69\x9e\x06\xce\x3b\x53\xb1\x20\xb2\xf6\x4b\x93\x89\x91\x69\x3d\x20\x72\xe0\xe5\x48\x5f\xae\x6c\x81\x66\xf4\x89\xb0\x11\xcb\x38\x65\xea\x08\x5d\x71\x45\x82\x12\x11\x06\x3a\x8a\x67\x8a\xa6\x06\xed\x54\x10\x7d\x0e\x0c\x28\x36\x00\x4d\xce\xb1\x3a\x40\x71\x0e\x47\x95\x11\xa5\x59\x87\xbe\x71\x15\xec\x0c\xc4\x47\x8b\x11\x33\x37\xdd\x14\xd3\x24\x17\xc4\xca\xac\xd8\xe4\xc5\x14\x43\x2e\x46\x66\x91\xd0\x82\x49\xa4\x74\x36\x57\x7a\x8b\xb4\x8c\x67\xfd\x8d\x73\xcd\x8d\xf8\x88\x4d\x08\xc2\x28\xe3\x92\x2a\xfa\xe4\xfd\x97\x74\x8a\xb0\x94\x60\x41\x39\x42\x67\x25\xfb\x3f\x95\xa0\x7a\xb7\xc5\xd5\x52\x36\xb6\xb6\xe7\xf6\x7c\x9c\xad\x37\xb2\xd4\x8b\x5d\x65\x3c\x91\x3c\xc9\x55\xe8\x82\x6d\xde\xdb\xc2\x34\xee\x80\xfb\xc1\x40\xcc\xa7\x23\xe6\xe8\x5a\x1e\xa1\x81\x44\x92\xeb\x5d\x92\x66\x2b\x23\x41\x15\x11\xd4\xa0\x38\x11\x65\x36\xc1\x9f\x53\x7f\x06\x52\x2c\x1e\xb5\x08\x15\x5a\xe0\x0d\xa6\x68\xc9\xda\x31\x31\x12\x12\xc0\x5a\x85\xdb\x01\xa6\x7f\xc4\x38\x3b\x64\x64\x86\x57\xed\xc8\x88\x95\xb6\x04\x7d\x4d\xa7\x85\x42\xda\xe6\x73\x0c\xd6\x6e\x0c\x91\x4f\x6d\xbb\x64\x3a\x6e\xdb\xa4\x69\xc2\xf1\x0a\xb7\xf1\xb4\x38\xf4\xe8\xef\x7c\x62\xc6\xa8\xf5\x7e\xae\x40\x0a\xd4\xea\xd5\x94\x0b\x32\xc7\x2c\x3e\x70\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\xac\x75\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x61\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x1b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x0d\x04\xbf\x24\x5f\x2b\xb9\x2a\x70\xfb\x2d\xda\x6a\x9a\x28\xbc\xaa\xcc\xc8\x1a\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x34\x62\xe7\xea\x2b\xa9\x45\x74\xce\x66\xfa\xa2\x89\x9f\xa8\x2c\x8a\x9c\x44\x9c\xc9\x3c\x25\xc2\x76\xa1\x6f\x64\x4d\x91\xb6\x40\x00\x76\x32\x94\x1e\x9b\xde\xfb\x27\x9c\xd0\xd8\x15\xe2\xd1\x3f\x9a\x33\xa7\x47\x29\x9d\x47\xb1\x21\x24\xcc\x6e\x6e\xac\xd7\xea\xcd\xc4\xfa\x1f\x43\xc9\x1d\xa5\x85\x90\x8f\xad\xad\xfe\xb8\x2a\xe2\xdb\x55\x5f\x22\xde\x4f\x6a\x93\x42\xcb\x05\x23\xbb\x0a\x67\xab\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x16\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbe\xb5\x67\x5b\x96\x89\x90\x11\x4e\xea\x3b\xbc\xc4\xde\x6c\xde\x5f\xae\x04\xd8\xe3\x66\xda\x5e\x9a\xf4\x1b\xf1\x24\x59\xa7\x84\x49\x65\xe6\xa7\xc5\xe7\xcb\x47\x54\xf4\xa3\x37\xc0\xed\x05\x9c\x1a\x73\x79\xe3\xc4\x9a\x52\xa4\xb2\xbb\x14\xbe\x64\xd4\xb0\x85\x65\xad\x23\xc6\xa7\x50\xe4\x26\x69\x8b\xea\xca\x04\x4f\xe9\x3a\x28\xcb\x26\xd0\xe9\xd6\xd9\xc5\x57\x58\x19\x9c\xf5\x1c\x44\x53\x43\x5e\xb6\x47\xc8\xd7\xc3\x56\xdc\x5c\x72\x86\x52\x9c\x6d\xb4\xe0\xab\xbc\x42\x03\x94\x1a\x97\x9c\x5d\x3d\xc0\x5b\x24\x50\x2f\x06\x16\xf9\x19\x2f\x8a\xd4\xe8\x36\xfc\x5c\xb6\x16\x39\x3c\xe8\xd7\xcf\xd9\x94\xaf\x71\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x5d\xce\xe3\x69\x13\x51\xaf\x7d\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x9d\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf9\x52\x5d\x96\xe8\x70\xe7\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\x69\x6e\xf5\x15\xd6\xcc\x1e\x92\x4e\x8b\xb5\x25\x76\xc3\x7a\x38\xc0\xae\x47\x8f\xfa\xdb\x7c\x42\x57\x16\x39\xe8\xbe\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x9f\x37\x18\x38\x5d\x82\x98\x0f\xa8\x32\xa1\xf2\x4e\x7a\xca\x05\x0d\x0a\x83\x3a\x19\x09\x51\x28\x50\x12\x3a\x79\x02\x85\x1e\x4c\x8b\x73\xfe\x6c\xa2\xd3\x05\xd5\x3c\xcb\x08\xab\x0a\xcc\x3d\x9a\x17\x50\x6b\x2d\x31\xc6\x26\xff\x01\x37\x31\x83\xd8\xd6\x3e\x2e\x46\xd5\xb2\xa5\xbb\x28\xf1\xd4\x3d\xff\xce\xf5\x7a\xaf\xbf\xa8\xef\x4d\xe3\x08\xef\xcb\xad\xaf\x3d\x3a\x2f\xe5\xaf\x1f\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\x67\x3f\x1c\x3f\x9c\x23\xa2\x22\x94\xd0\x47\x32\x62\x91\x7c\x3a\xd0\xe2\xf1\x3f\x72\xa2\xf4\xcf\x2d\x1e\x01\x9a\x12\x26\x81\x13\x50\x55\xc3\x1e\x6a\x5e\x48\xb7\x30\xfa\xbf\x67\xe5\xef\x97\x90\x7c\x2d\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x03\xc5\x18\x5b\xe4\xb0\xa9\x1a\xe6\x06\xe9\x42\xec\xef\x39\x5b\x53\xe8\x3a\x2d\x3e\x0a\x46\xd1\x22\xd3\xa5\x19\x06\xac\xeb\xf5\xf2\x90\xcc\x37\x8d\xad\xaf\x62\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x34\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\x9a\xb8\x84\xc0\x2c\x9a\x6f\x6b\x42\xa6\xd3\x31\x49\xd6\x91\x44\xcf\xa7\xc3\x44\x6a\xfa\x8e\x1e\x5b\x4e\xe7\x26\x35\x1b\x8b\xc9\xd8\x4a\xb4\xa6\xee\x13\x2a\x4c\xd0\x38\x31\x15\xe5\x08\x02\x1f\x65\x35\x7b\xcc\x00\x44\xe8\x5d\xb4\x92\xba\x71\x51\x9a\xb4\x0d\x1f\x92\x0d\xbd\x20\xac\x46\x4c\xe4\x0c\x8a\x4d\xf8\x88\x05\x8c\x0a\xbc\xf0\xc8\xf9\x0f\xac\x37\x67\xa6\xd9\x84\x81\xe3\x36\x2f\x6b\xfd\x8c\xe7\x12\x6c\x35\x29\x51\xfa\x82\xfa\x1a\xea\xc0\x9a\x90\xa1\x03\x94\x09\x9a\x82\xb9\x55\x7e\xd3\xb0\x75\xa7\x58\xe1\x84\xcf\x06\x42\xd1\x29\x8e\xd4\x3d\xde\x4a\x03\xc7\xb6\x99\x4d\xc3\x4f\xdd\x30\xd0\xf9\x99\x5e\xfc\x19\x61\x44\xc0\x44\xb5\x4e\xde\x7c\x84\xe1\xc9\x46\x9c\x1b\xac\x6c\xd6\x30\x2a\xbd\xc5\x02\xe7\x8a\xa7\x5a\xbf\xc5\x49\xb2\x38\x30\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x97\xbb\xc9\x2e\xee\x29\x8e\xe6\xe4\x0e\xaa\x22\x37\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\x27\xe8\x7f\x8a\x39\x9e\x0e\x4e\xbf\x1f\x8e\xcf\xce\xef\x06\xdf\x5d\x0c\xcf\x82\xf9\xd8\x27\x97\xe7\x77\x77\xf5\x5f\xbf\x3f\xbf\xaf\xff\x78\x73\x7d\xf3\x70\x31\xb8\x6f\x6a\xe5\xe2\xfa\xfa\x87\x87\x9b\xf1\xc7\xc1\xf9\xc5\xc3\xed\xb0\xe1\xd3\x87\xfb\xf6\x87\x77\x3f\x9c\xdf\xdc\x0c\xcf\xdc\xaa\xfc\x2d\x38\x5d\x60\x3d\x86\xd4\x8b\xe6\x69\x54\x0f\xe0\x21\x2a\xbf\x78\x82\x1e\xaa\xa5\x0f\x6c\x2c\xb2\xc1\xb1\x78\xc6\x52\xf3\x30\x08\x85\x1f\x31\xe4\x3e\xd7\x8b\xd2\xf6\xa9\x09\xd7\x89\xe6\x04\x25\x9c\x3f\xe6\x99\x65\x6d\x26\x3e\x8c\x71\x63\xf8\x21\x32\x68\xed\xfb\xf3\xfb\x93\x7a\x09\x06\xdf\x58\x80\x98\xe5\xce\x00\x8c\x0b\x3b\x76\x0a\xb6\x14\x07\xcd\x5f\x58\x6f\x83\x1e\xfc\xce\x2c\xeb\xc7\xb4\x86\x99\xaa\x74\x13\xc7\xb6\xe8\xaf\x9b\x58\xd0\x70\x79\x5f\x97\xad\xa6\x5f\x0e\x53\x7b\x0a\x4d\x48\x84\x73\x13\xd4\xa4\xef\x29\x21\xb8\x08\x07\x5c\xd0\xc3\xee\x1a\xb5\x74\xd4\xd8\x60\x65\xcf\xf4\xc4\xe5\x23\xcd\x32\x12\x7f\xa8\xcb\x2f\xe5\xea\xb0\xb6\x26\x39\x9f\xa2\xe0\x4c\x6a\xbd\x1e\x74\x7e\x57\x38\x65\xbe\xf0\x9e\x34\x08\xdc\x28\x42\x59\x00\xc8\x59\xdf\x09\xbe\xb0\x05\x05\xd7\x18\x56\xe8\x99\x40\x4a\x75\x6e\x2b\x47\x19\xdd\x5b\x9f\x6d\xe8\xce\xd8\xb4\x5d\x1d\xb8\x52\xaa\x75\x2b\x33\xde\x85\xc0\xad\xbf\x97\xa4\x89\x11\x6f\x91\x17\x7b\x66\x1a\x05\xee\xec\x62\xde\x60\xc4\x2d\xc1\x0d\xee\x36\x68\xb0\x90\x2f\x91\xaf\xea\x37\xd2\x8a\xcb\x42\xb3\xed\x2e\xe3\x71\x58\x20\x25\x80\xeb\xee\x03\x2b\x81\x20\xaf\x5c\xab\x7b\x1e\xe3\x85\x26\x0e\x88\x35\x96\x79\x96\x71\xa1\x50\x4b\x1b\xc6\x8d\x6f\xc6\x07\x77\x8e\x9d\x87\xe7\x71\xd0\x88\x96\x30\x64\x43\x2d\x8d\x6e\xf0\x08\x76\x5d\x0b\xc6\x11\x06\xc8\x82\x22\xe8\xeb\x1e\xa5\x25\x95\xba\x44\xa1\x4d\xc2\xef\x36\x19\x06\x99\xbe\xe0\xbb\x96\xe1\x6b\xea\xfd\xda\xb5\xd0\xb8\xe5\x09\x99\xaa\x71\xa3\xd7\x67\x89\x81\x53\xb7\xc8\xda\x10\x65\xe8\x6c\xbe\x83\x16\xbb\x6b\x09\x7f\xb4\x81\x3d\x5a\x35\x08\x2c\x04\x82\x73\x65\xe4\xd3\x42\x87\x41\x6e\x35\xc1\xbc\x60\x3b\xb5\xb9\x60\x5e\x08\xd4\x32\xbf\xf1\x87\xfa\xb4\xa9\xa3\x11\x1b\x42\x00\x45\xa1\x88\xb8\x14\x31\xd0\x02\x56\xca\xff\xa5\xa2\xa3\xaf\x1a\xad\xd9\x8e\xf0\x5a\xd0\xbd\xad\x97\x9f\x2c\x50\x51\x58\xb6\xf4\x5d\x97\xd3\x63\xac\xde\x4e\x04\x34\x13\xb6\x65\xdc\x15\xc9\xac\x65\xde\xcc\xb3\x88\xf4\x81\xf8\x30\xdd\xd5\x11\xfa\xc9\x59\x7e\x20\xf0\xb5\xa8\xc9\x6c\x63\x37\x12\xbc\x70\xa0\x90\x4d\x0b\xbb\x0b\x9c\xc5\x5d\x87\xc2\x2e\x5f\x60\x0f\xe8\xd4\xb0\xca\x25\x05\x9c\x31\x63\x91\x5d\x23\xed\xe3\xd4\x7f\x74\x47\x96\x47\x05\x7c\x84\x32\x9c\x36\xb2\x0a\x84\x0e\x96\x2c\xfe\x97\xd9\x2c\x93\x89\xea\x0a\x6b\xd9\xb2\x88\xd6\x83\xaa\xcf\x0f\x78\x00\x4d\xa2\x2a\x9a\xd2\x24\x01\x39\xe0\x08\x0d\xa0\x3c\x30\x24\x72\xea\xab\xd0\x05\x58\xd0\x19\xe3\xab\x72\xcc\x5a\x88\x29\x0a\x88\xe9\xae\x9d\x98\x24\x50\x53\x91\xc7\xbf\x1b\x8a\xda\x01\xa6\x8b\xe6\x2d\xb8\x8e\x88\xdd\x1d\xc9\x65\x0d\xe5\xfd\x2d\xa2\xa3\x6b\xc3\x0d\x3e\xfc\x57\xf3\xd0\x3f\xe5\x58\x60\xa6\x20\xe6\xd7\x8a\xee\x82\x04\xa9\x47\xe4\x33\xc4\x67\x30\x63\x08\x86\x9f\xc2\xcd\x75\x2e\x7f\x08\xf7\x42\x34\x3e\x40\xf4\x88\x1c\x41\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\x56\x8b\x65\x3c\x42\x83\x44\x72\xfb\x05\x61\x51\x02\xe5\xb8\x83\xf0\x64\x4f\xf9\xd6\xad\x34\x59\x80\x82\x02\x5b\x59\x34\xcf\xed\x83\xe0\x43\x28\x32\x06\x3e\xf1\x04\x4e\x7a\xf1\xfb\xef\x79\x66\xbc\x15\x6d\x71\x12\x2f\x58\xce\xa1\x76\x0d\xbd\xd8\x26\x99\x52\x81\xcb\x36\x08\xde\x80\x8d\x29\x62\x4c\x03\x04\x16\xf4\x35\x56\x28\x21\x58\x2a\xf4\x87\x6f\xd6\x8a\x0d\x71\x13\x2c\xb8\xab\x3d\xbe\x45\xa2\x98\x4b\x35\x08\x85\x3b\xdf\x31\xd4\x8e\xc3\x42\x21\x8c\x18\x79\x0e\x23\x4b\x39\x04\x03\xbb\x82\x70\x24\xc8\x6d\x35\xf1\x64\x26\x33\x1f\xb2\x35\x8c\xca\xd4\xc2\x47\x1c\xdc\xb1\x75\x9f\xda\x61\x35\x50\x96\x55\x9e\x6c\x88\x27\x40\x72\x15\x41\xff\x73\xac\x46\xcc\x72\x56\x17\x36\x12\xa4\x79\x0d\x92\xa4\x1c\x68\x8f\x21\x97\x84\xe9\x09\x43\x7d\xf6\x23\xbf\x40\x57\xa0\x7e\xf9\x68\xe7\x92\x9d\xae\x38\x2c\x26\x1e\xcf\xe3\x1d\x85\x6d\x37\x4a\x3b\x4d\xf6\xe5\x57\x14\x82\x1b\xba\xbf\x30\x85\xf2\x3b\x08\xc3\xa4\x69\xc8\x2b\x0e\x56\xdd\xa6\xbf\x44\x36\xde\x75\x07\xdd\x45\xe5\x66\xfb\x38\x5c\xb3\xcf\xbc\xc1\xdc\xde\xb2\xb9\x81\x6c\xb1\x8d\x02\xee\xc3\xee\x5f\xcb\xe3\x5b\x1a\xfa\x79\x0c\x49\x7f\xab\xb9\x60\x91\x44\xe7\x58\x87\x89\xbd\x8e\x83\x9c\x9e\x20\x85\x00\x82\xff\x1c\xe3\xb3\x6f\xb6\x78\x5e\xb3\xf7\x3d\xfd\x83\x62\xfe\x6e\x2a\x3e\x08\xae\x3e\xf1\x76\x61\x6f\x10\xff\x1d\x47\x10\xe9\x0f\x3d\xb9\x1c\x83\x3a\x20\x93\x83\xb1\xc6\x60\xcc\x6f\x14\x0f\x33\xc1\x23\x22\xe5\x11\x1a\xc2\x45\x63\xff\x89\xf0\xd4\x39\x24\x82\x97\x47\x4c\x6b\x26\x0e\xbf\x25\x68\xbf\x4c\xe2\x4d\x27\xc0\x80\xc1\x6d\xe5\xcb\x49\x57\xd7\x28\x69\xd3\x26\x1c\x16\x1d\xb4\x01\x65\x0d\xd0\x70\x76\x82\x62\x1e\x3d\x12\x71\x2c\x48\x4c\xe5\x09\xf8\xd6\x55\xab\x53\x2f\xd5\xda\xf6\xd6\x92\x46\x5b\xa0\xc0\x8a\xa4\xb8\x53\xd3\xbf\x0d\xb0\x76\xe1\xb5\x07\x88\x4e\x41\x9d\x70\x39\x19\x26\x08\xd9\xc1\xdd\x10\xa6\xc4\x02\xe2\xfa\xbd\x29\xab\xb2\x10\x4e\xd3\xd0\x42\x5b\x5b\x36\x91\xd8\x45\x0c\xce\x86\xd3\xbe\x9f\x13\x49\x5c\xc0\x81\x99\x94\xe2\x36\x96\xd9\xb0\x8b\x0c\xab\xb9\x84\xd4\xd5\xf2\x1a\x58\xa5\x0b\x3e\xd5\x2b\x84\x33\x88\x57\x30\x56\x8a\xe2\x23\x9f\x60\x29\x15\x4d\x92\x11\x63\x84\xc4\x12\x41\x96\xe9\x57\x8d\x19\xf2\xfa\xd3\x03\x84\xe3\x18\xfd\xef\xaf\x3f\x5e\xfc\x7c\x3f\x1c\x9f\x5f\x81\xd1\xfa\xfc\x62\xf8\xcd\x81\xff\xf1\xfa\xe1\xde\xff\x6a\x2c\x2c\x4f\x44\xa0\x14\x3f\x82\x8a\xc7\x24\xb1\xc9\x13\x64\xc4\xc2\x91\x3a\xec\x00\xfd\x44\x12\x17\xe9\x6a\xc5\x14\x0f\xa1\x68\xf7\xb0\xb5\x62\xb1\xb1\xf9\xad\xa1\xfc\xde\xfa\x4f\x96\xd3\xa0\x23\x1e\xdf\x85\x13\x03\x21\x47\x06\xcb\x20\x99\xdc\xea\xbe\x05\xc1\x11\x36\xa3\xac\x2d\x1e\x8f\xb0\xa7\x97\x14\xe2\x7f\x20\x8b\x1f\xb5\x7a\x7d\x83\xa9\xe8\x4c\x7b\xcd\x68\x40\xee\xc4\x68\x3d\x1d\xcb\xea\xa1\x92\x46\x16\x36\xd9\x36\xad\x31\x9f\x4d\x40\x70\x6f\x3e\x5d\x0b\x2f\x45\x3e\x2b\xe1\x50\x2a\x7c\x3e\x87\x83\x72\xf2\x17\x4d\x41\x83\x23\x76\x7f\x7d\x76\x7d\x82\x48\x82\x27\x1c\x42\xf9\x6d\x48\x90\x6b\xc2\x2e\x58\xc4\xd3\xa0\xa1\x12\x42\xc9\x01\xca\x0a\x84\x92\xd0\x88\x76\x64\xda\x58\x81\x54\x92\x71\x51\xc7\xf7\xd8\xad\x0a\x68\x27\x7b\xc3\x45\x97\xeb\x5f\xbf\x06\x4b\xc7\x33\xad\xc8\x55\x38\xaf\xbd\x9b\xa7\x04\x9b\x5a\xfa\xc6\x2d\x64\x6d\xf9\x36\x80\x35\x49\x4a\xf5\x14\xf5\xc1\x91\x47\xd6\x05\x5f\xbc\xc9\x19\xfa\xe1\x2f\x12\x4d\x72\x35\x62\xe5\x36\x38\x43\x83\x9f\xee\xd0\x77\x58\x45\xf3\x6f\x46\xec\x5a\xab\x99\x3f\xfc\xa5\x05\x4a\x69\x6d\x74\x42\xbd\x26\x67\x58\xe1\x0b\x8e\x63\xca\x66\x4d\xd0\x84\x45\xfd\x98\xe1\xfd\xe0\x04\x5d\x5b\x1d\xbe\xc8\x04\xf1\x29\xc1\x41\x43\xc0\x90\x61\x22\x8e\x8b\x00\x2b\x67\x65\xf8\x36\xa3\x99\xc1\x85\x35\x62\xf7\x06\x93\x51\x73\x55\xaa\x50\xc6\x6d\x0d\x23\xad\x95\x19\xb4\x4a\xec\x32\xa4\x48\xb2\x40\x7a\x75\x80\x8c\xfd\x66\x58\x79\x0c\xe4\x99\x3a\xb3\x1f\x31\x50\xd0\x7d\x6e\x4a\xc2\x23\x9c\x40\x4c\xde\x61\x60\xd3\xd3\x6a\x3b\xcf\x21\x3f\xdc\x14\x3d\x5f\x94\x43\x67\x3d\x64\x81\x17\xca\xc2\x8d\x02\x03\x00\xec\xa3\xf5\xc6\xa6\x5c\x73\x1c\x83\xc5\x06\xc6\xb7\xc4\xac\x8e\xfe\xd0\x63\xb3\x99\x65\xd1\x4f\x7d\xda\x16\xcf\x99\xc3\x22\x89\xc0\x7c\xcf\x16\x10\xbe\x0d\x45\x47\x38\x84\x7e\x14\xdc\xd9\x12\x65\x6d\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\x58\xcf\x15\xcb\x33\x1b\xd8\x68\x65\xfd\x4c\x90\x43\x9f\x01\x15\x97\xd6\x54\xdf\xb0\x47\xe8\x36\x54\xaf\x63\x1e\xe5\xa9\x43\x56\x86\xec\xa9\xa2\xac\x7c\x49\xe2\x31\x17\xfb\x2a\x8a\x07\x94\x16\x45\x20\x7d\xbc\xb3\x7e\x6c\x08\x66\x10\x7e\x5a\x97\xd4\xdb\x05\x5f\xe0\x1d\xdb\x45\xad\x99\x86\xc6\x59\xb9\xa5\x52\x6b\x5b\xe7\x25\x5e\x15\xe8\xaf\x5c\x80\xb0\x45\x3e\x67\x1c\x8c\xdc\x26\x3d\x8b\xc7\x5f\x49\x74\x7e\xa3\x25\x20\xad\xf1\xfa\x33\x98\x4b\x65\x82\xcb\x20\x5d\xc7\x7c\x6d\xd2\x05\x0e\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x9d\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x3a\xa7\xda\x62\x17\xec\x01\x6c\x5b\xfe\x4d\x50\x1e\x83\xd8\x21\x3c\xb3\x27\x5c\x86\x27\x13\x95\x8e\x66\x11\x49\x20\x89\x3a\x28\x73\x08\x2f\xec\x5a\x89\xfe\x7f\x2d\x01\x2b\x1b\xeb\xa3\xb2\x59\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xf0\x33\xd6\x9c\xfb\xc0\xc2\x68\x99\x8f\x8c\xe7\x65\x8a\x23\x83\x0a\x2a\xd1\xd7\x9f\x4f\xf4\x6f\x07\x68\x71\x02\x41\xa4\x07\xe8\xd7\x13\x8b\x96\x83\x85\x1a\xeb\x9f\xbe\x71\xb2\xb6\x6d\x02\x06\x4d\x25\xfa\xea\xf8\x09\x0b\x53\x33\xfa\xd8\x8c\xe8\x2b\xcb\x59\x7d\x5d\xbc\x50\x36\x4f\x38\x7f\xb4\x01\xb6\xb5\x0f\x8f\x1d\xf0\x1a\x90\xb7\xf7\x9b\x98\xad\xf7\x89\xf9\x0a\x1d\xc2\x0b\x04\x1d\x65\x13\x74\xf4\x77\xc9\x19\x3a\x5a\xe0\x34\xb1\xbf\xba\xa7\x36\xfe\x17\x4b\x9b\x13\x17\xfb\x20\x9f\x64\x61\x2c\xa5\xdf\x25\x7c\x02\xb3\xba\x74\x33\x35\x11\xb4\x30\xd0\xe2\xf6\x29\x2e\x2c\x3b\x11\x97\x88\x0a\xf8\x41\x29\x57\xe6\x15\xe0\x71\x4d\xb3\xfa\xec\x87\xf4\xdf\xc6\x2f\x0c\x8b\xe2\x92\xf8\x8c\x71\xd8\x47\xaf\xe9\x46\x3f\xa3\xaf\x2d\x0b\xfa\x46\xdf\x31\x36\x5c\xd9\x2c\x43\x53\x07\x0b\xdf\xc1\xcf\x41\x07\x94\x21\x93\x96\xb9\xe4\xcb\x5f\x8f\x8f\x8e\x8e\xfc\xd7\x90\xb5\xfe\xff\x22\xaa\x24\x49\xa6\xa6\x25\x77\x83\x2d\x46\xec\xd2\x15\x5e\x70\xc6\xeb\x02\xd2\x31\x13\x5c\xf1\x88\x27\xe8\xb0\x30\xe8\xc6\x3c\x92\xe8\xdf\xb5\x58\x1b\x2c\x25\xfc\xa8\xf5\xb8\x16\x18\x58\x83\xf4\xfc\x4a\x87\xca\x1a\xc4\xab\xc7\x2a\x44\x71\xf3\x8a\x2d\x96\x61\x15\x0f\xa0\x05\x4d\x39\xc7\x16\xe9\x4d\x08\xfd\x32\xf9\xac\xe0\x51\x0b\x90\x5e\x63\x28\x7b\xf3\x4d\x59\x63\xb7\x05\x9e\x9e\x21\xeb\x96\x05\xb0\x78\x57\x96\x33\x98\x79\x1e\x84\xee\x13\x7d\xb9\xb0\xb0\x14\x80\xcc\xd3\x14\x8b\xc5\x71\x71\xda\xea\xc4\x59\x20\xad\x01\x8f\x49\xdc\x02\x80\x0b\x37\xb1\x47\xcb\x46\x31\x58\xf1\xd2\xdd\x68\xfe\xec\x46\x50\xcb\x30\x40\x2c\x20\x2c\xe2\xb1\xa5\xeb\x22\xfb\xb4\x2c\xb1\xf8\x77\xea\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\xb7\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x86\x7b\xf4\xfc\xfa\xce\x7d\xd3\xfd\xd2\x85\x75\x28\x8b\xec\x38\x09\xf1\xf1\xd8\x0c\x09\xfc\x5c\x5c\xbf\x10\xdb\x61\xac\x33\xb9\xcf\xcd\x35\xff\x3e\xe5\x37\x34\xd1\xb7\x16\xd0\xf8\xd1\x88\x95\x7e\x3e\x40\x24\xa1\x29\x65\x3e\xb6\xce\x30\x77\x3e\x35\xd2\xf3\x23\x55\x7a\xcb\x64\xfc\xa8\x39\x98\xc3\x75\x0a\x54\xaa\x01\x5b\x38\xd2\xf1\x8e\x29\x6b\x81\xc8\xa5\x1e\x57\xa1\xa3\x6b\x61\x56\x37\x71\x68\x05\x52\x1a\x10\x1e\x9c\xdf\x11\xd3\xad\xb9\xb3\x54\x84\x0b\x07\xed\x05\xcd\x1d\x3a\x40\xfc\x80\x03\x40\x1f\xa5\x98\x5f\x2f\xff\x36\x08\x28\x43\x96\xa7\xdb\x26\x9b\xd8\xf0\xe1\xb7\x32\xd3\xdd\x08\xe2\x6e\x2a\x9b\xb8\x44\x58\x9e\xba\x03\xb5\x06\xc5\x0d\xad\xf8\x13\x93\x28\xc1\x06\xa9\x46\x37\x04\x91\x8f\x07\xc6\x41\x9a\x05\x7d\x99\xeb\xc5\x74\x63\x6a\xec\x24\x84\x7d\x6d\xfe\xfd\x0d\xb2\x77\xc3\xb7\x07\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\x3e\x00\x65\xb4\xd6\x1f\x96\xc0\x04\x60\xd4\x4d\x14\xa0\x99\xf0\x56\xb9\x46\x10\x05\x3b\x66\x3c\x26\xdb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x96\x4e\x4b\xa4\x5c\xd3\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x2d\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x6d\x37\x21\x6a\x40\x2b\xea\x74\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x9c\xb3\x29\x3f\xb1\x3a\xd5\x05\x65\x8f\x86\xe2\x5f\x6a\x8f\x0c\x20\x36\x89\x4b\x30\x6e\xae\x4a\x2b\xcc\xe1\x10\x51\x16\x25\x39\x5c\x7c\x52\xe1\xe8\xd1\x80\x7a\xb7\x19\x7d\xf5\x37\xe3\xd5\xc9\x94\x2d\x12\x53\x9e\x24\xb6\xdb\xe2\x02\x2d\xca\x58\x3f\x51\x8c\x30\x7a\xb8\x3d\x6f\xee\xfb\x91\xd6\x9d\x39\xcd\xb7\x67\x99\x40\xe0\x7f\x7e\xa0\x6b\xc5\x5d\x56\x60\xf1\x48\x89\xd4\xbd\x71\xa9\x0d\x74\x55\x13\xe9\x27\xac\xc8\xb6\x99\x50\x06\x03\x6c\x8d\x48\xbd\x1a\xb8\xda\x52\xeb\xf1\x96\xc8\x64\x05\xaa\x18\x84\x06\xb5\x43\xa4\x85\xc1\x5a\xf0\x70\x0d\xec\x06\x78\xbf\xdb\x7c\x2a\xef\xae\x98\xce\xf2\x61\x26\x84\xac\x81\x36\x70\xa7\x5f\xef\x38\xc8\xd2\xab\xcb\xc6\xf8\x8c\x4d\xf5\x85\x3a\xe8\x6f\x6c\x25\xbb\x75\x98\xad\x23\x47\x23\x5e\x4b\x9f\x23\xe2\x47\xe2\xc2\x70\xbc\x2c\xe6\xfa\x9d\x81\x6f\x8b\x97\x8a\x3b\x78\x0b\x6d\x03\xe1\x07\x62\xeb\x96\x61\x13\x5a\xfc\x1a\xa7\x9d\x01\xe5\x8a\x8e\xcf\xec\xc7\x97\x35\x78\x39\xcf\x8a\x2e\x21\x8b\xcf\x03\xa7\xa4\x98\xe9\x93\xed\x7a\x6d\x31\x42\x1a\x89\x70\xa3\x21\x3d\x64\x1b\x0d\xc8\xf4\xd8\xb1\xee\xa1\xed\xca\xb5\xf2\x6c\xec\xf0\x38\x31\x76\x26\x35\x07\x13\x44\x51\x2f\x48\x73\xb4\xb2\x29\xc2\xd4\x16\x4a\xf0\xff\xc7\xde\xd7\x35\xb7\x8d\x64\x67\xdf\xe7\x57\x74\x55\x2e\x3c\x7e\x5f\x8a\xda\x99\xad\xa4\x26\xae\xca\x05\x2d\xcb\x3b\xdc\xb5\x25\xaf\x24\xcf\x6c\xde\x30\x45\x37\x81\x26\x89\x08\xec\x86\xd1\x80\x34\x4c\x36\xff\xfd\xad\x3e\xe7\xf4\x07\x3e\x09\x90\x92\xed\xdd\xcc\x45\xb2\x63\x11\x68\xf4\x77\x9f\x3e\xe7\x39\xcf\x93\x6f\xf0\x82\xa4\x45\xa1\x5f\xb6\x8c\xb0\xcf\x79\x38\x61\x84\x8f\xd0\x64\x0d\xe3\x9e\x60\x7e\xf7\xad\x34\x57\xcb\x2a\xb9\xa8\x3b\x95\x9d\xba\x71\xc0\x9c\xe7\x13\x31\x22\x95\x23\x13\x77\x6c\xd6\x4a\x37\x67\xca\x89\xda\xdc\x57\x7c\xe7\x18\x01\xac\x42\x30\xe5\x77\x61\xe5\x56\x02\x78\x71\xbb\xeb\x70\xb2\x08\x77\x58\x05\x12\xc5\xec\xaa\xc1\x42\xce\xec\x23\x9e\xdd\xcb\x5c\xcc\x72\x34\xc0\x01\x1f\x8a\x68\x68\xb8\x5f\x71\xdf\xeb\xd4\xb8\x8e\x46\x8c\x4d\xde\xac\xeb\x88\x9b\xfb\x9d\x3b\x8d\x48\x31\xc8\x71\x78\xf6\xaa\x35\x91\x7c\xfe\x09\x1f\xbf\xb5\x4d\xac\x29\xf1\xb7\x7d\xf8\xf0\x5d\xca\x32\x46\x50\x41\xa1\xf8\x3f\x62\x48\xd3\xbd\x9f\xa6\x9e\x24\xae\xf6\xb1\xe6\x6a\x2d\x4e\xda\x8d\x13\xbe\x5b\xe6\xaa\x5b\xce\x6a\x40\x37\xd9\x22\x2a\xfe\x9d\x2d\xca\x5b\xec\xd9\xe7\x92\xa7\x78\xb8\x49\x9a\x8e\xb6\xda\x60\x2a\xff\xf0\xcf\x6c\x06\xa7\x0f\x7b\x0f\xfb\x22\x04\xf8\xa1\xb4\x42\xb1\x64\x97\x89\x5c\x2b\xc9\x3b\x75\xdd\xee\x7f\xd4\x4b\xd2\xa6\x59\xf2\x28\x52\x65\x53\x87\x66\x44\x4b\x5a\x4a\x0b\x1b\xc5\xd9\x7d\xb9\x12\xb9\x14\xa8\x5d\x07\xcf\x31\xfb\xdc\xa0\xea\x2a\x5e\x16\xdb\x1f\x96\x51\x9a\x0c\x16\xcc\x81\xec\xa2\x99\x79\xed\x02\xdf\xea\x6b\x40\xa5\xfc\x4a\xd5\x25\xc3\xdf\x18\xfe\x36\x65\xaf\x79\x74\x2f\x64\xcc\xb2\xb4\xdc\x24\x44\x26\x00\x27\x14\x6c\x97\x81\x7b\xb6\xda\x30\xb4\x2d\xb0\x7c\x73\x0c\x2d\xe4\x8e\xdf\x23\x89\x2d\x19\x91\x11\x4f\x3b\xa9\xa8\x9c\x59\xbd\x4c\x9a\x73\xf7\xe0\x68\xb9\xf3\xb0\x59\x4c\x7d\xee\xe9\x12\x73\x2b\x1e\xb7\x8a\x22\xd2\x15\xab\x7e\xc4\xc2\x75\xb3\xb5\xc1\xf9\x62\xf3\xf2\x9d\x8a\x21\x55\x06\x57\x2f\xb8\x7b\x81\x88\xb9\x94\x8c\x03\x6d\xcc\x0b\xcd\xca\xcc\xda\x67\xe0\x87\x4c\x21\x2a\x8c\x43\x60\x7e\xc8\x12\x73\x4b\xdb\x8a\x85\x04\xa4\x2d\x73\xcd\x6b\x88\x5d\x31\xe1\x01\x31\x6d\x5b\xc3\x1a\x49\x13\x4e\x8b\x71\x36\x78\x9c\x0f\xcc\xd3\x81\x28\xe2\x62\x2b\xe4\xf2\x08\x3a\xe1\xe1\x83\x56\x41\x0c\x93\x19\xec\xfc\xb9\xae\x0b\x4b\x99\x90\x80\x14\xb9\xf0\x43\xae\xcc\x64\x5d\x33\xa3\x13\xcd\x34\x2f\x12\x6d\xf6\xb2\xd6\x1e\xf7\x54\x15\xa7\xf4\x3a\x1f\xc7\x8f\xd1\xc2\x8d\x51\xeb\x0b\x97\x95\x30\x65\x6f\xc1\x0b\x16\xdc\x0c\x94\x63\x9a\xe8\xda\xb0\x8a\xad\xe8\xa4\x5c\x7c\x0a\x38\x8f\x6d\x41\xf0\x7c\xaf\x73\xd3\x65\xa0\x4c\xd9\xcc\x47\x1f\x90\x6b\x03\xe3\x0a\x07\x5a\x24\x52\x2d\x8e\x99\x7c\x83\x1c\x75\x10\xa1\x87\x09\xc4\xc0\x92\xd2\xe6\xef\x9e\x41\xde\x55\xf3\x11\x92\x3c\xf9\xbd\x90\x7d\xde\x98\xe1\x35\x44\x77\x59\xaf\x4b\xc0\xf9\xe1\x14\xba\xe2\x8e\xa9\xe0\xf0\x65\xe7\xe9\x4d\x92\xf5\xb9\xe9\x72\x73\x0d\x89\xee\x29\xb5\x04\xbd\xb1\x44\x90\xf2\xb8\x55\x3a\x5c\x67\x76\xfc\xf0\x26\x9b\x97\x8e\x25\x1c\x52\x73\x5c\x07\x23\x26\x47\xaa\x90\x3f\x05\x6a\xed\x16\x29\x7a\x9a\xdd\x78\x33\xbb\x85\x42\x37\x40\x14\xcb\x16\xd5\x5c\xcd\x7f\xfa\x51\x5f\xc3\x8a\x7d\x8a\x4c\xfd\x76\x59\xd6\xd3\x51\xf2\x47\xc6\x07\x1c\xfe\xcb\x6b\xba\xf2\xd8\x71\x4b\x64\x2a\x66\x7e\x7a\x8d\x17\x70\xfd\xfa\xcd\xaa\x09\xbf\x0e\x6a\xdb\xa1\x99\xfd\x3e\x00\x11\xb0\x55\x99\xa0\x86\x7a\xc5\x20\x54\xd6\xe2\x00\xfe\x63\x38\xfe\x13\xed\xce\x93\xf6\x39\xf6\x41\xc5\xa7\x4c\xac\xf1\x74\x7a\xcd\x79\x3d\x00\x63\xac\xdb\x34\xdf\x7b\x7a\x22\x53\xdd\xe8\xd0\x78\x39\x5c\x25\x1d\xe0\x00\xab\x72\x7d\x0b\xea\x22\x5d\x8c\x15\x01\xf1\xbe\x4d\x41\x33\xe3\x6c\x3e\xe3\x12\x22\xba\x06\x85\xa2\xcb\xfe\xf8\xe7\xec\x8f\xb7\xd7\x57\x67\x3b\x9e\xeb\x2d\x87\x8c\x60\x5b\xd6\xc4\x0a\xb6\xe1\xf5\xd8\x46\xbd\x12\xb9\x90\x67\x6c\xa3\x26\x18\x63\x7d\xc5\xb6\x45\x91\xe9\x57\xe7\xe7\x9b\xa4\xd8\x96\xab\x69\xa4\x76\xe7\xbe\x6b\xce\x79\x96\x9c\xaf\x52\xb5\x3a\xcf\x05\xa0\x6c\xcf\xbe\x9f\xfe\xf0\x3d\x8c\xcc\xf9\xc3\xf7\xe7\x10\x59\x9b\x6e\xd4\x3f\xbe\xfb\xe1\x5f\x7e\xff\xcf\xa6\xe0\x6c\x5f\x6c\x95\x7c\x45\x01\xdc\xde\xb2\xcf\xd0\x2a\x3f\xc7\x57\x6a\x5f\xf9\x97\xe9\xef\xc2\x6a\xd0\xa3\x3b\x15\x8b\x54\x9f\x3f\x7c\xbf\xb4\x03\x33\xcd\xf6\xbf\xe1\x52\xbf\x1a\x2e\xf5\x3e\x29\x7e\xc3\xa5\x7e\x55\x5c\xea\x70\x0b\xc7\xed\x31\x40\xf4\xe9\xf7\x47\xf3\x77\xb7\x47\x5a\xd7\xfb\xa1\x7d\xa8\xe5\x70\x08\xb3\x06\x4e\x38\x22\xee\xc5\xa8\x2b\x76\xad\xb9\xee\xea\xd0\xe1\x62\x1b\x4b\xb6\xdf\x69\xcc\x8f\x4a\x92\x06\x14\x48\x12\x01\x91\x33\xba\x04\x33\x9e\xb4\xa1\x4d\x09\xed\x74\x4a\xff\x3d\x27\x25\xf9\x53\x73\x91\x53\x73\x8f\xe4\x21\x4f\xf1\x6d\x8b\xcd\x52\x8f\x96\x7f\xfc\x29\x58\xbb\x07\xea\xb8\x3a\x32\x62\x9c\x3c\x50\x17\x5b\xaf\x8e\x6a\x6c\xb9\x3e\x0e\xe4\x37\x43\xca\x3f\x17\xa7\x73\xaa\xf8\xf4\x41\x7b\x70\x58\x16\x05\x10\x09\x27\xb2\xa6\xac\xcc\x33\xa5\x85\x9e\xb2\xb7\x35\xa5\x43\x0f\x5c\xbc\x79\x7b\xc1\xbe\xff\xf1\x5f\x7e\xbf\x90\xdf\xb5\x9c\xdb\xb0\xdf\xab\x7c\x43\x38\x4a\x38\xad\x77\x5c\x17\x22\x3f\xcf\xd7\xd1\x39\xee\x72\xe7\xe6\xfd\x33\xfa\xe8\x99\x5a\x9f\x39\x4a\xe2\x33\x62\x67\x9d\xee\xe2\x71\x04\x03\x95\xa9\x87\x67\x0d\x1d\x34\x1a\x0e\x25\xa4\x22\x52\x6b\x47\x3e\x8f\x79\x2e\xa8\x53\xa1\xd6\x2d\xff\xf1\x3a\x55\x2b\xfd\xd2\x11\xa0\x71\x6d\xbf\xe1\x19\x89\xba\x97\xe6\xd3\xb0\x93\xdb\x29\xf2\x9c\x8e\x0a\xbb\x97\x84\xd7\x91\x31\x1d\xdf\xbe\xd8\xfc\x71\x8f\x7c\x0c\x3c\x57\xa5\xb4\xec\xce\x4a\x0a\xb5\x06\x14\x1f\x58\xc2\x16\xa5\x00\xbe\x5a\x73\xd2\x7a\xee\x85\x5c\x64\x78\xc0\x40\x54\xa1\xbb\xbb\x4f\x64\x38\x3f\xd4\xcf\xcf\xc1\x70\x7e\x6a\xbf\xd3\x86\xf2\x95\x3a\xfc\x54\x28\x21\x2e\xa5\x31\xa8\x0a\xf3\xfc\xc1\x08\xaa\xdb\x07\xbc\xfa\x90\x27\x13\xce\x78\x0e\x46\x9a\x38\x2b\xd4\x19\x90\xd6\x00\x15\x0a\x6a\x0e\x74\xc1\x2a\x20\xf2\x3c\xe6\x98\x34\xcf\x0f\xa8\x27\x1a\xe6\xbf\x06\x15\x25\x9b\x44\x23\x85\x27\x41\xb2\x12\x29\x45\x4e\x31\xb5\x83\x27\xea\xc8\xb8\x74\x38\x94\xfd\x88\xac\x40\xd7\x3a\xe0\x83\x77\x78\x7c\x1e\x6c\x02\x53\x06\xd6\xe7\x56\xed\x94\x31\x67\x54\xa9\x83\x1f\xf1\xf6\x02\x87\x70\xa7\xed\xb5\xe3\x19\x92\xd4\x7d\xbd\xd6\x98\xa5\x65\x7e\x42\xa7\x5e\xf8\xd0\x28\x89\x8d\x55\x55\x54\xe0\x40\xfd\x1d\x1b\x7c\xff\xbc\x01\xd4\x03\xea\xd4\x81\x54\x2c\x71\x3c\x27\xff\x65\xee\x35\x66\x4a\xb9\x9b\x82\x3b\xb9\x11\xa4\x83\x5c\x8c\x21\xdd\xab\xb5\xe6\x3b\xb3\xa5\xcb\xdd\xc8\x31\x70\x20\xe3\x21\x03\xc0\x25\xc2\x6e\x2d\xde\xf6\xac\x15\x70\xdb\xb5\x2e\xad\x30\x6b\xbc\xb4\x7c\xa1\xe3\xaa\x7a\xeb\x0a\x20\x6a\xd0\x66\xbd\x3d\xdd\x12\xa0\xb3\xb1\x8f\x71\x43\xb0\xb6\x45\x07\xe8\x46\x8e\x5f\x8c\x20\xb0\x32\xa6\xef\xe0\x23\x38\x39\x1b\x3d\x18\xac\x85\xae\x0e\x1c\xe7\x62\xeb\xf3\x58\xb5\xc1\xf9\x91\xa1\xce\x67\xef\x98\x5a\x36\x2e\x8f\xee\xc5\x07\xaf\x42\xbd\xcf\xc4\x84\xad\x4a\xf8\xfd\xea\xfa\x2e\x44\x6b\x24\xd8\xda\xb3\x68\x2b\xa2\x7b\x70\x98\xe0\x91\xe7\x44\x1b\x89\x0d\x6f\x21\xbd\xf4\x57\xa1\x2c\xf4\x60\xef\xd8\xd0\x9d\x22\x80\xca\x59\x9c\xe8\x2c\xe5\x7b\x08\xf2\x4a\xc4\xe9\xfb\x00\xb1\x4b\x70\x31\x5b\xc1\x21\x7f\xf1\xf0\x91\x36\xa3\x32\xf3\xef\x8d\xed\x4b\x9e\xaf\x92\x22\xe7\xf9\x9e\xf9\xce\x6c\xee\x07\x4c\x8b\x1d\x97\x45\x12\x2d\xe4\x4e\x70\x19\xa2\xf2\x28\xc8\x6d\x3a\x39\x56\x82\xf8\x82\xd7\x6b\x11\x15\x9e\x70\x10\x8c\x77\xd7\x53\x87\xd6\xe0\xb8\xb6\xbb\x95\xd7\xdb\xf4\x9f\x12\x89\xe9\xed\xc9\x0e\x30\x9f\x34\x87\xe8\x68\x3c\x32\x78\x03\x52\x71\x74\xe4\xda\xcb\x20\xfc\xcb\xce\x29\xb6\x12\xc5\xa3\x80\x7c\x7a\x4a\x00\x6c\xb3\xf1\x4f\x96\x0b\x38\x4d\xfd\xb7\x5d\x37\x39\x40\x82\xe1\x02\x0b\xc1\x64\x8e\xf8\x47\xd6\x18\x7c\x5e\x50\x4a\x22\x78\x7b\x5e\x90\xdf\xea\x05\x1c\xd3\xe6\xf6\x98\x3f\x88\x78\x21\xab\xb4\x4a\x64\x33\xfa\x05\xc7\xbc\x10\xd6\xd3\xec\x36\xb6\x8f\x07\xf9\xf2\x2f\x81\x4a\xc2\x93\x48\xba\xa4\xbb\x1e\x61\x2e\x6c\xf4\x73\xde\xaa\xac\x26\x60\x68\xdd\x0f\x80\x64\x09\x6d\x85\x6e\x48\x17\xaf\x82\xa7\x70\x93\xd2\x91\xc6\x20\xa3\x9c\x03\xc0\x92\x5f\xb2\xe1\xe9\x6c\x2b\x63\x21\x6d\x36\xf5\xba\x4c\x91\x25\xb4\x4b\x2a\x8c\x38\xa4\x6c\xe6\xc7\xd7\xcb\x00\x72\x7e\x35\x16\x68\x8b\x39\xd8\x43\x00\x46\xc6\xbd\xce\xce\x7a\x21\x35\x0a\x52\x5b\x59\x21\x70\x3c\x6f\x44\x01\xa7\x79\x5c\xa6\x98\x1c\x0c\x1e\x73\xe0\xa3\xe2\x69\xca\x92\x42\x2f\xa4\xa3\xcf\x42\x32\x74\xd8\x61\xad\x4b\xdd\x2a\xd2\x4a\xa7\x6b\x4b\xda\xfd\x60\x87\x25\x51\x52\x34\x20\xdc\xfb\x50\x8a\x23\xcb\x04\xc7\x5c\x36\x1c\xb6\x85\x0c\xef\x5c\xf5\x41\xa0\xc4\x2f\xd0\x28\x7f\x8a\x1c\xac\x1e\x44\x3e\x08\xbb\x8f\x1e\x92\x29\x9b\x61\xeb\xcc\x85\xcb\xaa\x6c\x62\x6d\x29\x7f\x9e\x90\x96\xe6\x56\x53\x68\xeb\x23\xf7\xf7\x56\x90\x73\x8e\xca\x94\xe7\x29\x70\xd2\xaf\xcb\x94\x25\xeb\x40\x30\x14\xc6\x00\xc9\x93\xcc\x70\x45\x0a\xce\x6a\xeb\x25\xd7\x7c\x27\x82\xbc\x6d\x72\xef\xa4\x01\x86\x02\x19\xa1\x31\x38\x6f\xca\x7a\x39\x65\x6f\xea\x0a\xf3\xb0\x26\x02\xd2\xc5\x44\xe3\xf6\xe7\xea\x1b\xa4\x1c\xa2\x52\x7d\xb2\x36\x57\xca\x17\xc1\xaa\xeb\x18\x41\x20\x6f\x1f\x07\xd0\xb0\xd4\xfd\xfd\xa8\xe1\xd6\x94\x63\xf3\x6a\x0d\xb6\xe1\x16\x44\x47\x05\xed\xa9\x30\xb2\x92\x21\x61\xe5\x11\x15\x75\x84\xa0\x2d\x95\xdd\xf5\xe8\x93\xc2\x38\x8e\xac\x6a\xa0\xf6\x33\xbe\xa2\xc1\xcc\x09\xe1\x38\x43\x7a\x76\xc3\x8b\xb1\xd8\x1c\x97\x8c\x33\xbe\xa2\xad\x38\xa8\x21\xd5\x84\xdd\x63\x64\x3d\xbd\x04\xff\xf8\x8a\x3a\xe9\x67\xaf\x07\xe0\x35\xf1\x2b\x39\x94\x96\xe9\xd0\xb5\x40\x2f\x24\x1d\x76\xe3\xd3\x3f\x67\x7e\xce\x81\xe0\x11\x33\xd5\x9f\xb2\x6b\x29\x10\x39\xa7\xd6\xc1\xa1\x42\x15\x20\x65\x24\x20\x9b\x97\x81\x04\x75\x9a\xc8\x7b\x4b\x2d\x61\x96\xdc\x84\x71\x5f\x3a\xec\x7a\x38\x6d\x70\x17\xe9\xb0\x25\xdb\xa4\x19\x4e\x30\x2f\x87\x25\x68\xb6\xdf\xf9\x03\x00\xea\xf8\x1d\xa0\xad\x1d\xc3\x87\xa5\x17\x49\xee\x6e\x71\x15\x8d\xf1\x10\x35\x5a\x24\xc5\xfe\x50\xff\x7e\xd8\x56\x51\x88\x23\x84\x8c\x3e\x5e\xbd\xb9\x7c\x3b\xbf\xaa\xaa\x0f\xfd\xf9\xe3\xe5\xc7\xea\x5f\x6e\x3e\x5e\x5d\xcd\xaf\xfe\x10\xfe\xe9\xf6\xe3\xc5\xc5\xe5\xe5\x9b\xea\x73\x6f\x67\xf3\x77\xb5\xe7\xcc\x9f\xaa\x0f\xcd\x5e\x5f\xdf\xd4\xf4\x8e\xac\x58\x51\xf0\xa7\xbb\xf9\xfb\xcb\x37\xcb\xeb\x8f\x15\xc9\xa4\x37\xff\x76\x35\x7b\x3f\xbf\x58\xb6\xd4\xe7\xe6\xf2\xe2\xfa\xe7\xcb\x9b\x03\x8a\x47\xbe\xbd\xad\x5d\xfa\x14\xf0\xb1\xa3\xf5\xaf\x66\x6c\x9d\x27\x42\xc6\xe9\x1e\xb1\xf7\xf6\x66\x5b\x03\xd3\x86\x67\x6f\xb2\x13\xaa\x3c\x05\x42\x7f\xb7\x45\x85\x7a\x60\xc1\xc0\xd2\x28\x65\x96\xeb\xfb\x4e\x8e\xc4\x22\x6f\x46\x05\x7a\x33\x85\x8a\x7c\xef\x72\xd1\xfa\xaa\xe3\x19\x94\xe8\x23\x2c\x13\x79\x5f\x5d\xc0\x32\xca\xcb\xac\x48\x56\xdd\x49\x11\x03\x99\x85\xc6\xdf\xbd\x91\xef\xaf\x9d\x1c\xe5\xaa\x7d\x63\xac\xe4\x06\x9c\x02\x3c\x86\x12\x8e\x95\x75\x73\x6f\x5b\xb0\x66\x56\xae\xd2\x24\x62\x49\x5c\xf7\xa7\x60\x0a\x1b\xba\x8c\xeb\xb4\xa0\x99\xc8\xc1\x54\x35\x37\x80\x2c\x17\x67\xbc\x2c\xb6\x56\x71\xde\x65\x32\x22\x4d\xa7\x88\x72\x81\xb1\x00\xa1\xc1\x49\x8b\x7a\x5e\xc1\x97\xa0\x32\x94\xc1\x1d\x03\x59\xcc\x34\xa0\x68\xef\x88\x11\xe0\x9b\x58\xfa\x08\x27\x29\x3e\xdf\xdb\x35\x54\xe3\x44\xd7\xc5\x9c\xe1\x84\xc7\x1f\xad\x2a\x98\x69\xb7\xd9\xa9\x9d\x2a\x16\x0e\xb2\xcd\xdd\x68\x6f\xc6\xa1\x39\x16\x4e\x94\x6a\x32\x03\x95\x4e\x3f\x5d\xe4\x02\x0e\x11\x82\x02\x58\xff\x05\x40\x57\x28\xd7\x03\x52\x3c\xcc\x55\x6d\x25\xb6\x3c\x5d\xa3\xc5\x61\x86\xc6\xaf\xab\xe6\x14\xbd\x53\xf7\x42\xde\xe0\x80\x7d\x95\xed\x50\xe2\xcd\xc7\xe7\xf4\x3b\x8f\x90\x77\x61\x9a\x3a\xda\x59\x65\x73\xdd\xc0\x98\x2a\xf0\x9e\x10\xfc\x8c\x29\x1d\x9e\xb1\xd7\xa6\xc9\xad\xd7\xc9\xaf\xa6\xc0\x85\x14\xad\x9c\xa5\x80\x17\xb2\xec\x4a\x6e\x5f\x06\x6c\x14\x52\xd4\xdc\x0b\x09\x7a\x62\x28\x37\x7c\x70\xce\x8e\xf3\x9f\x37\xc7\xa2\xc7\xa1\x0f\x3e\xbf\xa4\x22\xb3\x16\x46\x79\x6c\x3f\x15\x98\x63\x33\x65\x6f\x88\x78\xc3\xfc\xe5\xe2\xdd\xfc\xf2\xea\x6e\x79\x71\x73\xf9\xe6\xf2\xea\x6e\x3e\x7b\x77\x3b\x74\xf9\x3d\x45\x5e\x54\x6d\xf5\xd5\xd3\x83\xdc\x0e\x71\x4e\x2b\xcf\xa7\xe7\xba\x46\xf9\x65\x07\x43\x72\xb8\xf6\x49\x9c\x2d\xe3\x44\x47\xe6\xf8\xdb\x2f\x85\x8c\x81\xec\xf9\xa8\xa9\xda\x5e\x54\xbd\x15\xee\x09\xe6\x9e\xb0\x3b\x08\x9e\x76\x0f\x76\x46\xbb\xdf\x01\x75\x07\x6e\xc8\x5c\x98\xc5\x1f\x9b\xfb\x81\x3b\x6d\xa6\x87\x15\x3e\x4c\x71\xa7\xb5\xad\x5a\x44\xbd\x4d\x58\xdf\x44\xeb\x92\x9b\xfd\xd1\x3e\x06\x90\xc3\x8e\x5e\x21\x06\xbe\x90\x71\x3a\x09\xd4\x52\x59\xa2\x17\x72\xc7\x65\xcc\x0b\x95\xef\x3b\x9a\x38\x6c\xf3\x0c\x97\x4d\x75\x0b\x0d\x8f\x6c\x29\x44\x6c\x47\x01\x1f\xe5\xb2\x3e\x95\x90\x97\xfa\xee\xfa\x4f\x97\x57\xb7\xcb\xcb\xab\x9f\x97\x1f\x6e\x2e\xdf\xce\xff\xe2\x90\x90\x19\xd7\x6d\xea\x88\x59\x2e\xcc\xee\x62\x69\x3e\x5a\xf7\x17\x94\x2c\xb4\xe5\x90\x4c\x55\xb2\x5e\x48\xbb\xb3\xe4\xbe\xf8\x6d\xae\xca\xcd\xb6\xbd\xa0\x7a\x2d\x3f\xcc\xee\x7e\x3a\xaa\x9a\x40\xc2\x84\xba\x66\xb8\xda\x9a\x88\xd0\x64\x4d\xfb\x1e\xc2\x48\x6b\xd5\x03\x2a\x31\x78\xb4\x2d\xca\xd0\xb1\xa3\x1d\x75\x7b\x69\x6e\x5a\xbd\xc6\x7f\xcb\xe3\x5d\x13\xe8\x2e\xd8\x37\x2b\xc7\x08\x20\x94\x51\x1e\xb3\x51\xda\xab\x96\xbf\x55\x4e\xb0\x1f\xce\x52\xb1\xd9\x88\x18\xa7\x57\xbd\x60\xf2\xc1\xd1\x16\x18\xf9\x73\xbd\xad\x17\x49\xc0\xee\x84\x83\xd9\xe1\xbd\x86\x6f\xe0\x1f\xdc\x2b\xed\x7b\xc5\x85\x15\xc9\x8e\x94\xd4\x05\x97\x1d\x81\xe4\x87\x26\x42\x73\xd0\x56\x74\x9d\x33\x97\xfc\x44\x0e\x13\x1b\x32\xf0\xeb\xa0\x0b\xf0\x72\x3a\x2e\xd4\xd5\xe3\x46\x64\x29\x8f\x84\xcb\x61\x40\x06\x3c\xb8\xd7\x1f\x13\xc0\x23\x99\x40\x49\xfe\x96\x40\x3e\x30\xd0\x14\x6f\x99\x02\xe0\xb9\xbd\xb1\xfb\xf1\xf3\xbb\x56\x7a\x2f\x6e\xc4\x7b\x05\x8e\x66\xd4\x69\x22\xe8\x3b\xfa\xa2\x40\xfc\xac\x13\x96\x3c\x6a\x3a\xd4\xbe\xfc\x33\x0d\x3c\xde\x99\xab\x8e\x6e\x6e\x99\xe5\xdc\xf4\x70\xa6\x63\x9f\xbf\xb0\x28\xf2\x5e\x32\xca\xa7\x08\x47\x7c\xc8\xd5\x2e\xd1\x62\x56\x14\x79\xb2\x2a\x43\x35\xbe\x91\x80\xb9\xca\xe5\xc4\x37\x38\xcb\x55\x5c\x46\x96\x12\x08\x5a\xeb\x61\x3f\xe4\xe5\xb3\x56\x47\xcc\xce\xcc\xec\xa3\x9b\x9b\x88\xcf\x00\xd0\xbf\x90\x5d\x31\x36\xbb\x31\x76\xf8\xfe\x3e\xd8\xa3\xfc\x94\x29\xd9\x32\x29\xba\x3b\xd3\xce\x81\x61\x89\xb5\xcc\x3e\x0e\x16\x70\x07\x6a\x8a\xa6\xcb\x8a\x63\x00\xbd\x6a\xa3\x74\x31\x80\xb8\xa3\x66\x1c\xb8\x6b\x18\x36\xa6\x9a\x31\x83\x76\xc3\x96\x6b\x34\xe7\x8b\x68\x5b\xad\x38\xb4\xa6\xca\x9a\x57\xaf\xae\x33\x8f\x4f\x73\x9b\x0c\x0a\xa3\x4d\xd0\xd1\x90\x90\x63\xbb\xa2\x80\xe6\xe4\x1c\xc7\x79\xbb\x43\x8b\xd1\xdd\xe8\xf0\x30\x80\x7d\x34\xe5\xa5\x8c\xb6\x2c\x4b\x39\x26\x93\x6f\xb9\xc6\x29\x6d\xb1\x24\x7c\x95\xa4\x49\x01\x2c\x3d\x18\xe2\xac\xf5\xb0\xb9\xe6\xf1\xfc\xde\x12\xe3\x72\x4f\xc9\xd4\x37\xe9\x4f\xc4\xec\xba\x56\x7d\x51\xd4\xae\x5f\xb2\xe1\x36\x34\x6c\x5a\x12\x62\xd7\x0f\x87\xd9\x88\x61\x5a\xfa\xb6\x8c\x1b\x59\x2a\xf1\x43\xfd\xf5\x4a\x7f\xb7\x58\x2f\xe3\x11\x2b\xc4\xf8\x3e\xe2\xf4\xa9\xf3\xc1\xb7\xae\xac\x75\xaa\x78\x87\x26\xb1\x2d\x1b\xe9\xdd\xbb\xca\x8e\x55\xb9\xea\x22\x14\xc6\x5a\xf5\x97\xde\x17\x0c\xb1\xeb\xf6\xa9\x9c\xa5\xe1\x06\xc8\x0b\x51\x24\xe3\xfc\x3d\x41\xa3\x79\x21\xce\xe0\xf5\xf6\xc2\x29\xc3\x70\x70\x9b\x1b\x13\xcd\x8b\x8c\x38\xa3\x0d\xb0\x84\x6d\xb3\xab\x76\x3a\x9f\x82\x09\x3f\x71\xbc\x12\x79\x60\x2a\x1d\xd6\x2d\xf8\xfd\x0f\x2d\xdd\xd2\x68\xf4\x9f\x4b\x6e\xf6\xc3\xeb\xf5\x2d\x72\xe5\x9c\xd2\xe8\x22\x69\x2e\xab\xf6\xed\xa7\xfe\xd5\xbb\x6a\x78\x2d\x9c\xf8\x83\x33\x91\xdb\x5a\x73\x6b\xde\x1e\xbe\x0b\xcd\x2b\x6e\xb4\x2c\x4f\x14\x70\xc6\xa8\x35\x32\x30\x76\xd3\x4d\xb6\x7e\xf7\x84\x9e\xfc\x5c\x8a\x52\x98\x09\xb4\x2a\xe3\x4d\xd3\xcb\x3d\xc2\x52\xf6\x4d\xda\xaa\x47\xb6\x2b\xa3\x2d\xb3\x85\xb3\x58\xa4\x7c\x5f\x69\x1a\x18\x89\x85\x4a\x81\xc0\xf9\x48\x36\xd9\xa8\xd4\x85\xda\x01\xc0\xd8\x97\x9b\x97\x12\x56\x39\xe3\x76\x75\xb5\xed\xef\x15\x76\xb9\x23\x43\x9b\xb7\x1f\x2e\x2f\xe6\x6f\xe7\xb5\xb8\xe2\xec\xf6\x4f\xe1\xbf\x7f\xb9\xbe\xf9\xd3\xdb\x77\xd7\xbf\x84\x7f\x7b\x37\xfb\x78\x75\xf1\xd3\xf2\xc3\xbb\xd9\x55\x25\xfa\x38\xbb\x9b\xdd\x5e\xde\x1d\x08\x30\x36\xbf\xda\x3d\x10\x3c\x20\xbf\xb3\x90\x67\xcb\x02\x6e\xfd\x0c\xf4\xd5\x57\x6c\x66\xa9\x00\x2b\x64\x95\x36\x48\x0c\xa8\x12\xd4\xc4\xa6\x58\xf2\x1b\x5e\xf0\x0b\x5e\xf0\x54\x6d\xa6\x6c\xc6\x08\x10\x8e\x40\x7f\x6d\x2c\x24\xe2\x49\x33\xa3\x83\x45\x18\x33\x29\xf2\x77\x78\x2f\x73\xa8\xd6\xc4\x50\x98\x8a\x90\x10\xdf\x66\xb5\x2d\xe4\xe5\x83\x90\x45\x09\x6c\xdd\x3c\x4d\x19\x7d\xd6\x3e\x10\x64\xec\xdb\x5a\xea\x64\x97\xa4\x3c\xf7\x8a\x74\xd7\x54\x16\xdc\x52\x6c\x5d\x1d\x41\x53\x33\x1d\xdc\x5e\xe4\x3e\xce\x19\xd4\xfb\xe2\xdd\x1c\xec\xbe\xa8\xb0\x72\x2b\xf6\xe3\x0b\x89\x0c\x78\xf4\xc5\x1d\x87\xe4\x93\x42\x91\x67\x15\x3f\x4f\x0f\x77\x4f\x44\x7d\xca\x22\xb6\x31\x88\xe7\xba\x51\xba\x4a\xda\xff\xb8\x94\x45\xbe\x1f\x6c\xcc\xdd\x41\xb6\xb5\x06\x83\x9c\xb0\x6c\x55\x95\x3a\x74\x7c\x31\x5b\xfa\x15\x58\x78\x16\x68\x49\x71\x19\x17\x7e\x41\x5c\x4b\xc7\xa5\x23\x35\x27\xef\xb7\xda\x0f\x21\x21\x0e\xf4\xc2\x4a\x95\x32\xd6\x84\xba\xdb\x25\xf2\x7c\xc7\x7f\x7d\x69\x5b\x8a\x04\x13\x4e\x2b\x02\xc8\xc3\x44\x6a\xae\x5f\x7b\xb3\xc9\xf5\x77\xd7\x42\xf6\xf4\xd7\x61\x13\xd9\xee\xac\x70\xd7\xf3\x17\x73\xc4\x0f\x3e\x88\x7d\xdb\xf8\x35\xf4\x7e\x10\xa3\x48\x0b\x1e\x0a\xc9\x72\x61\x1e\x74\xe0\xc4\x14\x31\xa7\xee\xdf\x90\x84\x50\xd1\x24\x6c\xdf\xbb\xc3\x78\xff\x49\xcb\xa6\x15\x69\xf0\x0c\x82\x4d\xf4\x25\x33\x66\x88\x3b\xb0\x2e\x6f\x4a\xba\xa0\x80\xaa\x19\xac\xff\x54\x2b\xb6\x86\x0c\x24\xd2\x1c\xcf\x05\x84\x38\x60\x28\x2c\xc3\x38\x50\x4c\x35\xc0\x0c\x76\x0a\xa4\x42\x83\xe3\x5f\x9a\x3b\xa6\xf8\x5c\x52\xec\xf6\xfb\xdf\x8d\x3b\x67\x8b\x7c\xcf\xac\x9a\x45\x98\x01\x45\x09\x80\x74\xe6\x42\xbd\x4a\x99\xb4\xf1\xce\xdd\x94\xd2\x1c\xc5\x4f\x01\x7b\x19\x1e\xd7\xac\x7d\x94\xfe\x79\x30\x49\xc8\xba\xe4\x73\x7c\xfe\xd9\x68\x44\x7f\xae\xb1\x87\xd2\xe7\x00\x92\x4e\xa5\x87\x07\xda\x8a\x47\xf7\x8f\x3c\x8f\xd1\x6f\x0b\x38\x94\x29\xfb\x49\x3d\x8a\x07\x91\x4f\x58\x24\xf2\x82\x13\x75\x97\x86\x40\x3c\x2c\x28\x2a\x67\x21\x21\x43\x03\x79\xd0\x24\xc8\xb5\x17\xc9\x66\x6b\x2e\xd1\x01\x8c\x42\xe5\x66\x3b\x2a\x90\xb5\x31\x13\x11\x91\x25\x75\x74\xc0\x3a\xe5\x0f\x4d\x2e\xb2\x63\x58\x1e\xd8\xdc\xa5\x99\xda\x38\xa5\x55\x6d\xe8\x03\xbe\x50\x87\xd1\xa6\x89\xf4\x36\x13\xb6\x51\x29\x97\x9b\xe9\x74\xca\x44\x11\x4d\x5f\x8e\x9a\xe8\x54\x60\x18\xf9\x74\xf0\xea\x54\x29\x2d\xd2\xbd\x23\xf8\x71\x09\x30\x80\xb8\xfc\xb5\x10\x52\x27\xe8\xe7\x69\x99\xfe\xb7\xf5\xa8\xc0\x97\x0d\xa2\xb4\x5f\xcf\x47\xa7\x57\x76\x94\x03\x22\x50\x23\x4a\xc2\xe7\xdb\x6f\x5e\x47\xa5\x0b\xb7\x97\x25\x95\x1c\x9b\x03\xfb\xb3\xea\x92\x34\x3f\x8a\x77\xaf\xb5\x24\x22\x29\x39\x2a\x6f\xb0\xbd\xcf\x1a\xa9\x9c\x27\x64\x71\xf6\x24\x64\x8e\xcc\xc5\x1c\xe2\x08\xb8\xad\x0f\xf7\xe8\x65\x71\x58\x97\xa2\xb5\x41\x23\x73\x5d\x7d\x52\xfa\x18\xd3\x09\xd3\xe5\xd2\x3d\xdc\xb8\x5c\xe6\x2b\xb8\xd3\xe3\x20\x1c\x50\x89\x76\x40\x0e\x96\x0f\x97\x38\xf2\xa8\x20\x3a\xa2\x0b\x95\xf3\x8d\x60\x3b\x11\x27\xe5\xae\x75\xb3\x71\xd5\x3d\x05\xf7\xa7\xd2\x72\xd7\x4d\xe3\x77\xaa\x01\xed\x2b\x89\xff\x75\x01\x9f\x1b\x6c\x40\x7b\xf1\x7e\x2b\x0f\x44\xf5\x45\xdf\x3f\xf5\xb5\x39\x29\xf3\x44\x03\xe1\xe4\x31\x29\x8f\xae\x18\x2c\x1a\x22\xa7\xfb\x0c\x7d\xce\x95\xd1\x3d\xb3\x21\x2d\x7a\x45\xe3\xa8\x42\xb8\xb5\xfb\x50\xa8\xa3\x09\x47\x8f\x11\x88\xcf\x1c\x15\xe1\x06\xb3\x31\xa0\x81\x27\xb8\x13\x14\x48\x98\x8c\x42\xb1\xb5\x4d\xa2\xbb\x17\x01\x2d\x59\x0c\x04\xf1\x8f\xc8\x71\xf3\xa7\x1f\xb5\x45\x6f\x10\xc0\xc6\x5b\x2c\x85\xff\x08\x06\x44\x1e\xbe\xb7\xb8\x2a\x6c\x21\x16\x01\xe4\x61\x31\x97\x45\x6b\x01\x1e\x76\x08\x65\xe1\x2b\x3f\xf3\x32\x6d\x7f\x9c\xca\x87\x47\x51\x6c\x6a\xf6\xcb\x2d\xc3\xae\x26\x2a\xf1\xbc\xaf\xa2\x41\x21\x87\x91\x5d\xd0\x5d\xcb\x23\x2c\xc1\xca\x38\x60\xa7\x5b\x2e\x79\xd3\xed\xa2\x88\xb6\xde\xf2\xa8\xaa\x46\x93\x92\x20\xb5\x73\xe7\xc9\xd1\x11\x34\x1b\xa2\x0f\x93\x8d\x54\xa1\xae\x87\x92\x02\x22\x53\x66\x03\x52\x61\xb1\x2c\x29\x0e\x43\xbc\x46\x32\x86\x1d\x9a\x6a\x85\x42\xe8\x0e\xb5\xb3\x12\x60\x84\x2b\x45\x82\x3c\x43\x16\x1f\x8b\x77\x22\x12\xa6\xab\x93\x66\x57\x99\x1b\x16\xb2\xfa\xa9\x46\x27\x59\x0c\x56\x92\x0b\xe4\xba\xd5\xc6\x7a\x2b\x92\x07\xb3\x50\x9b\xd3\xda\x4d\x50\xd8\x01\x9a\x73\x6f\x21\xb1\xda\x01\x61\xee\xbd\xd8\xeb\x50\x05\x8f\x66\x14\xeb\x9a\x90\x89\x69\x0f\x8d\xd7\xe1\xa1\x80\x8e\x5b\x06\xaa\xfe\xc3\xce\x32\xfc\xe8\x7b\xf3\x72\x0f\xb8\xb3\x51\xb8\x99\x83\x3e\x4b\xd1\xfb\x14\x69\x9b\xf0\xfd\x4c\x63\xe8\xf1\x5b\x80\xce\x0b\xf1\x77\x61\xca\x09\x5c\x7c\xcd\xfd\x76\x21\x89\x53\x3b\x38\xe4\xcc\x86\xd3\x1c\x36\x4a\x9d\x46\x26\xdf\x7d\x85\xf6\x05\x68\x0f\x2d\x05\x64\xf5\x93\x36\xd8\x6a\x45\x54\x17\x12\x3e\x8d\xc9\xa5\xd6\x87\xd7\xfa\xc1\x23\x41\x81\x34\xb8\x9d\x40\xc0\x20\x83\x0b\x9f\x24\xe6\x3f\x94\x53\xc4\xdb\x4f\x24\x4c\xf7\xcd\x64\x2b\x06\xcf\x22\xf0\x6e\x2f\x2f\x6e\x2e\xef\xbe\x18\x50\xd0\xa2\xf4\x46\x23\x05\x6d\x3d\xdf\x5c\xbe\x9d\x7d\x7c\x77\xb7\x7c\x33\xbf\x79\x0e\xa8\x20\xfd\x74\x04\x56\xf0\x96\xa8\xfa\x2f\x94\x2c\xc4\xaf\x27\x9d\xc9\x79\x29\x97\x7c\x44\xce\x8a\x13\xeb\xe8\x33\x77\xb0\xd0\xa6\xd4\x80\xd3\x01\x20\xde\x49\x3c\xd1\x9c\xb2\xc0\xda\x3b\x0d\xd7\x49\x9a\x42\x0a\xaf\x73\xaf\x53\x7a\x98\xe9\x54\xd8\x7f\x2c\xd5\x26\xed\xa9\x0b\xb9\xaa\x28\x41\x80\xcb\x6f\x6b\x2e\xc1\x98\xbc\x9b\x99\x0e\xc8\x13\x48\x8d\xec\x53\x23\xd8\x24\x52\xf8\x6a\xa0\xf4\x71\x29\x59\x27\x85\x34\x0d\xe2\x73\x42\xa2\xc8\xf0\x1a\x6a\x6b\xda\x19\x57\x99\x9f\xd6\xfc\xb4\x3f\xba\x16\xe2\x22\x4e\x24\x1a\xa6\x95\xd5\x7c\xdb\x3e\x75\xcf\xfd\x12\x80\x7e\x37\x23\xc9\x21\x06\x01\xea\xc2\x7e\x20\x69\x20\x50\xa5\xc8\x07\x27\xee\x13\x84\x0e\xa9\x75\xad\x9f\xcd\x56\x68\xfa\x3a\x81\x48\x05\x27\x56\x92\x28\x2d\x75\x21\x72\x72\x9b\xcc\x7e\xb9\x5d\xc8\xd7\xe6\xf8\x7a\x49\xa7\x10\x29\xd9\xe0\x27\x10\xb8\xa2\x2a\xdf\xb7\x16\x4a\xb8\x83\x7d\x87\x3e\xea\x9d\xe0\x52\xa3\xf2\x7b\x9a\x8a\xdc\xcf\x0c\xac\x8f\x10\x31\xa9\xff\x01\x0d\xab\x7f\x9f\xc4\xbf\x15\xac\x5a\x53\x5f\xfa\x95\xe4\xaf\xeb\xf3\xa9\x2b\x43\x1c\xa0\xc2\xcf\x39\x73\x5a\x32\x56\x86\xce\x22\x42\x59\xb7\x4e\xa2\x6a\xfe\xc8\xa0\xb9\x74\x87\xc5\xfd\x36\x95\x9e\x70\x2a\x0d\x38\xd7\xc3\x53\x82\x6d\x95\xd9\x40\x9d\xcc\x8b\x0f\x33\x3b\x86\x8a\x14\x40\x5f\xa6\x1b\x5b\x4f\x9d\x9a\xd4\xe1\x29\xd8\x0f\x28\xea\x34\x68\xed\xac\x85\x0a\xc7\x6b\x6a\xd9\xd8\x4e\xaf\x8a\xe2\xf3\x50\xce\xcd\x2c\xc8\x50\xaa\xc2\x92\x47\x38\x5c\x1f\x81\x14\xcd\x03\x8e\xb5\xa4\xb7\x8e\xc4\x04\x62\xad\x94\xe5\x89\x4a\x64\x77\x21\x18\xb2\x92\x4e\x8b\xb5\x08\x13\xf1\x6d\xf2\xbd\x23\xef\x18\x33\xf9\x8e\xd7\xba\xac\xce\x39\x47\x04\x79\x14\xd8\xe1\xea\xfa\xea\x32\x84\x2a\xcc\xaf\xee\x2e\xff\x70\x79\x53\x49\xc4\x7e\x77\x3d\xab\x24\x53\xdf\xde\xdd\xd4\x72\xa8\x5f\x5f\x5f\xbf\xbb\x6c\x60\x1e\x2e\xef\xe6\xef\x2b\x85\xbf\xf9\x78\x33\xbb\x9b\x5f\x57\x9e\x7b\x3d\xbf\x9a\xdd\xfc\x5b\xf8\x97\xcb\x9b\x9b\xeb\x9b\xda\xf7\x3e\x5e\xf4\xa3\x27\x2a\xcd\x68\x77\xff\xf8\xe0\x6c\xc0\x89\xd9\xba\x8c\xab\x5a\xa0\x27\xac\xe2\x81\xc8\xb3\x43\xd3\xd1\xe6\x59\xc7\x21\x55\x3e\x2e\x0c\x53\xd5\x51\xb3\xee\xe9\xc5\x4b\x2b\x5d\x97\xf1\xd3\xb6\x3d\x73\xaa\x2d\x9f\x02\x09\xd8\x6b\x00\xba\xaf\xd4\x1c\xb7\xba\x80\x64\x34\xec\xda\x0c\x22\x58\x1b\xde\x29\xdd\x23\xe3\x67\xaf\xa9\xfd\xc6\xa1\x7a\x7a\x0e\xa6\x03\x54\x36\x4f\x45\x63\xd1\x57\xe9\xe0\x63\x36\x4b\x3c\x89\xad\xa1\x60\x7f\x0c\x0e\x6e\x68\x86\x99\x39\xc1\x74\xec\x52\x99\x6c\xcf\x37\xe9\xa7\x4d\x1b\x5b\x7f\xfa\x48\xb3\xee\x35\x8e\x8d\x11\xf5\x06\xae\xa3\x31\xf5\xbe\xe3\xfa\x7e\x6c\xbd\xe9\x23\xcd\x7a\x83\xd9\x77\x54\xbd\xc1\xe1\x5d\xb4\xf3\x9f\x8c\xd8\xc4\xc2\x62\xaa\xd5\x73\xc9\xd9\xee\x91\x40\xcc\x75\x58\x1d\xcd\x02\x78\xde\xeb\x65\xc6\x87\x07\x32\xa0\x36\x6e\xb9\xf2\x1a\x1d\xf8\x2d\xfc\x0a\x2d\x5c\xe5\x82\xdf\xc7\xea\x91\xc6\xa3\x8e\x0c\x65\x83\x76\xf3\x6a\x07\x99\x3d\xdc\x1e\x11\x20\x01\x6f\x3e\x89\x28\x35\x5f\x3c\xc0\xe4\x12\x22\xb4\x46\x1b\x2c\x50\x21\xad\x33\xc8\x00\x67\x8f\xf4\xa3\xb3\x90\x68\xcd\xb7\x29\x99\x9a\x51\x35\x35\x22\xce\x07\x68\xaa\xb3\xa1\x31\xb8\xae\x83\x81\xa5\x04\x8e\x32\x07\x30\xdd\x2a\x87\x3b\x13\x74\x48\x22\xc1\x99\x9c\x9b\x0b\x4f\x2e\xa2\x44\x8b\x40\xcd\xa9\xf5\xc4\xfe\x7c\x9a\xf6\x43\xc1\x8b\x56\xb7\xeb\x60\x7f\x38\x8f\x8a\x92\xa7\xec\x73\x29\xf2\x3d\x51\xe7\xa1\xaf\x12\xff\x12\x71\x89\x99\x22\x85\xd8\x65\x90\x8e\x1d\xa6\x38\x2c\xe4\x2f\x00\x94\xc0\x21\x78\xa1\xd9\x1f\x00\xf2\x60\x1f\xa6\x43\x78\xc7\x0b\x38\x8b\xff\x8c\xdf\x70\xbf\x4d\x17\xb2\xa2\x8e\x12\xbc\x55\x11\x4a\x99\x2e\xa4\x95\x27\x88\x55\xa4\xa7\x70\xe3\x9b\xaa\x7c\x73\x4e\xc2\xbe\x66\xb2\xab\xfb\x95\x52\xf7\xe7\x42\x9e\x83\x4f\xaa\x38\xe7\x65\xa1\xce\x01\x2e\x85\xe3\xaf\xcf\xad\xfe\xa7\x15\x50\xd5\xe7\xdb\xe4\x41\xc0\xff\x9b\x6e\x8b\x5d\xfa\x8f\x3a\xdb\xfe\x7a\xb6\x49\xf3\x33\xf3\xee\x59\xf8\xee\x99\x7d\xf7\xcc\xbe\x7b\x66\x5e\xc3\xff\x97\xed\x31\xbc\x23\x7e\xe5\xe6\x2c\x9b\x2c\x64\x22\xb5\xc8\x0b\xb0\x7e\x1e\xf3\xa4\xf0\x32\x34\x7b\xf6\xe2\xbf\xff\x9b\x4d\x73\xfe\x88\xa9\x8c\x6f\x78\xc1\x3f\xa0\x7f\xf1\x7f\xfe\xe7\x05\x04\x54\x31\xa9\x27\xe3\xf9\xe7\x52\x14\x0b\xa9\x85\x59\x84\xec\xff\x2c\x24\x44\x60\x77\xfb\x65\x81\x7e\x57\xf4\x41\xc6\x9a\xfd\x2b\x96\x39\x47\x1a\xc9\x58\x9b\x92\x3a\xd2\x09\x12\x9e\xb6\x48\x46\x77\xb8\xe8\x3f\xa7\x6f\xe8\xf9\x11\xcb\xfa\x73\x5a\x5d\xd5\x56\x08\x45\x7f\x4e\xe1\x00\x4d\x15\xb7\x60\x2d\xe6\x26\x2f\xdc\x93\xa9\x72\x6d\x6b\xa4\x01\x0d\x78\xd6\x30\x7d\xfb\x5a\xb9\x45\x2a\x6b\xeb\xb9\x6f\x6c\x23\x10\x2b\xf0\x71\x08\x88\x9e\x27\x66\x85\xdc\xa2\x27\x14\x2c\x37\x6c\x39\xd8\xa4\x14\x3a\x77\xe5\xa1\xe3\x42\xff\xfe\xd5\xf9\xf9\x84\x6d\x34\xfc\xcf\xea\x33\xfc\x0f\xa0\x87\x9e\x8a\x8d\xb5\xd1\x99\x0e\x08\xd7\x1c\xe5\xc3\x23\xf1\x14\x28\xba\x2f\x41\x00\x5e\x9b\xa6\xaf\x4b\x19\xa7\xc2\xa7\x40\x56\x42\x22\xa9\xb2\x92\xf5\xe8\x18\xab\x4b\xad\xc0\x18\xaf\x44\xc4\xcd\xc6\xd7\xf8\x36\x82\x4b\xd5\xba\x10\x12\xbd\x61\xb9\x57\x62\xe3\xe8\xb9\x02\xb3\x18\xa0\x90\xbc\x20\xc8\xb9\x80\x3f\xc2\x47\x80\x51\x7b\x52\xff\x89\xed\x55\x49\xe4\xd0\x40\x79\x1a\x8b\x28\x05\x06\x7e\x4b\xfb\xc2\x72\x51\x94\xb9\x64\x9c\x65\x5c\xc6\x5c\xc3\x0c\x5c\xe7\x10\xed\xcc\x19\x6f\x56\x74\x82\x70\x5c\x55\x16\x40\x66\x84\xc8\x82\xb0\x27\x90\xbd\x3b\xa8\xf3\x24\xa8\x04\x9e\x09\x40\x22\xdc\x78\x71\xba\x90\x56\x2b\x8c\xb0\x70\xe8\x29\x8b\x54\xb6\x27\xaa\x9a\x7a\xa7\x27\xd6\x73\x46\xdd\x3d\xf1\x78\x93\xfa\xb3\x13\x96\x54\x43\x6b\x40\x14\x5e\x04\x6a\xc7\x56\x2f\xfa\x3b\x21\x23\x15\x8b\x5c\xbf\x34\xcb\x30\x71\xf7\x0e\xb4\x1f\x12\xed\x07\x03\x76\x29\x73\xb8\x91\xb7\xd0\x14\xef\x14\x75\x4c\xef\x54\xa8\xa5\xdb\xec\x9c\xc3\x4b\xe5\x5b\x47\xc1\xb4\xd5\x97\xfe\xf3\x8b\x22\x62\x42\x5c\xa7\xbd\x73\x1e\xef\x82\xc0\x25\x1b\xee\xb8\x58\x28\xda\x38\x64\x9c\x58\x69\xd9\xa4\x00\xf5\xba\x5c\xe8\x62\x21\xe9\x04\x9e\xb0\xb5\xe0\xc6\xce\x9b\xb0\x48\x3f\xe0\x66\x8c\xc7\x7d\xf1\xa8\x3c\x06\xc7\xea\x92\x00\x18\xb6\x52\xb8\x77\x12\xe3\x63\x80\x28\xe0\x51\x81\x00\x83\x4e\x15\x72\x6b\xaa\x40\x67\xb5\x6e\x88\x47\xf4\x83\x95\xb9\xa8\x4b\x4a\x85\x2a\x2b\xd0\x13\x7b\x0c\x14\xb3\x7a\x3d\xf0\x07\xb3\xf1\x60\xeb\x10\x06\x12\x6c\x8e\x60\x71\x13\x96\x16\xd7\x99\x8f\xe1\x86\x5c\xe3\xe0\x9b\xe9\x5a\x54\x3d\x1d\x01\x15\x38\xce\x6f\x61\x5e\x3d\xe8\xb0\xd2\x22\xb7\x1a\x1c\xd8\x56\x64\x06\xdc\x26\x79\x7c\x96\xf1\xbc\xd8\xdb\xe9\x9b\x26\x2b\xa0\xee\x4f\x93\x7b\xc1\x66\x79\xae\x1e\x9f\xba\x17\x3a\xb7\x96\xae\x1b\xf6\x29\x48\xf6\xb1\xb7\xfc\x56\x5e\xd0\xba\xbb\xe3\x38\x0e\xd2\x2e\xc7\x47\xeb\x77\x72\x51\xe4\xfb\xa5\x99\x88\xbb\xac\x73\xa7\x18\x94\x34\x31\xdc\xc8\x1d\x47\x6f\x5a\x73\x61\x74\xd2\x9b\x56\x46\xf5\xdb\xa1\x37\x6d\x61\x2e\x6d\xd2\x9b\xce\xaf\xe6\x77\xf3\xd9\xbb\xf9\xff\xab\x95\xf8\xcb\x6c\x7e\x37\xbf\xfa\xc3\xf2\xed\xf5\xcd\xf2\xe6\xf2\xf6\xfa\xe3\xcd\xc5\x65\x3f\x5f\x51\xb3\xf6\xde\x04\x3f\x63\xe1\x77\x5e\xb1\xbb\x00\xa8\x81\xc9\x06\x64\x7f\x93\x76\x25\xcc\x2a\xb3\x98\x13\xb9\x99\xc0\x42\x7d\xc5\x2e\xf3\x7c\xbe\xe3\x1b\xf1\xa1\x4c\x53\x80\x53\x61\x66\xcf\x45\x2e\xe0\xe2\x39\x61\x1f\x54\x3c\x0f\xde\x83\x74\xc4\xd6\x66\xc0\xf7\x79\x1c\xe7\x42\x6b\xfc\xfc\x84\xbe\x1f\x80\x87\x5c\xaa\x23\x81\xe7\xf8\x03\x4f\x52\x73\x7f\x7b\xc5\x5e\xf3\xe8\x5e\xad\xd7\x98\x3e\x33\x71\x89\x53\xec\x73\xa9\x0a\xce\xc4\xaf\x11\x70\x74\xb5\xcf\x93\x77\x6a\xf3\x15\xa0\xca\x03\xc2\x53\x1d\x97\x14\xd0\x28\x5b\xb6\x1f\xe7\xed\x1b\x01\xb5\xf2\x3d\xbe\xfa\x16\xdf\x6c\x77\x50\x16\xe9\x13\xa4\xc7\xbf\x53\x9b\x76\xc5\x18\xb0\xae\x49\xe6\x86\x02\x09\x11\x91\x6d\xa8\x0d\xd3\x89\xbc\x5f\xc8\x5f\xb6\x42\x32\x55\xe6\xf8\x27\xb8\xe6\x1b\x33\x33\x2d\xf5\x56\x80\x84\xec\x84\x3d\x0a\xb6\xe3\x7b\x34\x9b\xe1\x4e\xe0\x64\x2e\x60\xca\xc0\x29\x62\xde\x4e\x13\x69\x76\x8b\x2c\xb1\x79\x09\xf5\xa1\x7f\x8a\x1b\x97\x65\xa8\xe3\xa7\x13\xc8\xf6\x9d\xa7\x15\x7c\x1e\xb8\xca\x3c\x6e\xd2\x02\x84\x68\xe7\x06\x15\x4d\xa5\xee\xcb\xcc\x73\x59\xbe\xb0\xc1\x49\xe8\xee\x07\x95\xc4\x2c\x2e\xb3\x34\x89\xdc\xbe\xfb\xa8\xf2\x4e\xc2\x5e\x4c\xa0\x19\x7e\xea\xd4\xd3\xc2\xfa\x1a\xd6\x92\x9d\x13\x20\xe9\x7a\xa8\x7b\x9f\x99\xbc\x98\x25\x32\x4a\x4b\xd0\x07\x2b\xb5\xc8\xcf\x8a\x3c\xd9\x6c\xc0\x00\xb7\xb9\x7e\xdf\x3e\xbb\xb1\x67\x4f\x3c\x3d\xad\x2d\x4c\x3a\x4f\xd5\x26\x89\x78\x1a\x82\x9b\x3d\x2a\xc2\xd1\xa7\xda\x65\x4f\xea\xa9\x90\x07\x61\x2b\xd4\xc9\x80\x94\xe5\x02\x18\x7c\x97\xb0\x95\x2f\x69\xbb\x3b\xa5\xde\x6b\x66\x2e\xe8\x58\xaf\x90\xdc\xd4\x86\x17\xec\x09\xe7\xbf\x6d\x25\xb4\xc0\xc4\x44\x79\x6d\xa6\x1e\xa5\xc8\xc1\x82\x05\xd8\x87\x69\xa9\x54\x60\x9b\x38\x59\x2d\x87\x4f\xb6\xb2\x72\x6b\x07\xc4\xc6\xcc\xd9\x4d\xf2\x20\xe4\x97\x67\xa3\x0e\x3e\x10\xf1\x68\x2b\x96\xd6\x2e\x7f\xea\x2d\xcb\x1d\x00\x23\x37\x2b\xab\x6f\x11\x6e\xa5\x2e\xbc\x09\x57\x27\xac\x71\x73\xef\xc2\x40\x62\x4f\x46\x96\xa9\xc4\x32\x16\xd1\xfd\x17\xdf\x9a\x3d\xc8\xca\x56\x84\x71\xf6\x46\x44\xf7\xec\xe3\xcd\x1c\xb3\x81\x93\x82\x99\xad\x40\x6f\xbd\x5e\x4f\xe7\xdd\xad\xe0\x9b\x67\x60\x74\x1a\x2a\x38\xe4\x39\xe6\x9d\xcc\x9a\xa9\x10\x01\xa2\x20\x5f\xd2\x6c\x92\x94\x4b\x03\x40\x30\x5e\x58\x19\x1a\x70\xc4\x33\xbd\x03\xd5\x99\xb2\x08\xa4\xda\x52\xbe\x12\x69\x07\xe3\x62\xa6\xe2\xa5\x8d\x93\x9c\x0a\xe6\x69\x94\x65\xfd\x18\x14\x75\xb4\x79\x0c\xdc\x58\xac\x77\xf4\x20\xbb\xff\x51\x07\xf4\x1a\x2a\x24\x7e\x86\x7b\x3d\xd7\x90\xde\xbd\x4e\x36\x36\xda\x96\xac\x49\x1b\x07\x13\xfa\x41\x05\xde\xec\x97\xa6\xa4\x0f\x2a\x26\x98\x9e\x23\x31\x33\x56\x90\x20\xef\x89\xc7\x55\x84\x55\x70\x4a\xf9\x1a\x7c\x03\xba\x10\x3c\x66\x6a\x4d\xde\xc4\x2c\x4b\x13\xa0\xf4\x8d\x91\x3d\x1c\xd8\x33\x74\x15\x1d\x1f\x96\x66\x2b\x1b\x90\x7c\x7c\xb0\x40\xbc\xde\x78\xa3\x0f\x72\x99\x76\x55\x9d\xdc\x75\x9b\xea\x54\x15\x38\x97\x8f\x74\xec\x15\xba\xdf\x9b\xb6\x49\xd5\x0a\x3a\xaa\x1b\x14\xd7\xb3\x41\x9b\xdd\x29\x4f\xe2\x31\xc7\xbb\xed\x93\x6b\xf7\x6a\x5f\x05\xaf\xad\xa7\xc3\x7d\xc9\x0e\x33\x23\xc2\xf5\x30\x82\x5f\x4b\x63\x3f\x74\xd7\x86\x00\xa1\x76\x11\x42\x67\x8d\x17\x24\x37\x00\xab\xc2\x6d\xc7\x1d\xd7\xea\x6a\x5b\x4e\x1a\xe8\x26\x31\xca\x81\xbe\xf4\x5c\x2a\xfd\x83\x7c\x02\xbb\x05\xae\x5c\x47\x71\x31\x86\x33\xda\x0e\x1d\x62\x7c\x4d\x7f\xfa\x41\xac\x24\x5f\x0c\x1a\xd1\x7a\xbf\xdb\x55\x7c\x4a\x97\x3f\xc7\x8a\x2a\x0b\xe5\x5d\xfe\xd0\x9e\x39\x90\x86\x86\x69\x5d\xb0\x6d\xcc\xe3\x0e\xb8\x80\xb5\xc1\xec\xd2\x1c\x01\x42\x1d\x05\x83\xcd\x72\x61\x83\x47\x7b\x51\xb8\xe4\xfe\xd4\xaa\x82\x41\x6c\xc4\xb5\xba\xca\x6e\x62\x09\x0c\x1c\x23\x15\x44\x32\xc8\xde\x8b\xd4\x2e\x53\x12\xb0\x29\x98\xaa\xb4\x90\x54\xb8\xd5\x76\x76\xe1\x95\x4a\xbe\xdb\x84\xbc\x5a\x98\x3d\x21\xb4\x4a\x1f\x28\x8e\x16\x48\x10\x80\x2a\x9c\xa9\xe0\x85\xb9\x20\x98\xeb\x30\x04\x78\x69\x7b\x07\x38\x78\x4d\xe0\x38\x17\x9b\x44\x17\x22\x4c\x11\x0c\xdf\x7f\x32\x2d\xca\xca\x0d\xba\xaf\xeb\x3b\xb5\x28\x0f\x99\xc2\x66\xd5\x8e\xa8\xcf\x3e\x13\xf1\xdc\xbd\xd7\x3f\x19\x6a\x59\xdc\x7e\x93\xa8\x9c\x02\x38\x07\xf0\x0a\xa0\x91\xef\x49\x3b\xf1\x00\x37\x48\xc4\xc4\xc3\x3d\xaa\xcd\x0c\xd1\xa6\xe4\x39\x97\x85\x10\x7a\x21\x29\xfa\x88\xbc\x65\x21\x35\x47\x0d\x0d\xe7\x0c\xdc\x48\xe9\x02\x69\x80\xe0\x95\x35\x4f\xd2\x32\xef\xbc\x73\xe2\xac\x3c\x8a\x7b\xa0\xaf\x97\x2e\xa0\x58\xd6\x36\x68\x2e\x8b\x35\x58\x45\x8e\x3a\xa3\x1e\x3b\xac\x26\x79\x76\x34\xc1\x6e\xb9\xc3\xc7\xdb\x39\x1c\x3b\x12\x5b\x7f\xd4\xcb\x4c\x8d\xd8\xf1\xfe\xf4\xa3\xfe\xa0\x3a\x52\x82\xf5\xe7\x86\x63\xac\x27\x86\xfe\xb9\x4b\x4e\x81\xeb\x7b\x08\x3f\x1d\xba\x8f\x0f\xa2\x64\x3c\x18\xa4\xea\xdc\xbb\x60\xd6\x6e\xb9\x8c\x53\x73\x4f\xe5\x45\xed\x04\xf2\x60\x5f\x63\x17\x17\x76\x73\xec\xce\xec\x82\x44\x89\x65\xd4\xc8\xb2\x3b\xd4\x4f\xb5\xf4\xbc\x5e\x40\x5d\xed\x2b\xd5\xa4\xb9\xb6\x64\x0d\x7f\xb2\x93\x88\xa9\x5b\xb0\xdd\x53\x70\x9d\x6c\xbe\x81\x4b\xd6\xfb\xe6\x4e\x19\xd1\x52\xa4\xf3\xcb\x21\xbf\x4f\x5c\x8c\x90\x64\x63\x36\xb3\x90\x9c\x78\x21\x49\xe3\x18\x23\xaf\x10\x72\x43\x2e\x2a\xcd\xbe\x77\x99\x97\xdf\xff\x93\x65\x22\xda\xb3\x35\xf4\x35\xd0\x7d\xa9\x28\x2a\x73\x08\x8b\x92\xeb\x86\x09\x3c\x9b\xf4\x28\x92\x0d\x38\x91\x1d\x98\x05\xcd\xa7\x36\xeb\xc1\xf9\xea\x2a\x8d\xba\x03\x17\x0d\xaa\x35\xbb\xb3\x90\x44\x78\x72\x5d\x30\x5d\x88\xac\x75\x57\xaa\x18\x5d\x55\x41\xf2\x13\xcc\x2e\x2f\x87\x3e\xd0\xd6\x1d\xb1\x47\xcf\x82\xeb\xf4\x1f\x6f\xaf\xaf\x58\xc6\xf7\x80\x0b\x2b\x14\x29\xc9\x03\x19\x63\x7d\xfd\x1e\x1a\x81\x6a\xe3\xab\x8b\x0d\xfb\xd4\x02\x4c\xdb\x7d\xb7\xf4\xc5\xa6\x0d\x05\x73\x86\xa6\xa4\x59\xca\xb9\x4a\xcf\xb2\x94\xcb\x00\xfa\xab\xa7\xac\xf6\xf9\x30\xd6\xeb\xa2\x3e\x84\xa6\x81\x0a\x80\x3b\x85\xe6\x42\x5e\xb6\x82\x43\xab\x1a\xeb\x27\x85\x77\x3b\xf7\x88\x5e\xd0\xdb\x7b\x94\x36\xe0\x91\x59\x26\xc8\x2c\x60\x43\xd6\x0e\xf5\xc0\x35\x00\x12\x47\x0c\x54\xbf\x20\xfc\x42\x5a\xbd\x5f\xf5\xa8\x59\x8c\xdc\x0b\x65\xa2\xb7\xe0\x9f\xc4\x80\x00\x80\x83\x68\x7f\x41\xe4\x42\xce\xa5\x36\x03\x0a\x3e\x4d\xf1\x20\xc8\xb1\x51\x09\xc6\xcd\xdf\xbc\x73\xf1\x7d\x1c\x24\x92\x64\xeb\xe8\xfa\xc0\x30\x3b\xe5\x02\xd3\xaa\x50\x7e\x98\xd8\xff\x3d\xcf\xfa\xb2\xc6\x4e\x2e\xf1\xd0\x28\x39\xe6\x99\xba\xd5\x09\x5a\xad\xa0\xd2\x54\x49\x1d\x0b\x7b\xef\xa3\x3c\x71\xfb\x69\x25\x7f\x3e\x2c\x2a\x30\xf8\x12\x36\x2c\x13\x70\xc4\xde\x13\x90\xc0\x39\x6c\x8d\xb3\x97\xcd\x2a\x07\x0d\x1c\x60\xaf\x42\x4f\xda\x94\xdd\x0a\xc1\x3e\x41\x4f\x99\x8f\x7d\x22\x8d\x35\x80\x0b\x16\x3c\x69\x95\xc0\x81\xa7\xe7\x72\xad\x4e\xdb\x0c\xf2\x4d\x03\x8e\x76\x52\xaf\xb4\xd7\xf3\x54\xc0\x1b\xa4\x32\xca\xe7\xcd\xbf\x6f\x6d\xd7\x01\x78\xdb\x07\x7f\x27\xa7\xac\x3c\x5b\x53\x73\x3e\xc3\x10\x1f\xc3\xf0\x54\x9b\x24\xa6\x95\x13\x64\x2d\xbe\x97\xea\x51\xa2\x2d\x40\x5f\x62\xdf\x99\xf5\x07\x07\x18\x3a\x50\xd1\x2c\x28\x71\x37\x7c\x09\x34\xca\x33\xf7\x6f\x76\x8b\xb1\x22\xac\x33\x88\xa3\x68\x30\x7e\x48\xd6\x04\x76\xf3\xef\x66\x13\xf6\x7a\xc2\x2e\x26\x6c\x3a\x9d\xbe\x9c\xa0\x72\x33\xd5\x08\x5f\x41\xe4\x58\xc1\x37\xa6\x6c\x92\x8b\x58\x07\x1f\x00\x01\x24\x73\x58\x59\xb6\x30\xee\x9f\x0a\x3c\x0f\xb6\x09\x98\xc3\x48\x09\x17\x14\x57\x8f\xb6\x2a\xf1\x95\x02\x88\xa6\x88\x54\x6e\x41\x9e\xba\x50\xb9\x05\xac\x3d\xf0\x9c\x27\x12\x52\xbb\x79\x13\xae\x4b\x5f\x0e\xc8\x9d\xc5\xaf\x7c\x07\xed\x4f\xa4\xe3\xb7\x34\xdd\x74\xe7\xea\x5f\xec\x33\x72\x48\x3f\xe6\x49\x51\x98\xd3\x59\x2f\xe4\x2d\x7b\xf5\xaf\x6c\x96\x65\xa9\x60\x33\xf6\x57\xf6\x9a\x4b\x2e\x39\x7b\xcd\xfe\xca\x2e\xb8\x2c\x78\xaa\xca\x4c\xb0\x0b\xf6\x57\xd3\x6d\xa6\xbc\x2b\x65\x8e\xc3\xfd\x84\x71\x26\xcb\x14\x4f\xfd\xef\x2c\x18\xec\xa5\x6b\x17\xf7\xa3\xb3\x12\xc5\xa3\x10\x92\x69\xb5\xa3\xa3\xf0\x2f\x2e\x26\xa1\x13\xb9\x49\x45\x41\xf3\xa1\x0a\xdb\xc3\x0f\x9c\x41\x4b\x5f\x2d\xa4\xf3\xe5\xfd\xc5\xd4\xf8\x2f\xec\xaf\xec\xaa\x4c\x53\x53\x25\xb3\xd1\x98\x89\xf4\x8a\xd9\x34\x0a\x21\xa7\x8f\xc9\x7d\x92\x89\x38\xe1\x90\x48\x61\xfe\x75\x7e\x07\xa3\xbd\x2c\x3d\x67\x5e\xb8\xa6\x9d\xe0\xcc\x29\x5b\xcf\xb3\x24\x65\x3b\x39\x24\x3b\xf8\x3d\x37\xbf\xea\xab\xe3\x2d\x22\xcf\x14\x4a\xeb\x81\x0c\x56\x14\x0b\x0a\x65\x97\x8e\xda\x02\x6a\x87\xad\x2d\xab\xe5\x28\x08\x0f\xf5\x53\x37\x59\xd0\x10\x7b\xf2\x3b\xe4\x00\xed\xa2\xa1\x5b\x6e\x43\x79\xa5\x92\xe6\x0e\xb6\xa4\xa7\xfa\x19\x14\x15\x72\x8a\x2b\x3f\x57\x45\xd4\x2a\x5d\xac\x92\x41\x6a\x73\xb5\xca\x7e\x24\xdf\x05\x26\xa8\x99\x65\x9a\xa4\xe7\x66\xa9\x9e\x5f\x29\x69\xae\xad\x3a\xd9\x20\x3d\x11\xc0\x88\x50\xa6\xcd\x1a\x05\x77\x55\x93\x35\x58\x02\x60\x1f\x98\x2a\x21\xb4\xad\x30\xbb\x80\x19\x82\x74\xbf\x90\xe6\x0d\x3a\x91\x00\xe6\x9e\x38\x16\x5b\xfc\x9a\xd5\xb5\xa7\x6f\xd1\x86\x1c\x14\xde\x32\xc1\xfa\x72\x68\x4f\x98\x70\x94\xb2\x75\x82\x57\xfc\x2a\x60\x70\xa3\xd2\x2c\xbd\x07\xc6\x3d\x57\x22\x55\x72\x63\x66\x45\xd7\x26\xa0\x76\x3c\x39\x05\x58\x12\x56\x01\x0b\xeb\xac\x81\x39\x2c\xe9\x11\x1a\x12\x73\x4e\x26\xb1\xbf\xdf\xeb\x72\x65\xec\x08\xe7\x91\x75\xa7\x21\x35\xae\x2b\xa1\xf8\xb4\xf8\xf2\x47\x2d\x72\xa0\x59\x46\x84\x83\xf3\xf6\xe3\xc1\xe9\xc9\x36\xb0\x45\xc3\x16\x55\x2f\x30\xb6\xdd\x15\x42\xd1\x84\x46\x6a\xf5\x80\xf9\xf8\x35\x31\xb2\x43\x90\xb3\x6f\x67\xf3\x77\xb5\xe7\x9a\xc8\xd9\x16\x78\xed\xdd\xfc\xfd\xe5\x9b\xe5\xf5\xc7\xbb\xc6\x73\xa6\x34\xfa\xd3\x58\xa5\x7f\xdb\x7b\x4f\x01\x1f\xfc\x8c\x72\x2f\x4b\xb5\xb6\x99\x94\xc3\xcf\xf4\x86\xe0\xce\x30\x94\x4a\x48\xb2\x1d\x0a\xd3\x34\x27\x4e\x67\x3e\xb8\x5c\x52\x44\x62\x58\x65\xeb\x1d\x76\x2d\xdf\xe2\xeb\x1f\x54\x9a\x44\xfd\xa0\x37\x7b\x5c\x6d\xd5\x63\x0b\x8a\x68\x25\x00\x05\x4a\xfe\x1f\xaa\x14\x5a\xe8\x85\x88\x0a\x1f\x71\x6b\x36\xee\x7f\x35\xd0\xe6\xf0\x1d\x1c\x3d\xca\xae\xdb\x40\x80\xd3\xc5\xf0\xe0\x6c\x05\x82\x4d\xe0\x95\x47\x5f\x2b\xe4\xd2\x41\x6c\x3b\xe2\xe4\x82\xae\xf4\x3c\x6c\xd0\x8f\x5b\x95\x9a\xbb\x98\x8c\x89\xac\x74\x21\x33\x91\x47\x0a\x00\x2a\x98\x07\xaf\x58\xb4\x4d\xd2\xd8\x8b\xb7\x7c\x07\x88\x5e\xc0\xdd\xbd\x24\x59\x3e\xe1\x62\xcc\xb6\xf8\x9e\x53\xd7\x4e\x3b\xab\x57\x7e\x9a\x07\xea\xe9\x20\x7a\x7d\xd3\xfe\x17\x82\x92\x61\x57\x10\xbd\x50\x2d\x5a\x68\x3a\xbd\x52\x9f\x51\x1e\x5e\x50\x14\x5f\x5b\xf1\x4f\x7b\x71\x2a\x6a\xe3\x4a\xd3\xac\xde\x95\x40\x3a\x8b\x28\x2a\x04\x90\x68\x01\xd5\xd9\x09\x8e\xb6\x98\xa7\x80\xa4\x41\x5d\x48\x1f\x1f\x7d\xa1\x43\xbb\xac\x75\x9c\x91\x53\xd5\x82\x00\x27\xec\x45\xa5\xa1\x2f\x80\x94\x54\x2a\xf8\x1e\xc5\xb0\x2a\x5d\x03\xd3\x75\xc2\x92\x62\x21\x13\x8d\x33\x33\x17\xa9\x78\x30\xb5\x0b\x9d\xc5\x84\x75\xb1\x77\x67\xdb\x6c\xc0\x91\x73\x9b\x7e\xec\x64\xee\x61\x11\xe6\x21\xb9\x25\x07\xc7\x74\x2c\xb4\xb1\x1b\x41\x96\x43\xfc\x6a\x16\x40\x02\xb1\x10\x84\x7f\xc4\x42\xda\xfa\x01\x2a\x04\xb5\x6c\x17\x72\xbe\x86\x1c\x50\xc8\x3c\x8d\x63\xbc\x85\x5a\xa1\x06\xc7\x34\x96\x90\x73\x58\xd1\x9d\xdc\x0e\x04\xa9\x4a\xe2\x4a\x12\x0f\x22\xdf\x17\xe0\xd4\x85\x7e\x95\x82\x17\x5b\x96\x14\x13\xa0\x88\xb3\x3b\xe5\x42\xf2\x98\x94\xca\xa9\x38\xd3\x35\x30\xef\x7b\xc6\x99\x7e\x5f\xa9\x87\x3e\xc3\xf6\x54\xd4\x17\xae\xea\x2c\xe5\x72\x89\x27\xc8\x57\xc0\x7d\x05\x82\x9f\x5d\xa1\xce\x72\xb5\x74\xb4\x36\x4f\x52\xcf\x40\x13\x3a\x94\xe1\x35\x76\xac\xfd\xd0\x04\x27\x83\xa7\xb5\xb6\xd7\x13\xe7\xa7\x21\x74\x41\xce\x6c\x04\x76\xf8\x2e\xe0\x21\x61\xbc\x86\x44\xb0\xb3\xf5\x10\x26\xcc\xce\x80\x6f\x15\x9f\x34\x64\xe4\x6b\x67\x48\x7d\xd8\xc7\x43\x63\x1a\x16\xe2\x51\xf0\x98\x03\xd5\x7a\x5e\x88\x4c\xa7\x1f\xa5\x09\x95\xb1\xad\x0d\xc2\x7d\x98\x3c\x21\xd0\x0f\xe7\xdc\x3c\xed\x82\xae\xe1\x3d\x4c\xb5\x60\x2b\x9f\xd2\x47\x0d\xfb\xd4\x50\x4f\x89\xcf\xbd\x86\x7a\x4d\xd9\x5c\x32\x6b\xee\x4d\xd8\x0b\x9c\x58\xfa\x05\xb9\x20\x49\x15\x98\x62\xe7\x31\xad\x1e\xca\x56\xad\x43\x31\x30\x67\xc0\x2f\x37\x8c\x04\xf5\x52\x1b\x3e\x6b\xbf\xbc\x4e\x20\x67\xe1\x98\xb4\x74\x8c\x22\xae\xb0\x00\x3a\x24\xf1\xda\xbd\x47\xa3\x5d\x79\x6f\xb6\x6f\xb0\x8d\x77\xb1\xd7\xf6\x45\xd3\x45\x59\x49\xe7\xa9\xfd\x9d\xa9\x7c\x21\x6d\x69\xe4\x92\xd4\xa8\xa5\x54\x2f\x2a\x80\x50\x93\xcd\x1f\xcc\x54\x00\x31\x58\xf9\x2c\x50\x65\xf3\xfc\xab\xf5\x5d\x00\x40\x11\x2b\xe1\xf5\xcc\xa7\x6c\xe6\xbf\x66\x0c\x0f\x33\xc1\x77\x78\xcc\xd7\x39\x1a\xd3\xd4\x74\x4a\x52\x58\x4a\xc8\x20\xbd\x41\x97\x40\x6c\xba\x2e\xcd\x66\x14\xb0\xbf\x2e\xa4\xe9\x3c\xb6\x4e\x00\xf7\x4b\xfd\xb2\x90\xef\x95\xb6\xd9\xf4\xda\xf7\x87\xc5\x90\x52\xb7\xbd\x70\x2a\x62\xf4\x87\x37\x70\x68\x93\xcf\xbf\x26\xf1\x0f\x79\x2d\x44\x89\xb1\x57\x65\xee\x1b\x15\x71\xb9\x90\xff\x69\xba\x07\x95\xac\x9d\x0c\xbc\x5a\xe3\x12\x86\x11\x84\x60\xc9\x27\x2c\xf4\xbb\x7f\x7a\xf9\xe9\x25\xe2\xd0\x4b\x0d\xc2\x8d\x93\xea\x01\xe2\x88\xc0\xcb\x34\x85\x48\xb4\x6d\x81\x23\xa3\xf0\x9f\xe0\x7d\xb0\x1c\xba\xd4\x2d\x65\xd5\xc4\x18\xb2\xd0\xfb\x66\xb0\x77\x3e\xcf\x58\xc4\x8b\x68\x7b\x66\x6d\x39\xda\xc6\xec\xe9\x47\xc3\x87\x0a\x6e\xc6\xd2\x6a\xe7\xc2\x36\x17\xce\x7c\xe7\xd8\xf9\x2a\xf3\xc5\x34\x01\x80\x35\x77\x75\x61\x18\x47\x1e\x8a\x93\xd3\x0b\xb1\x7b\x3b\xcf\x3d\x6e\x65\xd9\xfc\x8d\x93\xbc\xe4\x92\xef\x44\xcc\x5e\x40\xc6\xd4\x0b\x3b\xf8\x0b\x99\xad\xa6\xe9\x7e\x5d\x10\xc5\x93\xe9\x94\x29\x08\x18\x1d\x38\xe5\x96\x71\xf3\x9a\x74\xa0\xb3\x3b\x2f\x5a\xed\xb6\x8e\xeb\x1b\xf7\xa5\xe1\x06\x0b\xfa\xb8\x5c\xef\xdc\x56\x21\x42\x55\x26\x75\xae\xef\x27\x6c\x95\x73\x09\xda\x13\x71\x68\x54\xf9\xd5\x09\x97\x67\xe4\x4f\xb2\x29\x14\x92\xa7\x7b\xc0\x8e\x4f\x16\x12\xc9\xa6\x80\x95\x78\x1f\xa5\x49\xc4\x36\x39\xcf\xb6\x35\x3b\x48\x3c\x08\x59\x80\x84\xe9\x8d\xe0\xfa\xb4\x68\x7d\x5e\x2f\x81\x0d\x8e\xa7\xcc\x24\xdc\x3e\xb8\xac\xd1\x83\x42\xf5\x3a\x8e\x16\x80\x6b\x89\x78\x39\x8e\x1a\xe4\x20\x81\x65\x85\x16\x8d\x38\x7a\x20\x02\x69\x1a\xc7\xec\x57\x0f\x85\xbf\xb1\x5f\x89\xb5\xc2\x82\xff\x4f\x0d\xd9\x3b\x16\x8c\x93\xb8\x0c\xe7\x55\x2b\x92\x7b\x7a\x0f\xef\xb9\xc6\x04\x20\xf2\x54\x58\xb0\xb0\xdb\x38\x26\x24\x31\x07\x3c\x67\xec\xcf\xe5\x4a\xa5\x96\x28\x6e\xfe\x86\xa9\x1c\x34\x1a\x0a\x45\x7f\x4a\xe2\x2e\xeb\x20\x91\xb1\xf8\xf5\x24\xb6\x86\xfe\x83\xde\x9a\xcd\xe6\x33\x81\x14\x40\xbd\xb1\xb0\x3b\xe5\xc2\x1c\xc2\x85\xbd\x19\x37\x9e\xd2\x75\xe4\xe2\x2c\x2d\xb6\x00\x27\x44\x20\xbb\xef\xd4\x1d\xdf\xb3\x68\xcb\xe5\x26\x70\x4d\x00\xba\x4b\x64\x2a\x47\x2d\xc3\x07\xa0\x45\x53\xb9\xcd\x86\xa5\x1c\x4f\x42\xd3\xbb\x40\x02\x82\x58\x95\x4d\xe4\xe4\x9b\x4d\x2e\x36\x40\x50\xb0\x90\x95\x2c\x75\xa0\x84\xb3\x32\x0a\xf8\x9d\xbe\x24\xdf\xa7\x61\xca\xe8\xba\x0d\x16\xf9\xde\xa5\x48\x92\x10\xa8\x5f\xcf\xf5\x6e\x9d\xb0\x44\x4c\x27\xec\x07\x0f\xdc\x15\x91\x92\x2e\xc7\xb2\x23\xc1\xae\xe6\xf2\x67\x07\xae\x0e\x4d\x4a\x8d\xf6\xba\xc3\x6f\x0d\x39\xd1\xd6\x49\xd3\x9b\xa4\x5a\xf0\xa2\x1c\x71\x06\x91\x64\xf4\x85\x79\xf9\x16\xdf\xed\xc5\xb6\xf3\xcc\x1c\x1b\x96\xce\xc8\x3c\x6f\x4e\x4e\xf3\x6d\x4f\x77\xdc\xd6\xd7\x07\x1d\xc8\xa9\xea\x76\x20\x3f\x85\xa9\x6e\x39\x2b\x0e\xfb\x90\xd3\x0e\x1e\x86\x9e\x36\x8d\x75\x11\x5b\x90\x2f\xc1\xf7\x75\xfd\x1a\xdb\xb2\x03\x64\xb9\x8a\xcb\x48\xc4\x66\xe5\xc2\x7d\x08\x11\x31\x8e\x0e\xa2\xb2\x49\xb6\x1d\xb4\x15\x4e\x1b\x38\x75\xbf\x94\xcf\x61\x10\x8d\xb0\xeb\xfe\x8f\x1d\xfe\x06\x6b\xf1\xb5\x75\x7a\xb8\x3e\xb1\x9f\xf2\x91\xe7\x94\xfb\x7c\x95\xfc\x57\xe5\xc9\x26\x91\xbc\x50\x39\xfb\xce\x25\x7d\xbe\x74\x8a\x41\xdd\x16\xc2\xc8\x6d\xa2\xd2\x45\xb8\x4d\x7c\x51\xc3\xa3\x6d\x92\x9a\xa7\x74\xc1\x77\x59\x48\xa7\xe9\xf4\x98\xa9\x67\x52\xec\x04\x67\x9b\x80\xef\x34\xd1\x3e\xb7\x6d\x21\x29\xe2\x80\xe3\xa6\xf2\x90\x0f\xba\xf3\x6c\xce\xca\x62\x79\x24\x45\x0c\xbe\x3c\xce\xf1\x44\x30\x84\xf7\x3c\xeb\x27\xdd\xe0\xe4\x72\xc0\xe4\x1e\x27\x52\x6d\x2d\x95\xea\xfc\xec\x57\x5c\x18\x49\x02\x5a\x0f\x9d\xdf\xbc\xb3\x81\x22\x7f\x1f\xac\x5c\xb0\x60\x20\x90\x7d\x50\x83\x55\x81\x57\x7b\xb7\xad\x99\x53\xdc\x32\x75\x5c\xa4\xaa\x8c\x19\x6d\x6a\x14\x86\xcf\xa7\x78\x3a\x02\x1d\xe8\x74\xda\xc5\x8d\x36\x52\x09\xd6\xed\x3f\xf0\x5e\xfb\x0a\x84\xdf\x3a\x76\xe0\xde\xa5\x4f\x3d\xfb\x6c\x43\x4f\x3d\x0d\x63\xef\xb6\xe3\x51\x63\xef\xbc\xe0\xc0\x4d\x36\xce\x41\x0a\xf7\xd1\x24\x4e\x61\xbd\x85\x01\x84\x16\xf6\xd4\x4a\x60\x56\xdf\x9f\xfc\x39\x9b\xc1\xdc\xff\xa9\x8c\xe7\x42\x16\x4b\xf8\xe2\xb8\x8f\xc1\x47\x3e\xc0\xeb\x15\x83\x69\x90\x23\xf8\xdf\xef\x14\xfa\xf7\x2d\x11\xc9\x7f\xb0\x5b\xf2\x69\x99\xfd\x2a\x01\x10\xa9\xbe\x67\xdf\x25\x80\x39\x0a\x62\xa1\x6e\xe0\x3a\x86\x8b\x1a\x74\x44\xef\x05\x0d\xaa\x6c\xed\x83\x1a\xe4\x6b\x0f\xa1\x6a\x28\x85\xdc\x7b\x94\x39\x6b\xb6\x5a\xfb\xb7\x80\x9c\xfc\xaa\xf2\x6f\x20\x92\x34\xe3\x97\xb2\xff\x12\xb9\xf2\xe9\x20\xe8\xac\x0a\x0b\xee\xb5\xd7\x8f\xd7\x55\x45\x7b\x1c\x15\x3d\x43\x49\x3b\xf8\x0b\x71\xbd\xa0\x47\x61\xb5\xb7\xd7\x91\x2e\x9a\x7a\x11\x2d\x3b\xf4\x0b\x06\x55\x25\xb8\x78\x86\x7a\x04\x49\xed\x30\xb3\x0b\xf4\x1c\xfc\x15\xc4\xa6\xb8\xe3\x19\xe1\xfb\x08\x4a\x5c\x0f\xde\x4c\xa1\x11\xff\xfe\x97\xff\x98\x76\x29\x66\x43\xd5\xc7\xc2\xa5\x5c\xe5\xdf\xe6\x89\x90\x31\x04\x63\x79\xdc\x94\xd6\x91\x15\xef\x7c\x65\x7b\x36\xd3\xf0\x49\xb2\x26\xdb\x8f\x5a\xbd\xc4\x49\xf4\x05\x22\xfa\x7e\x93\x75\xcb\xb7\x12\xef\xeb\x32\x25\xf4\x32\xde\x4b\xbe\x6b\x6a\x8c\x3f\x6b\x1d\xf7\x89\x48\x63\xa8\x22\x7d\xfd\x50\x54\x2a\x16\xd1\xfd\x58\x9b\xe0\x68\x62\x70\x11\xdd\xb3\x9f\xee\xde\xbf\x43\x1d\xc8\x44\x2f\xe4\x15\x2f\x92\x07\xf1\x31\x4f\x5d\x38\x80\x98\x5e\xf2\xd4\xae\x91\x2a\x51\x6d\x40\x8a\x62\x59\x6d\xad\xe1\x10\xf2\x88\xef\xf6\x67\xab\x32\xba\x17\xc5\x79\xce\x65\xac\x76\xd8\x8c\x73\x5d\xae\xd7\xc9\xaf\xd3\x82\xe7\x1d\xa4\xe2\xe8\x47\xf8\x8a\x76\xae\x97\x8a\x29\xbc\xcd\x8b\xa6\xee\x23\x64\x7d\x92\x00\x71\xc5\xb8\x85\x2b\x70\xce\x77\x02\x58\xe1\x58\x95\x90\x1f\x4a\xc1\x44\x4a\xd0\xad\xd3\x9a\x10\xf4\x8a\x54\x71\x3f\x05\xc6\xfd\xa7\xa0\x56\x55\x65\x66\x5b\x29\xaf\x05\xb7\xe3\xf7\x78\x3f\xdc\xe4\x42\xeb\x09\xd3\x0a\x6a\xbc\x90\x16\x8b\x6e\xf3\xa5\x00\xf7\x02\xbc\x92\xe9\x9e\x45\x2a\x4b\x40\x3a\xcf\xb5\x6b\xab\x1e\xc1\x4f\x1f\xa6\x0d\x82\xda\x69\x29\x8b\x24\x65\x7c\x5d\x90\x13\x1f\x48\xb4\xad\x68\x8e\x9e\x2e\x24\x84\x62\x23\x68\x3e\x40\x24\x5c\xf8\xc5\x35\x42\xb3\x35\x8f\x92\x34\x29\x88\xda\x07\x92\x8c\xb8\x69\xaf\x39\x0f\x4c\x5f\xe6\x7c\xcf\x53\x7f\xb1\xe2\x69\xe9\x33\x25\xcf\xb4\xa8\x53\xc7\x75\x3b\x3e\xfb\x4e\xdd\x13\x2e\xbc\xa7\x1c\x3e\xcd\x2b\xad\x53\x72\xf5\xe7\x78\x12\x5b\xfc\x6d\xc5\xd4\xf5\x8c\xbe\xee\xf8\x81\x98\x44\xc7\xa5\x7a\x6a\xf5\x77\x9a\x5f\x18\xd1\x7b\xed\x46\xd8\x17\x72\x17\x74\x71\x0b\x0f\xa9\xbe\xf5\x76\x7f\x50\x2a\x3d\xd5\xe3\xcd\x53\xbb\xa1\x2e\x41\x92\xf2\x94\xeb\x1a\x4e\x00\xe7\x38\x9a\xbf\x71\x31\x6d\x47\xd6\x5b\x15\xb2\x21\xb8\x15\x55\x01\x36\x0a\xa8\x44\x0f\x12\x5b\x67\x2d\xa0\x86\x91\x88\x72\x28\x03\xd1\x50\xd6\x74\x6e\xba\xe0\x03\x8e\x00\xee\xeb\x08\x84\x86\xb5\x1a\x8e\x72\x86\xa1\x80\x64\xed\x53\xce\x31\x16\x12\x9f\xba\x7e\x0c\xbe\x6d\xfb\x13\x65\xab\xcd\xf9\x44\x56\xf2\x42\x06\x16\x31\xb2\x15\x59\xc8\xbe\xeb\xb5\x36\x7f\x59\x65\x1a\x9e\xec\x2f\x3b\x85\xdd\xba\x37\xa0\xf2\x26\xd4\xa9\x02\xac\x45\xa4\x76\xab\x44\xda\x14\x70\x72\x22\x83\x29\x3f\xb3\xe4\x81\xce\xe1\x6f\x4d\x72\x54\x2f\xa8\xf5\xbd\x33\x23\x42\x1e\xc6\x70\xcb\x3a\x74\xdd\x0d\xef\x4f\x4f\x4b\xc4\xdd\x11\xc9\xab\xb7\x20\xd1\x8c\xa7\x8f\x7c\xaf\x41\xcb\x55\x98\x5d\x71\x8d\x8e\xd3\x6a\xfd\x27\xc1\xf1\x6e\x89\x29\x49\x18\xbd\x24\x89\x67\x6a\x4b\x82\xbc\x18\x22\xb5\xaa\xb5\x9e\x6f\xe8\x85\x6e\xef\x9c\xaf\x13\x0b\xc9\x7b\x63\x21\x18\xe4\xfd\xdb\x08\x7f\xf4\x38\x59\x4f\xf4\xf5\x06\xc7\x24\x5a\x64\x04\xc3\x81\xc4\x28\x17\x02\x9e\xb0\x1d\x4f\x24\x2d\x03\x54\x06\x8b\xc5\xaa\xdc\x6c\x3a\x5d\x90\xdf\x7e\x2c\xa3\xba\x4e\xfe\xee\x7d\xcd\xbd\x8c\x59\x4f\xe1\x8d\x9d\xdb\x2f\xa1\x7b\xd8\xdc\xab\xbe\x8c\x03\xf6\x2b\x7a\xbb\x5b\x43\x4e\x8d\x49\xf4\x34\xde\xee\xf9\x10\x6f\xb7\xc5\x4e\x41\x0a\x1b\x5d\x57\x2d\xbe\xe5\x37\x37\xf8\x97\x71\x83\x0f\x9a\x14\x48\x9b\xb2\x4c\xaa\x06\x7a\x4f\x0d\x8f\x64\x5f\x73\x34\x9d\x50\x2b\x52\x59\xd7\x42\xc6\x9a\xad\x78\xf4\x0c\x74\x6c\x70\x3a\x9e\xee\x6f\x3b\x00\x2e\xb9\x55\x3b\xc1\xe0\x53\x1a\x35\x25\x18\x65\x09\x4e\x00\x0d\x6a\x1a\xe8\x11\x19\x84\xf7\x80\xe3\x14\x91\x21\xb1\x37\xaa\xbf\x93\xe2\x91\x99\xd3\x6a\x12\xc2\xe3\x82\xe1\x01\xb1\xa1\x97\xc6\x3a\xac\x60\xe9\x1d\x25\x42\x2e\x36\x3c\x8f\x21\x83\x83\x96\x64\xca\xa3\x7b\xf3\xdf\x50\x3f\xfa\x22\x41\xf8\x2c\xef\x39\xc2\x4a\x7d\x69\x89\x8c\x72\x20\xbb\x22\xb4\xa0\xaf\x1f\xbe\xae\x19\x8f\x72\xa5\xd1\x29\xe3\x34\x3a\x21\x83\x18\x0c\xd8\x87\x24\x2e\x79\x8a\x5f\xec\xf4\x64\x8f\x85\x87\xd5\x01\x3d\x81\x9c\x4e\x13\x2d\x46\xc3\x81\x1c\x40\xd0\x8d\xd3\x85\x7c\xe3\x02\x12\xaf\xd8\x47\x2d\x08\xc5\xa5\x2d\x21\x71\x6f\x4d\x9f\xcd\x7c\x68\x60\xee\x3a\x6d\x88\x9e\x0e\xb0\x20\xe6\xa0\x23\x74\x77\x4f\x1c\x20\xf5\x3b\x65\x50\x46\x93\x93\xce\x03\x4d\x5f\xdf\x2d\x78\x4f\xc8\x05\x8f\xf7\x21\xf5\x59\x22\x19\x44\xc1\x18\x8f\x77\x89\x34\x8b\xc0\xea\xc6\xb9\x93\xc6\x52\x48\x23\xa4\x17\xe4\x55\xd2\xb4\xb6\x09\x6a\x26\x85\x31\x2e\x79\x9e\xa4\x7b\xb8\x4f\x64\xb9\x38\x0b\xbe\x13\x8c\x0f\x65\x14\x01\x19\x36\xd1\x74\x94\x5a\xac\xcb\x14\x6f\x1d\x70\x2f\x77\x0d\xa0\x1d\xe9\xe3\x7c\x62\x0c\x8e\x82\x44\x0d\x82\x0f\xa3\x54\xd8\x53\x64\x67\x34\xa2\x81\xe3\x22\x5a\x9e\x9a\x2f\x07\x10\xf9\x56\x3d\xda\x54\xb2\x47\xee\xb1\xc2\x5d\xa7\xeb\x93\x45\x31\xfa\xed\x50\x7b\x03\xb4\xfb\x14\x76\x7e\x5c\x09\x5d\xd1\x6f\x22\x76\x7b\x53\x22\xa1\x39\xa4\xb6\xe9\x3d\xc3\xa5\xc6\x8c\x34\x33\x96\x70\x7e\x59\x47\x47\xd5\x31\xcc\x5c\xeb\x12\xad\x24\x5b\x94\xbf\xfb\xdd\xef\x05\xfb\x1d\xa4\xe8\xd1\x7d\x04\xe3\x4f\x40\xce\x87\xa5\xc3\x96\xed\x3e\x20\x90\xb9\xaf\x31\x22\xac\x0d\x02\x6a\xf3\xe1\x01\x44\xc9\xa3\x2d\xd3\xe5\x0a\x11\x82\x9c\x42\x18\x5c\x3a\xee\xdb\x77\x0a\xc0\x7e\x78\xb2\xdb\xda\xff\x2f\x71\xd8\x23\xff\xfc\x42\x66\x0a\xe9\x99\x01\x5a\xb9\x12\x6c\xc7\xf3\x7b\x90\x13\x24\xcd\x78\xc6\x0b\xf6\x5d\x22\xa6\x55\xf7\xfd\xcb\x4a\x7d\x28\x60\x82\xb4\xab\x2c\x2f\xa5\xb4\xfa\x28\xcc\x18\xa6\xde\x97\x3e\x59\xc8\x55\x19\xde\x3d\x2b\xce\x78\x3f\xb5\xc0\x21\x0f\x9b\xad\x02\x2e\x0e\xaa\x14\xd7\x81\x96\x3d\x1b\xe0\x95\x5f\xc8\x67\x72\xcb\x77\x39\xfc\x3e\x90\x0d\x66\x9d\x79\x41\x3e\x00\x34\x37\x94\xf0\x84\xe1\xc0\x69\x0f\x46\xce\x07\xd0\xf1\x9c\xb0\x9f\x92\x07\x31\x61\xb7\x19\xcf\xef\x27\xec\x0d\x86\xd7\xfe\xa8\x56\x6d\x3e\xbc\x06\x61\xc3\xc9\x7e\xbc\xe3\xdc\x58\x7d\x44\x26\xed\xd6\xff\x2f\x4d\xa5\xff\xae\xd8\xf2\xdf\x26\xe2\xad\x83\x4b\xe3\xef\xdd\x13\x71\x20\x0c\xfc\x1b\x38\xec\xef\xf2\x56\xdc\x4f\xa3\xf1\x0f\xe1\xff\xda\xfd\xcb\x5a\x5c\x60\x7b\xd2\x2e\xd7\x8a\xfa\xfa\xb6\x12\x87\x93\xb8\x7e\x28\x37\xf3\x87\x87\x2d\x05\x4a\xcf\x8e\x5d\xea\xf8\x08\x50\x3b\xbd\x6a\xfb\xeb\x22\x55\xba\xcc\xfb\x17\xff\x4d\xb5\xd6\xf6\xeb\x2d\x54\x9a\x30\xd9\x76\x2b\x01\xac\x00\x43\xe1\x1d\xf8\xd8\xf2\x3f\xd5\x6a\x09\x58\xa6\xd3\x56\x78\x5b\x71\x56\x9c\xc7\x45\xc4\xa8\xaa\xfe\x84\xbc\xcd\x04\x30\x3a\x79\x53\xd4\x07\x04\x6a\x33\xcc\xb9\x46\x16\xd2\x12\x5c\x63\x46\x6a\x9e\x0b\x60\xe2\xcd\x05\x68\x4e\xb1\x8c\xe7\x0e\x50\x60\x2d\xa2\xe0\xe6\xe3\x41\x27\x61\x16\x19\x24\x83\xd2\x7d\x6b\x25\x84\x74\xbd\x3d\xc6\x94\x30\xd6\x41\xbd\xf7\x09\x4d\xf6\x28\x58\x84\x89\x0a\x1d\xfa\x78\x8d\xf7\x82\xbb\x20\x98\xdc\x1b\x51\x04\xbb\x79\xcd\xb4\xa8\x2c\xcd\x4a\x84\xea\x9b\x42\xd4\xb7\xc6\xa0\x6b\xe4\x57\x15\x07\xca\xa0\x98\xde\x53\xf8\xcb\x3f\xf0\x62\x8b\x17\xda\x9d\x2a\x04\xee\x99\xc8\xc2\x83\xf3\x05\xbd\xce\xab\x54\xad\x40\xec\xc9\xfc\xd2\x75\x37\x8c\x68\x69\x0f\xea\xba\xe6\x80\x0d\xd9\x19\xcc\x6e\x02\x99\xac\xb9\xd0\x40\x68\xd2\x8c\x52\x0d\xc5\xff\x8e\xbb\x74\x37\xab\x6b\x36\xfd\x37\x8d\xcb\x76\x93\x01\xdf\x2c\x6b\x00\x83\x5e\x1e\x91\xa1\x72\x19\x66\x83\x1a\xe3\x80\xc8\x80\x29\x0c\x8c\x7c\xa0\xb5\xf6\x5a\x4d\xe1\x85\x9c\xe1\x2f\xc1\x21\xc0\xbd\xd2\x8b\xc3\x5b\x92\x7c\xa4\x5b\x7f\x98\x1e\xca\x66\x21\xc2\x8f\x3c\x04\x13\xef\xcb\x84\xcb\xc0\x04\xb2\x06\x65\x91\xe4\x82\x49\x40\x21\x2c\xa4\x2e\x57\x67\x9e\xf8\xc3\xdc\xe2\x1e\x80\xac\x46\x8b\x8c\xc3\x55\x06\xf8\x80\xce\x5a\x8e\x61\xf4\x4c\x7a\xc5\x06\x4b\x90\xc7\x53\xda\xfc\x21\x17\x11\x33\xcf\x5d\xdb\x5d\x39\xe6\xb2\x06\xb7\x68\x9b\xf5\x8c\x87\x5d\xdf\x7e\x01\x9a\x32\x90\xe1\x78\x83\x28\x8a\xaf\x7d\x80\x87\xd1\xd0\xa1\x47\x37\xc4\xd3\x16\xf2\xff\xda\xb3\xa1\x1b\xb4\x3b\x62\xa6\x9b\x9e\x31\x47\x54\x27\x98\xb8\x52\x37\x7b\x85\x0c\x8c\xc0\xee\x4a\x35\xa6\x7c\x5b\xa9\xdc\xe2\x5a\x42\x05\x05\x45\xe9\xa8\xf0\xeb\x43\xa2\x03\x3a\x6d\xf8\xda\xad\x10\xec\x55\x2e\xd6\xaf\x3e\xe5\x62\xbd\xb4\x23\x3d\x85\x06\x4d\x4d\x8b\x9a\xa4\xda\x03\x27\x87\xce\x94\x6c\x27\x17\x3c\x40\xfe\x59\x6b\x12\x96\x13\xb4\x29\x59\x33\x2f\xb4\x67\xda\x03\x0c\x0b\x22\xae\xb3\x7d\x37\x6a\xf6\xc5\x8f\xb9\x2e\x24\xd8\x00\xa8\x55\x87\x40\xdd\xdf\xff\xf1\x56\xe9\xb3\x21\xc7\xdb\x5d\x15\x32\x63\x37\x7b\x2e\xdd\x81\xd7\x0d\xad\xfe\xb2\xe8\x6f\x18\x40\x9d\xf1\x47\x49\x3c\x31\xa3\x5c\x4f\xc3\x8e\xb5\x76\xa9\x7c\x73\xac\x35\x30\x70\x7e\x95\x49\xeb\xe9\x4b\x9c\x9a\xdb\x24\x10\x42\xe6\x69\x1a\x6a\x16\xf8\x48\xdb\x42\xfa\xbc\x4f\x63\xb5\xa6\xa9\x75\xe1\x55\xec\x0d\x62\x05\x8a\x21\xe1\x56\x4c\x2c\xa9\x09\xd1\x01\x52\x3c\xec\x6c\xc5\x41\x65\xd3\x29\xf9\x1c\x5a\xcd\x4f\x75\x89\xfc\xc6\xf2\x8e\x0f\x44\x9e\xf1\xb3\xcb\x7b\xb1\x1f\x5d\xd7\xf6\x48\x47\x40\xd9\x00\x8b\xd9\xee\xb2\x11\xcf\x73\x8b\xa2\xa7\xaf\x32\x73\x57\x5a\xf3\xa8\xe2\xe6\xec\xa8\xe7\x56\x44\xf7\x99\x4a\xe4\xe8\xbd\xa8\x42\x21\x01\x93\xbd\x60\xbe\x34\x77\x3b\x1c\x74\x38\x56\xec\x49\x6c\x88\x06\x78\x85\x85\x86\x7a\xb2\x33\xce\x9c\x8a\x69\xf7\xb4\x7b\x6a\xff\x85\xf0\x67\xc3\x33\xf8\x62\x5b\xe2\x43\xb5\x53\x85\xb7\x38\x76\x2a\x4c\x9b\xbc\x91\x5d\x35\xb0\xb3\x39\xab\x50\x04\xb6\x76\x29\xb8\x20\x7f\xf3\x0c\xfd\xe6\x19\xfa\x1b\xf7\x0c\x7d\x49\xb7\x10\x60\x63\x9e\xd3\x27\xd4\x13\x20\x3f\x61\x39\xba\xaf\x9e\x2a\xe9\x8d\xd6\xf1\x24\x90\x9e\x0d\x32\x09\x9b\x40\x7f\x4b\x34\x51\x80\x70\x77\x74\x2f\x64\x67\x8c\xde\xd2\x03\x75\xea\x13\x3f\x2d\x82\xa5\x8d\xdd\x28\x78\xbb\x1f\xca\xe2\xa1\x4e\x44\xca\xdb\x46\xb8\x61\xd6\x09\xd8\x9e\xa6\xe1\x67\x00\x1a\x53\xb9\x23\x8e\xd6\x94\xe5\x86\xc1\x48\xa4\x21\x42\xb0\x54\x8d\x6a\x79\x28\x26\xce\x7e\x78\x99\x29\x95\xb6\x42\xe3\x9e\xb4\x03\x1b\x89\x32\x43\x3b\x6f\x8e\xc6\xa8\x0e\x01\x63\xb6\x17\x7d\xd2\x85\x4f\xd1\xc0\x7c\x0c\xd0\x9a\x80\xd9\x14\x97\x90\xab\xe8\xbb\x63\xea\x33\x9c\xb8\x73\xb8\x10\x46\x6c\x25\x22\x0e\x3a\x8b\x16\xbc\x17\x71\x97\x7d\x12\x92\x0e\x35\xd2\x41\x74\xf3\x3b\x1d\x51\x4b\x28\x77\x99\xb4\x09\x4b\x8c\x5d\x5c\x35\x0b\xc1\x42\xcb\xb1\xe6\x16\x49\x62\x69\x0d\x0f\xc9\x6a\x5a\x0e\xe7\x65\x94\x72\x3d\xd0\xb0\x6e\xdd\x77\xe6\x54\xd0\x05\x94\x33\x7c\x23\xfd\x09\xd2\x71\x76\x03\x91\x3b\x0b\x39\x73\xb2\x92\x1e\xfb\xe5\x90\x7b\x18\x2e\x45\xcc\x62\x63\x68\x90\x2b\xd1\xdf\x5c\x26\x4c\x97\xd1\x16\xd8\x20\xab\xfb\x54\xb8\x6f\x35\x57\xec\x64\x21\xcd\x85\x08\x5c\x2d\x3b\x0e\x79\xe7\x8f\xc6\x58\xd5\xc9\x7f\x09\x07\xcf\x22\x72\xac\x10\x91\x85\x17\x27\x25\x5b\xd1\x6b\x96\x98\x13\x01\x16\x1e\x53\x52\x66\x31\x2f\xc4\x74\xe1\xd1\x36\x09\x7a\x3a\x2d\xca\x83\x4c\x66\x1d\x36\x2c\xc4\x31\xd6\x76\xda\x34\x59\x8b\x68\x1f\x35\x74\x76\xfa\x69\x18\x7e\xbb\xb6\x7d\x5b\xd7\x36\x64\xb1\xc5\x9c\xc1\x31\x5d\x4b\x55\xbd\xf1\xaf\x9f\xd6\xb9\x82\x05\x35\xd1\x23\xfa\xf9\x0b\x5e\x3b\x5b\x6c\xe0\x71\xf6\xfc\xe0\x7b\x50\xff\x71\xe6\x2f\xb6\xfe\xb0\x0e\x28\x06\x1a\x66\x61\x18\x5c\x2c\xc2\xa9\x63\x0c\xda\xc1\x61\xfd\x6e\x16\x97\x6f\x0a\x9c\x34\xe4\xe2\x6a\x2c\x6e\x07\x57\xba\xb2\x96\xb6\x14\x78\xde\xf5\x58\xdc\x01\x6b\x3a\x2f\x5e\x68\xd7\xeb\xd5\x1d\xd0\x62\xff\xdf\x25\xba\xf8\xb9\xa6\xc9\x79\x9c\xa8\xe7\xb3\x99\xa6\xb6\xaa\x58\xcd\xa1\x16\xd5\x4d\xd5\xe6\x51\x6b\x3b\xe7\xe0\xf2\x64\x55\xd8\x4c\xbd\xc7\xdc\x83\x3e\xb9\xfe\xfa\x84\x47\xd3\x63\xce\xb3\x4c\xe4\xf6\x20\x6f\xd8\x5a\x20\x69\x06\x5f\x01\x4d\xc2\xad\x40\x61\xe4\xda\x2d\xd7\x6c\x25\xb5\xa2\xe1\x31\xe8\xba\x69\xfb\xc8\x5d\x95\x69\xda\x39\x72\x87\x95\x92\xae\x3e\xbe\x7b\xb7\xfc\x79\xf6\xee\xe3\xa5\x6d\x7e\xab\xf2\x50\xf0\x58\x67\x9f\xb8\x9a\x50\x9f\x78\x6d\x43\xf3\x59\x61\xc5\x99\x95\x6f\x35\x3a\xb9\xca\x34\xad\xaa\x52\x2d\xe4\x27\x2a\x07\x60\xda\xa8\xb8\x69\xfa\x8d\xf5\x76\x5c\xf5\xfb\xf0\xd8\x27\x53\xf8\x27\x7c\xf7\x8c\xf9\x46\xbc\x02\xed\x44\xd2\x64\x6b\xef\x57\xca\x86\x39\x61\x39\x20\x18\xb8\x6b\x39\x3c\xb5\xee\xde\x71\xcb\xe3\xa3\x04\xc6\x6f\x11\x5b\xb9\xbc\x27\x59\x1d\xd8\x77\x9f\xaa\x71\x6a\xb7\x97\xc7\x78\xa5\x81\x72\x27\xa8\x96\x06\x1a\xd0\x5e\x50\x6c\x21\xd1\x07\x6a\xea\x54\xa8\xee\x3a\xb1\x39\x99\xb7\x29\x97\x9b\x92\x6f\x8c\x75\x6b\x3f\xbe\x90\xbb\x64\xb3\x45\x9e\x8d\x32\xf3\xf8\x64\xce\x24\xd0\xb1\xd4\xa6\x50\x0d\x9f\x9c\xc8\x85\xa4\x36\xc9\x8d\x2f\x1e\xb1\xb2\x7f\xbc\x75\xcd\x21\x50\x3a\x16\x44\x82\x6f\x72\x21\x71\x70\x91\xff\xc3\x46\x42\xe0\xc6\xc2\x8b\xfa\xd4\xe5\x10\xbb\x44\x51\x74\xb3\xa7\x6f\x20\x26\xb3\x90\x2e\x45\x17\x3d\x47\xd4\x86\x40\x18\x04\xab\x74\x78\x3f\xb1\x83\x61\xd7\x04\xd5\xad\x7d\xd6\x9f\x7c\x06\x98\x05\xb7\x1c\xa1\xee\xdc\xdc\xc6\x06\x7a\x0b\x79\xb0\x71\x74\xf1\x36\x40\x5e\x76\x7b\x6d\x6c\xbb\xf0\x99\x4e\x68\xab\x2a\x57\xe9\x88\x2a\xe1\xf3\xbd\x95\xc2\x2d\xb9\xbf\x52\x03\xae\xc3\x37\xb5\xa5\x65\xa6\x69\xdf\x67\x57\x4a\x75\x8c\xcb\x13\x06\x14\x2b\x95\xa2\x17\x0e\x75\x46\x19\x15\xc7\xcc\x97\x01\xc9\x8a\xf5\x2e\xb2\xbb\x4f\x5f\x85\xd2\x44\x1f\x55\x1d\x6f\x3f\x0d\xae\x91\xb3\x10\xe8\xb0\x1b\xb5\xc3\xd2\x39\x57\xd9\x60\x3b\xb6\x49\x8a\x27\x59\x99\xe4\x04\xb7\x17\xb3\x78\x50\xc3\xd8\xcc\xff\x89\x9b\x44\x13\x3f\x72\x13\xa8\x64\x54\xe6\xda\x6c\x97\xb4\xdf\xd1\xae\xad\x72\xc6\x17\xd2\xa6\xaa\xd9\xed\x78\x66\xc1\xb9\xb9\xfb\x2b\x26\x80\x66\xc8\x57\x0f\x16\x6b\xc1\x94\x14\x76\x37\x5c\x48\xab\xad\x3d\x61\x7c\xa5\xad\x64\x35\x97\x7b\xa7\x23\x9d\x38\x91\x40\x2e\x19\xa0\x9e\x0f\xef\x79\x35\x33\xa0\x72\xce\xff\x83\xf9\xbf\xff\xf9\x87\xff\x1f\x00\x00\xff\xff\x7f\x4e\x89\x9c\x28\xac\x04\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xf9\x73\x2b\xb7\x95\x37\x8c\xff\x3e\x7f\x05\x9e\x3b\x4f\x95\xed\x44\x8b\x93\xcc\xe4\x9b\xd2\xd4\x53\xdf\x97\x96\x78\xaf\xf5\x58\x5b\xb4\xd8\xe3\x77\x98\xa2\xc1\x6e\x90\x44\xd4\x0d\x74\x00\xb4\x74\xe9\x54\xfe\xf7\xb7\x70\xb0\x34\x7a\x23\x9b\x8b\x24\xea\xba\x67\xaa\x62\x5d\x76\x37\xd6\x83\x83\xb3\x7e\xce\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x41\x1f\xfe\x78\xf4\xed\x87\x03\xfd\x1b\x65\x53\xfe\xe1\x04\xe9\xe7\x08\x7d\x50\x54\x25\x44\x3f\x9f\x26\x0b\x45\x68\x9c\x1c\x4b\x22\x9e\x68\x44\x8e\x71\x9c\x52\x76\x94\x09\xae\x38\x7c\x88\xd0\x87\x27\x22\x24\xe5\x4c\xbf\x6e\xff\x44\x8c\x2b\x24\x89\xfa\xf0\x6f\x08\xfd\x0b\x9a\x97\xd1\x9c\xa4\x44\x7e\x38\x41\xff\x63\x3e\x9a\x2b\x95\xb9\x06\xf4\xdf\x52\xbf\xfb\x37\x78\x37\xe2\x4c\xe6\xa5\x97\x71\x96\x25\x34\xc2\x8a\x72\x76\xfc\x77\xc9\x59\xf1\x6e\x26\x78\x9c\x47\x1d\xdf\xc5\x6a\x2e\x8b\x39\x1e\xe3\x8c\x1e\x3f\xfd\xe1\x18\x47\x8a\x3e\x91\x71\x82\x73\x16\xcd\xc7\x59\x82\x99\x3c\xfe\x27\x8d\xf5\x1c\xff\x4e\x22\xf5\x2f\xf8\x47\xcc\x53\x4c\x99\xf9\x9b\xe1\x94\xfc\xcb\xb7\x83\xd0\x87\x19\x51\xc1\x3f\xf5\x6c\xf3\x34\xc5\x62\xa1\x57\xe4\x23\x51\xd1\x1c\xa9\x39\x41\xa6\x1f\xe4\x96\x88\x4f\x11\x46\x27\x82\x4c\x4f\x7e\x11\x64\x3a\x76\x0b\x7d\x64\x16\xf8\x02\x46\x73\x93\x60\xf6\xcb\x91\x5d\x26\x68\x99\x67\x44\xc0\xdc\xce\x63\xdd\xfa\x27\xa2\x06\xd0\x6c\xf1\x7e\xf8\xb6\x20\x32\xe3\x4c\x12\x59\x1a\x1e\x42\x1f\xfe\xf8\xed\xb7\x95\x9f\x10\xfa\x10\x13\x19\x09\x9a\x29\xbb\x97\x03\x24\xf3\x28\x22\x52\x4e\xf3\x04\xb9\x96\xc2\xc1\x98\xa9\xea\x8d\xc5\xb5\xc6\x10\xfa\xf0\xbf\x05\x99\xea\x76\xfe\xfd\x38\x26\x53\xca\xa8\x6e\x57\x1a\xfa\x09\x46\x5b\xfa\xea\x5f\xff\xd6\xf4\xf7\xbf\x82\x19\x65\x58\xe0\x94\x28\x22\x8a\x1d\x37\xff\x57\x99\x8b\xde\x23\xdd\x79\xb1\x8f\xd5\x81\x57\x66\x7b\x85\x53\xa2\xf7\x44\xef\x94\xfd\x02\xfe\x16\x44\xf2\x5c\x44\x04\x4d\x48\xc2\xd9\x4c\x22\xc5\x6b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\xd7\x41\xa7\xa9\x19\xaa\x5c\x63\x66\xe6\x83\xd6\x89\x8d\xd8\xc0\xbd\x12\x61\x86\x26\x04\xe9\xb3\x48\x63\x22\x48\x8c\xb0\x44\x18\xc9\x7c\x22\x89\x42\xcf\x54\xcd\x29\xd3\xff\xce\x48\x44\xa7\x34\x72\x6b\xb6\x3f\x6b\x03\x7f\x2e\x5f\x99\x07\x49\x84\x1e\xf8\x13\x8d\x49\x8c\x9e\x70\x92\x13\x34\xe5\xa2\xb4\x3c\x47\x23\x76\x3f\xd7\xeb\x90\x4e\x28\x83\x93\xa7\xd7\xd2\x51\xc8\xef\xdd\x72\xfd\x1e\xe9\xfe\x50\xce\xe8\x3f\x72\x92\x2c\x10\x8d\x09\x53\x74\x4a\x89\xac\xb6\xf6\x7b\x0e\xfd\xe3\x04\x1d\x22\xbd\xce\x44\x28\x58\x6f\xce\x14\xf9\xac\x24\x3a\x44\x09\x7d\x24\xe8\xab\x0b\x2a\x15\x1a\xdc\x9c\x7f\x75\x80\xbe\x32\xe7\x05\x01\x6f\xfa\xea\x15\x56\xd8\xff\xfd\xb7\xe0\xe8\x29\x3c\xab\x1e\xba\x0f\x03\x7d\x9a\xef\xcc\xd5\x50\xb4\xf0\xb7\x7f\x0b\xdb\xb1\xfb\xb5\x9c\xdf\x16\xcc\xd6\x72\xda\xae\xfc\x15\x96\xa9\xcc\x5a\xa5\xde\xa1\x6d\x39\xab\x6e\xb7\xca\x5a\xe5\xfb\xe2\xad\x7a\x0a\x2f\xcd\x5f\xb7\x61\xae\x58\x01\xd5\x63\xca\xcc\x21\xf1\x67\x46\x48\x7d\x4e\x1c\xf5\xee\x09\x4b\xd9\x86\xd7\x06\x33\x0b\xd8\xad\xe3\xa2\xc1\xaa\xec\xe1\xbc\x13\x9a\xd2\x55\xfb\x7b\xce\x62\x2d\x72\x59\x66\xc7\xf2\x74\x42\x84\x5e\x06\xc7\xf6\x60\xb6\x13\xcd\x06\x55\x2e\x18\x89\x3b\x4c\xf3\x1f\x39\x11\x8b\x25\xf3\x9c\xe2\x44\xb6\x4d\x94\x32\x45\xb4\x7c\x5b\x79\x3c\xe5\x22\xc5\xca\xbe\xf0\xe7\xff\x58\x77\x21\x14\x7f\x24\xab\xf6\xff\xdc\xec\x66\x84\x25\x90\x41\x9a\x27\x8a\x66\x09\x41\x19\x9e\x11\x69\x57\x24\x4f\x94\x3c\x80\xd7\xb4\x4c\x4d\xc4\xa1\xbf\x81\xa0\x07\x77\xf3\xe6\x12\x7e\x41\x53\x2f\x40\x32\xf2\x59\x41\x4b\x23\x06\x77\x2f\x2c\x51\x78\xa3\xbc\xc0\x52\x6e\x46\x33\x92\x0b\x35\x9e\x2c\x8e\x1e\x49\xad\xdf\x56\xca\xc1\x0c\x61\xa5\x04\x9d\xe4\x8a\xe8\x79\xeb\x36\xdc\xdd\x09\xec\xd1\x5c\xd0\x5d\x58\xc3\xdb\x4d\x38\xa6\x82\x44\x30\xb7\x75\x0e\x8c\xff\x4a\xcf\x5b\xeb\x2f\x0b\x33\xfb\x47\xb2\x00\x79\xa4\x61\x05\xfc\x96\x8f\xd8\x88\xa1\x43\x74\x36\xbc\x3b\x1d\x5e\x9d\x9d\x5f\x7d\x3a\x41\xdf\x2d\x50\x4c\xa6\x38\x4f\xd4\x01\x9a\x52\x92\xc4\x12\x61\x41\xa0\x49\x12\x6b\x99\x43\x0f\x86\xb0\x98\xb2\x19\xe2\x22\x26\xe2\xe5\x96\xb1\xf2\x94\xb0\x3c\xad\xdc\x2b\xf0\x7b\x31\xfa\xca\x17\x5a\xc4\xf0\x8f\x4a\x4f\xfe\x56\x5b\x60\x98\xb1\xee\x3b\x68\xed\xd5\x84\x9a\x68\x4e\x93\x58\x10\x76\xac\xb0\x7c\x1c\x93\xcf\x24\xca\xcd\x9d\xfc\xcf\xf2\x0f\x63\x2d\x99\xf2\x98\x94\x7f\x29\xfd\xa3\x10\x85\xd6\xfe\xd4\x6b\xa9\x6b\x7f\x09\x3a\x6d\xb7\xef\xe0\x17\x1a\x37\xbe\x0d\xbf\xac\x98\x83\x7b\x67\xc9\x60\xdd\x2b\xad\xa3\x72\x2f\x58\x89\xaf\xf1\x1d\x41\x94\x58\x8c\xb1\x52\x24\xcd\xd4\x9a\xfa\x3a\x46\x89\x96\x2b\x97\xc9\x91\x57\x3c\x26\x43\xd7\xdf\x2f\xc8\x88\xb3\x24\x46\x93\x85\xe5\x5a\x53\x22\x08\x8b\x48\x7b\x0b\xf7\x58\x3e\x16\x2d\xac\x12\x46\x4b\xfd\xc9\x8f\x5c\xe8\xcf\xdf\x83\x40\x5a\x1a\xf8\x6b\xc8\xa4\x9b\x9e\xb8\x2f\xce\x42\xb0\x21\xff\xe8\xed\x09\xdb\xaf\x64\x57\xeb\x03\x17\x48\x2e\xa4\x22\xe9\x4a\x3b\xc4\xfb\x59\x08\x7b\x41\xec\xeb\x80\x2b\x77\xd4\x6f\xe0\xd4\x97\x6f\xdc\xfe\x78\xaf\xb1\x64\xbb\xb2\x22\xee\xfb\x3c\x9d\x0f\x67\xf9\x54\xef\xdc\xf6\x05\x4e\x8c\x77\x31\xcd\x92\x2c\xb8\xeb\x41\xbe\x90\xb9\xa1\x75\xaf\xdc\x6a\x8f\x61\x00\x2b\x14\xcd\xb2\x1d\xda\x9f\x3f\xfd\x69\x68\xa1\x31\xe6\x38\x35\xa7\x32\x30\x56\xa1\x88\x0b\x23\x0b\xc6\xf6\xbc\x1b\x5d\x73\x70\x3f\xb8\x1b\xde\x9f\xa0\x01\x8a\xb1\xc2\xfa\x80\x0b\x92\x09\x22\x09\x53\xa0\xc7\xeb\xef\xd5\x02\xa5\x3c\x26\x89\xd1\x38\x3f\x6a\xc9\x17\x9d\x61\x85\x4f\xb1\xc2\x09\x9f\x1d\xa1\x01\xfc\x53\x7f\x4c\x25\xc2\x89\xe4\x08\x3b\xb2\x22\xb1\x6b\x02\xb3\xd8\xb1\x16\x8c\x22\x9e\x66\x34\xf1\x36\x78\x6f\x5c\xa1\x2c\xa6\x4f\x34\xce\x71\x82\xf8\x44\x73\x15\xad\x21\x0f\x9f\x08\x53\x39\x4e\x92\x05\xc2\x49\x82\x6c\xb7\xee\x05\x24\xe7\x3c\x4f\x62\xdd\xae\x1b\xa5\xa4\x29\x4d\xb0\xd0\x2a\xb8\x19\xed\xb5\x6d\x0b\xdd\xcf\x89\x1f\x2b\x8c\x4b\xaf\x66\x8a\x1f\x89\x44\x54\xa1\x8c\x4b\x49\x27\x49\x71\xe6\x1f\xce\x11\x8c\xfb\xf4\xe2\x1c\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9e\x9e\x7f\x3c\x1f\x9e\xd5\x75\xf3\xfb\xc1\xdd\x0f\xf5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xf5\x27\x17\x83\x87\xab\xd3\xef\xc7\x37\x17\x83\xab\xfa\x43\x4b\x56\x9d\xd5\xfc\x70\x64\x6b\x9e\xad\xde\xa6\xf9\x52\x36\xcd\x83\x2f\xd7\xa8\x39\xa5\x09\xe8\xa0\x9d\x0d\x9a\xde\x86\x60\xbf\x44\x19\x96\xd2\x48\x46\x66\x04\x47\x23\x76\xc9\x85\x66\x60\x53\xae\x79\x84\x96\x9e\x94\xc8\x23\x45\xd9\xcc\x7f\x74\x82\x46\xf9\xb7\xdf\xfe\x29\xba\xa0\xec\x11\xfe\x22\xfb\xb8\x38\xbd\xc5\xb7\xb7\xf8\xfe\xb6\x2c\xbe\x5a\xf4\x39\x0e\x0d\xbd\xbb\x0d\x19\xd2\xc2\x05\xcb\x72\x05\xa2\x04\xcf\x95\xfe\x53\x77\x09\xe4\xb1\x24\x70\xa8\x9b\x41\xf1\x13\x51\xfe\x45\x2d\xda\xbc\x07\x3b\xe2\x4f\x5c\x3c\x4e\x13\xfe\xec\x07\xfe\x89\x28\x3d\xf6\x5b\xdb\x4b\x1f\x4a\xd4\x87\x12\xbd\x6d\x28\xd1\x5e\x19\xf3\x5e\x9e\xf9\x95\x2d\x7f\x86\x03\xb6\x78\xb2\x5a\x1d\x55\x2d\x7e\xa8\xc0\xcd\xf4\x2a\x5c\xb3\xec\xcc\x59\xc1\x39\x4b\x2f\xbf\x17\xee\x59\x1a\xf4\xeb\x73\xce\xdf\x84\xbf\xa5\x77\xa7\x6c\xb8\x50\xef\x92\xc1\x76\xbc\x3b\x5e\xcd\x19\xf2\xf2\x0c\xbf\x16\xdb\xb0\x4e\x30\xc3\x1a\xd1\x0b\x9d\xc3\x15\x56\xc4\x27\x34\x06\x24\x34\x45\x20\xd4\x43\x0e\x1a\x63\x0c\xb6\x0b\x2a\xd8\xf4\x6e\xea\x1e\x26\xf0\x89\xa8\xd2\xcb\xef\xe5\x6e\x2a\x0d\xfa\xf5\xef\xa6\xdf\x68\x74\x40\x1f\x0e\xf0\x82\x4b\xf7\xa5\xdf\x68\xfb\xeb\xf0\xff\x0d\x78\xf8\x7b\x97\xfe\x5a\x6b\xf4\x65\xf9\xf0\xbf\x54\xa7\xfd\xfb\xf4\xd2\xf7\x6e\xf9\xde\x2d\xff\x16\xfe\x93\xf7\xe7\x96\x7f\x59\xf5\xb4\x38\x5e\x63\x47\x0b\x56\x5f\x0b\x0e\xe5\xbf\x3a\x38\x69\xe0\x2f\xa7\xf2\xad\x1b\x34\xde\xaa\xc3\x9d\x15\xe3\x1b\xc2\x11\xfa\xc5\x12\xd2\x0a\x75\xae\xf6\xdd\x7b\x50\xe7\xea\x83\x7e\x79\x1d\xee\xcd\x98\xef\x0b\x5d\x9e\xef\x84\x0d\xac\x7f\x5b\x7e\xc1\x32\x79\x2f\x8b\xbf\x7c\x36\xfe\xde\x4c\xe8\xfd\xc8\xde\x6f\x70\xf1\x76\xbc\x75\x77\x9e\x93\xd5\x70\xcd\x06\xb7\xd3\xaa\x0c\xab\xea\xd7\x94\xc8\x3f\xbe\xcb\xfb\xf6\x35\x92\xac\xfa\x0b\xb7\xbf\x70\x6d\x53\xfd\x85\xfb\x05\x5f\xb8\x7b\x07\x7f\xb3\x37\x11\xa0\x7d\x10\x79\x0f\x8c\xd1\xc7\x90\xef\x70\x71\xfa\x18\xf2\x3e\x86\xfc\x37\x16\x43\xbe\x8d\xf6\xb4\x29\x16\xe5\x5b\xe8\x51\xbd\x1a\xd5\xab\x51\xe1\xef\xbd\x1a\xd5\xab\x51\xbd\x1a\xf5\x85\xa3\x88\xf6\x3a\x54\xf7\x85\xe8\x75\xa8\xce\x4b\xd5\xeb\x50\x4b\x16\xa7\xd7\xa1\x7a\x1d\xea\xb7\xa5\x43\x91\x27\xc2\x94\x84\x64\xb4\x50\xa3\xf8\x90\x71\xd9\xae\x09\x85\xdc\xa1\x41\x0b\x82\x36\xcb\x49\x61\x10\xb8\xf4\x0b\x9a\x63\x89\x78\x14\xe5\xa2\x72\x06\xaa\x7a\xd0\xa9\x20\x58\x11\x68\x41\x7f\xf8\x1e\xf4\x9f\xfa\x74\x5f\x2b\x06\x7f\xc2\xe3\x1a\xb5\x9b\x83\xd0\xf4\x64\xb9\x3c\xb2\xb3\xa9\xff\x23\x27\xdd\xd4\xbf\x17\x24\x6a\x85\xe5\xe3\x8e\x89\xba\x94\x6b\xb1\x11\x51\x43\x0b\xef\x85\xa8\xeb\xd3\xfd\xcd\x10\x75\xd3\xd4\xf7\x81\xa8\x9f\x6d\x1e\xff\x8e\x09\xbb\x06\x0f\xb0\x11\x71\xfb\x56\xde\x0b\x81\x37\x4f\xfb\x37\x43\xe4\x6d\xd3\x7f\x5b\x42\xf7\x29\x92\x9d\x49\xfc\x5e\xd0\xd9\x4c\xab\x19\xa0\xe1\x69\x52\x5c\x5d\x23\xa8\x48\x0a\x5c\x49\xd6\xfe\xd5\xf7\x40\xd2\x7e\xb0\x66\xec\xbf\x19\x5a\xae\xcd\x7b\x4f\x88\xf8\x58\x90\x88\x3f\x41\xbd\xb0\x6e\xc4\x7c\x4b\x80\x82\x81\x5f\x67\x82\x3c\x51\x9e\xcb\x64\x71\x28\x72\x86\x1c\xf3\x47\xbe\x79\x63\xad\x7e\xa6\x49\x82\x38\xd3\xfa\x97\xc2\x42\xb9\xc7\x5a\xff\x16\x3c\x85\x53\x91\x60\xa9\xd0\x23\xe3\xcf\x0c\x4d\x31\x4d\x72\x41\x50\xc6\x29\x53\x47\x23\x76\xce\xd0\xad\x19\x23\xe4\x0d\x1c\xa0\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x88\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\x38\x40\x93\x7c\x26\xb5\xa6\x98\x25\x58\x4d\xb9\x48\xf5\x08\x29\x93\x0a\x4f\x68\x42\xd5\xe2\x00\xa5\x38\x9a\x9b\xb6\x60\x0d\xe4\xc1\x88\xc5\xfc\x99\x49\x25\x08\xf6\xbd\xbb\x87\xe8\xeb\xf0\x99\x21\x00\xf9\xcd\x01\xa4\x1d\xd2\x54\xab\xbb\xc1\xf0\x8b\x1d\x37\x7b\xa2\x1b\x21\x31\x9a\x90\x08\xe7\xd2\x7a\x18\x94\x58\x20\xf2\x79\x8e\x73\x09\x7b\xa7\xa7\x67\x73\x36\x22\x9e\x66\x09\x51\x04\xd1\x29\x52\x82\x92\x18\xe1\x19\xa6\x7a\xe9\xee\xc8\x12\x10\x74\x4f\xf4\x76\x03\x2d\xd5\xff\x02\xea\x77\xca\x05\x41\x31\x51\x98\x26\x4b\xbd\x4e\xf6\xdb\x9e\xcb\xbd\x27\x2e\x57\xde\xf0\xbd\x60\x73\x06\xc4\x7f\x07\x97\x36\xb3\xa6\xfb\x08\x27\x5b\xde\xdf\xb7\x76\x50\x3d\x6d\xbf\x2f\xda\x36\xbb\xb6\x3f\xc4\xfd\x6a\x31\xd8\xdd\x2b\x5a\x14\xd5\x2c\xde\x15\x4d\xbf\x46\x58\x40\xef\x70\xee\x1d\xce\xad\x2b\xf3\x3e\x1d\xce\x7b\xe3\x31\xea\x7d\xce\x2f\xe4\x73\xa6\xb2\x77\x3a\xf7\x4e\xe7\xae\x0b\xd4\x3b\x9d\x7b\xa7\xf3\xfb\x75\x3a\xbf\x24\xee\xf3\x4e\xd1\x9d\xdf\x95\x68\xdd\x8b\xd5\xbd\x58\xdd\x43\x38\xfb\xa9\xed\x8a\x85\xb9\xaf\x3f\xc4\x24\x21\x8a\xb4\xdb\xb3\x88\x48\xb5\xb6\x60\xae\x67\xca\xb4\x1c\x37\x13\x44\xca\x6d\x19\x92\x6f\xf8\x7d\xb2\x25\x3f\xfc\x1e\x6a\xbe\xe7\x53\x3d\x9f\xda\x64\x6a\xfb\x63\x9a\x0d\x0e\xf3\x6b\xd9\x66\x3d\xff\xcd\xf2\x76\xe9\xef\xc1\xb8\x21\x0b\xbf\xa8\xa1\x70\x2d\xb5\x2b\xee\x0f\xb7\xa5\xf3\x2d\xf9\xb1\xe9\xeb\x7d\x32\x63\x33\xf6\x9e\x13\xf7\x9c\xb8\xe7\xc4\xef\x9b\x13\xbb\x93\xfc\xa6\x2e\x32\xe3\xa7\x1b\x67\x09\x66\x63\x1a\xcb\xe3\x7f\x16\xba\xfc\x4b\x79\xc8\xf4\x81\x8a\x4d\x8a\xa9\x4f\xe9\x14\xbf\xe8\x4f\x92\xc2\x60\xee\x31\x33\x57\x38\xd1\x8c\x8d\xfd\x26\xc1\xec\x3c\x7e\x17\x7e\xb4\xc6\xd9\xbf\x86\x4f\x6d\x1b\x3e\x8e\x15\x78\x3a\x30\x65\xc6\x84\x57\xe4\xd5\x96\x0c\x94\xfb\x71\xc2\xb7\xe1\xea\xc1\xc4\x02\xc6\xee\xf8\x75\xb0\x28\xfb\x37\xed\xde\xaf\xd3\xe7\x12\xf6\x9e\x8b\x8e\x13\xee\x3d\x17\xfb\xeb\xb9\x78\x2b\x77\xe4\x2b\x1f\xcf\xd7\x12\xeb\xba\x07\xe1\x9b\x68\x35\x08\x6a\xcd\xb3\x84\xe3\x78\x99\x2b\xa6\x10\xbc\x42\x70\x94\x95\x91\xf8\xc5\x67\xef\x41\x58\x2b\x46\xfb\x1b\x8b\xe4\xab\x4f\x7c\x5f\xb4\x94\x57\x0c\xe5\x6b\x26\xf1\x35\x54\x92\xf7\x81\x9f\x5a\x8c\xb7\x0f\xed\xeb\x2d\x4a\x6f\x6f\x51\xea\x43\xfb\x7a\x15\x70\xcf\x54\xc0\x3e\xb4\xaf\x0f\xed\xeb\x15\xe4\xe5\xd3\xee\x15\xe4\x2f\x22\xb4\xaf\x93\xa8\xfd\x82\xd8\x9b\xdb\x0b\xdd\xbd\xcc\xed\xde\xeb\x65\xee\x5e\xe6\xfe\x42\x65\xee\xfd\x58\xe1\x5e\xe0\xee\x05\xee\x5e\xe0\xee\x05\xee\x5e\xe0\xde\xf9\x32\xf6\x02\xf7\x6b\x16\xe8\x6c\x96\xba\x57\x24\xd9\xbc\x57\x5f\x4e\x2f\x6e\xf7\xe2\xf6\x7e\x8b\xdb\x7b\x33\xa1\xf7\x53\xe6\xb1\xdb\x7c\xfa\x22\xe5\x7d\x91\xf2\xbe\x48\xf9\x8b\x17\x29\x77\x5f\x77\xc8\xf8\xb0\x87\x4b\x61\x95\x4b\x03\xf8\x28\xc8\x8c\x4a\x05\xec\xbf\x8b\xbc\xb2\x3a\xd1\xe3\xbd\xca\x29\x7d\xaa\x87\x7f\xda\x4b\x2d\xbd\xd4\xf2\x1b\x95\x5a\xf6\x28\x16\x6c\x2f\x32\x56\x52\xac\xa2\x39\x9e\x24\x64\xec\x8d\x3e\xb2\xab\x1e\x7c\x41\xa5\x92\x28\xca\xa5\xe2\x69\xfb\xe5\x72\xe9\x7a\x18\xf8\x0e\x4e\x39\x9b\xd2\x59\x6e\xee\x16\x03\xce\x19\x9c\xe8\x42\x12\x5c\x64\x64\x95\xa7\xaa\xa1\xf5\x77\x71\x2d\x35\x0f\xfd\xb5\x6e\xa7\x75\x04\xf7\xc2\xc8\x67\xa5\x6e\x2d\x6b\x8d\x6f\x87\x77\xd7\x0f\xb7\xa7\xc3\x13\x34\xc8\xb2\x84\x1a\xbb\xbb\x21\x05\xfa\xab\x9e\x14\x52\x58\x3e\x16\x7b\x29\x0c\x99\x1b\x0c\x5b\x30\xf4\x6b\xd9\x18\x1d\xa2\xd3\x8b\x87\xbb\xfb\xe1\x6d\x4b\x83\x96\x50\x20\x6f\x95\xa4\x59\x82\x15\x89\xd1\x63\x3e\x21\x82\x11\x2d\xed\x58\xa4\xdb\xc2\xfc\x6f\x1a\x1d\xfe\xf7\xf0\xf4\xe1\xfe\xfc\xfa\x6a\xfc\xd7\x87\xe1\xc3\xf0\x04\x39\x8a\xd3\xcd\xea\x71\xe9\x51\xc4\x0b\x86\x53\xad\x81\xe8\x1f\x8a\x4c\xd9\x7f\xe4\x24\x27\x08\x4b\x49\x67\x2c\x25\x80\x08\x5c\x6a\xd1\x0d\xf8\x62\xf0\xdd\xf0\xa2\xdc\xf2\x9c\x84\xf0\xbb\x28\xc1\x13\x92\x58\x7f\x04\x98\xd8\x35\xa1\x07\x50\xc5\xc6\x51\x91\x9b\x55\xfd\xeb\xc3\xe0\xe2\xfc\xfe\xe7\xf1\xf5\xc7\xf1\xdd\xf0\xf6\xc7\xf3\xd3\xe1\xd8\x4a\x95\xa7\x03\xdd\x6f\xa9\x27\x2b\x7c\xa2\x7f\xe4\x38\xd1\xda\x09\x9f\x3a\x3c\x5e\xf4\x3c\x27\x0c\xe5\x0c\x28\xce\xa8\x3c\x5a\x0f\xf2\x9d\xea\x53\x66\x66\x74\x73\xf1\xf0\xe9\xfc\x6a\x7c\xfd\xe3\xf0\xf6\xf6\xfc\x6c\x78\x82\xee\x48\x02\x4a\x81\x5b\x74\xd8\xc5\x2c\xc9\x67\x94\x21\x9a\x66\x09\xd1\xab\x81\x6d\x36\xf1\x1c\x3f\x51\x2e\xec\xd1\x9d\xd1\x27\xc2\xcc\x3a\xc2\x99\x85\xf6\x9d\xf0\x3d\x0e\x96\xee\xfa\xea\xe3\xf9\xa7\x13\x34\x88\x63\x3f\x07\x09\x6d\x94\x28\xc7\xc1\x3a\x1f\x96\x87\xad\x99\x03\x74\x6f\x88\x88\x3f\x11\x21\x68\x4c\x2a\x74\x34\xb8\xbb\x3b\xff\x74\x75\x39\xbc\xba\x87\x15\x53\x82\x27\x12\xcd\xf9\x33\x98\xb2\x61\x86\x60\xe1\x7e\xc2\x34\x81\xce\xdc\x66\x71\x86\x9e\xe7\x14\xdc\x1f\x00\xcc\xec\x7b\x36\xfa\x99\xc8\xd9\x9b\x5b\x67\x4b\x07\xaf\xae\xb6\x54\x4f\x52\xfd\x8d\xca\xb1\x58\xf6\x42\x89\xca\xeb\x2f\xae\xa2\xd6\xfa\x17\x15\x72\x6b\x57\xd6\x6a\xf4\xd2\x3e\xd3\x62\xaf\x3b\xeb\x6a\xe5\x35\x7c\xbd\x6b\x96\x28\x41\x23\xf9\xb2\x50\x4f\x22\x67\x8a\xa6\x04\xd9\xce\xec\xe1\xdc\x21\xfc\xd3\xa5\x69\xf8\x3d\x5c\xb0\xb5\x52\x0e\x9f\x88\xb2\xc3\xef\x55\xc0\x5e\x05\xdc\x0f\x15\xf0\xbd\x65\xfb\xc7\x24\xab\x77\x58\x99\x18\xbc\x63\xbc\x5e\xb5\x20\x0d\x63\x4f\xb4\x16\xd5\x84\x3c\x91\x04\xa4\x3c\x25\xb0\x56\x1a\xad\xec\x32\x11\x04\x3f\x6a\x81\x2f\xe6\xcf\xa1\xe4\xd2\x80\xdc\x8f\x76\x73\x0b\x77\x09\xe2\xf8\xd3\x1f\x5f\xef\xb2\xd0\xcb\x1d\xbf\x46\x09\xef\x5b\x08\x92\x59\x8a\x11\x18\x24\xd8\xff\x62\x2d\xc1\x2b\x6e\x8b\xe0\x8b\xf7\x70\x51\x84\xc3\xdd\x23\xad\xeb\x36\x54\x82\x1d\x0b\x4d\x89\xc2\x31\x56\x58\x1f\x9a\x19\x51\x47\xe8\x9a\xc1\xb3\x7b\x2c\x1f\x0f\x90\xbb\xf2\x34\x5b\x29\xac\x0c\xaf\x90\x5a\xff\x4e\x0c\xf8\xeb\xf3\xf1\xfe\xfa\xee\xaf\xef\xe6\x95\xe9\xc3\x3c\x5b\x56\x78\x57\x17\xe3\x5a\x3e\xaf\xdd\xdd\x5f\xa6\xc5\xf7\x7b\x85\xbd\xae\x93\x6b\xa7\x17\x9a\xa9\x9c\xd5\xdf\x56\xe6\xff\xfa\xdb\xaa\xbf\xad\xfa\xdb\x6a\x0f\x56\xf8\xcd\x1d\x86\x0d\xdc\xfd\x4d\x3d\x86\xab\xb4\xd3\x8d\x21\xef\x0a\x6d\x74\x1d\xd0\xbb\x5f\xba\x62\xdb\x15\xdf\xd0\xf7\xe1\x23\x0c\x26\xf9\x1a\x69\x6d\x3b\xbd\xcc\x4d\xbe\x48\xaf\x9f\xbe\xe0\x8d\xdf\x23\x10\xee\x14\x81\x70\x3f\xe6\xfa\x22\x29\x70\x6f\x63\x31\x7d\xfb\xb4\xb7\x1e\x6a\xb0\x4f\xec\xea\x13\xbb\xe0\xf7\x1e\x6a\x70\x77\xd4\xfa\xb2\xd2\x35\x8f\xc9\xb8\x12\x25\xe0\xff\x39\xae\x7a\x7e\x4a\x4f\x42\x37\x50\xe9\x41\x91\xe9\x06\xad\xd3\x78\x97\x45\xa4\xae\x78\x4c\x3a\x47\x12\x94\x5e\xde\x73\x19\xdc\xcd\xd3\xc8\xe2\xa5\x81\xbf\xb0\x24\xde\xb2\xe5\x5f\xa2\x61\xa7\x81\x80\x7b\x2b\xcf\xca\x85\xfa\x52\xe3\x0b\x0a\x0e\xf5\x8e\x3c\x15\xdd\xd8\xb8\x8b\x69\x1c\xb7\x30\xf3\xe6\xe7\x9e\xa5\x37\x3f\x7e\x19\xcc\xa0\xee\x1c\x1d\xcc\x2a\xe1\xdb\xef\xc3\xae\x12\x8e\xf8\x35\x2c\x2b\x4b\xf7\xfe\x8b\xe3\xea\xcb\x28\xb9\xe7\xed\x1d\x97\xeb\x4b\xe5\xf0\x3d\xc4\xcf\x32\x5b\x47\x8f\xa1\xd3\x9b\x5a\xf6\x67\xc2\xbd\xa9\xe5\x5d\x9b\x5a\x8c\x8b\x76\x9c\x61\x41\x98\x6a\x10\xa9\xab\xd7\x09\xbc\x1e\x62\x2e\x38\xa9\x03\x1a\x40\x5a\xa2\x45\xf6\x42\xf6\x57\xd5\x97\x65\x7b\xb1\x82\x41\x90\x09\x79\xfc\xcf\xe2\x6f\x2f\xac\x97\x2a\x40\x2c\x89\x4e\x32\x58\xff\x52\xdf\xd1\xb9\x0d\x54\xda\x3e\x57\x12\xab\x92\x28\x08\x41\xd4\x2b\xe3\x99\x6e\xcc\xdb\xef\x2b\x45\xb2\x36\xe8\xd7\x8d\x6d\xaa\x6f\x7c\xb7\x03\xe4\x76\x86\x9a\x74\xbf\x20\xa7\x4c\x4b\xa3\x7c\x5a\x5c\x0c\x12\x3d\xd3\x24\x01\x44\x11\xc8\x78\x6c\xbb\x01\x7e\x73\x11\x0f\xad\x3b\xff\xa6\x71\x0f\x4d\xdc\xa1\x89\x25\x74\xb1\xa7\xee\x2a\x67\xda\x11\x1b\xa4\xb3\x82\x36\xb4\xc2\x00\xfb\x65\x70\x82\x4f\x44\xbd\x16\x1b\xd8\xf4\xec\x2f\x3d\xf7\x82\x4c\x89\x20\x2c\x22\x7b\xe8\x6d\x5f\x27\x0c\xe4\x27\x33\x49\x1b\x03\xe2\xa1\x04\xc2\xa9\x2a\x6e\xf5\xb4\x92\xa8\xdb\x67\x92\xf7\x99\xe4\x7d\x26\x79\xf5\xa8\xf7\x99\xe4\x7d\x26\x79\x63\x0e\x44\x4c\x12\xa2\x48\xab\x54\x71\x06\x8f\xdf\x4a\xaa\x30\xbd\x7f\x19\x82\x85\x99\x4b\x2f\x5b\xfc\x66\x34\x0b\xb7\xe1\x7b\xa1\x59\x98\xb3\xb6\xca\xfc\x50\xfa\xb1\x21\xc4\xfa\xd5\x4d\x12\x9b\x30\x8d\x92\x5d\xe2\x0c\x5e\x7f\x97\xac\xa3\x3a\xf4\xde\x46\x81\x82\xad\x7b\x39\x4e\x52\x3b\x02\xdd\x26\x6e\x3d\x86\xef\x77\xde\xfb\xc2\x41\xdb\xe8\x7e\x5f\xf9\xe8\xc6\x49\x29\xfb\x62\xb1\xf9\x82\x78\x64\x6f\xbd\x79\xe3\x5c\x89\x1a\x33\x7c\xb7\xd3\xed\x8d\x55\xbd\xb1\xaa\x37\x56\xf5\xc6\xaa\xde\x58\x85\x7a\x63\xd5\xda\xc6\xaa\x2f\x48\xa6\xea\x0d\x57\xbd\x58\xb5\xbb\xe9\xee\xab\x96\xb9\x4f\xd6\xba\xce\x28\xe9\x45\x0e\xd5\xca\xc8\x7b\x3b\xed\x5f\x56\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\x6d\x13\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4b\x87\x36\xae\x55\x1f\xf6\xbc\x64\x71\xfa\xb0\xe7\x3e\xec\x79\xef\xc2\x9e\x77\xae\xac\x64\x5c\x2e\x03\x24\x32\xa5\xb3\x96\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe4\x3a\x77\x5d\xdc\xd4\x24\xea\x7d\xbf\xd1\xdd\xc8\x5f\x4b\xe7\xd8\x17\x99\xb4\x98\xf7\x5e\x48\xa1\xc7\xff\xac\xa4\xf3\x77\xc2\xcb\x64\x88\x7c\xa6\x12\x6e\xa5\xd5\x84\x3d\x62\xcd\x4f\x82\xd2\x85\xf6\x1e\x9c\xe4\x2a\xc8\xdd\x93\x5a\xb0\xca\x88\x50\x8b\xe0\x4d\x92\x66\x6a\xf1\x5f\x23\x46\x95\xf7\xb0\xd1\x19\xe3\xc2\x70\x35\xfd\xf1\x1c\xb3\x38\x21\x42\x5f\xaa\xae\x9d\x08\x33\xc6\x15\x88\x1b\x30\x83\x18\x3d\x51\x6c\x84\x93\xc1\xcd\x79\x67\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xc5\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xef\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x0a\x25\xb2\xe2\xdd\x12\xc6\xfc\xf2\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x5d\x62\x9c\xdc\x63\xf9\xd8\x19\xe3\xa4\xf4\xf2\x9e\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x3a\x52\xe7\x0a\xce\xf4\xfe\xf2\xe3\xbb\x9e\xb5\x35\x26\xfe\x5b\xc9\x95\xef\xc6\x7b\x56\x99\x69\xdf\x63\xde\xfc\x32\x66\xba\x37\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xfe\x88\x2e\x5b\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x31\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7a\x54\x2f\x63\xe6\x0e\x76\x63\x9d\x18\xa0\xf3\x32\x5a\xb9\x3f\x43\x2e\x2a\xa8\x28\x3d\x3b\x87\x44\x6b\x2a\xc3\x84\xf8\x88\x0b\x23\x79\xc5\xf6\xcc\x1a\xb3\x9d\x01\xf3\x3d\x41\x03\x14\xdb\xda\xfc\x82\x64\x82\x48\xc2\x94\x51\xb5\x4d\xbd\x2b\x57\xde\x9f\x32\x6b\x21\x3a\xc3\x0a\x9f\x62\x85\x13\x3e\x3b\x42\x03\x5f\xd8\x9f\x4a\x84\x13\xc9\x11\x76\x84\x43\x62\xd7\x04\x66\xb1\x63\x0f\x18\x45\x3c\xcd\x68\xe2\x91\xda\xbd\x15\x9f\xb2\x98\x3e\xd1\x38\xc7\x89\x47\xc6\x1e\xb1\xe1\x13\x61\x2a\x07\x15\x0e\x27\x09\xb2\xdd\xba\x17\x02\xfd\xdc\x8d\x52\xd2\x94\x26\x58\x20\xc5\xed\x68\xaf\x6d\x5b\xe8\x7e\x4e\xfc\x58\x1d\x0a\x38\x4a\xf1\x23\x91\x88\x2a\x94\x71\x29\xe9\x24\x29\x8e\xf1\xc3\x39\x82\x71\x9f\x5e\x9c\x83\x69\x34\x52\x88\x1b\x3e\xe8\x3a\xb7\x7e\x02\xd7\x63\x8a\x19\x23\xd0\x31\x57\x73\x22\x6c\xf7\xf6\xe5\xb7\xb6\x72\xbe\x35\x46\x74\xbb\xc5\x34\x1c\xd9\xdb\x29\x9d\x9d\x35\xce\xae\xea\x66\x37\x5d\xb3\x5d\xd1\x7c\x01\x2f\x6d\x77\x6d\xf0\x82\xca\xb2\x3a\xf8\x2e\x5c\xb6\xa5\x11\xbf\x06\x3e\xda\x6f\x54\x11\xec\xb5\xc0\x17\x59\xb7\x2f\x55\x05\xdc\x73\xfd\xaf\x47\x76\xeb\x51\xec\xfb\x00\x8c\x1d\x2e\x4e\x1f\x80\xd1\x07\x60\x7c\xb1\x01\x18\xed\xda\x04\x8d\xb7\x4e\xd7\x5b\xb3\x82\x94\x37\x0a\x88\x5f\x40\x94\xc2\xf2\xb1\x6b\x4d\x29\x2d\x2a\x9f\xc7\xef\x42\xaa\x6f\x9c\xf0\x6b\x48\xf7\x7d\x9d\xa2\x9d\xd6\x29\xda\xbb\x69\xf7\x82\x5f\x2f\xf8\xf5\xb2\x4d\xc7\x09\xf7\xb2\xcd\xfe\xca\x36\x6f\xa5\xb0\x7c\x49\x10\xba\x5a\x78\x2a\x65\xc6\x2c\x0d\xb0\x35\x70\x34\xe0\x1e\xc8\xb3\x84\xe3\x78\x55\x10\xce\x2f\xa8\x90\x6b\x96\x88\x66\xa6\x5d\xfd\xc1\x9e\x4b\x66\xb5\xf8\x1b\x33\xf2\xdf\x42\x4c\x6d\xeb\xd4\xdf\x34\xac\x16\xe8\x17\x82\xc9\x4a\x41\x69\x2f\xa5\x85\x54\x69\xba\x93\xc2\x21\xff\xb8\xe7\x54\xed\xb7\xf4\x35\xd4\x8b\x2f\xd8\x41\xd0\x3b\x01\x7e\x9b\x85\xcf\xf7\x46\x6a\xed\x55\xbb\x3e\xab\xb2\x37\xea\xf7\x8a\x6f\xaf\xf8\xee\x7c\x19\xf7\x49\xf1\x7d\x43\x89\xda\xa4\x89\xbc\x48\x19\xc3\xcd\x64\xeb\x5e\xb4\xee\x45\xeb\x5e\xb4\xfe\x62\x45\xeb\xfd\x58\xe1\x5e\xae\xee\xe5\xea\x5e\xae\xee\xe5\xea\x5e\xae\xde\xf9\x32\xf6\x72\x75\x45\xae\x86\xbf\x5c\x9a\xf4\xba\x42\x76\x67\xe1\xba\x43\x4e\xf4\x7b\x91\xac\x7b\xa9\xba\x97\xaa\xf7\x5b\xaa\xde\x9b\x09\x7d\x79\x89\x90\x7d\x2a\x61\x9f\x4a\xd8\xa7\x12\xbe\x45\x2a\xa1\xe3\x25\xcb\x24\x94\xba\x60\xf1\x63\x8d\x03\xed\xad\x6c\x51\x8c\x76\xd3\xf0\x8e\x5d\x2d\xb5\x03\x9a\xdf\xa4\xd2\x54\xe9\x37\xd7\xd0\x1e\xd5\x9f\x3a\x70\xd2\x82\x66\x14\x6e\x7c\xab\x11\xc2\x7e\xb2\x6f\xbe\x2f\x30\xf0\xfa\xa8\xfb\xfa\x53\x28\xd8\xb5\xbe\xfe\xd4\x0b\xce\xdb\x1d\xae\x15\x33\x77\x34\x6a\x6c\xbc\xef\x74\xda\x6f\x0e\x2e\xd7\x7e\xd2\xdf\x34\x5c\xae\xf1\x26\xa9\x25\xef\x1c\xff\xb3\xf1\xa2\x78\x83\xb2\x5b\x6b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xbe\xec\x56\x5f\x1f\x62\x47\xd3\xdd\x88\xf5\xbf\xdb\xd9\xf6\x45\xc6\xfa\x22\x63\x7d\x91\xb1\xbe\xc8\x58\x5f\x64\x0c\xfd\xc6\x8b\x8c\xad\x2d\x3e\x9a\x71\x7c\x29\x12\x64\x5f\x64\xac\x17\x22\x77\x37\xdd\xdf\x96\x10\xb9\x87\x16\x84\xbd\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x15\xfb\xc3\x2d\x68\x8f\xff\x61\xff\xaf\xc7\xff\xe8\xf1\x3f\x5a\x66\xdd\x07\xb3\xf6\xf8\x1f\xa8\x0f\xd7\xec\xc3\x35\xf7\x39\x5c\xb3\xc3\x36\xf6\xf8\x1f\x1d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x5a\x38\x20\x3f\xd5\x15\x8d\xbd\x95\xd2\xdc\x58\x7f\x3b\x38\x20\x8d\xd3\xde\x0b\x95\xe4\x15\x71\x40\x9a\xe8\xba\xb3\x02\xf2\x3e\xf0\x40\xdc\x68\xfb\xc4\xc5\x3e\xc4\x7a\xff\x43\xac\xf7\x2e\x71\x71\x6f\x24\xd9\x5e\xdd\xeb\x73\x17\xfb\xdc\xc5\x5e\x19\xee\x95\xe1\x9d\x2f\xe3\x3e\x29\xc3\x6f\x2c\x61\xbf\x20\x2e\xc8\x76\xb2\x76\x2f\x6a\x9b\xf7\x7a\x51\xbb\x17\xb5\xbf\x50\x51\x7b\x3f\x56\xb8\x97\xb3\x7b\x39\xbb\x97\xb3\x7b\x39\xbb\x97\xb3\x77\xbe\x8c\xbd\x9c\xfd\x6a\x38\x21\x4d\xc2\x76\xc7\x7c\x9b\xf7\x24\x69\xf7\x52\x76\x2f\x65\xef\xb7\x94\xbd\x37\x13\xea\x31\x43\x7a\xcc\x90\x1e\x33\xa4\xc7\x0c\xd9\x48\xbe\xf9\x37\x7b\x2c\x3f\x04\x37\xb1\xbf\xb2\x3f\x7c\x97\xf0\xc9\xfd\x22\x23\xfa\xbf\x67\x34\x25\x4c\x82\x34\x4a\xd5\x22\x94\x67\x5a\x56\xbe\xbe\xe6\x1f\xee\xce\xaf\x3e\x5d\x84\xd9\x34\x1f\x2e\x1f\x2e\xee\xcf\x6f\x06\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6c\x64\xb7\xc3\xbb\xe1\xed\x8f\x90\x0d\x34\x3e\x3b\xbf\x1b\x7c\x77\x51\x22\x88\xd2\xf3\xc1\xe9\x5f\x1f\xce\x6f\xdb\x9f\x0f\xff\xfb\xfc\xee\xfe\xae\xed\xe9\xed\xf0\x62\x38\xb8\x6b\xff\xfa\xe3\xe0\xfc\xe2\xe1\x76\xb8\x74\x3d\x96\x8e\x76\xb9\x12\x22\x61\x91\x20\xce\x1f\x45\x96\x6b\x88\x62\x0d\x91\x17\x1f\x1d\x3b\x6c\xea\xeb\x04\x3d\x58\x9d\x9e\xda\xc6\x0d\x83\x0d\x1a\x32\xca\x48\x4c\x25\x9e\x24\x24\xae\xb5\xe4\xd6\xb0\xad\x25\x5c\x1a\xd4\xb3\xd6\x9e\xbd\xc8\xa9\x79\x5e\x64\x78\x01\x82\x1c\x45\x45\x58\xdc\xd0\x87\xd9\x87\xd6\x1e\x98\xe6\x5d\xf4\x89\x94\x7a\x8a\x72\x21\x08\x53\xc9\x02\x91\xcf\x54\x2a\x59\x6b\xd4\x6d\x5f\x5b\xb3\xf6\x4e\xf5\x0d\xce\xb1\x44\x13\x42\x58\x79\xfc\x82\x24\x04\xcb\x86\x31\xdb\xdd\xef\xb6\x2c\x7e\xaf\xac\x35\xc6\x5c\x46\x53\x4c\x93\x5c\x90\xca\x69\xe1\x69\x86\x05\x95\x9c\x0d\x3f\xeb\xbb\x4c\x1f\xe4\x6b\xf8\x9c\x8b\xcd\x4e\xcc\xf0\xaf\x21\x05\x5f\x95\xff\xf9\xe9\xbe\xfc\xaf\xd2\x99\xbf\xb8\x2f\xff\x6b\x39\xad\x07\x0d\x57\x29\xfb\x10\x7d\xba\x3f\x41\x9f\x20\xc4\x49\xa0\xfb\x39\x36\x14\x7b\x71\x7f\x82\x2e\x88\x94\xf0\x4b\xf1\xb1\xa2\x2a\x81\xb9\x7d\x47\x19\x16\x0b\xe4\xa6\x6f\x12\x5d\x71\x34\x47\xc4\x2f\x4d\x75\xf1\xd8\xdf\x73\x06\xaa\x7b\xb1\x7a\x17\x7c\x46\x23\x9c\x6c\xb7\x88\x83\xab\x12\x1f\xb8\xbe\x5d\xba\x14\xe1\xdb\xf5\xb5\x18\x5c\x9d\x41\x12\xa9\x1b\x6a\xc3\xcc\xaf\x88\xd4\x44\x12\x71\x16\x5b\x2f\x8d\xbe\xfd\x17\x81\x50\xff\x77\x0e\x89\xb8\xb9\xa4\x6c\xa6\x5b\x44\xc7\xe8\xfa\x76\xc4\xae\x45\x6c\x0c\xa1\x44\x4b\xc3\x86\xe6\xa8\x44\x8c\x2b\x44\xd3\x8c\x0b\x85\x99\xd2\x8a\x00\x88\x01\x76\x45\x0c\x07\x38\xe5\x69\x9a\x2b\xac\x0f\x5a\x6d\x51\x99\x31\x87\xdc\x11\x75\x1e\x83\x6b\xa5\x61\x0d\x8d\x9c\x50\xcc\x25\x13\xba\x7d\x2d\xa3\x94\x75\x68\x1a\xd7\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xc7\x20\xcf\x7f\x35\x1a\x08\x4e\x4d\x52\x05\x11\x03\x11\xcd\xa9\x22\x91\xd2\x47\x70\x23\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\x30\xb8\x3c\xfb\xf3\x7f\x94\x7e\xb8\xbd\xac\xfd\x30\xfe\xf1\xcf\xb5\x5f\xfe\x7f\x4b\xe9\xa9\xda\x53\x4d\xcf\x0f\xe6\x72\x08\x22\x35\xd8\x84\xdd\x54\x11\x4d\xf1\x8c\x20\x99\x67\x9a\x02\xe4\x51\x79\x7f\xb5\x48\x79\xc1\x71\x4c\xd9\xcc\x64\x80\x5e\x50\x45\x04\x4e\x2e\x71\xf6\xd1\xd9\xaf\x37\x58\x9d\xff\x7b\x57\xca\xd7\xfd\xf0\xf3\xe0\x32\xcc\xf8\xfd\x70\x73\x7b\x7d\x7f\xbd\x74\xd6\xa5\x16\xea\xc7\x48\x3f\x3e\x81\xff\x45\xc7\x48\xb7\xee\x25\xdf\x94\x28\xac\x35\x02\xf4\xb5\x49\x9a\xf3\x89\x34\x94\x25\x70\x6a\x32\x41\x53\x0a\x57\x8a\xb1\xe0\x7d\x63\x84\x6b\xaf\x3d\xf8\x73\x63\x3e\x00\x6d\xd9\x5d\xca\x2c\xc6\x22\x46\x7f\x97\xd5\xf4\x71\x30\x1c\x9b\x1f\x48\x8c\x0e\xd1\x5c\xa9\x4c\x9e\x1c\x1f\x3f\x3f\x3f\x1f\xe9\xb7\x8f\xb8\x98\x1d\xeb\x3f\x0e\x09\x3b\x9a\xab\x34\x31\xe9\xf2\x7a\x15\x4e\xd0\x8d\xe0\xfa\x0a\x01\x05\x9d\x08\x8a\x13\xfa\x2b\x89\xd1\xc4\xf0\x3f\x3e\x45\xbf\x44\x5c\x90\xa3\x62\x63\xac\x51\xc9\xde\x23\xd6\xf0\x74\xac\x5f\x6a\x60\x26\xd5\xfd\x44\x31\x89\x68\x6c\xc5\x0c\xc2\x22\x0e\x96\x47\xe3\xab\xd0\xed\xb9\x4c\x43\xad\xd1\x64\xb9\x2a\x96\x33\x50\x56\x70\x4c\x82\x6c\x77\xc5\xcb\x04\xa7\x15\x9f\x73\xa3\xb6\xe6\x5a\x45\xd7\x77\x2b\x86\x5b\xd5\xbd\x9a\xe9\x09\x47\x3c\x41\x93\x7c\x3a\x25\x22\x74\x48\x1f\x68\x6d\x86\x4a\x24\x48\xc4\xd3\x14\x24\x06\xfd\x55\x2e\x0d\x55\xc3\x8a\xd9\xd1\x1e\x8d\x18\xec\xbf\x56\x73\x80\x02\x62\x0e\xac\x8e\x11\x12\x23\xcc\x16\xa6\x9b\x49\x3e\x0d\xdb\x37\x30\x14\x38\x46\x54\x8d\xd8\x20\x49\x90\x20\x29\x57\x24\xc8\xa1\x04\xe7\x59\x79\xc1\x81\x45\x0a\x92\x25\x38\x22\xb1\xa1\x87\x84\x47\x38\x41\x53\x9a\x10\xb9\x90\x8a\xa4\x61\x03\x5f\x83\xad\x46\xaf\x19\x95\x28\xe6\xcf\x2c\xe1\xd8\xce\xa3\xfa\xd9\x37\xe5\xd3\x38\x74\x10\x01\x43\x21\xb8\x80\xff\xf9\x81\xb2\x78\x67\x1c\xea\xe1\x6e\x78\x1b\xfe\xfb\xee\xe7\xbb\xfb\xe1\xe5\x7a\xdc\xc7\x53\x16\x0c\x0f\x74\xf8\x13\x74\x67\x16\x81\x0b\x2d\x11\x89\x96\x49\x5d\x5a\x52\x2a\x7e\xe0\xf1\x86\xdc\xf7\x72\x70\xf5\x30\x28\x71\x94\xbb\xd3\xef\x87\x67\x0f\x15\x7d\xc0\xce\xaf\x24\xc3\x1b\xf5\x2f\xfc\xed\xf4\xfb\xf3\x8b\xb3\x71\x83\xc2\xf8\xe1\x76\x78\x7a\xfd\xe3\xf0\xb6\xd0\xed\x1a\x97\xa8\x32\x98\x2a\xb3\xba\x37\x4c\x69\xce\x63\x34\x59\x34\x03\x42\x68\xc9\x39\x01\x5f\x6c\x01\x89\x62\x5a\x3d\x01\xde\xe4\xb0\x39\x8a\x2f\x52\x1e\x93\x03\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\x9b\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x13\x34\x40\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x86\xa1\xb9\xcd\xd2\x8b\xd0\xba\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\x37\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\xd1\xd8\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa1\x8d\xf2\x31\x39\xbf\xbe\x53\x02\x2b\x32\x5b\x9c\x59\x96\xb1\xf9\xf1\x38\xbb\xfe\xe9\xea\xe2\x7a\x70\x36\x1e\x0e\x3e\x95\x4f\xbc\x7f\x72\x77\x7f\x3b\x1c\x5c\x96\x1f\x8d\xaf\xae\xef\xc7\xee\x8d\xa5\x24\xdf\xd2\x41\xfd\x9e\x2e\xbf\x78\x82\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x13\xb0\x8c\x35\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb2\xf8\xf0\x7a\x7a\x78\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x23\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd0\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x06\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\x75\xaa\x7a\xc8\xb6\xa3\xa9\x87\x1b\x58\x71\xa3\xb1\x97\x74\x43\xfb\xa4\x81\xd6\x60\xe2\xe6\xf1\xf2\x4b\xa6\xb9\xed\x3a\x39\x95\x5f\x6c\x20\x27\x93\x4b\xa5\x77\x7e\xaa\xb5\xcd\x06\x5a\x22\x9f\xa9\x35\x18\x84\xe3\xae\x90\x50\xd1\x0c\x98\x57\x71\x96\x11\x2c\x64\xd3\x6e\x97\xc5\xc0\x96\xbd\x37\x3d\x85\x7d\xd8\x4d\x76\xfd\x1c\x20\xce\xc0\xe0\xe0\x85\x88\x0a\x45\x76\xa0\x01\xd3\x56\x8d\x02\x6e\x00\x6d\xe9\xda\x22\x1b\x5d\x52\xa9\x95\x46\xf3\xe3\x77\x16\x72\x69\x33\x82\xf8\x38\x38\xbf\xa8\x08\x17\xe3\xb3\xe1\xc7\xc1\xc3\xc5\x72\x33\x61\xe9\xbb\xea\x16\xa3\x43\xa4\x9f\x97\xfd\xe6\x74\x6a\xee\x0c\x07\x1c\x65\x54\x5a\xc2\xc0\x68\x65\xa1\x6a\x8c\xbd\x3a\x26\x59\xc2\x17\x29\x61\x60\xe2\x29\xdd\x84\x7a\x3d\xa7\x98\xda\xab\x25\x18\x2c\x58\x71\xac\xd9\x0d\xae\xb1\x43\x87\x56\x45\x62\x7f\xf3\x96\xc1\xaa\x2a\xac\xfb\xc6\x78\xcf\xec\x7f\xee\x14\x56\x1b\x9e\xb1\xc1\xe9\xfd\xf9\x8f\xc3\xb2\x7e\x78\xfa\xfd\xf9\x8f\x4d\x52\xcd\xf8\xd3\xf0\x6a\x78\x3b\xb8\x5f\x21\x9c\x54\x9a\x6c\x12\x4e\xa4\x1e\x70\xd5\x7b\x4a\xa5\x8f\x08\x8a\x0c\xe4\x15\xa2\x4a\xa2\x27\x2a\xe9\x84\x02\x40\x98\xf5\x44\x3e\x9c\x03\x67\x7d\xc2\x09\x8d\xa9\x5a\x38\xf1\xc5\xf4\x5b\xde\x47\xcd\x49\x6d\xfb\xc6\xec\x10\xfa\x27\xc1\xca\x67\x36\xc7\x4d\xfa\x04\x81\x6e\xfb\x04\x4a\x5b\xf0\x19\xd3\x82\x34\x9b\x11\x61\x86\x03\xde\x97\x70\x2c\xc1\x73\x3d\xaa\x50\x58\x29\x56\xcd\x0b\xad\x33\xc2\x88\x00\x10\x38\xdf\x89\x11\xa4\x04\x61\x5f\x69\x99\x2b\x4b\x68\x44\x55\xb2\x40\x11\xd8\xb0\xc0\x9c\x99\x62\x86\x67\x56\x38\x00\x35\xa7\x42\x12\x7f\x35\x28\x6a\xd7\x53\x6b\xda\xbf\xa7\x64\xc3\x63\xf6\x70\x75\x36\xfc\x78\x7e\x55\x26\x81\xef\xcf\x3f\x95\x44\xd8\xcb\xe1\xd9\xf9\x43\xe9\x36\xd7\x92\xec\x72\xb9\xbe\xda\x6c\xc3\x51\xf4\x2f\x9d\xa0\x33\xf3\xe9\x89\x5e\xdc\x06\x88\x38\xaf\xfc\x56\xd6\xe1\xd6\x85\xe4\xb9\x3f\x86\x4c\x89\x46\xbf\x44\x57\x13\x92\xf5\x41\x96\x6c\x48\xcd\xa1\x0a\xb5\xbe\xaf\xaa\x4e\xe5\xea\x94\xdd\x8b\x10\x74\x79\x54\x58\x96\xc2\x18\x06\x30\x1a\xb4\x19\xb1\x1a\xdc\x5a\x05\xc3\xfe\x11\x5c\xd4\x69\x2e\x95\x71\x25\x02\x71\xa2\xc7\xbf\x48\xbd\xa0\xe0\x6a\x3c\x42\x77\x84\x8c\x98\xb3\x1e\xcc\xa8\x9a\xe7\x93\xa3\x88\xa7\xc7\x05\x3e\xe1\x31\xce\x68\x8a\xb5\x24\x4d\xc4\xe2\x78\x92\xf0\xc9\x71\x8a\xa5\x22\xe2\x38\x7b\x9c\x41\x04\x8c\x73\xa7\x1e\xfb\x66\x67\xfc\xdf\x2f\xfe\xf4\xed\xe1\xc5\x5f\xbe\xfd\x50\xb7\x90\xb5\xed\xff\x90\x45\x38\x93\x79\x62\x23\xe6\x44\xb8\x36\xee\xc8\xe7\x64\xd5\x7e\x5f\x95\xb7\x6b\x3b\xfd\xf5\xf4\xe6\xa1\x64\xb1\x2e\xff\xf3\x72\x78\x79\x7d\xfb\x73\x89\x53\xde\x5f\xdf\x0e\x3e\x95\x18\xea\xf0\xe6\xfb\xe1\xe5\xf0\x76\x70\x31\x76\x0f\xb7\xb1\xbd\xfd\xc0\xf8\x33\x2b\x2f\x8d\x74\x1c\xb0\xd6\xd3\x09\xfa\xc8\x05\xfa\xc1\xef\xe4\xe1\x04\x4b\xb8\x62\xdc\x9d\x25\x0f\x50\xc6\x63\x60\xbc\x88\x64\x73\x92\x12\x81\x13\x6b\x33\x90\x8a\x0b\x3c\x33\x37\xbd\x8c\x04\x56\xd1\x1c\xc9\x0c\x47\xe4\x00\x45\x40\x0d\xb3\x03\xd8\x14\x50\xb5\xf8\xac\x6a\xe7\xbb\xcd\x99\xa2\x29\x71\x2a\xb8\xfd\xe7\xbd\xd9\x8c\x0d\x36\xe7\xfa\xfe\xfb\xb2\xb0\xf7\xf1\xe2\xe7\xfb\xe1\xf8\xee\xec\x87\xa5\xeb\x69\x3e\x2b\x8d\xec\x0e\x02\x90\x4e\x79\x92\xa7\x2c\xfc\x7b\xf3\xb1\x9d\x5f\xdd\x0f\x3f\x55\x47\x77\x3d\xb8\x2f\x53\xc6\x6d\x39\xc0\xed\xc3\x77\xd7\xd7\x17\xc3\x92\x4b\xf8\xc3\xd9\xe0\x7e\x78\x7f\x7e\x59\xa2\x9f\xb3\x87\x5b\x83\x46\xb8\x6c\x9a\x6e\x04\x0d\x13\xd5\xd3\x0a\xa7\xb9\x6b\x56\xd8\x89\x13\x0d\x6c\x40\xb9\x39\xcb\x87\x01\xdc\x8e\x09\x07\x03\xab\xce\xa1\x37\xa9\x46\x66\xa4\x8d\xec\x50\x95\xb7\x09\xb5\xb3\xe3\xa5\x1b\xbd\x8c\x2b\xdf\xfb\x21\x18\x28\x50\xa3\x6c\xe3\x24\xe1\xcf\x26\x94\x37\xa5\xfa\x56\xb6\xc0\x68\xfa\x15\x59\x78\x08\x8f\x1a\x38\x5e\x79\x5b\x48\x24\x88\xba\xe4\x39\x53\x9b\x93\xdc\xe0\xaa\xc4\x77\x86\x57\x3f\x8e\x7f\x1c\x94\x29\xf0\xfc\x62\x39\xab\x09\x9b\x68\xb8\x8a\x07\x57\x3f\xfb\x4b\x18\x02\xbe\x0f\xbc\x86\x6a\x64\xd7\x28\xa1\x5a\xec\x8d\xb0\xd6\x5e\x13\x90\x68\x10\xa1\x60\x72\x48\xf5\xe4\x20\xc0\x34\x33\xfe\x24\xc3\x9f\xcc\x20\x4f\xdc\x1f\x95\xf6\x24\xac\x0b\x58\x53\x5d\x3c\x3d\xb4\x63\xb5\x6a\x86\x08\x7b\xa2\x82\x03\x9e\x2d\x7a\xc2\x82\x6a\x69\xdc\xb4\xac\xe7\x7a\x02\xff\xbb\x5e\x9b\x60\x18\xad\x30\xae\x3b\x2e\xd4\x99\x0f\xe4\xdd\xcc\x1a\xd2\x14\xd0\x5a\x0f\x65\x6d\x36\x74\xd4\xbf\x6d\xd8\x9c\x2d\x03\x7e\xcb\x13\xfe\x47\x72\x46\x71\xa2\x19\xc0\xee\xe4\xc5\xc1\xd5\xdd\x79\x59\x7e\x2c\xab\x19\x01\x5f\xde\x58\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd0\xf9\x14\x58\x82\x7e\x9d\xa1\x9c\x59\x07\x98\xbe\x70\xcd\x20\x0f\xb4\x28\x6b\x87\xe0\x35\x44\x30\xbc\x30\xe2\x82\xa5\x8a\xc1\x8f\xd8\x4f\xde\x89\x06\x8f\xa6\x5c\x33\x20\xbd\x8b\xb6\xbd\x13\x84\x99\xa4\x07\x48\x2b\x2c\xd5\x3d\x85\xd4\x01\xad\x50\xda\x10\x2e\xcd\x69\xec\x9f\xaf\x7f\x0d\xd4\xe2\x84\xc3\xcb\xa0\xf9\x2e\xa8\x5c\x05\x2d\xa2\x71\x62\x3c\x26\xe3\xee\x77\x42\xc4\x05\xb1\x7e\x96\xb5\xaf\x81\x55\x8c\xfd\x1e\xcb\xc7\x9a\xef\xe1\x9c\x49\x85\x59\x44\x4e\x13\x2c\x37\x0c\x42\x72\x36\x8e\x83\xb2\xc4\x71\x7b\xfb\x70\x73\x7f\xfe\xdd\x0a\x2e\x5f\xfd\xb8\x1e\x06\x14\x25\xb9\x73\xcf\x4d\x04\xc7\x31\xd2\xec\x73\xc6\x8d\x2b\xd0\x0a\xfe\x05\xf4\xb7\xc9\xeb\xf1\x01\x95\x25\xd8\xf1\x22\x1d\xc1\xda\x39\x42\x57\x02\xb5\x0b\x81\x22\xbd\x12\x28\x30\x79\xb8\xad\x06\xcf\xa2\x29\x48\x62\xad\x5b\x59\x82\xd5\x94\x8b\xd4\x70\xf9\xd2\xa4\x4d\xe3\xcb\x1b\xa5\x4c\x11\x21\xf2\x4c\x51\x87\xe5\x5e\x95\x52\xa1\xc2\x3b\x9f\x5d\x12\x29\xf1\x8c\x6c\xe3\x80\x6e\x52\x1e\xee\x7e\x0c\xff\x09\x0e\xe6\x2e\xb2\x7f\x69\x84\x2e\xf2\xdd\xd1\xd3\x35\xfb\x68\x02\x79\x6e\x78\x42\xa3\x0d\x03\xee\x3e\x0e\xce\x2f\xc6\xe7\x97\x5a\x89\x1f\xdc\x0f\x2f\x4a\xa2\x04\x3c\x1b\x7c\xbc\x1f\xde\x5a\x10\xeb\xc1\x77\x17\xc3\xf1\xd5\xf5\xd9\xf0\x6e\x7c\x7a\x7d\x79\x73\x31\x5c\x11\x99\xd3\xda\x78\xdd\xba\x5a\x7d\xf5\xa4\xf6\x0b\xec\xb0\xe6\x65\xa1\xbd\x0c\xb2\xc6\x30\x4d\xc0\x09\xce\x8d\x33\x1c\x23\xc6\x63\x02\x3f\x4b\x67\x9d\xf1\xc8\xd1\xe8\x5c\x7d\x95\x24\x08\xe7\x8a\xa7\x18\xbc\x36\xc9\x62\xc4\xf0\x44\xb3\x56\x9c\x24\x41\x78\x97\xc8\x19\xd3\x2c\x56\x37\x66\x20\xda\xa3\x84\x68\x76\x9e\x05\xc9\x7e\xd6\x6f\x30\xa5\x0c\x22\x6d\x53\x2c\x1e\x8d\x9b\xa9\xe8\xb2\x38\x14\x12\x61\x39\x62\x7a\x5c\xc4\x1a\x86\xba\xac\xf0\x49\xa7\xb7\x5a\x57\x27\xc5\x8f\x44\xaf\x4a\x9a\x47\x73\x94\x09\x3e\x13\x44\x4a\x6b\x5b\x8e\x30\x33\x01\x08\xf6\x75\x7d\x0d\x8d\x18\xe3\x7a\x29\x9c\x09\x3b\x26\x19\x61\x31\x61\x11\x35\x69\x7d\xe0\xbb\xf7\xa6\xcd\x99\xc0\xd9\x1c\x49\x0e\x4e\x6f\x58\x76\xb0\x5f\x99\x8f\xdc\x4d\x66\x66\x6c\x1e\x87\x16\x68\x91\x6b\x3e\x71\x0d\x72\xa2\x59\x65\xf8\xd8\x5d\x86\xce\xed\x62\xec\x80\x69\x96\x10\x65\xc0\xfa\x61\xc9\x61\x33\xf4\x5a\x97\xf6\x43\x6f\x53\xd3\x26\xe8\x0b\xdb\x8d\x19\x4b\x3b\xa2\xa3\x06\xcb\xb6\x3d\x52\xe8\x7b\xcc\xe2\x44\xb7\xe2\x7c\x18\xe5\xb3\x08\xa9\x28\x03\x4d\x35\xee\x34\x6e\x73\x8b\x46\x38\x97\xdb\x5c\xa3\x95\x5c\x4c\x63\x15\x3c\x2c\x82\x42\x80\xbc\x6d\x22\x26\xac\x6e\xa6\x59\x24\x4e\xb8\x5d\x25\xf3\x7a\x6e\xea\x3f\x21\x18\x4d\xcb\x35\x9b\x09\xca\x22\x9a\xe1\x64\x23\xdd\xaf\x12\x8c\x6f\x63\xdc\xbf\xa6\x53\x4d\x3e\xdf\xd4\xdc\xb6\x8a\x88\x14\x12\x94\xed\x30\xfd\x16\xae\x61\x49\xb2\x59\x0d\x44\x16\xd1\x24\x58\xf0\xdc\xf8\xe3\x60\x5d\x48\xdc\x70\x54\x8f\x9a\xb6\x5b\x9f\x0c\x5c\x0e\x80\xde\x60\xb3\x4d\xe4\x4f\xdb\xfa\x55\x5a\xb1\xbd\x9b\x60\x3c\x9c\xdc\x34\xb7\xd9\xb4\x03\xc1\xc3\x7f\x2d\xa3\x9d\x4b\x9c\x69\x9a\xb1\xb0\xfd\xb8\x98\xa3\x55\x92\x6c\x55\x30\x17\x3f\x13\xf8\xce\x7d\x5e\x48\xf7\xdd\x28\x96\xd0\x06\x40\xd5\x3b\x29\xc5\x10\x04\x39\xe6\x96\xc6\xa7\xb9\x96\x65\x11\x86\x28\x04\xf4\x35\x39\x9a\x1d\x21\x57\x84\xe1\x00\x0d\x6e\x6e\x86\x57\x67\x07\x88\xa8\xe8\x1b\x17\xb3\x68\x03\x96\x46\x4c\x71\x2b\xad\x2c\x5c\x01\x8d\x94\x88\x19\x29\xcd\xd9\x45\x37\x41\xa8\xf2\x8c\x4a\x65\xc3\x67\x35\x5f\x09\x4a\x9d\xd0\xb4\x2a\x66\x1b\x0a\xc9\xd5\x7c\x1b\xd2\xc0\x52\xe6\xa9\xd6\x65\xc7\x14\xa7\x63\xc1\x93\x6d\x98\xc2\x19\x4c\x05\xd4\x65\x9f\x9e\x4f\x71\x8a\x74\xb3\x36\x14\xc4\xbb\x1c\xbd\x48\xa7\x05\x23\xcd\x97\xf5\xbd\x19\xdc\x5b\xce\xfb\x60\xe3\xd1\xa8\x0b\x81\x80\xf4\xfd\x16\x56\x51\x98\x8d\xc7\xd6\x52\x3f\xc6\x51\xa4\x55\xee\x1d\x4f\x2a\xa8\x9f\xe3\x5c\x02\xb6\xa3\x17\x9b\xe6\x2a\x3a\x77\xc3\xcc\x34\x07\x83\x60\x60\x7d\xe5\x4a\x1e\xd1\xa2\xfd\x86\x7e\x27\x8b\x5a\xaf\xae\xc2\xcd\x83\xf4\x26\x15\x73\x09\x4b\x02\x3b\x29\x4d\x85\x1c\x35\x27\x0b\x34\xc7\x4f\xa4\xd4\xa5\x4b\x88\xd1\x0d\x2f\x78\x2e\x9a\x18\xdd\x88\x9d\x91\x4c\x10\x2d\xe9\x57\x1d\x28\x9e\xa6\x6f\xcb\x94\xd8\xd3\x75\x4f\xd7\xef\x9e\xae\x4f\x4d\xa1\xa4\x81\x2f\x8c\xb5\x95\x00\x67\x1a\x1b\x67\x9c\x27\xe3\x0e\x36\x91\xee\x2b\x5e\xf2\x84\x55\xca\x46\x01\x24\x00\xcf\x41\x3e\x2a\x5d\x9b\x5c\xdf\x75\x41\x8a\xad\x1d\xde\x92\x65\x70\x2e\xb3\xa0\x5e\xce\x36\xe7\xbd\xa9\x95\x65\x2d\xa1\x17\x17\x73\x4e\x8d\x7c\xe3\xdd\x65\x61\xfd\xd3\xd2\x61\x72\xa2\x08\x65\xb5\x6a\x6c\x86\x9e\xf5\x02\x1b\xb9\xe3\x1f\x39\x57\x58\x7e\x73\x34\x62\x5a\x88\x7a\x24\x0b\x63\x6e\xd5\x62\xca\xef\xb4\x2c\x7e\x28\x09\x93\x10\xee\xfd\x3b\xe3\x9e\xd3\x24\xee\xcc\xd5\x46\x35\x35\x45\xe0\x20\xe8\xda\xf7\x02\x21\xba\xb6\x51\x2b\x25\x15\x01\xd0\x20\xe7\x9b\xb9\xd8\x67\x66\xf8\x33\xa2\x20\xc5\x5a\x51\x05\x3a\x53\x6c\xaa\xcc\xd5\x86\xbe\xd2\x74\x65\xa8\x42\x70\xf0\x93\xc4\xf9\x76\x8c\x5f\xd6\xdb\x58\xc9\x19\xbd\xb6\x70\x67\x63\xde\x8f\x9d\xdd\x28\x12\xbc\x56\xba\x0d\x4b\x64\x76\x7a\x62\xd8\x81\xf3\x5f\x13\x76\xf4\x4c\x1f\x69\x46\x62\x8a\x21\x02\x5e\xff\xeb\x58\xcf\xeb\xdf\x4f\x6f\xaf\xaf\xc6\x45\x26\xcf\x7f\x8d\xd8\x20\x91\xdc\x67\x29\x20\xc6\x99\x0f\xb7\xcf\x04\x71\x22\xa1\x9d\x0b\x58\x5d\x0b\x33\xe2\x88\xb5\x8d\x20\xe6\x91\x3c\xc2\xcf\xf2\x08\xa7\xf8\x57\xce\xc0\x95\x3e\x80\x3f\x4f\x13\x9e\xc7\x3f\x61\x15\xcd\x8f\xe1\x5c\xab\x63\xf2\x44\x98\x32\x6e\x2a\xbd\x5c\x31\x24\xef\x4a\x88\xd6\xff\x77\x3d\xe6\x22\xa9\x48\x6a\x4d\x36\x22\x99\x42\xff\x8f\x20\x13\xce\x55\xf3\x25\xc5\xa7\x53\x49\xd6\xba\x90\x0a\x25\xed\xee\x1a\xfd\xe5\xcf\xdf\xfe\x41\x93\xd0\x26\x6b\x7c\x7e\x77\x3d\xd6\xdf\xff\xfb\x99\xfd\x5e\xae\xc1\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x4d\xdc\xed\xac\xd4\xfa\x76\x2a\xdb\x46\x8b\x09\x2a\x76\x30\x47\x74\x88\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\x35\x6f\x60\x2e\xe8\x46\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\xc8\x81\x81\xfa\xba\xfb\x93\x8b\xad\x86\x69\xc2\x23\x97\xd4\x62\x4d\x72\xf1\xa4\x79\xe6\xd3\xaa\xe9\x15\xb5\xdb\xf0\xab\x9b\x6c\xcd\xb6\xcd\x4b\x63\x93\x50\xac\x0d\xab\xba\x33\xcd\x83\xa1\x11\x67\xe3\x84\xb2\xc7\x8d\x36\xe3\xda\x89\x72\xba\x05\xbb\x66\xba\x45\x6f\xe7\x36\x16\x90\x35\xce\xc7\xc7\x3c\x49\x4c\x6a\x4b\xb8\x3d\x20\x77\x99\x75\x03\x61\x20\x33\x39\xa0\x24\xb6\x7e\x2f\xab\x09\x0b\xc2\x20\xe0\x6d\xc4\x26\x0b\xeb\xb3\x95\x07\x48\xe6\xd1\xdc\x65\xe6\x45\x9c\x49\x2d\x46\x73\x81\x22\x9e\xa6\xa6\xb8\x29\x23\x48\x71\x9e\x48\x1b\xed\xce\x0e\x15\x8e\xd4\x88\x15\xfd\xad\x38\x79\xa6\x02\xd2\x76\xa9\x7b\xdd\x5d\x3a\x45\xa5\xa5\xa5\x02\x37\x8d\x43\xcc\x06\x30\x82\x19\x4f\x54\x80\xfe\xc0\xeb\x67\xc9\x6c\x58\x8b\x66\x20\xe7\x5c\xa8\x71\xdc\xc8\x73\x56\x12\x4d\x95\x11\x32\x72\x98\x40\xd0\x30\x7f\xd2\xc2\x3f\x79\xf6\xc6\xd7\x65\x43\xd0\x54\xbd\x6c\x04\xdd\x8e\xd1\xd2\x91\xad\x4b\x82\x2d\x6b\x65\x10\x3c\xa2\x72\x4c\xf8\xaa\x31\xde\xc1\x57\xa7\xfa\xa3\xa5\x8b\x57\x3d\x77\x4e\x08\xe2\x71\x01\x36\x67\xee\x75\x9b\x11\xb2\x6c\x4d\x2d\x74\xc2\xcb\x65\x8e\x2e\x9b\xca\x43\xd9\x92\xab\xc7\x02\x26\x7b\x49\x40\xd6\xc4\x62\x42\x95\xc0\xa2\x84\x14\xe2\xf5\x41\x49\xb0\x80\xf8\xac\x11\x33\xb8\x71\x46\x53\x88\x51\x4c\x25\x24\x88\xc0\x5d\x1a\x38\xc3\x50\x37\x25\xb0\x72\xb4\x8b\x3c\x47\x13\x7f\x0e\x81\x65\x05\x69\x38\x66\xa7\x3b\xf2\xf8\x58\x5a\x3f\xe3\x51\x5e\x08\x72\x11\x48\xb8\x16\x53\x07\x51\x26\xe9\x6c\xae\x10\x65\xd6\xee\x88\x93\x19\x17\x54\xcd\x53\x79\x80\x26\xb9\xd4\x5a\xa8\x09\x56\x33\xf1\x28\x44\x45\x9d\xb8\xd0\xb6\x49\xc4\x71\xa5\xc1\xba\x8a\xb2\x01\x69\x74\x3b\x94\xc3\xca\x5d\xb1\x82\x70\x06\x1e\x67\xb0\xda\x06\x85\xba\x8d\x06\x9e\x12\x99\x38\x40\xee\x90\x9d\xa0\x0a\x48\xdb\x39\x00\x54\xc8\x9d\x79\x29\x5e\xa3\x10\x17\x32\xc9\xa0\x82\xb8\xd8\x6d\x90\xbc\xca\xc8\x94\x06\xbd\xc9\x3b\x9d\xd2\x4c\x35\x06\x6e\xd5\x5d\x45\xb7\x01\xe6\x4f\xb7\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\xda\x81\xdc\x6a\x7b\x6f\x4a\xe3\xc2\x14\x6c\xa2\xc7\x72\x92\xdf\xc6\x89\x7d\x36\xbc\x3b\xbd\x3d\xbf\x31\x90\x13\xd7\xb7\x97\x83\xfb\x71\x83\x5f\xbb\xe1\xad\xcb\xc1\xed\x0f\x67\xab\x5f\xfb\xfe\xbe\x9c\x95\xdd\xf0\xca\xed\xdd\xf2\x64\x8e\x0e\x43\x6c\x48\x0a\x6b\xec\xe7\x04\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x88\x4c\x46\xb0\x82\x10\x22\x21\x55\x83\xe3\xf0\x1e\xe2\x72\x56\x4b\x98\xe5\xcd\x32\x30\x6c\x3b\x15\x8d\xd6\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x24\x02\x7d\xcb\x78\x9f\x33\x2a\xb3\x04\x2f\x6a\x3d\xac\xba\x72\xae\x70\x4a\x20\xe2\xb8\xc0\x8f\x73\xc9\x22\x7a\x67\x20\x81\xc9\xdf\xeb\x74\x0a\x99\x4c\x8a\x62\x45\xd0\x84\xa8\x67\xc8\x9b\x73\xbf\x7a\x5b\xaa\x0b\x18\x91\x47\x23\x06\xe6\x9c\x91\x5e\xe4\x38\x87\x68\xbf\xd1\x87\x03\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe5\x92\x19\xa6\x98\x26\x57\x5c\x79\xcb\xdc\x36\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\xeb\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x1b\x77\x80\x3d\xbd\xa0\x4b\x76\xdb\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\x36\x74\xcd\x36\xc5\xbc\xbe\x88\x93\x76\xd8\xd0\xd1\x1e\xb9\x6b\x9b\xd7\x61\x3b\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x3b\xaa\xad\x0f\x6d\x4a\x6a\x6b\x08\x03\xaa\x2a\x5e\x19\x89\xd6\xd0\xb8\xfc\x00\xef\xf4\x77\x2b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x2b\x47\x1c\x25\x5c\x96\xb1\x72\x3a\x0f\xfa\xd4\x7e\xba\x6c\xdc\xc3\x90\x7c\xb5\x5c\xb8\x56\x40\x43\xc3\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\x7d\x80\x28\x44\x5b\x82\x42\x96\x14\xc8\x01\x2c\x46\x85\x1b\x64\xc4\x8a\x98\x15\x89\x9e\x49\x02\x61\x6e\x11\x4f\x33\x30\xf1\xdb\xe1\xda\x96\x48\x6c\x22\x86\x0f\x10\xcf\x95\x6e\xcc\xe4\xe4\x38\x23\xae\x4d\xf8\x29\xdc\x1e\xc6\xf7\x66\x83\xdf\x3d\xb0\xb4\xa1\x75\x73\x97\x52\x86\x3e\x11\x05\xad\x00\x70\x7f\x38\x41\xd0\x13\xaa\x21\x94\xcd\x6b\xbf\xc5\x89\xb2\x33\x59\x63\xe7\x0b\xe0\x94\xef\x12\x3e\x59\x6e\x24\x80\xc6\xd1\xc3\xed\xb9\xb3\x48\x16\xf1\x53\x01\x7a\x71\xc9\xa3\x38\xbc\xb9\x1d\x9e\x0e\xee\x87\x67\x47\xe8\x41\x12\xbd\x3c\x7e\xba\x90\x5f\xed\x55\x12\x33\x72\x8b\xc4\xc2\xa4\x22\xb8\xcd\x10\x42\x84\x28\x65\x41\xaf\x60\x1c\x65\x98\x96\xe5\x84\x0d\x20\x29\xd4\x1a\xea\x00\x58\xa8\x3a\x4f\x1b\x99\xb7\xea\x04\x42\x9c\xd4\xf8\xfd\x44\xa9\x99\xf1\xa6\xf5\xc8\xbc\x55\xe4\x53\x8e\xe8\x7b\xe9\xc9\xc0\xd1\x52\x73\x42\x05\xea\x34\x2d\x43\x54\xe3\xee\x73\x0a\x42\xdc\x2f\x71\xb6\x3c\xfd\x14\x3f\x97\x88\xd6\x88\xc2\x81\xef\xfe\xa5\xcf\x81\x63\x6b\x63\xc3\x0a\xb7\x9f\x60\xe1\xd0\x32\xbc\xd5\xf3\x4d\x93\xf1\x21\x9d\x91\x2c\x9c\x58\x65\x10\x36\x8e\x55\x22\x38\x3b\xf0\x0b\x65\xa8\x74\x25\x1e\xa0\x29\xfd\x6c\x1b\x2d\xe2\xdb\xdd\xab\x41\xc0\x43\x4b\x3c\xe5\x1c\xd7\xcf\xd4\x1a\x62\xc3\x0d\x7c\xbf\x54\x88\xe4\x52\x8b\x44\x91\x16\x97\x04\x89\xb8\xd0\x37\x05\x74\x5b\x78\x21\x56\x89\x0c\x0a\x0b\xbd\x28\x75\xaf\xcc\xb2\xd3\x5f\xd4\x20\x89\xb1\x22\x87\x5a\xf4\x5a\x91\x00\x6d\x73\x64\x20\x9b\x06\xab\x00\x0e\xac\xb8\x79\x26\x64\x86\x99\x0b\xcd\x6e\x19\xae\xbb\xf2\xb6\x60\x55\x5a\x05\xc2\x90\x1e\x06\xf2\x15\xa4\xfe\x94\xc6\x21\x33\x58\xcf\xa5\xe3\xb0\xd1\x2f\xfb\xb0\x6c\xcf\xd8\x07\xe3\xb4\x0c\x36\xcf\xe2\x7d\x1a\x6c\x82\xa5\x42\x76\x4c\x6d\xa6\x88\x40\x45\x7c\x59\x23\x6c\x49\xb7\xef\xaa\xbc\x69\x12\x2a\x6b\xb1\x04\x3c\x23\xd2\xe1\xa6\x18\x94\x18\xad\xd3\x38\x41\xd8\x94\x62\xf6\x67\xdb\xd6\x64\x76\xb7\x44\xc8\x4c\x20\x48\xbf\xde\xf4\x11\x1a\xb0\x1a\x5e\x96\x8b\xcb\x2a\xad\x97\xb9\x93\x70\xf2\x8c\x17\x12\x65\xc2\x40\xcb\x98\xc8\x7d\x37\x79\xd0\xc0\xca\x1f\xf9\x50\x08\xe5\x52\x27\x10\xd8\x62\x56\x07\xcd\x39\xb9\x77\xfc\x02\xae\xbc\x4a\x54\xb9\x17\xc8\x8b\xe6\x0a\x5b\x45\x07\x56\xa7\xc8\x38\x9a\x63\x36\x23\x63\x67\x64\xdd\x44\x5b\xd2\xed\x9c\x42\x33\x67\xb6\x95\xe6\xcb\xe9\xc6\x28\x4c\xb6\xfe\x8b\x79\xd5\x1b\x10\xf5\x21\x90\x0a\xcf\x08\x32\x23\xea\x64\x96\x2e\x45\x8c\x59\xb0\x61\xd0\x13\x6c\xab\xc3\x72\x14\x7d\x9b\xf0\x0e\xa1\x4f\x17\x78\x42\x92\xb7\x89\x9c\x80\xae\xad\x71\x1e\xbc\x75\x26\x1b\x80\xa0\x67\xb0\xe7\x57\x58\x86\xb5\xde\x8b\xbc\x29\x37\x60\xd9\x3c\x4b\xd5\xcf\xb7\x98\xa8\xab\x15\xb2\xc9\x54\xdb\x2a\x88\x84\xd7\x5e\x50\x69\xa3\xc9\xc0\x16\x5e\x7f\x55\x9b\xf2\x66\x03\x09\x0a\x7e\xb4\x8c\x63\xeb\x8a\x1f\x2b\xa7\xb2\x31\xc8\x40\xc7\x2a\x78\xe7\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xca\x71\xee\x5c\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\x3c\x70\x82\xb8\x34\x35\xb4\x5a\x56\x60\x95\x69\xc7\x5d\xbf\xc5\xba\x96\xe1\x2d\x1d\x34\xef\x8c\x3e\x11\xe6\x68\xfa\xc0\x9d\x09\x3d\x28\xd7\x69\xb2\x38\xc4\x10\x66\x4c\xe2\xd0\xf3\xb1\x9c\x23\x19\x83\xcc\x3e\xd8\x23\xbb\x2f\xd9\x7d\x63\x18\x8d\x01\x49\x2b\xa1\xdb\xbb\xc0\xf0\x90\x4a\x2d\x6e\xaf\xc9\x04\xc7\x12\xfd\x8e\x71\xf5\xbb\x00\xd9\xd8\x19\x2f\xe0\x53\x67\x82\x3a\xa8\x95\x6c\x81\x43\x6b\x09\x07\xe1\x00\x61\x6b\xe5\xca\x6f\x1b\x1b\x50\x04\xbe\xbf\xa8\x34\x3a\xac\x67\xc1\xb5\xd5\xbc\xea\x3d\xf6\xa8\x7a\x2d\x54\x0d\x9e\xa6\xac\x5e\x71\xd2\x4b\x86\x4e\xb9\xca\x45\xef\xf7\xa2\x93\x6b\xbe\x86\x08\xb0\x0d\xb5\xa5\x9d\x23\xa7\x56\x80\x20\x37\xdb\x25\x36\xc9\xf3\x6c\x93\xcb\x45\x39\x74\xcd\x96\xc1\x68\x41\xf9\x3d\x1a\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x12\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x4d\xd5\x24\x52\xeb\x57\x6d\x6b\xd1\x54\x84\xb5\x56\x82\x75\xf9\x39\x2b\x15\x95\x85\x1a\x0c\x10\xe0\xc4\xa7\xf5\xd5\x39\x77\xd6\x46\xa7\xdf\x69\x7a\xae\x7b\x21\x0e\xac\x46\x61\x4c\x52\x76\x06\x5a\xd2\xf9\xd6\xf1\xda\x12\x6a\xf0\x34\x17\x10\xae\xdb\xd4\xe6\xd7\xd1\x9c\x26\x85\xef\xe2\x9b\x03\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x71\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x6d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x06\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x6a\x59\x1c\xe1\xa9\xc5\x82\x30\x35\x66\x3c\x26\x63\xd2\xe0\xd2\x5c\xc2\x24\xb4\x10\x70\xc5\x63\xb2\xd2\x21\xe9\x99\xe9\x4f\x60\xba\x91\xf9\xc4\x6f\x07\x24\xf8\xfb\x6c\x6e\x6f\x7d\x28\x53\x5a\xf3\xc8\x3d\xfa\xec\x26\xe3\xde\xd4\x99\xea\xc2\x44\x0f\xe0\x42\xb0\x03\x68\x76\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x77\x87\x2d\x70\xc2\x4d\xbc\x19\x06\x64\xb4\x93\x3b\xa3\x58\x0a\x07\xb4\x72\xe8\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xc1\xe9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\xad\x19\x4a\xed\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\x69\xd2\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x52\x01\xf4\xaf\x39\xc9\x77\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x96\x45\xe7\xd6\x40\xdf\xef\xc0\xa4\xf3\x1a\xf1\x1c\x75\x19\xa9\x81\xfd\x58\xf2\x7b\xf2\x19\x9c\x55\x16\xf1\x42\x76\x12\x57\x43\xa0\x22\x7d\xbc\xa0\xc9\x64\x03\x26\x57\x17\xaa\x97\x46\x45\x17\x06\x14\xcf\xd6\x1a\x92\xa9\x15\x87\xb4\x8b\x67\x41\x01\x21\x6e\x51\xbc\xec\x6b\xe0\xba\xeb\x22\xe4\x31\x5a\x4a\x31\x62\x2d\xc4\x75\xb8\x25\x5c\x34\xf3\xf8\x35\x0c\x10\xb6\xa1\x72\xd7\x75\xbf\x7d\xdb\x89\x30\x2c\x69\x5f\x8f\x44\x1d\x1e\x66\xe5\x61\xf0\x95\x40\xde\xc6\x80\xe8\x45\x9b\xd7\x3b\x19\x9e\x1c\xc7\x11\x8e\xe6\xad\x93\x9a\x70\x9e\x10\xcc\xda\xa4\xd7\xc6\xc7\xd5\x23\x62\xc0\x4d\x81\x75\x27\x09\x20\xfc\xba\x25\xb0\x55\x21\x0b\xf1\x9d\xc5\x80\xcc\x6e\x78\xb8\x89\x0d\x74\x03\x55\x84\x39\xcb\x0f\x65\xb3\x84\x54\xd7\xca\x42\xe8\x1f\xd8\x4e\x92\x28\x4f\x82\xb2\x90\x19\x11\x7a\xd4\x7a\x89\x9f\x08\xd3\x3a\x83\x1d\x87\x73\x66\x3c\xbb\x84\x68\x5f\x0c\xea\xc0\x77\xed\xfc\x69\x90\x75\x18\x8f\x18\x1c\x5c\x5e\x3e\xac\x9a\x56\xa5\x56\x33\x42\xbb\xd4\xc6\xa7\x33\x10\x22\xd6\x3e\x9e\x77\x65\x33\xf1\xda\x67\xd2\xf4\x3d\x86\x18\x83\xad\x5d\x6b\x81\xfb\xa5\x80\x6a\x30\x1b\xeb\xe0\xb8\x5e\xc9\x88\x0c\x51\x1b\xe5\xb0\xd3\x20\x68\xa3\x0d\x0e\xea\x45\xef\x92\xa2\xfc\x85\xbb\x0d\x3a\x0e\x65\xa9\xab\xba\xa3\xe3\x19\xac\x93\xcb\xce\xed\x85\x0d\xd9\x2e\xbb\x6c\x7d\x7e\x4f\x11\xe6\x68\x0b\xbc\x2a\x81\x01\x9d\x00\x72\xca\x7f\x32\x1a\x36\x95\xc6\x02\xe6\xca\x5c\xa4\x99\x5a\xd8\xaa\x68\x70\x2f\x86\x39\xbd\x06\xf1\xad\xc9\x3d\x5c\xbd\x23\xe3\x92\x83\xb8\xa9\x33\xe8\xc8\x9a\x15\x1a\x9b\x74\x0b\x1d\x22\x88\x54\x10\x1b\xda\xa2\x41\x4c\x81\xd9\x31\x4e\x5a\x6d\x59\x3b\x60\x9a\x90\x66\x5b\xa0\x34\x58\xf0\x57\x25\x72\xa2\x79\x17\x4e\x92\xca\xbc\x30\xa4\x43\x2b\x5f\x64\x6e\x52\x54\xc2\xed\xee\xac\x4e\xf0\x84\xac\xe5\x9e\xbe\x30\x1f\x2c\xa5\x22\x78\x05\x22\xbb\xb3\x2c\x59\x74\x8b\x28\x0f\x43\xef\x1a\x41\xd2\x56\x0d\x2c\x84\x56\x5b\x7a\x37\x95\xe1\xc9\x36\x1b\xa2\x24\x51\x2e\xa8\x5a\x8c\xad\xd1\xaf\x3b\xd3\xba\xb3\x5f\x9e\xda\x0f\xbb\x68\xd4\x27\xc8\xf5\xe7\x8c\x8c\x70\x4f\x09\x6a\x2a\xe8\xd8\x29\x74\xd9\x6e\xad\x25\x37\x82\x27\x2d\x5b\x58\x87\xde\xd4\x6d\xa8\xba\x8b\x4d\x87\x67\x2b\x73\x8c\xf9\xd4\xe1\x22\x75\x5f\xd8\x6a\xc9\x92\x35\xac\xa5\x0e\x7e\x39\x13\x94\x0b\x5b\x19\xa4\x4b\x50\x5b\x8a\x3f\x8f\x33\x2c\x70\x92\x90\x84\xca\x74\x73\xdb\xee\x9f\xfe\xb8\x74\xb4\xa7\xa6\x82\x8d\xb4\xf5\xa0\x3e\xd3\x34\x4f\x11\xcb\xd3\x89\x95\x72\xb1\x7c\x0c\xc1\x2f\x5d\xaa\xbe\xc1\x70\x72\x03\x2c\x01\x06\x88\x00\xce\x74\xc4\x02\x60\x6b\x6b\xaa\xc0\xd1\x9c\x92\x27\x80\xdd\x14\x8c\x48\x79\x84\xae\xb8\x22\x27\xe8\x12\x67\xf7\x20\xa8\x99\x92\x92\x33\x63\x1d\xc7\x12\x69\xa9\x35\x67\x54\x1d\x8c\x98\x45\xc3\x76\xab\x72\x1c\x71\x66\x10\x51\x23\x58\x58\xdf\x04\x98\x7b\x1d\x34\xa8\x72\x89\x8d\x54\xb6\x2c\xb6\xc0\xcf\xe3\x20\x7a\x75\x6c\xb2\x03\xd6\xa0\xe3\x5b\xfc\x6c\xe2\xb5\xcf\xb0\xc2\xa6\x5a\xec\x32\xc9\xdd\x06\x44\xd9\x0a\x42\x06\x08\xd8\x05\x8e\x70\x8b\x46\xe1\x6b\x9f\x99\xe8\xd4\xaf\xe9\x11\x39\x42\xdf\x25\x7c\x22\x0f\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x0f\x8c\x83\x0a\xfe\x6d\x52\xc1\xbe\x71\xab\x5f\xf0\x7d\x28\xfb\x37\xa5\x9f\x0d\x08\x86\xfc\xd3\xc9\xf1\x71\xba\x38\x9c\xe4\xd1\x23\x51\xfa\x2f\x90\x29\x1a\x57\xc8\x21\x48\xe1\x26\x3c\xaa\x55\xab\x53\xc7\xb2\xea\x44\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\x6b\xae\x1a\x69\xa7\x2c\xf2\xb6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x35\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x68\xc4\x06\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xe4\x40\x37\x0c\x90\x68\x2e\x90\x10\x3d\x0b\x9c\x65\x44\x8c\x98\x85\x36\x05\x00\x6f\xce\x6d\x90\x48\x5b\x34\x79\xaf\x51\xbe\xae\x46\x19\x26\x7d\x94\x13\x16\x57\x9d\x6f\xc8\x6f\x5c\x9a\xea\xb1\x24\x37\x50\xcb\xa2\x5d\x23\xbd\xdf\xde\x6c\xdc\x71\xcc\xab\xb4\xf3\x41\x25\x4c\x1f\xca\x4d\xa7\xa0\x40\xca\xa2\xaa\xa6\xb3\xf5\x79\xf5\xbd\x24\xe6\x00\x32\x36\x7c\x1c\x73\x22\x03\x23\x3e\xf2\xb6\xb8\x84\x4e\x89\x96\x3e\x46\x4c\x93\x71\xe8\x70\x30\x00\xdb\x0e\x6f\x5b\x77\x1a\x09\x2e\xa5\x8d\xbc\x37\xed\x2c\xcf\x9f\xda\xa2\x96\x9f\x41\x09\x3f\xbf\xbe\x1a\xd7\xab\xfa\x05\xcf\x5c\x7d\x3f\xfb\xb0\x31\xc9\xbe\xb5\xa9\x95\xd5\xfc\x8a\xb5\x58\xa3\x9e\xdf\xf1\xe9\xc5\xb9\x2f\x62\x55\xe9\xba\x5e\xd0\x2f\x44\x56\x6f\x2f\xe9\x57\x9f\x71\x50\xdc\xaf\xd2\xc4\x92\xf2\x7e\xab\x37\xab\x1c\xef\xbb\x0d\x6c\x5e\x65\xeb\x57\xf2\x87\x32\xcd\xac\x0a\x4b\xdf\xd1\x36\xb5\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x76\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\xb5\xad\x58\xcf\xe3\x75\x6f\x61\xd2\x77\x11\xc6\xfc\x7a\x39\xcc\xc9\xa2\x88\xda\x93\x56\x76\x73\x25\xb8\x5b\xec\xfe\x13\xe2\x21\xe1\x5b\x37\x74\xdb\x24\x45\x0f\x1d\x25\x08\x96\x36\x1c\x03\x72\xf9\x2a\x79\x3e\x6b\x98\x87\xfd\x98\x4d\x36\xf0\xa1\x2f\xc2\x10\x5c\x35\xb6\xae\x58\xe4\x0e\x22\x15\x82\x3c\x11\x01\xb4\x63\x63\x7e\x58\xf9\xa8\xe2\x44\x10\x1c\x2f\x82\x15\xf1\x01\x07\xa6\x67\x30\x8f\x49\x9a\x6a\x05\x1e\x54\x13\xc6\x0f\x79\xe6\x74\x96\xd2\x5b\x50\x41\x83\x4e\xf5\x8d\x15\x84\x2b\xe8\x2f\xd8\x21\xf9\x4c\xa5\xd2\x72\x45\x43\xac\xa6\x6b\x04\x24\x1e\xa8\xab\x35\x27\xf6\x86\x1b\x7d\x18\x7c\x77\x7d\x7b\x3f\x3c\x1b\x7d\x28\xa2\xf3\x5d\xfa\x99\x47\x84\x72\x00\xff\x9c\x8d\x98\x0f\xa8\xf5\x00\xc8\xb0\x97\x08\xc7\x71\x81\x6c\x60\x95\x48\x23\xb3\x2d\xe5\xc8\xc1\xa9\x58\x19\x4a\xbb\xa4\x99\x07\xc8\x41\xda\xd7\x93\xb5\xc4\x75\x56\x3a\x39\x26\x93\x6a\x49\xca\xcb\x8e\x2e\x9b\x10\xbb\x55\x19\x5d\x9b\x28\x07\x2e\xc8\xc8\xb3\xd3\x95\xe0\x76\x3e\xc6\xe6\x12\x5e\x8f\xdb\xb9\x0d\xd9\x60\x53\x3f\xd2\xcf\x24\xbe\x6d\x91\xaa\x76\x92\xd1\xd2\x29\x12\xb0\x71\x17\x72\x46\xd7\xd1\xf8\xfd\x54\x1e\xf4\x77\xdd\xd9\xd2\x75\x01\xc9\x56\xc0\xab\x02\xb6\xaa\x42\x18\x45\x44\x28\x4c\x19\x9a\xc2\xc1\x66\xd1\x02\x01\x60\x07\x01\x1f\xf6\x1f\x51\x4a\x19\x20\x07\x2c\x5b\xda\x87\xf2\x3c\xd6\x10\x5a\x2f\xcf\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\x83\x9f\x97\xca\xaa\x95\x16\x96\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xc6\x89\x26\x0b\x45\x1e\x6e\x2f\xb6\x92\xef\x9a\x9d\x65\xad\x18\xe1\xa1\x74\xd5\x8c\x88\xd0\xe5\xd3\x98\x44\xab\x50\x4c\xbb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x32\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\x76\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x8d\x93\x66\x87\xb2\x24\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\x47\xa6\x42\xfc\x40\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x11\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\x06\x37\xe7\x0d\x6b\x7d\x51\x75\x21\x7d\x59\xe5\x6c\x12\xef\xcd\xda\x35\x48\x52\x90\x9e\xb8\x17\xa8\x48\x76\xa6\xdb\xc1\x20\x19\xa7\xff\x4d\x39\x92\x60\x1f\xd0\x7a\x9b\x54\x86\x52\xda\xf1\x0a\x60\xde\xf5\x32\xf1\x8a\x65\x58\x13\xf4\x28\x1c\x90\x4d\x03\x09\x81\x7e\xea\x31\xc6\x07\x21\xf0\x0f\x37\x05\x73\x6d\x6c\xc1\xce\xc0\x90\x8a\xd9\x74\x41\x43\xfa\xd1\x50\xb4\x07\xcb\x00\xf8\x0f\x57\x90\xd1\xc5\x06\xdb\xdc\xf5\x70\xba\x21\xb5\xad\x07\xa0\x54\x8c\xcf\x99\xbf\x2d\x16\x35\xce\xb0\xb5\x3b\x80\x12\xe5\x2a\x25\x34\x15\xd6\x3b\x1a\xb1\x20\x60\x45\x1a\xb5\x47\x9f\x11\x57\x9c\x04\x2a\xde\x32\x00\xb6\x86\x24\x1d\x2f\xfc\x94\x76\xa0\x9a\x22\xaf\xe6\xe5\xf2\x22\xb5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x97\x1f\xf0\x1d\xa0\x33\xad\xab\x38\x04\xc7\x6a\xa5\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xcd\xaa\xfe\x39\x23\xd1\x26\x10\x32\x37\x58\xe0\x94\x28\x22\x96\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x2a\x48\x18\x3f\x8b\xb5\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x35\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x6d\xe7\xf4\x3a\x50\x28\xf7\x35\x50\x91\x52\xb8\xd0\x9e\x60\xa0\xac\x1e\x65\x1b\xf8\xc9\x2a\x5e\xba\x13\xde\xed\x32\x1c\x5c\x0a\x6d\xe5\x50\x95\x72\x27\x80\x4a\x40\xa5\x32\x38\x20\xcd\x00\x26\x20\xb4\x34\x45\x48\x06\x6e\x3f\x0b\x6f\x57\x18\x74\xad\x64\x55\x2d\x2e\x55\x59\xae\x15\x3c\x6e\x57\xe0\x0e\xbd\x44\xb3\x6b\x89\x66\x15\x29\x97\xa2\x6b\x35\x75\x12\x51\xc1\x99\xb1\x45\x9f\x2d\x40\x40\x79\x82\x90\x7b\x64\xaf\x48\x5b\x39\x16\xae\x7e\xca\xfc\xbf\xca\x1c\xdc\x11\x75\x48\xaa\x4d\x49\x95\x47\x81\x0b\x0a\x3c\x50\x49\x28\x0d\xd8\xb8\x1a\x18\xad\x09\x83\x34\x56\xfe\xf3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x07\xf0\x16\xc0\x20\xc8\x7c\x92\x52\x85\x70\x30\xc3\x92\x49\xf2\xc0\x9e\x67\xfd\x01\xcc\xb8\x31\xcf\xbe\x09\xa2\x67\xc5\xa1\xd9\xc0\xbe\x56\x34\xb2\x6d\x2a\x7d\x10\xd3\xfc\xb2\xc9\xf4\x81\xc6\x13\x6a\x98\x8d\x67\xae\xcf\xa6\x47\xcd\xd6\x06\x0b\x1a\x0a\xc8\xae\x54\xaa\xca\xdd\x62\x0d\x3d\x2b\x32\xe9\x8b\x8d\xe8\x94\x4a\x5f\xbc\xbe\x8b\x5c\xfa\xb6\x32\x65\xcb\x72\x2b\xdd\x27\x2d\xf6\x6f\x97\xb3\xab\xb8\x0b\x9c\x0f\x25\xa5\x9b\x56\x49\x69\xdf\x50\xcd\x8a\x84\x80\xcd\xc3\xcb\xd7\x51\x07\x8b\xfc\xac\x90\x8a\x82\x74\xcb\x32\x26\x0c\xa9\x72\x7e\xc6\x15\xe4\xd4\x44\x50\xc2\xbd\x96\xe7\x39\x62\xcd\x12\xc8\x72\x9e\xb8\x6d\x8a\xc6\x4e\xd1\xcf\x82\xf3\xe7\x66\x61\x2d\x5a\x3f\xf9\x20\x37\xa3\x2c\xdb\x62\xec\x55\x11\xb3\x70\xf1\xb5\x05\x27\x69\xc1\x63\x93\x84\xe3\x86\x53\xd9\x3c\xf4\x5a\x02\xc5\xca\x73\x61\x2f\xdd\x1d\xaa\x76\x35\xee\xdc\x39\xdf\xc4\xcb\xc8\x96\x1b\xdb\x80\xe9\xd8\xeb\xf1\x15\x57\xed\x26\x55\x66\x01\x55\x74\x67\x58\xa8\x55\x78\x02\xdd\xf8\x01\xb8\x77\xed\xd8\xb1\x09\x75\xf1\x08\xdd\x95\x3d\x29\xcd\xd8\x56\xef\x7f\x89\x59\xaf\x5b\x1a\x38\xf0\x37\x0a\x1b\xef\x4b\x43\xcb\x01\xd4\x04\xb6\x61\x92\x15\x4e\xec\x85\xbb\x9c\xc5\x44\x30\x82\xd5\xfc\xf5\xb2\x2c\x4e\xb7\x35\x4f\x07\xe3\x7b\xd9\x8c\x8b\xd3\x9d\xd4\x85\x0f\x87\x5b\xae\x91\xbe\x72\x9c\xfa\xf5\x2e\x96\x22\x1b\x7c\xe0\xab\x04\xd7\x54\xc7\x06\xb3\x61\x00\x42\xb3\x0e\x95\x6e\x95\x88\xd1\xac\xce\xbd\x4c\x4a\x4a\x83\xdd\xa7\x96\x8c\xa2\x4f\x7b\x58\x5b\x79\xc5\x92\x7c\x11\xb9\x1f\x2f\x9f\x8e\xb0\xac\x8a\x73\x1e\x64\x28\x40\x29\x6d\x85\x29\xb3\xdc\x6b\x59\x52\x82\x96\x29\x53\xdc\x94\x87\xb0\xf7\x19\x2e\x5f\x7c\x82\x4b\x9f\xee\xd0\xa7\x3b\x34\xec\x51\x9f\xee\x80\xd0\xbe\xa5\x3b\xac\x52\x41\x97\x19\x40\xbd\x4f\x0e\xaa\x6d\x96\x4a\xdc\x98\xfd\x5d\xa1\x47\x6e\x1e\xd2\xef\x6c\x88\x61\x3c\x94\xfd\xc5\xfe\xd0\x18\x12\x55\xfb\xac\x3a\xdb\xd0\x9e\xc9\x16\x55\xb7\x00\x16\x71\x62\x71\xe8\x6c\xc0\x72\xd9\xfe\xb4\xcc\x54\x3a\x62\xdf\xf3\x67\xf2\x44\xc4\x01\xc2\x0a\xa5\x5c\x2a\xe0\xc3\x2e\x3e\x06\x0e\x42\x09\xd2\xdc\xc4\x41\x60\x74\x85\x53\x12\x9b\x8a\x87\x41\x58\xa3\x35\xd8\x5a\x57\x6b\x13\xdc\x2a\x20\x87\x9a\x6d\x70\x71\x13\x23\x66\x42\x0d\x4d\x78\x1b\xc8\x0a\xd4\x4d\x0c\x08\xe6\x77\xde\x11\xfc\xbb\x23\x74\xaf\xef\x27\x2a\xcb\xe3\x0d\xd0\xd7\xda\xc6\x36\x62\x33\xc1\xf3\xcc\xdb\xd0\xf8\xc4\x94\xbe\x35\xd1\x4f\x75\x47\x30\x0c\xc6\x79\x81\x23\x1c\x6b\x5d\x7c\x39\xe1\xbc\x49\x14\xea\x46\x10\x46\x21\x01\xe9\x63\xe8\x43\xeb\x6c\xa8\xbb\xf1\xdf\x06\xc0\x2d\xcb\x80\xd8\x5f\xc8\xb9\x7c\x46\x24\x58\x85\xbc\xd5\xbd\x94\x47\x5e\xc6\x2a\x68\x1c\xe7\x32\x9b\xa8\xf7\x5b\x38\xdb\x7e\x33\x0c\x42\xd1\xb9\x8d\xf9\x32\x49\xaa\xf6\x9e\x78\x31\x6b\x69\xe7\xe8\xd9\x36\x7e\x71\x93\x8b\x8c\x83\x24\x96\x2c\x1c\x6c\x83\x45\x7a\xcb\x78\x96\x9b\xb8\x36\x1a\x86\x39\x35\x52\x36\x95\xea\x12\xab\x68\xae\x39\x77\x81\x78\xb6\xa3\x78\xbf\x82\x2b\xbf\xac\x05\xb5\x61\x06\xa7\x61\xef\x2d\x2e\x85\x0e\x16\x75\x73\xef\xbb\xf0\x7a\x27\x49\xa4\xba\x3f\xe3\x76\xb3\x05\xad\x03\xbb\xa8\xfb\xc4\x3e\xd1\x13\x5d\x45\x45\xab\xc6\xdf\x8d\xb6\xca\x15\xb7\x76\x1e\x49\xb8\x05\x84\xcc\x99\x05\xec\x2a\x5e\xb4\x15\x5a\x5b\xdc\xff\x82\x6e\x96\x05\x64\x51\xf2\x9f\xb4\x38\xe2\x2d\xae\x29\xce\xb4\x12\xa1\xb8\xbe\x25\xc5\xcc\xc8\xb1\x26\x4e\x16\x61\x94\x0b\xea\xce\x7e\x25\x27\xbc\x9d\x3a\xc0\x42\x79\x1c\x56\x54\x8a\x70\x50\x6c\xce\x38\xfc\x71\xa4\x72\xec\x03\x13\x81\x26\x5c\x11\x74\x93\xff\xee\x1c\xeb\xc2\x89\x77\x0d\x7b\xba\x92\xb0\xb7\xd8\x65\xdc\x84\x6f\xd8\xe9\xa4\x51\x36\x0b\xc0\x11\x9b\xad\xc4\x5d\x6a\x1f\x34\x7e\xd9\xad\x7e\x43\xe3\xa7\x4e\xf6\xd9\xe4\xdb\x25\xe0\x4d\x1b\xc7\x66\x97\xe2\xdc\x6d\x20\xac\x95\x9e\x42\xd8\x4a\x6b\xbf\x03\xf4\x59\x0a\x8e\x7a\x6c\xa5\xa9\xff\xf2\x7f\x99\x5a\x59\x66\x69\xfe\x0b\x71\x31\x62\xe6\xf7\x03\x5f\xa7\x42\xbf\x50\x00\xc0\xe2\x94\x14\x10\x99\xa2\x0c\xa6\x07\x90\x22\x16\x0c\xcd\x80\xfd\x7a\x98\x7e\x3d\x86\xc7\x7c\x42\x04\x23\x7a\x68\x0e\x7c\xc0\x33\xb3\x14\x33\x3c\x03\x68\xe1\x03\x88\x8c\x03\x71\xb5\x50\x45\x0c\x49\x9b\x7a\x87\xc0\xad\x34\xb3\xb4\xf9\xb6\x45\xdd\x5f\xe8\xd3\x88\xb2\x16\xd9\xb4\x08\xaf\x68\xa6\xfe\x5b\xdb\xff\x66\x12\xfb\xfd\xe0\xee\x87\xf1\xed\xf0\xee\xfa\xe1\xf6\xb4\x24\xb6\x9f\x5e\x3c\xdc\xdd\x0f\x6f\x1b\x9f\x15\xb9\xaa\x7f\x7d\x18\x3e\xb4\x3c\x72\x0d\x5c\x0c\xbe\x1b\x96\x8a\x68\xff\xf5\x61\x70\x71\x7e\xff\xf3\xf8\xfa\xe3\xf8\x6e\x78\xfb\xe3\xf9\xe9\x70\x7c\x77\x33\x3c\x3d\xff\x78\x7e\x3a\xd0\x5f\x86\xef\xde\x5c\x3c\x7c\x3a\xbf\x1a\xbb\xb0\xe3\xf0\xd1\x4f\xd7\xb7\x3f\x7c\xbc\xb8\xfe\x69\x1c\x74\x79\x7d\xf5\xf1\xfc\x53\xd3\x2c\x06\x77\x77\xe7\x9f\xae\x2e\x87\x57\xcb\x8b\x75\x37\xaf\x46\x6b\x1d\xe0\xe0\x22\x0b\x8c\x46\x81\x98\x34\x59\x58\xd2\xa6\xbf\x82\xef\xe2\xc6\xd0\xe3\xe1\x81\xfb\xcb\x94\xd6\x3e\xd4\x2c\xd0\xf9\xc5\x0a\xee\x31\x62\xde\x71\xe9\x2f\x55\x85\x67\xd2\xa5\x1e\x97\x46\x7b\x82\x06\x70\x56\x40\x61\x28\x75\x0a\x99\x0d\x7e\xa4\xce\xd5\x0d\x74\x98\xd0\x94\x82\xd7\x1b\x1d\xa2\xea\x86\x97\x1b\xb4\x73\x82\x21\x58\xbf\x5d\xbc\xec\x34\xc8\x6a\x56\x33\x50\xca\x09\x72\x1c\x9a\x18\x73\x82\xc1\x9e\x5d\x30\x9c\xd2\xa8\x9a\x82\x01\xf0\xab\xa8\x80\x1a\xa9\xb6\x58\x22\xb0\x72\xcb\x73\x82\x7e\xf8\x4b\x31\x28\xf0\x60\x58\xcd\x3b\xaf\x55\xd4\xb3\x0f\x44\x6e\x56\x75\x15\x79\x96\x7a\x72\xc7\xdc\x9a\x96\xe1\xdc\xda\xca\xdd\xe0\x6e\xca\x59\x00\x37\x56\xf2\x3d\xe9\xe3\x6d\x66\x54\xa1\xf1\x13\x74\x07\x50\x27\xb2\x50\xdd\xf5\x2e\x66\x49\x3e\xa3\x0c\xd1\x34\x4b\x48\x51\xf3\x7d\x42\xe6\xf8\x89\x72\x57\xbe\xc2\x54\xf9\x80\x75\xb4\xa2\x15\x3a\x44\xad\x07\xe5\x04\x0d\xe2\x58\x96\x19\x5c\x89\x72\x1c\xcb\x3c\x2c\x0f\x3b\x44\x08\x63\xb1\x67\x9b\x15\x3a\x2a\x8e\x1c\xac\xd8\xee\xc1\x5c\xea\xec\xb0\x7c\xf7\x6e\x71\xfd\xeb\x15\x1c\x3b\x52\x1e\x6f\x24\x0c\xdc\x63\xf9\xe8\x58\xf3\x2a\x81\xc0\xc1\xea\x6c\xd7\xa3\xc5\xd7\xe9\xda\xa9\x5f\xd9\x31\x1c\xb4\xcd\xfa\x6c\x45\x85\x5e\xd1\xa5\x9b\x71\x52\x29\xdd\xd5\xb9\xbf\x52\xe9\xaf\xc6\xce\x76\xea\xed\x69\x96\xc6\xe0\x48\x8e\x3d\xfd\xaf\x31\x8f\x1b\xf8\xf4\xda\x7f\xb9\x54\x64\x1b\x07\xeb\xb6\xae\x0f\xa8\x96\xa4\x6b\xfd\x40\x4b\xe9\x70\x47\xf0\x4e\xdd\x85\x41\x28\xbc\x40\x23\x70\xf7\x61\xca\x6c\x39\x1e\xe2\xfd\x51\xae\x00\xb5\x3e\xc7\xbe\x44\x1c\x9e\xf0\xa7\x92\x72\x99\x12\x29\x71\x0b\x60\x49\x60\x12\xdb\x86\x31\xf8\x13\x6a\x3f\xec\x48\x4f\xee\x4c\xde\xeb\xaf\x96\x19\x7d\x6e\x43\xcd\xd8\x4d\x54\x0b\xac\xb1\x8b\xb4\x45\xd7\x26\xdf\x4e\xf3\x97\x83\x22\x98\x86\x8b\x20\xc6\xa8\xcd\xfd\xd3\xd1\xac\x56\x5d\xb0\xc6\x2a\x4b\xa1\x0b\x6f\xfd\x18\x9c\xa0\xf5\x8d\x11\xb1\xad\x5f\x05\x97\xd7\x67\x0d\xaa\x2b\xf9\x3b\xc3\x0a\xd4\x11\x4f\x53\x23\x17\x94\x6c\xa9\x07\x08\x9b\x34\xc7\x42\x9a\x92\x79\x34\x37\x5e\x26\x7d\x65\x1c\x8c\xd8\x73\xb0\x21\xa5\x40\xe0\x41\xd8\x12\xa0\x89\x7e\xd6\xc7\x8d\x3e\x95\xc2\xab\x41\x64\xa4\x10\xeb\x1b\x10\x82\x71\x08\x16\xe5\xa3\x56\x10\x78\xb0\x5f\x5b\x90\xfa\x06\xb5\x02\x2b\xeb\xdb\x56\x31\xd0\xcf\x2d\x28\xd4\xb7\x85\xa6\xdc\x75\x08\x41\xad\xc0\xa6\x11\xec\xa0\x54\xe0\xab\xc2\x7b\xfb\x74\x4d\x93\xdd\x9b\x4e\x2c\x46\x85\x9e\xae\x5b\xed\xdf\xbb\x19\xfd\xde\xf8\x1d\xf2\x16\x50\x93\xa0\x35\x8f\xf0\x8d\x0e\xb5\xcc\xea\x92\xed\x6d\x20\x86\x44\x87\x06\x35\xf0\x2b\x88\xb4\x1c\xdc\x9c\x7f\x75\x80\xbe\x0a\xb3\xcd\xbe\xda\xe8\x00\xda\x71\xdb\x72\x81\xa0\x4d\x95\x52\x0e\xca\xc7\x0e\xf6\xaa\x72\x12\xed\x9e\xd9\x83\x88\xda\xce\xa1\xfe\xb2\xf4\x0d\x38\xa7\xa1\xfc\x9d\xf1\xdf\xfa\x80\x67\xeb\x02\x32\x32\x2e\x95\x0d\x6b\x17\x8f\xd8\x64\x51\x75\xf2\x1c\x78\x2f\x4f\xe7\x53\xba\x75\x49\x37\xdd\x5e\x3d\x3d\x79\xc7\x81\xb8\xcb\xef\x83\x15\x09\xcf\x03\x13\x73\xcd\xa7\x01\x17\x6b\x8b\x52\xe8\x23\xd8\x9b\x66\x55\xb2\x97\xb9\xc5\x6c\xdc\x94\x55\xf2\xcf\x7b\x23\xb7\x0e\x61\xdf\x83\xa6\x15\xb1\x11\xff\x2d\xc2\x75\x4f\x65\x2f\x4b\x65\xbb\xc8\x78\x28\x0f\x6e\xfd\x0b\xf4\xd4\xc8\x71\x41\x33\xce\xe0\xaa\x95\x09\xcf\xe0\x4b\x75\xff\x56\x17\xcc\x5d\xd3\xe7\x1b\xac\xc9\x6a\xa7\xef\x9d\x09\x1c\x30\x6e\xd7\xfa\x58\xab\x43\x1d\x28\x5b\x84\x88\x53\x93\xdd\xa8\x68\x4a\x0e\x10\x67\xc9\x22\x08\x76\xb0\xe7\x15\xc8\xcd\xc4\x28\xcd\x09\x15\xae\x13\x8b\x31\xb8\x56\x3a\xfc\x9a\xd2\x78\x1b\x8d\x6c\x11\x69\x72\x35\xb8\x1c\x9e\x8d\x87\x57\xf7\xe7\xf7\x3f\x37\xe0\x47\x96\x1f\x3b\x08\xc9\xe0\x85\xbb\x9f\xef\xee\x87\x97\xe3\x4f\xc3\xab\xe1\xed\xe0\x7e\x05\xbc\xe4\xb2\xce\xda\xa0\x0b\x73\xd9\xa4\xbe\xad\x03\x5f\xe8\xcc\xbc\x0d\xbd\xd7\x41\x26\x83\x4e\x28\x69\x01\x9a\x34\xa9\xff\x2c\x26\x02\xc5\xe4\x89\x24\x3c\x2b\xcc\xaa\x8d\x0b\x16\x20\x50\x36\xb4\xbf\x0c\x85\x12\xda\xac\xae\xf1\x09\x32\xb5\xde\x82\x72\xb7\xbe\x41\x10\xf9\xb0\x20\xec\x2b\x85\xc8\xe7\x2c\xa1\x11\x55\x41\x6a\x20\x17\xd6\xbd\x62\xdc\x87\x10\x9d\xba\x82\xb8\x76\x16\x8d\xb2\x73\x9d\x3f\xf4\xa4\xd7\xb5\x7d\x7f\xa2\x3c\x22\xda\xca\x02\x42\x3b\x50\xec\x5b\x9c\xc6\x35\xc0\xb6\x0d\x46\xf7\x12\xe6\x81\x7a\x8e\x8e\x4d\xef\x6b\x01\x73\x6b\x1e\xe4\xea\xdb\x70\x59\x9c\x4c\xe9\x5c\x2f\x0f\x94\xe9\x46\xa9\x6f\x1c\xee\x52\x2a\xac\xb9\x03\xe4\x0d\x1b\xbb\xbe\x66\xc0\x42\xad\x5e\x0c\x33\x31\xa7\x18\x09\x92\x72\xa5\x15\x30\x13\x11\x70\xa0\x85\x2a\x8a\x13\xfa\x2b\x60\x54\x09\x72\x14\x44\x50\x38\x64\xaf\xc2\x7d\x60\xf1\x23\x8e\x46\xec\x6c\x78\x73\x3b\x3c\xd5\x0c\xe9\x08\x3d\x48\x80\x9f\x2a\x4d\xfd\xcc\x92\xb7\x11\xc7\xc2\x48\x06\xca\xa4\x22\xb8\x2d\x18\x8c\x08\xc1\x45\x77\xfe\xe0\xfb\x1b\xc2\x77\xcd\xe4\x0d\xcf\x4a\xb6\x29\x67\x00\xb8\x6a\xad\x8a\x1c\xe4\x0c\xec\x3c\x27\xeb\x16\x3f\x97\x56\x24\x84\xdf\x00\x49\xa4\xbc\xea\x2f\xb8\xda\x00\xe0\xd9\x7d\x7e\xa5\x3e\x6f\xe0\xdb\x65\xf3\xbc\x87\x10\x3b\xa9\x0a\x34\x50\x03\x18\xea\xab\xde\x54\xe6\xd9\x2a\x2a\x8a\xb7\x80\xea\xa8\x90\xfe\x84\xcc\x30\x43\x22\x67\xac\x02\x0f\x1b\x5a\xda\xea\x41\x33\xeb\x1e\x55\xbd\x66\x38\xe5\x39\x03\xa5\x01\xc2\x58\x1b\x06\x23\x33\xc2\xd4\x8a\xc1\xbc\x15\x10\x4b\x65\xa8\xfb\x8b\xc5\xd2\x30\xd0\x36\x38\x96\x26\x7f\x12\x94\x5e\x5e\xef\x5a\x76\x41\x79\x25\xa7\x92\x3e\x54\xfe\x7e\x6e\xd6\xb2\xb1\x7c\xdc\xba\xbb\x7b\x2c\x1f\x57\x77\x15\x93\xe8\x71\xdd\xcb\xa6\x9a\x99\x99\xd8\xca\xd5\x35\x63\xdf\x42\x3f\xb5\xa5\x59\xa0\x60\x79\xf4\x88\xbe\xbf\xbf\xbc\x40\x53\xaa\xe5\x5e\x7d\xad\x5c\x61\x2d\x63\x3f\x88\xc4\xd9\x85\xad\x6d\x35\x17\x89\xbf\x7b\x61\xe3\x9d\x28\x15\x48\x09\xfa\x46\xc3\x33\xe2\x8c\xbd\xc2\xa2\xed\x55\x4a\xb3\x08\xcc\x62\x9e\x9a\x79\x1c\xcb\x7c\x3a\xa5\x9f\x8f\x14\x16\xdf\xb4\xac\x87\x89\xaa\x18\xff\x9d\x4f\xc6\x7a\x44\x5b\x5e\xc4\x4d\xcd\x21\x5b\x50\xd9\x2f\x9b\x9d\xd9\x99\x79\xf7\xff\xf2\x09\x64\xbb\x67\x82\x03\x02\x20\x78\xe7\x6c\xa4\x82\x7d\xc5\x51\xd2\x11\x72\x09\x54\x25\x90\x93\x88\x0b\x41\x6c\x92\xbc\xa9\x2d\x9a\x61\xa1\x28\x58\x6b\x1d\x48\x4a\x09\x1d\xbf\xd8\xa2\xb0\xe4\xf7\x1c\x17\x48\xd4\x13\x42\xc0\xc1\x93\xd1\x64\x3d\xa5\xf7\xb4\xe4\x9b\xac\x9c\x40\x1b\x79\x6a\x71\x33\xc1\x20\xb3\x52\xc4\x1a\x3e\x11\xa6\x76\xa2\x9f\x40\x13\x0d\x69\xfb\xdd\xbc\x0c\xa6\xc4\xe7\xf9\x59\x71\xb9\xb9\x90\xde\x30\xaa\x49\x09\x0c\xf7\xbc\x4d\x94\xb2\x2e\xf5\x36\x47\xff\x53\x67\xdf\x31\xbc\x5a\x5f\x97\x15\xa1\xf1\x76\xb5\x8b\x52\xdf\x45\x58\xab\x83\xf6\xdf\x10\xc8\x47\x12\x63\xc5\x08\x00\x24\xac\x72\x5a\xdd\x73\xd3\xa7\xa6\xad\x4a\x97\x2b\xb7\x7c\x03\xd4\x9a\x52\x33\x9f\x08\xa4\x74\xee\x22\x10\x7d\x9d\xdc\x7d\x18\xc8\x83\x48\x20\x84\x7a\xa9\x15\xcb\x94\x19\xd7\x9c\xcf\x4b\x76\xb8\x83\x8c\x6e\x06\xa3\x85\x46\x92\x09\x12\xe9\xab\xec\x04\xdd\x24\x44\x4b\x5e\xb9\x96\xbe\xf2\x24\x71\x08\x5f\xcb\xa5\xc3\xb5\x50\xe9\x5e\x7c\x5e\x81\xee\xb1\x64\x62\x0e\xe1\x6e\xf9\xcc\x82\x35\xd8\x3d\xe2\x42\xb0\xbe\x60\x42\x06\x43\x62\x59\x8b\x04\x0e\xbf\x30\x71\xb3\x60\x4a\xc2\xa5\x8b\x8c\xfe\xaa\xd9\xaf\x20\x72\xce\x5b\x93\x1c\xc3\xd9\xbe\xcc\x1c\xdc\x52\xbe\xe0\x24\xdc\x7d\xd8\x16\x57\xdd\x41\xae\xa9\xdc\x81\x25\x11\x67\xd9\x14\x7d\xf5\x07\x1f\xfd\x61\xf1\x56\xed\xdd\x6a\x87\x06\xb7\x64\x61\x6a\x0b\xb1\xcf\x0a\xd7\x45\xa1\xcc\x2c\x8c\xef\xd5\x7f\x5e\x18\x90\x8b\x94\x00\xaa\x64\x51\x75\x0e\xe9\xbb\xb6\x6d\x8b\xf5\x3c\xc7\xb9\x58\x0b\x92\xa2\x40\x2d\x5f\x87\x73\xdb\x64\x94\x62\x58\x7a\x11\x9a\xd9\xa5\x2d\x26\x01\x62\xb4\x0d\x35\x92\x25\x24\x38\x4b\x36\x66\x19\x1b\x55\xbc\x76\xa6\xbc\xad\x5b\x0d\xa4\xe4\x42\x94\x79\x29\xef\x5a\x89\x02\x4b\x13\xe8\xb1\xc5\xd6\xc7\x16\xb3\x95\x45\x3c\xed\x01\x12\xa0\x12\x90\xf8\x5f\x38\xd0\xaa\x82\x83\x35\x7a\xaf\xca\x7c\x2a\xed\x4e\xa7\x34\xa7\xd2\x17\x9a\x97\x9c\x6d\xe9\x81\xd3\x93\x59\x8c\x21\x71\x74\x9b\x28\x9c\xd2\xfc\x8d\xf7\x00\xda\x24\x31\x32\xe8\x05\x06\xf9\xd8\xae\x9d\xf7\x9c\x64\x58\x10\xa6\x46\xec\x56\x8f\xc2\x7c\x51\x44\x62\xb8\x38\x1c\x87\x46\x0f\x35\x6b\xa7\x08\xdb\xaf\x60\xd1\xdb\x02\xe1\xe4\xd8\xbc\x04\xaa\xe9\x0b\x26\xd9\x7f\x67\xde\x31\x98\x07\x16\xf3\x47\x4f\x95\x4e\x0b\x35\x5e\x0b\x90\xd1\x9c\x02\xe4\x40\x4c\xa4\xbd\x90\xa8\xb2\x98\x12\x5e\xfc\xce\x89\xc3\x5f\x86\xcf\x3c\xff\x6a\x62\xd8\xce\x50\xc0\x9c\x81\x4e\x8e\x58\xd0\xc7\x12\xb8\x4e\xa3\xac\x6f\xa8\x4a\xc0\x3e\xd3\xd8\x3b\xbe\xe0\x9f\x66\x87\xb8\xa0\x33\xca\x82\xa2\x49\x76\x7a\x29\xce\xc0\xbc\x6b\xce\x20\x9f\xfa\x3b\xed\xde\x66\x19\x1c\xc1\x88\xff\xe7\xbf\xff\x76\x44\xdb\xbc\x1f\x72\x6c\x57\x60\x1f\x76\x72\xbd\x6d\x09\x77\x3e\x40\x11\x69\x41\xa7\x08\x74\x5a\x59\xca\x9c\x28\x7e\xb5\x97\x9b\x26\x1a\xae\xe6\xc6\xdd\x5b\x26\x77\xf0\x8d\x88\x7c\x79\x1d\x81\x80\xc5\x15\x01\x01\x85\xd7\x37\x08\xba\x75\x55\x22\x4c\xb0\xa4\x6e\xbf\x72\xa1\x54\x18\x54\x00\xe7\xb7\x4d\x70\xe2\x1c\xcb\x97\x8b\x40\x69\xac\x6e\x64\x8c\xc6\xe1\x1d\xb9\x2a\x16\xc5\x0c\xd2\x24\x35\xea\x5d\xc9\x25\x11\xe6\x40\x7b\xd4\x27\x4b\x3c\x21\x58\x21\x84\x22\xae\x70\xa9\x91\x14\xd3\xb5\xc2\xe6\xf5\xfb\xcd\x50\x8a\x25\x9b\x3a\x9e\x11\x31\x8e\xf3\x52\x8c\xf4\xaa\xb6\x6f\xf4\x47\x67\xb9\x5a\xac\x6e\x5f\x26\xb8\x5e\xdd\x65\x19\x7c\xa5\x7e\xbf\xa5\xd9\xd5\x82\x61\x10\xc9\x52\x16\x0e\x5b\xc0\x21\x49\x05\x1c\xd2\x86\x56\x96\x2c\x01\x70\xd1\x30\x05\xc8\x71\x85\xc2\x60\x6f\x22\x03\x61\x0d\x23\x47\x93\xbc\xb0\x9c\xf8\xa2\x00\xf1\xd1\x88\x7d\x34\x55\x35\x40\x99\x31\x03\x88\x20\xaf\x85\x7c\xce\xb8\x24\xa5\x44\xab\x06\xa0\x7f\x9b\x28\x69\x87\xd1\x2c\x93\x16\x1f\x6d\x2f\x92\xbe\x39\xcc\x67\x7d\xc3\xeb\x53\x6e\xa6\xc0\xad\xa4\x9e\x88\x66\x54\xd3\xce\xb8\xf1\xa4\xbd\x5c\xb1\xd9\x22\x74\x09\xe0\x9e\x54\xb2\x38\x40\x7e\x7a\x15\x82\x48\xc8\x13\x01\xab\x31\x8c\x31\x2c\xe7\x50\x36\x5f\xb5\xb0\x93\x55\x07\xa8\xc8\x72\x04\xb6\x80\xe2\xea\x08\xca\xb9\x60\x4d\xb4\x58\xce\x72\xd9\x3a\x21\xab\x29\xfe\x62\x0d\x29\x74\x10\x96\xb5\x58\x10\x85\xc8\x67\x45\x6c\xe1\xcb\x7b\x97\x32\x57\x8f\xb2\x47\xcd\x59\x3f\xed\x22\xd2\x8b\x97\x20\x1e\xb8\x44\x69\x97\x13\x18\xbb\x7b\xdf\xe6\xc8\xcd\x31\x8b\x6d\xe2\xa7\x95\xa5\xb5\x4c\x01\xb3\x33\xb6\x25\x1f\x12\x6f\xd3\x17\x03\x3c\x70\xd3\xa6\x01\x2e\x87\x8b\xcc\xe9\x45\x5a\x32\x87\x28\x02\x2e\xb4\x80\x9a\x33\x45\x13\x4d\x1c\x76\x0c\x5a\x6b\xce\x99\xc7\xe3\x83\x00\xee\x36\xc8\x37\x2a\x25\x65\xb3\xb1\x5d\x49\x97\xc3\xd8\xed\x62\x28\xd3\xd4\xa5\x69\xca\xfc\xf8\x9d\x6b\x68\xb9\xed\xd8\x90\x35\xc0\x71\xb9\xec\x49\x10\xac\x19\x77\x93\xb1\x38\x6a\x2e\xe9\x72\x4c\x63\xb3\x14\xd4\xd4\x57\x86\x89\xae\x63\x5e\x06\xb1\xae\x0e\x57\x50\x5c\x21\xd2\x66\x44\x9a\x3c\x27\x08\x48\x57\x2d\x29\x9f\xb2\x35\xd5\xf3\x9c\x79\x11\xcd\x56\x77\xf2\x09\xed\x95\xac\x51\xec\xba\xb3\x51\xf7\x38\x49\x26\x38\x7a\xf4\xca\x86\x57\xb9\xb9\x70\xe8\xf8\x5a\x40\x85\xf2\x5f\x86\xb8\xf4\x40\x23\x90\x6e\x42\xa7\x98\x01\xac\xb1\xc3\x2e\x3a\x37\xab\x66\x91\xc0\x0c\x42\x91\x19\xbd\x09\xe1\x8f\x49\x96\xf0\x45\xda\x72\x9f\x55\x33\xe5\xb6\x09\x48\x69\x4b\xd4\xdb\xe9\x55\x56\x61\x7a\x6b\x5f\x66\xb5\xb4\x9b\x1d\xc0\x27\xad\xc1\x25\x3f\x25\x7c\x02\x96\x43\xab\x65\xbb\x54\x92\x20\xa3\xa1\x7a\x9e\xd7\x4d\x70\xa9\x9e\x48\x2a\xb3\x04\x2f\x96\xf5\x60\x52\x2b\x5e\x76\xdf\x4c\x2a\xfe\x6a\x23\x58\xf7\xa0\xe4\xc6\xcf\x5f\x02\xa8\xf7\xc2\x49\x02\xe6\x5d\xc3\xbf\x2a\xc6\x24\x93\xd3\x76\x64\x7c\xb1\x8a\x8f\x98\xc2\x33\xb7\xb9\x56\xb8\xe4\xcf\x8c\x08\x39\xa7\x59\xa9\x2c\xe0\xd6\x51\xd0\x96\xa2\xed\x7f\x4c\xcc\xef\x1a\xbc\x93\x67\x87\x06\x88\x43\xd3\x87\xcc\x70\x54\x18\xff\xa2\x04\x4b\x49\xa7\x8b\x00\x3f\xc3\x07\x94\x42\x96\x52\x59\x5b\x0e\x2a\x71\x35\x31\x1a\x33\xbe\xdd\x24\x90\x6f\x9f\x3c\xf7\x50\x3e\x7e\x34\x0e\x81\xca\xf4\x7d\x52\x07\x4b\x71\x37\xb5\x05\x4d\x69\x05\x5c\x35\x99\xf2\x9b\x25\x7c\x2f\xc5\xb8\x69\x37\x23\x14\xc2\xa4\x1d\xb6\x55\x64\x3c\xae\x45\x88\xf9\xa2\x4a\x19\x83\xb0\xf9\x5a\x71\x72\xe6\x4f\x4d\x9c\x1e\x13\x03\xa0\x03\x8a\x8f\x0f\x90\xdc\x0a\x4b\xaa\x0b\x5d\x9c\x91\x84\xec\x24\xb0\x78\x03\x22\xa9\x7a\xed\x03\xf2\x58\x4a\x1a\x05\x9a\xfe\x6a\xe3\xc2\x06\xf1\xce\x2d\x88\x34\xcd\x43\xff\xc9\x0c\xd4\x86\x3c\x37\xed\x22\xd8\xbf\x60\x95\xbb\xea\x2e\x4d\xd0\x76\xa6\x05\x4b\x72\x45\x37\x25\xba\x2a\x3a\xf5\xf2\xca\x3e\x92\xda\x1b\x47\x06\xd7\xc6\xf5\x89\x74\x89\x62\x58\x79\x00\x36\xe2\x40\x75\x3e\xdd\x8d\x2e\xac\x9f\x50\x71\x34\x23\xca\x14\xb9\xf7\x95\xfc\xdf\x13\x4d\xec\x2c\xaf\x61\x47\xab\xdf\x7c\xc8\xd7\x3b\xb5\x77\x44\x49\x77\x25\xd4\xd0\x02\xed\xe6\xec\xe1\x16\xec\xc7\xb1\x34\x82\xeb\x17\x2f\xb7\x6c\x8d\x05\x60\x47\x66\x33\xe2\x7f\x43\x02\x95\x99\x63\x6c\xbf\xf0\xd9\xef\x25\xdc\x27\x5c\xc2\xca\x33\x6b\xf4\xf6\x5c\xaf\x4a\xda\x5f\xba\xe8\xb5\x3e\x8d\x57\x47\x55\x50\x77\x2f\x0f\xae\x27\x0f\x3a\x2c\xc9\x3d\xbc\xfc\xdb\x8e\xc1\x7e\xde\x3f\x7b\x20\x1c\xd6\xae\xc4\xdd\x89\x88\xef\x88\x4c\xf6\x42\x52\xac\x6d\xc5\x6b\xc9\x8b\x87\x0e\xcc\xa7\x80\xc6\xd9\xdf\x2d\xda\x8f\x93\x7c\x6b\xdd\x40\x2f\x77\xc1\xae\xa6\x97\x9d\xd0\x07\xe0\x5a\x62\x48\xff\xcd\x6d\xa1\x0c\x38\xbc\x41\xc8\x58\xcd\xf7\xb0\x22\x18\xcf\x0e\xaf\x53\x18\x5e\x6d\x39\x5f\x62\x7b\x6d\xae\x57\xe7\xcd\x7d\x49\x52\x5b\x77\x2c\xbb\xd0\x51\x5e\xd8\x8b\x63\xa9\x31\xf8\xa0\x8f\x89\xed\x76\x8b\x36\x20\xc8\xb8\x2d\xdb\xe5\x21\x6b\xaa\x6e\xb6\x7d\xb6\xba\x4b\x65\x1b\x67\x82\x4c\xe9\xe7\x8d\x44\xf1\x1b\xf8\xd4\xaa\x97\x7a\x99\x2b\xf5\xd2\xc0\x3d\x03\xf5\xd5\x82\xb8\x3d\xbb\xd2\xb6\xa6\xd2\x88\x15\x09\x80\x36\xfb\xef\x91\x2c\x10\x17\xa5\x9f\x36\xc5\x3a\xdc\x7d\x6d\x37\xb3\xaf\x73\xa5\x32\x79\x72\x7c\x3c\xa3\x6a\x9e\x4f\x8e\x22\x9e\x9a\x70\x73\x2e\x66\xe6\x8f\x63\x2a\x65\x4e\xe4\xf1\x1f\xff\xf0\x87\x62\x8b\x27\x38\x7a\x9c\x19\xf4\x98\xba\xdf\xa9\xbc\xe5\x04\xcb\xed\x22\x7b\x5c\xa6\xd6\x0b\x67\xec\x06\xdd\xb8\x1c\x49\xfd\x8d\x54\x38\xcd\xc2\xe8\x51\x53\x1d\x4d\x2a\x5c\xd4\x64\x80\xf4\x3b\x3d\x4d\x34\xc7\x59\x46\x58\xbb\xd9\xc1\xe4\x53\x6e\xc1\x7a\x5c\x46\xa6\x1d\x21\xf9\x9c\x25\x98\x95\x51\x06\xa0\xc0\x90\x20\x11\x61\xca\x66\xc0\x17\x15\x93\x81\x1a\x0d\xd2\x8d\xe1\xff\xeb\x65\xdc\xc1\x1c\xa9\x2c\x2a\x87\xb9\xe1\xd8\x2a\x9e\xae\xb6\x23\x0e\x96\xae\x5a\x39\xb5\x58\x3b\xe2\x56\x6d\x59\x2e\xde\x5d\xbd\x82\xf6\xfa\x95\x5b\x04\x67\x63\xf2\x59\x33\x39\xb9\x29\x2e\xd5\x83\x24\x12\x0d\x7e\xba\x43\x72\xc1\x14\xfe\x7c\x82\x2e\x29\x03\x01\xf6\x7b\x9e\x0b\x89\xce\xf0\xe2\x90\x4f\x0f\x53\xce\xd4\x1c\x5d\xc2\xff\xda\x9f\x9e\x09\x79\x44\x3f\x13\x2c\x2c\x7f\xb0\x95\xd7\x7c\x19\x6f\x4d\x42\x22\x67\x12\x91\x27\x7d\x42\xff\xf0\x9f\x28\x35\x2d\x9f\xa0\x6f\x8f\xff\xf0\x9f\xe8\x77\xf0\xff\xff\x7f\xf4\xbb\x16\x4d\x7f\x3d\x64\x2b\x28\xd0\x7b\x5b\x76\xe7\x1e\x54\x56\x6a\x83\xa2\xe5\xa7\x82\x17\x3b\xd5\xd8\xf2\x23\x8d\x1e\xf9\x74\x3a\xd6\x84\x61\xf2\xd5\xc6\x58\xd4\x50\x91\x37\x84\x09\xa5\xb6\xc4\xb2\x29\xd8\x56\x94\x4a\xb1\x9d\x1a\x60\x03\xc7\xae\x65\x5e\x14\x98\x85\x20\xa2\x52\xd1\x5e\x2a\xe1\x2b\x12\x6b\xae\xba\xce\xe9\x70\xd6\x3d\x97\xe3\xec\x2c\x38\x21\x10\x48\x58\x36\xdc\x07\xfe\x85\x51\xac\x26\xd0\xc7\x2e\x64\xe3\x71\xa8\x85\xd7\x7e\x31\x31\x93\x30\xb5\xb7\x8a\x97\x94\xb5\xce\x57\x87\x4a\xde\x71\xb1\x95\xbe\xf5\x48\x6a\x31\xdb\x1d\xcb\x02\xb9\x52\xb5\x61\x01\x7b\x48\x84\xe6\xc2\xc3\xf5\x1a\xbb\x88\x2d\x1e\xb8\xda\x8a\x49\x85\x09\x2e\xeb\x76\xe8\xf5\xd4\xcf\xfc\x27\xab\x86\x09\x91\x66\xee\xed\xa2\x2c\x1a\x8c\x56\x8b\x48\x9a\x25\x36\x8c\xb8\x01\xd3\x6f\xd5\x86\xde\x79\x18\x07\x68\x1c\xc2\x1e\x21\xe5\x83\x39\xc9\xd6\xe6\xc9\x37\xef\x67\x2e\x22\x72\xca\xb7\x0b\x7b\x4d\x28\xab\xc5\xcb\x77\xaf\xb8\xe3\x57\xef\xc2\xd6\x56\x72\xb0\xb7\x3c\x2e\x94\x05\xe3\x16\xb0\xc5\x16\x02\xbc\xcd\xf2\x6c\x00\xb7\x6d\x17\x90\x8e\xb5\x12\x00\x5b\x70\x6d\x63\x38\x2e\x18\x9e\xab\x20\x51\x29\x1c\x21\xb0\xe6\x85\x4b\x62\xd7\x20\xa8\x68\xeb\x71\x04\xc5\x50\x8a\x48\xa5\x4a\xd1\x71\x6c\x2a\x82\x88\x0d\x21\x39\x4d\x5d\xa2\x03\x24\x30\x04\x65\xaa\xb9\x6e\x4f\x12\x71\x38\xc5\x11\x65\xb3\x83\x00\x8d\x11\x90\x11\xc2\xeb\xa0\x89\x48\xef\xb1\x7c\xdc\x6d\xa0\xe1\xd6\x75\x1a\x69\x5c\xd4\x0a\xb3\xf8\x29\xc6\xb1\x41\x6b\x50\x74\x0a\xcb\xc7\x36\x00\xa1\x1a\x7a\xd9\x92\xd1\xf9\xa5\x70\x98\x67\xcb\xc6\xe7\x32\xad\x49\xa8\x4f\x41\x69\x02\x57\x39\xd8\x62\x19\xba\xc4\x36\xec\xc1\x46\xaa\x20\x9e\x4b\xc6\x2f\xe7\x5c\xa8\xf1\x86\xf0\xa7\xd5\x6c\x71\x46\x0e\x13\xc0\x2d\xe1\x4f\x44\x3c\x51\xf2\x5c\x46\x11\x5d\x87\x16\x8d\xd1\x2c\x88\xaa\x03\x98\xc9\x34\xe3\x90\x42\x33\x45\x29\x66\x0b\xc3\x28\x35\x73\xc1\xf2\x51\xfa\x7a\xa5\x48\xa6\x38\x49\x0e\x90\x20\xb9\x34\x75\x7c\x25\x49\xa6\x87\xae\xe2\x43\x8c\x12\x3e\xa3\x11\x4e\xd0\x24\xe1\xd1\xa3\x1c\x31\x2d\x28\xb0\x99\x61\x52\x99\xe0\x11\x91\x32\x90\xac\x8a\xa4\x6d\x9b\x4a\x07\xc5\x4a\x15\x11\x29\x65\x54\x2a\x1a\x39\x91\xa9\xc0\x5e\x30\x25\xb3\x23\x0c\x26\x61\x48\x4c\x84\xe1\x6a\x49\x8f\x18\x0c\xca\x9c\xd9\xda\x40\x70\x5d\x5b\x68\x39\x17\x24\xde\x76\x80\x76\x80\x94\xe7\x28\x64\xac\xca\x07\x72\xc5\x91\x3a\xb5\x9f\xc1\x31\x5e\x46\x02\xb7\xe5\x13\xe5\x09\xd2\x9f\xb4\x12\x7a\x0f\xc4\x94\xfb\x10\xf8\x92\xe4\xe2\x23\xc3\xf7\x0c\xb8\x0b\x86\xdc\x02\xd7\xb5\x8a\xa6\xf5\x2a\x82\xc8\x03\xe5\xa8\xaa\x5e\x73\xca\xa2\x24\x8f\x7d\x41\x42\x2d\x02\x3c\x69\x22\x71\xcb\xa3\xd7\x5e\x0b\x0a\x07\x08\x4b\xf4\x4c\x92\x44\xff\xd7\x44\xc0\x1f\xfa\xfa\x00\x9a\x25\x9b\x1a\x0e\xd0\x89\xe3\xd2\x6d\x14\xb5\x77\x20\x8c\x37\x58\xcd\x4d\x6a\x7b\xca\x95\xa9\x05\x69\x40\x18\x9d\x7d\xcb\xa0\xf6\x4d\x12\x3e\x81\x93\x0e\xf8\x8c\x2e\x35\x36\x48\xab\xcb\xa3\x88\x90\x98\xc4\xe8\xeb\xe0\xe0\x7a\xd8\x85\x6f\x9a\xd1\x02\x4b\x2b\xb2\x07\xd8\x8c\x55\xc3\x5a\x2b\x42\x63\xb9\x9c\xd9\x11\xba\xa9\xe0\x8f\x84\x65\xca\x71\x15\x8d\xea\xa0\xb6\x85\x6f\x83\xe7\x58\x99\xc4\xcb\xed\xd0\x9a\x78\x8e\xa5\x3e\x77\x80\xe7\x58\x99\x67\x4b\xec\x3e\x9f\xbd\x68\xce\xb1\x9e\xd4\x05\xef\x9e\x08\x66\x70\xb0\xcc\xdd\x59\x22\x41\x77\x20\x17\x4d\x84\xb8\x5f\x58\x95\x95\xa2\x7f\x6f\x8b\x55\x59\x19\xcc\x3e\x63\x55\x56\x86\xba\xbf\x58\x95\x0d\x03\xed\x80\x55\x69\x9c\xfb\x63\x4d\xd4\xdd\x98\x02\x24\xb6\x4c\xf2\xe9\x1d\xa4\x7a\x2f\x1d\xe3\xa9\x09\x1c\x30\xd7\x98\xbb\xa3\x2d\x74\x33\x8c\xd6\xe6\x40\xb6\x85\x43\x55\x9c\x10\xeb\xd2\x9e\xf7\xbe\x51\x69\x34\xb4\xf5\xcc\xee\x07\xa1\xb5\x1b\xec\x90\x11\xce\x6c\x4e\x79\x5b\x45\x95\xfd\xc9\x9e\xdd\x0c\x06\x14\xa0\xf6\x4a\x2c\xbf\x13\x50\xd6\x65\xa5\x38\xc1\x9c\x3f\xdb\x02\x41\x40\x86\x86\x28\x5b\x49\x10\x3a\x1d\x5b\xa5\xad\x6d\xe5\x28\x53\x64\x56\xd5\x69\x8b\x43\x43\x99\xfa\xd3\x1f\x57\x72\x22\x83\x24\xe8\xd4\xc3\xa0\x44\x80\x77\x76\xd8\x67\x24\x46\xd1\x5c\x6b\x45\x52\xab\x2f\x7a\x3a\xe6\x66\x95\x28\xc5\xd4\x29\x52\xb9\x34\xae\x25\x2a\x47\xac\x04\xbd\x79\x84\x3e\x42\xdd\x53\x9c\x66\x5a\xff\xf2\xf3\xa3\x9a\x92\x46\xf9\xb7\xdf\xfe\x89\xa0\x6f\x51\x4a\x30\x2b\xe9\xb0\xa0\x36\xe9\xab\x0f\xa0\xea\xd4\x9c\x8c\x58\xe3\x56\xa0\xe1\x67\x53\x4a\xc9\xc5\xfb\x9d\xb3\x29\x77\x3a\x31\xd4\xf3\xc3\xd1\x1c\xc9\x7c\x62\x0a\xd2\x06\x36\x0c\x27\x48\x5f\xf0\x19\x38\xaa\xe1\x46\x76\x83\x5e\x76\x0a\x5f\x36\x06\xc0\xba\x1b\xbb\xde\xc6\x03\xb8\x47\x0e\x25\x29\x41\x18\x35\x38\xcd\x0c\xe7\x0b\x0f\xbe\x34\xf8\xa7\x07\xc6\x87\xa0\xf5\x33\x6c\x2d\xfb\x5a\x96\x86\x70\x5e\xf0\x92\xe5\x09\x16\xf6\xe8\x8f\x98\x56\x34\x04\x79\xa2\x3c\x97\xc9\x02\xc5\x9c\x91\x03\xa0\x84\x3c\x9a\x1b\xc7\xaa\xd6\x59\xb0\xad\xcb\xf0\x44\x65\xae\x15\x5a\x68\xcb\x95\x81\x90\x0a\x1b\xe8\xa5\x39\x85\x7e\xb4\xfa\x4d\xe0\xab\x30\x4b\x0e\x75\xd3\xa2\x42\x74\xd4\x0a\xcf\xef\x88\x8e\x5a\xa2\xaa\x1e\x1d\xd5\xa3\xa3\xd6\xd7\x65\x1f\xd1\x51\x2b\x7b\xde\x0d\x1d\xb5\x69\xcb\x37\x40\x47\x2d\x35\xf3\xc5\xa0\xa3\x56\x56\xf4\x8b\x41\x47\xad\xcc\xab\x47\x47\xfd\xf2\xd0\x51\xb7\xc4\xff\x6c\xe6\xc5\x06\x5f\x49\x51\xb6\x58\x9b\xc8\xbe\x92\xe8\xfc\x5a\x13\x58\xf4\x58\x0e\x6a\xf3\xd7\xd5\xf6\x98\xa3\xcd\x4c\x68\x3d\xcc\xd1\x46\x55\xbd\x9d\xd5\x6d\x0b\xf0\x04\x8a\xc1\x2b\x63\x8e\x96\x26\xd0\xc7\x57\xae\x1f\x5f\xd9\x48\x7c\xb6\x6f\x3d\x3c\x17\x74\x59\xbd\x90\x3b\xa2\x8e\x96\xf6\xa7\x53\x24\x26\x88\xee\x3b\xa0\xc4\x97\x95\xe6\xef\x4b\x87\x7c\xa5\x2c\x1f\xae\xa2\xb4\xf8\xc7\x5a\xc2\x73\x68\x71\x46\x09\x0f\xfd\xff\x3d\xe5\x6e\x10\x19\x5c\x59\x5e\xef\x57\x31\xb4\xd8\x81\x54\x3b\x53\xa8\xd3\x4a\x77\x93\x28\xeb\x92\x27\xd7\x74\x31\xbb\x41\xdc\x65\x24\x6a\xb1\x31\xd3\x94\xee\xaa\xd9\x55\x17\x99\xc7\xc2\x02\x85\xbc\x96\x17\xaa\xaf\x27\x33\x1c\x23\xe3\x57\xd2\x61\x01\xa8\xc3\x7c\x39\xa3\x52\x89\xd6\xd8\xa6\xda\x08\xb7\x71\x95\x66\x79\xe7\x80\x98\x60\x55\x67\x9b\x7d\x96\x92\x94\x8b\x55\x81\x55\x8d\x5f\xda\x8a\x2e\x9b\x7c\x4a\xb2\x39\x49\xb5\x24\x33\x5e\xb7\x91\xae\xfb\xed\x93\x86\x6d\xee\x9a\x09\x74\x2c\x11\x41\xe0\x08\xd5\xef\xc6\x06\x91\xb2\xf3\x76\x6f\xbb\xcd\x16\x33\x73\x4d\x87\x90\xc3\x0c\x5e\x6e\x70\xb3\x2f\x95\xdc\xdd\x40\xdf\x8d\x31\x1d\x3e\xa4\x66\x75\xd4\xc6\x92\x78\x8d\x65\xb8\x53\xc5\x57\xb6\xde\xf1\x1a\xae\xfc\xb2\x77\x5e\x73\xc2\xb0\xd8\xed\xfa\x01\x1e\x2d\xa8\xa9\xf5\xe5\x81\xc8\x1c\x49\xc4\x61\xa8\x19\x94\x06\x53\x5f\xaf\x12\x95\x38\x8d\x72\x0b\x22\xc9\x45\x6b\x94\x69\x17\x83\x76\xa4\x72\x9c\x80\x26\x11\x16\x69\xac\x6e\xea\x64\xd1\x90\xf6\xd8\xcd\x63\x42\x99\xfa\xf3\x7f\xac\xb5\x9b\x5a\xb5\xb2\xeb\x06\x85\xa5\x70\x14\x11\x69\x6c\xec\x36\x0a\x19\x4f\xf8\x13\xd4\x94\xda\x66\x57\xf5\x51\xd6\xf3\xd6\x0c\xde\x43\x11\xc7\x05\xa9\x1b\x71\x61\x2e\x78\x3e\x9b\x3b\x1b\x92\x3e\x33\x7a\x6a\x4d\x7b\xf9\x63\xcd\x46\xbe\xf6\x5e\x7e\x97\xd3\x64\x33\x0b\xdd\x5d\xa9\xda\xd6\xa7\xf3\x7b\x24\xe7\xfe\xb4\x4e\xa0\xd9\xc6\x8d\xad\x0f\xba\x7b\x9f\xf6\x5b\xef\xaf\x81\x6e\x0e\x1c\xfc\xe6\x94\x27\x09\x78\x1a\x24\x49\x9f\xc2\x22\xf9\x61\xf7\x30\xe1\x7b\xba\x1e\x72\x9e\x1f\x00\x7c\x5d\x24\x46\x74\x92\xbf\x6e\x8c\x68\x28\x91\x1b\x7d\x35\x68\xc1\x84\xaa\x71\x46\x58\x93\x8d\xed\xa7\x7a\xa1\x93\x77\x16\x30\xe8\xa2\xc7\x76\x16\x34\xe8\x96\xe4\x95\x03\x07\x57\xcc\x63\x5f\x83\x07\x2b\xcc\xce\xc7\xf2\x15\xd7\x8c\x0b\x1c\x32\x8a\xcf\x40\x2f\xf1\x88\x0d\x4a\xf9\x14\xae\x20\xf4\x64\x51\x04\x64\x1b\x1d\x22\x64\x66\x50\x4e\xc2\x1a\x56\xc0\x8d\xa6\xff\x02\x4d\xc7\x80\xd7\x9a\x90\x42\x17\x36\x08\xd1\xe4\x24\x3e\xc4\xd1\x22\x4a\x68\x14\xe8\xcc\x33\x81\xb3\x79\x13\xc7\x73\x3b\xdf\xa3\xee\xbc\x15\xea\x4e\x5b\xdd\xa5\x75\xe2\xb6\x1d\x5d\x31\x9c\x92\x1e\x0d\xa8\x09\x0d\xe8\xc0\xe3\x5d\xb0\xa2\x82\xd4\x1b\xc2\x28\xd4\xcf\x5d\x0f\x09\xf4\x06\x90\x40\x9b\x1c\xbe\x02\xef\xa7\x74\xec\x7a\x98\xa2\x0f\x9d\x60\x8a\xfc\x25\xb8\x57\xc8\x33\xed\xe7\xf1\x8d\x11\x4d\xea\x03\x7b\x4b\x58\xa2\x06\x71\x61\x1d\xb9\x69\x19\x2e\xd1\x32\xba\xe8\xb4\x2e\x6f\x8b\x12\xb4\xde\xca\xac\x05\x00\xd4\x78\x77\xed\x09\x1c\x50\xfb\x36\xec\xc9\xb9\xd9\x65\x56\xcb\x7a\x25\x32\xc3\xcc\x96\x75\x14\xac\xf5\x92\x5c\x3c\x3d\xbc\xaf\x44\x97\xa2\x96\xd8\x66\xc9\x2e\x03\xe7\x83\x26\x02\xcd\x79\x12\x3b\x10\x0a\xbf\x5a\xbe\x03\x9f\x09\xe0\x17\xc8\x6d\x06\xd4\xf4\x06\x6d\xab\x28\x08\xb6\x2c\xa5\xc5\x6f\x22\x0c\x77\x07\x8c\x66\x17\x56\x04\xcf\x49\x36\xb1\x1f\xac\x94\x45\x64\xd9\xfc\xbd\x64\x8c\xa5\x15\x02\xab\x79\xf3\x30\x57\xda\x7d\x57\x0c\x6e\x99\xe8\x11\x18\x07\x45\x53\x45\x4b\x43\x67\xf0\xf4\x89\x3a\x43\x04\x0e\x7b\x5c\xea\xa5\x73\xb3\xeb\xe4\xa9\xab\x12\xcb\x06\xc1\x60\xb5\xca\x6d\xdb\x83\x03\xa5\xf8\xf3\x38\xc3\x02\x27\x09\x49\xa8\x4c\x5f\x2c\x18\xf8\xb4\xec\xae\xd5\x67\x55\x70\x63\x22\x62\x79\x3a\x31\xa4\xe8\x06\x62\xeb\x45\x2a\x8e\x44\xce\x42\x68\xb3\xe7\x5a\x51\xfd\x1c\xee\x05\xb0\x2a\x45\x73\x28\x4e\x3a\xc5\x54\x30\x22\x5b\x4b\x41\x92\x28\x17\x54\x2d\xc6\xb6\xb2\x66\xf7\x03\x77\x67\xbf\x3c\xb5\x1f\x2e\xf7\x70\xbb\xac\x7e\xd7\x9f\xaf\xe4\x99\x11\x01\x65\x82\x5c\xc1\x9b\xa0\x7a\xa8\x45\x6d\x20\xbe\xd6\x10\x84\x3f\xd7\xae\xed\xb6\xc0\x61\xfc\x3c\x0e\x32\xaa\xc6\x51\x95\x38\x56\x1d\xd6\x26\xdc\xa9\x65\x93\x7c\x61\xe4\xa5\x16\x2f\xf2\x0b\x54\x19\xb1\x69\x13\xa6\x69\x3d\xe0\xc0\x15\x0c\xf6\xca\x62\x63\x82\x94\x77\xab\x54\xb5\x8c\xd3\x62\xfd\x34\x05\x1f\x2d\x19\xec\x20\xf8\xaa\xc3\x88\x83\x4e\x76\x34\x6c\x7d\xd0\x85\xc8\x33\x45\x27\x75\x68\x1b\xb5\xbb\xaa\xa3\x83\x04\xd2\xac\x9d\x9b\xa1\xd4\xad\x29\x45\x5a\xe2\xc4\x76\x76\x5a\xfe\xb7\x38\x62\x0e\x21\xc8\x20\x2c\x85\x79\x7c\xd7\x29\x55\xca\x25\x0a\x18\x03\xb4\xa6\xce\xb2\x6d\xf6\x2b\x17\xee\x81\xa1\xa0\xa9\x31\x11\x1d\x8d\xd8\x40\xa2\x67\x82\x18\xb1\x10\x12\x0d\xa5\x4a\xbd\x55\x1b\x6a\x3f\x4d\x88\xee\xc9\xc7\xa6\x68\xe1\x81\x2a\xe9\xcb\x8f\x99\x3e\xa6\x38\x91\xe4\x40\x37\x0c\x55\x4b\x15\x87\xe0\x4f\x8c\x9e\x05\xce\x32\x22\x46\xcc\x66\x71\x80\xc3\x85\xf3\xc4\xb4\xdf\x16\xe2\x6a\xd7\x80\x8c\x23\x1c\xcd\x5f\x69\x8f\x30\x24\xe3\x44\x73\x12\xbb\x7c\xe1\xf2\xf6\xb8\x79\x1b\x83\xf5\x1a\x9b\x75\x3e\x75\xe5\xb3\x0e\x6c\x27\x49\xa4\x39\x8a\xaf\xa6\x9c\x11\xa1\x47\xad\x69\xf8\x89\x30\x44\xa7\x6e\x1c\x36\x76\x07\x3d\x83\x67\x4a\x93\xfe\x13\xa6\x89\x49\xc0\x77\x5d\x3b\x21\xd0\x98\xdf\x47\xcc\xb8\xbb\x59\x54\xca\x50\xa5\x8c\xca\xb9\xe6\xd4\x39\xf8\x24\x41\xcd\x68\x4b\x9c\x61\x4f\xeb\x9c\xe6\xa1\x7e\x7d\x39\x07\x7d\xa2\x82\xb3\x14\x92\x64\x2c\x2e\x93\x5b\x3e\x49\x94\x3f\x1e\x8d\x29\x8e\x2b\x25\xe2\x38\x96\x65\xe3\xa7\x51\x2b\xe9\xaf\x25\xb3\xcb\x61\x29\x2b\x30\x0a\x60\x85\x20\x88\xd3\x55\x16\x5b\x26\xff\xf6\xa9\x0d\xf5\xd4\x86\xe6\xb5\xd9\xc7\xf4\x06\x7f\x88\xd7\x4d\x71\x68\xdb\xfe\x5d\x48\xb6\x3b\x4c\x75\x78\xe3\x9c\x80\x97\x49\x07\x78\xdb\xfc\x8d\x97\x48\xdd\xe8\x13\x1c\xde\x30\xc1\xa1\xb3\xa5\xb6\x1c\x9b\xdd\x7e\x6c\xd7\x4a\x0e\x58\x01\xe6\xd4\xd4\xcb\x25\x51\x82\x46\x72\x17\xfc\x41\x66\xb8\x63\x54\x1b\x68\x81\xd9\x0a\xa9\x49\xbf\xe0\x9d\x90\x10\x27\xe6\xeb\xfc\x4d\x04\xc1\x8f\x31\x7f\xae\xd9\xea\x64\x88\xa6\x71\xc9\xb5\xd8\x23\x48\x44\x25\x29\x45\xb2\x50\x89\x18\x91\xd6\xd8\x89\x47\x6c\x4e\x89\xc0\x22\x9a\x43\x76\x63\xb1\x31\x26\x4b\xd6\x00\x1a\x99\x58\x86\xd0\xdb\xb4\xc6\xa6\x77\x58\xf7\xaa\x85\xc9\xe3\xd3\xd9\x3d\xd7\x23\x49\xcd\x27\x5e\x98\xb1\x52\x46\x68\x92\xeb\xb4\xfd\xdb\x06\xe2\xfb\xc5\x7e\xd1\x60\x7c\x1f\x4c\x14\x7c\xd1\x31\x20\xbf\xa0\x86\x3e\x28\xff\x85\x82\xf2\x1b\x96\x78\xbd\xc0\xfc\x8d\x4c\x7e\xaf\x1f\x33\xec\x7a\x7e\x8d\xb8\xe1\x55\x41\x5b\xf9\x64\xfc\xe2\x47\xaf\x71\xce\x5d\x4f\xe0\x4f\x9e\x28\x8c\x44\x2c\x34\x9d\x4d\x48\x1c\x03\xa7\x55\xdc\x56\x8a\x2e\x68\xc7\x99\x07\xf4\xdd\x8b\xa5\x26\x76\x9c\x70\x36\x93\x34\x36\x60\x2b\x19\x86\x8a\xad\xa1\xf1\x02\xc0\x05\x60\x7f\x93\x84\x08\xe7\x95\x10\xe8\x6b\x49\x99\x45\x53\xf4\xbf\xc5\x9c\x48\xf6\x95\x32\xc6\x02\xcc\x16\xe8\x91\xf1\xe7\x84\xc4\x33\xd8\xa1\xea\x60\x0e\x11\x25\x07\x88\x2a\xff\x99\x00\x34\x02\x9e\xab\x91\x1e\x3b\xc4\x9a\x19\x0d\x80\xd8\x6f\x83\x9a\xe8\xbe\x99\x6f\x8e\x10\x3a\x67\x68\x8a\x23\x75\x80\x64\x3e\x29\xda\x8f\xb9\x29\x72\xad\xb5\xef\x60\xe2\x45\x23\x7d\xcc\x78\x43\xe7\xcd\x67\xc3\x71\x07\x4d\xae\x83\x84\xe2\xad\x62\xeb\x9e\xf0\x36\x10\xa3\x97\xb9\xb4\x41\x18\x88\x33\x7f\xf4\x2d\xbc\x92\xc7\x88\x06\xbc\x4f\x83\xb7\xcc\x78\xdc\x6a\xeb\xac\x4c\x65\xdd\xb1\x14\x81\x90\x56\x50\xb2\x8e\x2a\x68\xd7\x2c\xb7\x96\x9a\xa4\x12\x04\xa7\xd6\x39\xa0\xaf\x1a\x10\x6b\x4c\x18\xa4\x1e\x3d\x15\x46\xc2\x5c\x67\x8b\x2f\x28\x7b\xd4\xbb\x5b\xa0\x62\x43\x7d\x79\xe8\xb9\x69\xd3\x32\x7d\xe3\x91\x53\xce\x8c\x83\x70\x2b\xb9\x93\xce\x18\x4e\xd6\xb4\x71\xd4\x56\xae\xee\xd3\x73\x72\x96\x15\x17\xb4\x14\x61\x8c\x7d\xc8\xf4\xb8\x96\x0d\xa9\x32\xdf\x50\xde\xc3\x28\x26\x19\x61\x31\x61\xd1\x02\x48\x84\x01\x72\x8e\x60\x38\x41\x18\xbe\xc3\xc9\x11\x3a\x33\xf9\x35\x5e\xc2\xb3\xd7\x3a\x5c\xe8\x29\x66\x74\xaa\xf5\x04\x30\xc2\xda\x51\x8e\x98\x19\xa6\xf3\x81\x04\x45\xfb\xfd\x8a\x35\xed\x8c\xbe\x41\xae\xb6\x44\x25\x66\xe5\xef\xd1\xf2\x0b\x07\x7a\x5b\xb6\x3b\xba\x39\x57\x83\x40\xe6\x93\x43\xf8\x77\x29\xe1\xcc\x01\xf5\x14\x28\x32\x24\x21\x60\x0e\xb4\x1e\x2f\xb8\x18\xdb\x80\xe5\x76\xe1\xb7\x5b\x91\xc7\x11\xf4\x51\x52\x6a\x52\xca\x68\x9a\xa7\x81\xf3\xce\x54\x2c\x88\xac\xfd\xd2\x64\x62\x64\x5a\x0f\x88\x1c\x78\x39\xd2\x97\x2b\x5b\xa0\x19\x7d\x22\x6c\xc4\x32\x4e\x99\x3a\x42\x57\x5c\x91\xa0\x44\x84\x81\x8e\xe2\x99\xa2\xa9\x41\x3b\x15\x44\x9f\x03\x03\x8a\x0d\x40\x93\x73\xac\x0e\x50\x9c\xc3\x51\x65\x44\x69\xd6\xa1\x6f\x5c\x05\x3b\x03\xf1\xd1\x62\xc4\xcc\x4d\x37\xc5\x34\xc9\x05\xb1\x32\x2b\x36\x79\x31\xc5\x90\x8b\x91\x59\x24\xb4\x60\x12\x29\x9d\xcd\x95\xde\x22\x2d\xe3\x59\x7f\xe3\x5c\x73\x23\x3e\x62\x13\x82\x30\xca\xb8\xa4\x8a\x3e\x79\xff\x25\x9d\x22\x2c\x25\x58\x50\x8e\xd0\x59\xc9\xfe\x4f\x25\xa8\xde\x6d\x71\xb5\x94\x8d\xad\xed\xb9\x3d\x1f\x67\xeb\x8d\x2c\xf5\x62\x57\x19\x4f\x24\x4f\x72\x15\xba\x60\x9b\xf7\xb6\x30\x8d\x3b\xe0\x7e\x30\x10\xf3\xe9\x88\x39\xba\x96\x47\x68\x20\x91\xe4\x7a\x97\xa4\xd9\xca\x48\x50\x45\x04\x35\x28\x4e\x44\x99\x4d\xf0\xe7\xd4\x9f\x81\x14\x8b\x47\x2d\x42\x85\x16\x78\x83\x29\x5a\xb2\x76\x4c\x8c\x84\x04\xb0\x56\xe1\x76\x80\xe9\x1f\x31\xce\x0e\x19\x99\xe1\x55\x3b\x32\x62\xa5\x2d\x41\x5f\xd3\x69\xa1\x90\xb6\xf9\x1c\x83\xb5\x1b\x43\xe4\x53\xdb\x2e\x99\x8e\xdb\x36\x69\x9a\x70\xbc\xc2\x6d\x3c\x2d\x0e\x3d\xfa\x3b\x9f\x98\x31\x6a\xbd\x9f\x2b\x90\x02\xb5\x7a\x35\xe5\x82\xcc\x31\x8b\x0f\xdc\x66\x95\xc7\x06\x37\xa3\x35\xb5\x39\x65\x0c\x24\x41\x07\x22\x4c\x0c\x16\x13\x66\xc1\x5e\x58\xc5\xcd\x6e\x45\xb1\x0f\x6b\xdd\x15\xbe\x35\xa8\x7d\x62\x0c\x10\x86\xe5\x2d\x32\x7b\xc4\x25\x4d\xb3\xa4\xc8\x69\x0a\x6c\xa3\x53\x2d\x62\x39\x1e\xc9\x9f\xc0\x74\xe5\xb4\x36\xb8\xd5\xed\xce\x69\x3a\x6b\x18\xb9\x67\xa4\x70\x6b\x38\x9b\x97\x29\x83\x19\xb0\xb0\xaf\x25\xd1\xff\x54\xa4\x50\xfb\x8c\xb0\x3e\x62\x4e\x04\xf9\x06\xb8\x8c\x6d\x36\x30\x9e\x69\x11\xda\xc0\xbc\xda\xf5\x43\x91\x71\x72\x97\xce\x89\x3d\x0c\xee\xd5\x86\x8b\xea\x3b\xca\x70\x29\xf3\x76\x03\xc1\x2f\xc9\xd7\x4a\xae\x0a\xdc\x7e\x8b\xb6\x9a\x26\x0a\xaf\x2a\x33\xb2\x06\x25\x98\x7d\x26\x48\x77\x67\xa9\xd9\x55\xbc\xc1\x10\x11\x30\x27\x49\x86\x62\x3a\x05\xb3\x94\x02\xf6\xed\x81\xc5\x0c\x16\xbc\x3e\xec\x69\xce\x0c\x48\x9c\xf1\x88\x3c\x5b\xbc\x6d\x7b\x35\x16\x8d\x1f\x8d\xd8\xb9\xfa\x4a\x6a\x11\x9d\xb3\x99\xbe\x68\xe2\x27\x2a\x8b\x22\x27\x11\x67\x32\x4f\x89\xb0\x5d\xe8\x1b\x59\x53\xa4\x2d\x10\x80\x9d\x0c\xa5\xc7\xa6\xf7\xfe\x09\x27\x34\x76\x85\x78\xf4\x8f\xe6\xcc\xe9\x51\x4a\xe7\x51\x6c\x08\x09\xb3\x9b\x1b\xeb\xb5\x7a\x33\xb1\xfe\xc7\x50\x72\x47\x69\x21\xe4\x63\x6b\xab\x3f\xae\x8a\xf8\x76\xd5\x97\x88\xf7\x93\xda\xa4\xd0\x72\xc1\xc8\xae\xc2\xd9\x2a\x14\x43\x87\xa8\x9b\x9b\x10\x60\xdd\x8f\x33\xfa\x98\xc1\xad\xc5\x7e\x2a\x13\xb4\xa3\x36\x9c\x25\x14\xef\x09\x05\xd9\x40\x2a\xac\xc5\x0b\x73\x1d\x70\x61\x35\x1c\x7b\xe7\xb4\x6f\xed\xd9\x96\x65\x22\x64\x84\x93\xfa\x0e\x2f\xb1\x37\x9b\xf7\x97\x2b\x01\xf6\xb8\x99\xb6\x97\x26\xfd\x46\x3c\x49\xd6\x29\x61\x52\x99\xf9\x69\xf1\xf9\xf2\x11\x15\xfd\xe8\x0d\x70\x7b\x01\xa7\xc6\x5c\xde\x38\xb1\xa6\x14\xa9\xec\x2e\x85\x2f\x19\x35\x6c\x61\x59\xeb\x88\xf1\x29\x14\xb9\x49\xda\xa2\xba\x32\xc1\x53\xba\x0e\xca\xb2\x09\x74\xba\x75\x76\xf1\x15\x56\x06\x67\x3d\x07\xd1\xd4\x90\x97\xed\x11\xf2\xf5\xb0\x15\x37\x97\x9c\xa1\x14\x67\x1b\x2d\xf8\x2a\xaf\xd0\x00\xa5\xc6\x25\x67\x57\x0f\xf0\x16\x09\xd4\x8b\x81\x45\x7e\xc6\x8b\x22\x35\xba\x0d\x3f\x97\xad\x45\x0e\x0f\xfa\xf5\x73\x36\xe5\x6b\x1c\xce\x22\x95\xd9\x9e\x3e\xec\x68\x36\x38\x7f\xde\x4b\x61\x76\xdf\xac\x69\x97\xf3\x78\xda\x44\xd4\x6b\x9f\x4c\xb7\x82\x2f\x69\xa3\x0c\x99\x48\x68\x9e\x5c\xe7\x6e\x2d\x1f\xad\xa0\x45\x04\xc3\x59\xbe\x54\x97\x25\x3a\xdc\xf9\x1a\x55\xda\x41\xc6\x14\xee\x82\xa9\x6f\x9a\x5b\x7d\x85\x35\xb3\x87\xa4\xd3\x62\x6d\x89\xdd\xb0\x1e\x0e\xb0\xeb\xd1\xa3\xfe\x36\x9f\xd0\x95\x45\x0e\xba\x2f\x06\x70\x33\x69\xed\x5c\x45\x64\xa6\x4d\x51\x9b\xd2\x44\x8b\xd8\xe7\x0d\x06\x4e\x97\x20\xe6\x03\xaa\x4c\xa8\xbc\x93\x9e\x72\x41\x83\xc2\xa0\x4e\x46\x42\x14\x0a\x94\x84\x4e\x9e\x40\xa1\x07\xd3\xe2\x9c\x3f\x9b\xe8\x74\x41\x35\xcf\x32\xc2\xaa\x02\x73\x8f\xe6\x05\xd4\x5a\x4b\x8c\xb1\xc9\x7f\xc0\x4d\xcc\x20\xb6\xb5\x8f\x8b\x51\xb5\x6c\xe9\x2e\x4a\x3c\x75\xcf\xbf\x73\xbd\xde\xeb\x2f\xea\x7b\xd3\x38\xc2\xfb\x72\xeb\x6b\x8f\xce\x4b\xf9\xeb\x07\x4c\x7d\x84\x4f\x9d\xd2\x83\xd1\x54\x10\x70\xf0\xa7\x1e\x53\xc3\x80\xea\x72\x0e\xf7\xdd\xdd\xd9\x0f\xc7\x0f\xe7\x88\xa8\x08\x25\xf4\x91\x8c\x58\x24\x9f\x0e\xb4\x78\xfc\x8f\x9c\x28\xfd\x73\x8b\x47\x80\xa6\x84\x49\xe0\x04\x54\xd5\xb0\x87\x9a\x17\xd2\x2d\x8c\xfe\xef\x59\xf9\xfb\x25\x24\x5f\x4b\x1f\x06\xda\x75\xf5\x6e\x80\x4c\xa1\xa4\x87\x59\x5a\xd9\x40\x31\xc6\x16\x39\x6c\xaa\x86\xb9\x41\xba\x10\xfb\x7b\xce\xd6\x14\xba\x4e\x8b\x8f\x82\x51\xb4\xc8\x74\x69\x86\x01\xeb\x7a\xbd\x3c\x24\xf3\x4d\x63\xeb\xab\x98\x48\x91\x96\xed\x6c\xcb\x45\xe1\x50\xa4\x04\x21\xc0\x42\x3c\x3d\xd9\xbb\xde\x22\x71\xf8\x89\x05\x1f\x1d\x8d\xd8\xa5\xf3\x38\x17\xbf\xca\x42\x0f\x4f\x27\x01\x04\x78\xb9\x15\x68\x36\xa6\xd2\xff\x00\x05\x5d\x64\x9e\x28\x53\xd1\x6e\x4a\x19\x4e\xfc\x40\xcd\x93\x26\x2e\x21\x30\x8b\xe6\xdb\x9a\x90\xe9\x74\x4c\x92\x75\x24\xd1\xf3\xe9\x30\x91\x9a\xbe\xa3\xc7\x96\xd3\xb9\x49\xcd\xc6\x62\x32\xb6\x12\xad\xa9\xfb\x84\x0a\x13\x34\x4e\x4c\x45\x39\x82\xc0\x47\x59\xcd\x1e\x33\x00\x11\x7a\x17\xad\xa4\x6e\x5c\x94\x26\x6d\xc3\x87\x64\x43\x2f\x08\xab\x11\x13\x39\x83\x62\x13\x3e\x62\x01\xa3\x02\x2f\x3c\x72\xfe\x03\xeb\xcd\x99\x69\x36\x61\xe0\xb8\xcd\xcb\x5a\x3f\xe3\xb9\x04\x5b\x4d\x4a\x94\xbe\xa0\xbe\x86\x3a\xb0\x26\x64\xe8\x00\x65\x82\xa6\x60\x6e\x95\xdf\x34\x6c\xdd\x29\x56\x38\xe1\xb3\x81\x50\x74\x8a\x23\x75\x8f\xb7\xd2\xc0\xb1\x6d\x66\xd3\xf0\x53\x37\x0c\x74\x7e\xa6\x17\x7f\x46\x18\x11\x30\x51\xad\x93\x37\x1f\x61\x78\xb2\x11\xe7\x06\x2b\x9b\x35\x8c\x4a\x6f\xb1\xc0\xb9\xe2\xa9\xd6\x6f\x71\x92\x2c\x0e\x8c\x45\x96\xa0\x39\x96\x73\xb7\xd1\xc6\x98\xd6\xe5\x6e\xb2\x8b\x7b\x8a\xa3\x39\xb9\x83\xaa\xc8\x4d\x8b\x5b\x19\xe5\x07\xc2\xf2\xf4\xc3\x09\xfa\x9f\x62\x8e\xa7\x83\xd3\xef\x87\xe3\xb3\xf3\xbb\xc1\x77\x17\xc3\xb3\x60\x3e\xf6\xc9\xe5\xf9\xdd\x5d\xfd\xd7\xef\xcf\xef\xeb\x3f\xde\x5c\xdf\x3c\x5c\x0c\xee\x9b\x5a\xb9\xb8\xbe\xfe\xe1\xe1\x66\xfc\x71\x70\x7e\xf1\x70\x3b\x6c\xf8\xf4\xe1\xbe\xfd\xe1\xdd\x0f\xe7\x37\x37\xc3\x33\xb7\x2a\x7f\x0b\x4e\x17\x58\x8f\x21\xf5\xa2\x79\x1a\xd5\x03\x78\x88\xca\x2f\x9e\xa0\x87\x6a\xe9\x03\x1b\x8b\x6c\x70\x2c\x9e\xb1\xd4\x3c\x0c\x42\xe1\x47\x0c\xb9\xcf\xf5\xa2\xb4\x7d\x6a\xc2\x75\xa2\x39\x41\x09\xe7\x8f\x79\x66\x59\x9b\x89\x0f\x63\xdc\x18\x7e\x88\x0c\x5a\xfb\xfe\xfc\xfe\xa4\x5e\x82\xc1\x37\x16\x20\x66\xb9\x33\x00\xe3\xc2\x8e\x9d\x82\x2d\xc5\x41\xf3\x17\xd6\xdb\xa0\x07\xbf\x33\xcb\xfa\x31\xad\x61\xa6\x2a\xdd\xc4\xb1\x2d\xfa\xeb\x26\x16\x34\x5c\xde\xd7\x65\xab\xe9\x97\xc3\xd4\x9e\x42\x13\x12\xe1\xdc\x04\x35\xe9\x7b\x4a\x08\x2e\xc2\x01\x17\xf4\xb0\xbb\x46\x2d\x1d\x35\x36\x58\xd9\x33\x3d\x71\xf9\x48\xb3\x8c\xc4\x1f\xea\xf2\x4b\xb9\x3a\xac\xad\x49\xce\xa7\x28\x38\x93\x5a\xaf\x07\x9d\xdf\x15\x4e\x99\x2f\xbc\x27\x0d\x02\x37\x8a\x50\x16\x00\x72\xd6\x77\x82\x2f\x6c\x41\xc1\x35\x86\x15\x7a\x26\x90\x52\x9d\xdb\xca\x51\x46\xf7\xd6\x67\x1b\xba\x33\x36\x6d\x57\x07\xae\x94\x6a\xdd\xca\x8c\x77\x21\x70\xeb\xef\x25\x69\x62\xc4\x5b\xe4\xc5\x9e\x99\x46\x81\x3b\xbb\x98\x37\x18\x71\x4b\x70\x83\xbb\x0d\x1a\x2c\xe4\x4b\xe4\xab\xfa\x8d\xb4\xe2\xb2\xd0\x6c\xbb\xcb\x78\x1c\x16\x48\x09\xe0\xba\xfb\xc0\x4a\x20\xc8\x2b\xd7\xea\x9e\xc7\x78\xa1\x89\x03\x62\x8d\x65\x9e\x65\x5c\x28\xd4\xd2\x86\x71\xe3\x9b\xf1\xc1\x9d\x63\xe7\xe1\x79\x1c\x34\xa2\x25\x0c\xd9\x50\x4b\xa3\x1b\x3c\x82\x5d\xd7\x82\x71\x84\x01\xb2\xa0\x08\xfa\xba\x47\x69\x49\xa5\x2e\x51\x68\x93\xf0\xbb\x4d\x86\x41\xa6\x2f\xf8\xae\x65\xf8\x9a\x7a\xbf\x76\x2d\x34\x6e\x79\x42\xa6\x6a\xdc\xe8\xf5\x59\x62\xe0\xd4\x2d\xb2\x36\x44\x19\x3a\x9b\xef\xa0\xc5\xee\x5a\xc2\x1f\x6d\x60\x8f\x56\x0d\x02\x0b\x81\xe0\x5c\x19\xf9\xb4\xd0\x61\x90\x5b\x4d\x30\x2f\xd8\x4e\x6d\x2e\x98\x17\x02\xb5\xcc\x6f\xfc\xa1\x3e\x6d\xea\x68\xc4\x86\x10\x40\x51\x28\x22\x2e\x45\x0c\xb4\x80\x95\xf2\x7f\xa9\xe8\xe8\xab\x46\x6b\xb6\x23\xbc\x16\x74\x6f\xeb\xe5\x27\x0b\x54\x14\x96\x2d\x7d\xd7\xe5\xf4\x18\xab\xb7\x13\x01\xcd\x84\x6d\x19\x77\x45\x32\x6b\x99\x37\xf3\x2c\x22\x7d\x20\x3e\x4c\x77\x75\x84\x7e\x72\x96\x1f\x08\x7c\x2d\x6a\x32\xdb\xd8\x8d\x04\x2f\x1c\x28\x64\xd3\xc2\xee\x02\x67\x71\xd7\xa1\xb0\xcb\x17\xd8\x03\x3a\x35\xac\x72\x49\x01\x67\xcc\x58\x64\xd7\x48\xfb\x38\xf5\x1f\xdd\x91\xe5\x51\x01\x1f\xa1\x0c\xa7\x8d\xac\x02\xa1\x83\x25\x8b\xff\x65\x36\xcb\x64\xa2\xba\xc2\x5a\xb6\x2c\xa2\xf5\xa0\xea\xf3\x03\x1e\x40\x93\xa8\x8a\xa6\x34\x49\x40\x0e\x38\x42\x03\x28\x0f\x0c\x89\x9c\xfa\x2a\x74\x01\x16\x74\xc6\xf8\xaa\x1c\xb3\x16\x62\x8a\x02\x62\xba\x6b\x27\x26\x09\xd4\x54\xe4\xf1\xef\x86\xa2\x76\x80\xe9\xa2\x79\x0b\xae\x23\x62\x77\x47\x72\x59\x43\x79\x7f\x8b\xe8\xe8\xda\x70\x83\x0f\xff\xd5\x3c\xf4\x4f\x39\x16\x98\x29\x88\xf9\xb5\xa2\xbb\x20\x41\xea\x11\xf9\x0c\xf1\x19\xcc\x18\x82\xe1\xa7\x70\x73\x9d\xcb\x1f\xc2\xbd\x10\x8d\x0f\x10\x3d\x22\x47\x50\x9d\x4d\x68\x59\x62\x52\xbc\x39\xd7\x92\xc3\x88\xd5\x62\x19\x8f\xd0\x20\x91\xdc\x7e\x41\x58\x94\x40\x39\xee\x20\x3c\xd9\x53\xbe\x75\x2b\x4d\x16\xa0\xa0\xc0\x56\x16\xcd\x73\xfb\x20\xf8\x10\x8a\x8c\x81\x4f\x3c\x81\x93\x5e\xfc\xfe\x7b\x9e\x19\x6f\x45\x5b\x9c\xc4\x0b\x96\x73\xa8\x5d\x43\x2f\xb6\x49\xa6\x54\xe0\xb2\x0d\x82\x37\x60\x63\x8a\x18\xd3\x00\x81\x05\x7d\x8d\x15\x4a\x08\x96\x0a\xfd\xe1\x9b\xb5\x62\x43\xdc\x04\x0b\xee\x6a\x8f\x6f\x91\x28\xe6\x52\x0d\x42\xe1\xce\x77\x0c\xb5\xe3\xb0\x50\x08\x23\x46\x9e\xc3\xc8\x52\x0e\xc1\xc0\xae\x20\x1c\x09\x72\x5b\x4d\x3c\x99\xc9\xcc\x87\x6c\x0d\xa3\x32\xb5\xf0\x11\x07\x77\x6c\xdd\xa7\x76\x58\x0d\x94\x65\x95\x27\x1b\xe2\x09\x90\x5c\x45\xd0\xff\x1c\xab\x11\xb3\x9c\xd5\x85\x8d\x04\x69\x5e\x83\x24\x29\x07\xda\x63\xc8\x25\x61\x7a\xc2\x50\x9f\xfd\xc8\x2f\xd0\x15\xa8\x5f\x3e\xda\xb9\x64\xa7\x2b\x0e\x8b\x89\xc7\xf3\x78\x47\x61\xdb\x8d\xd2\x4e\x93\x7d\xf9\x15\x85\xe0\x86\xee\x2f\x4c\xa1\xfc\x0e\xc2\x30\x69\x1a\xf2\x8a\x83\x55\xb7\xe9\x2f\x91\x8d\x77\xdd\x41\x77\x51\xb9\xd9\x3e\x0e\xd7\xec\x33\x6f\x30\xb7\xb7\x6c\x6e\x20\x5b\x6c\xa3\x80\xfb\xb0\xfb\xd7\xf2\xf8\x96\x86\x7e\x1e\x43\xd2\xdf\x6a\x2e\x58\x24\xd1\x39\xd6\x61\x62\xaf\xe3\x20\xa7\x27\x48\x21\x80\xe0\x3f\xc7\xf8\xec\x9b\x2d\x9e\xd7\xec\x7d\x4f\xff\xa0\x98\xbf\x9b\x8a\x0f\x82\xab\x4f\xbc\x5d\xd8\x1b\xc4\x7f\xc7\x11\x44\xfa\x43\x4f\x2e\xc7\xa0\x0e\xc8\xe4\x60\xac\x31\x18\xf3\x1b\xc5\xc3\x4c\xf0\x88\x48\x79\x84\x86\x70\xd1\xd8\x7f\x22\x3c\x75\x0e\x89\xe0\xe5\x11\xd3\x9a\x89\xc3\x6f\x09\xda\x2f\x93\x78\xd3\x09\x30\x60\x70\x5b\xf9\x72\xd2\xd5\x35\x4a\xda\xb4\x09\x87\x45\x07\x6d\x40\x59\x03\x34\x9c\x9d\xa0\x98\x47\x8f\x44\x1c\x0b\x12\x53\x79\x02\xbe\x75\xd5\xea\xd4\x4b\xb5\xb6\xbd\xb5\xa4\xd1\x16\x28\xb0\x22\x29\xee\xd4\xf4\x6f\x03\xac\x5d\x78\xed\x01\xa2\x53\x50\x27\x5c\x4e\x86\x09\x42\x76\x70\x37\x84\x29\xb1\x80\xb8\x7e\x6f\xca\xaa\x2c\x84\xd3\x34\xb4\xd0\xd6\x96\x4d\x24\x76\x11\x83\xb3\xe1\xb4\xef\xe7\x44\x12\x17\x70\x60\x26\xa5\xb8\x8d\x65\x36\xec\x22\xc3\x6a\x2e\x21\x75\xb5\xbc\x06\x56\xe9\x82\x4f\xf5\x0a\xe1\x0c\xe2\x15\x8c\x95\xa2\xf8\xc8\x27\x58\x4a\x45\x93\x64\xc4\x18\x21\xb1\x44\x90\x65\xfa\x55\x63\x86\xbc\xfe\xf4\x00\xe1\x38\x46\xff\xfb\xeb\x8f\x17\x3f\xdf\x0f\xc7\xe7\x57\x60\xb4\x3e\xbf\x18\x7e\x73\xe0\x7f\xbc\x7e\xb8\xf7\xbf\x1a\x0b\xcb\x13\x11\x28\xc5\x8f\xa0\xe2\x31\x49\x6c\xf2\x04\x19\xb1\x70\xa4\x0e\x3b\x40\x3f\x91\xc4\x45\xba\x5a\x31\xc5\x43\x28\xda\x3d\x6c\xad\x58\x6c\x6c\x7e\x6b\x28\xbf\xb7\xfe\x93\xe5\x34\xe8\x88\xc7\x77\xe1\xc4\x40\xc8\x91\xc1\x32\x48\x26\xb7\xba\x6f\x41\x70\x84\xcd\x28\x6b\x8b\xc7\x23\xec\xe9\x25\x85\xf8\x1f\xc8\xe2\x47\xad\x5e\xdf\x60\x2a\x3a\xd3\x5e\x33\x1a\x90\x3b\x31\x5a\x4f\xc7\xb2\x7a\xa8\xa4\x91\x85\x4d\xb6\x4d\x6b\xcc\x67\x13\x10\xdc\x9b\x4f\xd7\xc2\x4b\x91\xcf\x4a\x38\x94\x0a\x9f\xcf\xe1\xa0\x9c\xfc\x45\x53\xd0\xe0\x88\xdd\x5f\x9f\x5d\x9f\x20\x92\xe0\x09\x87\x50\x7e\x1b\x12\xe4\x9a\xb0\x0b\x16\xf1\x34\x68\xa8\x84\x50\x72\x80\xb2\x02\xa1\x24\x34\xa2\x1d\x99\x36\x56\x20\x95\x64\x5c\xd4\xf1\x3d\x76\xab\x02\xda\xc9\xde\x70\xd1\xe5\xfa\xd7\xaf\xc1\xd2\xf1\x4c\x2b\x72\x15\xce\x6b\xef\xe6\x29\xc1\xa6\x96\xbe\x71\x0b\x59\x5b\xbe\x0d\x60\x4d\x92\x52\x3d\x45\x7d\x70\xe4\x91\x75\xc1\x17\x6f\x72\x86\x7e\xf8\x8b\x44\x93\x5c\x8d\x58\xb9\x0d\xce\xd0\xe0\xa7\x3b\xf4\x1d\x56\xd1\xfc\x9b\x11\xbb\xd6\x6a\xe6\x0f\x7f\x69\x81\x52\x5a\x1b\x9d\x50\xaf\xc9\x19\x56\xf8\x82\xe3\x98\xb2\x59\x13\x34\x61\x51\x3f\x66\x78\x3f\x38\x41\xd7\x56\x87\x2f\x32\x41\x7c\x4a\x70\xd0\x10\x30\x64\x98\x88\xe3\x22\xc0\xca\x59\x19\xbe\xcd\x68\x66\x70\x61\x8d\xd8\xbd\xc1\x64\xd4\x5c\x95\x2a\x94\x71\x5b\xc3\x48\x6b\x65\x06\xad\x12\xbb\x0c\x29\x92\x2c\x90\x5e\x1d\x20\x63\xbf\x19\x56\x1e\x03\x79\xa6\xce\xec\x47\x0c\x14\x74\x9f\x9b\x92\xf0\x08\x27\x10\x93\x77\x18\xd8\xf4\xb4\xda\xce\x73\xc8\x0f\x37\x45\xcf\x17\xe5\xd0\x59\x0f\x59\xe0\x85\xb2\x70\xa3\xc0\x00\x00\xfb\x68\xbd\xb1\x29\xd7\x1c\xc7\x60\xb1\x81\xf1\x2d\x31\xab\xa3\x3f\xf4\xd8\x6c\x66\x59\xf4\x53\x9f\xb6\xc5\x73\xe6\xb0\x48\x22\x30\xdf\xb3\x05\x84\x6f\x43\xd1\x11\x0e\xa1\x1f\x05\x77\xb6\x44\x59\xdb\x45\x7f\x27\x06\x9f\x8d\x98\x89\x14\x2c\xed\x4b\x88\xde\x13\xf4\xce\x19\x04\x32\xd6\x73\xc5\xf2\xcc\x06\x36\x5a\x59\x3f\x13\xe4\xd0\x67\x40\xc5\xa5\x35\xd5\x37\xec\x11\xba\x0d\xd5\xeb\x98\x47\x79\xea\x90\x95\x21\x7b\xaa\x28\x2b\x5f\x92\x78\xcc\xc5\xbe\x8a\xe2\x01\xa5\x45\x11\x48\x1f\xef\xac\x1f\x1b\x82\x19\x84\x9f\xd6\x25\xf5\x76\xc1\x17\x78\xc7\x76\x51\x6b\xa6\xa1\x71\x56\x6e\xa9\xd4\xda\xd6\x79\x89\x57\x05\xfa\x2b\x17\x20\x6c\x91\xcf\x19\x07\x23\xb7\x49\xcf\xe2\xf1\x57\x12\x9d\xdf\x68\x09\x48\x6b\xbc\xfe\x0c\xe6\x52\x99\xe0\x32\x48\xd7\x31\x5f\x9b\x74\x81\x03\xf4\x2d\x1a\xe5\xdf\x7e\xfb\xa7\x08\x7d\x76\x7f\xfc\xf9\x3f\xff\xf3\x4f\x7f\x5e\x27\x9d\xc4\x29\xe4\xd0\x6e\xb1\x46\xbe\x9c\x54\x59\x24\x0a\x77\xa0\xce\xa9\xb6\xd8\x05\x7b\x00\xdb\x96\x7f\x13\x94\xc7\x20\x76\x08\xcf\xec\x09\x97\xe1\xc9\x44\xa5\xa3\x59\x44\x12\x48\xa2\x0e\xca\x1c\xc2\x0b\xbb\x56\xa2\xff\x5f\x4b\xc0\xca\xc6\xfa\xa8\x6c\x16\xe3\x44\x13\x2f\x5e\xeb\x46\xd0\xd7\xd6\xfe\xa7\xc0\x81\xf8\x8d\xbb\xe0\x78\x12\x13\x61\xc6\xe4\x4d\x76\xde\x90\x08\xcc\x81\x7c\xce\x12\x1e\x3b\x78\xd4\x22\x17\x90\x82\x80\x30\xfc\x8c\x35\xe7\x3e\xb0\x30\x5a\xe6\x23\xe3\x79\x99\xe2\xc8\xa0\x82\x4a\xf4\xf5\xe7\x13\xfd\xdb\x01\x5a\x9c\x40\x10\xe9\x01\xfa\xf5\xc4\xa2\xe5\x60\xa1\xc6\xfa\xa7\x6f\x9c\xac\x6d\x9b\x80\x41\x53\x89\xbe\x3a\x7e\xc2\xc2\xd4\x8c\x3e\x36\x23\xfa\xca\x72\x56\x5f\x17\x2f\x94\xcd\x13\xce\x1f\x6d\x80\x6d\xed\xc3\x63\x07\xbc\x06\xe4\xed\xfd\x26\x66\xeb\x7d\x62\xbe\x42\x87\xf0\x02\x41\x47\xd9\x04\x1d\xfd\x5d\x72\x86\x8e\x16\x38\x4d\xec\xaf\xee\xa9\x8d\xff\xc5\xd2\xe6\xc4\xc5\x3e\xc8\x27\x59\x18\x4b\xe9\x77\x09\x9f\xc0\xac\x2e\xdd\x4c\x4d\x04\x2d\x0c\xb4\xb8\x7d\x8a\x0b\xcb\x4e\xc4\x25\xa2\x02\x7e\x50\xca\x95\x79\x05\x78\x5c\xd3\xac\x3e\xfb\x21\xfd\xb7\xf1\x0b\xc3\xa2\xb8\x24\x3e\x63\x1c\xf6\xd1\x6b\xba\xd1\xcf\xe8\x6b\xcb\x82\xbe\xd1\x77\x8c\x0d\x57\x36\xcb\xd0\xd4\xc1\xc2\x77\xf0\x73\xd0\x01\x65\xc8\xa4\x65\x2e\xf9\xf2\xd7\xe3\xa3\xa3\x23\xff\x35\x64\xad\xff\xbf\x88\x2a\x49\x92\xa9\x69\xc9\xdd\x60\x8b\x11\xbb\x74\x85\x17\x9c\xf1\xba\x80\x74\xcc\x04\x57\x3c\xe2\x09\x3a\x2c\x0c\xba\x31\x8f\x24\xfa\x77\x2d\xd6\x06\x4b\x09\x3f\x6a\x3d\xae\x05\x06\xd6\x20\x3d\xbf\xd2\xa1\xb2\x06\xf1\xea\xb1\x0a\x51\xdc\xbc\x62\x8b\x65\x58\xc5\x03\x68\x41\x53\xce\xb1\x45\x7a\x13\x42\xbf\x4c\x3e\x2b\x78\xd4\x02\xa4\xd7\x18\xca\xde\x7c\x53\xd6\xd8\x6d\x81\xa7\x67\xc8\xba\x65\x01\x2c\xde\x95\xe5\x0c\x66\x9e\x07\xa1\xfb\x44\x5f\x2e\x2c\x2c\x05\x20\xf3\x34\xc5\x62\x71\x5c\x9c\xb6\x3a\x71\x16\x48\x6b\xc0\x63\x12\xb7\x00\xe0\xc2\x4d\xec\xd1\xb2\x51\x0c\x56\xbc\x74\x37\x9a\x3f\xbb\x11\xd4\x32\x0c\x10\x0b\x08\x8b\x78\x6c\xe9\xba\xc8\x3e\x2d\x4b\x2c\xfe\x9d\xba\xac\xe2\x22\x62\x64\x61\x8c\x63\xca\x40\x78\xd8\x37\xdc\xc7\x2d\xec\x9b\x8f\xa1\x2a\x2e\x99\xad\xe1\x1e\x3d\xbf\xbe\x73\xdf\x74\xbf\x74\x61\x1d\xca\x22\x3b\x4e\x42\x7c\x3c\x36\x43\x02\x3f\x17\xd7\x2f\xc4\x76\x18\xeb\x4c\xee\x73\x73\xcd\xbf\x4f\xf9\x0d\x4d\xf4\xad\x05\x34\x7e\x34\x62\xa5\x9f\x0f\x10\x49\x68\x4a\x99\x8f\xad\x33\xcc\x9d\x4f\x8d\xf4\xfc\x48\x95\xde\x32\x19\x3f\x6a\x0e\xe6\x70\x9d\x02\x95\x6a\xc0\x16\x8e\x74\xbc\x63\xca\x5a\x20\x72\xa9\xc7\x55\xe8\xe8\x5a\x98\xd5\x4d\x1c\x5a\x81\x94\x06\x84\x07\xe7\x77\xc4\x74\x6b\xee\x2c\x15\xe1\xc2\x41\x7b\x41\x73\x87\x0e\x10\x3f\xe0\x00\xd0\x47\x29\xe6\xd7\xcb\xbf\x0d\x02\xca\x90\xe5\xe9\xb6\xc9\x26\x36\x7c\xf8\xad\xcc\x74\x37\x82\xb8\x9b\xca\x26\x2e\x11\x96\xa7\xee\x40\xad\x41\x71\x43\x2b\xfe\xc4\x24\x4a\xb0\x41\xaa\xd1\x0d\x41\xe4\xe3\x81\x71\x90\x66\x41\x5f\xe6\x7a\x31\xdd\x98\x1a\x3b\x09\x61\x5f\x9b\x7f\x7f\x83\xec\xdd\xf0\xed\x81\xbd\xcf\x85\xf4\x08\x20\x66\xcf\xa1\x46\x23\x89\x8d\x0d\x1d\x50\x89\x67\x58\xc4\xc6\x5a\x1e\x6a\x15\x26\x83\x57\xcb\x5f\x0b\x9e\xa3\x67\x2a\xe7\x23\x76\xcf\x9d\xc1\x11\x31\xee\x71\x9d\x0f\x40\x19\xad\xf5\x87\x25\x30\x01\x18\x75\x13\x05\x68\x26\xbc\x55\xae\x11\x44\xc1\x8e\x19\x8f\xc9\x76\x00\x46\xf7\x85\xaf\xc2\xf9\xaf\x05\x31\xf9\x60\x70\x53\xb4\xa5\xd3\x12\x29\xd7\xb4\xcd\x57\x37\x1e\xee\x21\xdb\x0e\x94\x04\x7e\x5e\x0b\x5d\x3b\xc4\x06\xf3\xb7\x1a\xb4\xe2\x34\xce\x20\x1b\xb8\xb4\xf6\x1e\x2d\x79\xdb\x4d\x88\x1a\xd0\x8a\x3a\xdd\xfd\x66\xee\x11\x2c\xbb\x0f\x30\xc6\x68\x26\x78\x9e\xf9\x94\x79\x97\xee\x67\xb6\xc1\xca\x34\xe7\x6c\xca\x4f\xac\x4e\x75\x41\xd9\xa3\xa1\xf8\x97\xda\x23\x03\x88\x4d\xe2\x12\x8c\x9b\xab\xd2\x0a\x73\x38\x44\x94\x45\x49\x0e\x17\x9f\x54\x38\x7a\x34\xa0\xde\x6d\x46\x5f\xfd\xcd\x78\x75\x32\x65\x8b\xc4\x94\x27\x89\xed\xb6\xb8\x40\x8b\x32\xd6\x4f\x14\x23\x8c\x1e\x6e\xcf\x9b\xfb\x7e\xa4\x75\x67\x4e\xf3\xed\x59\x26\x10\xf8\x9f\x1f\xe8\x5a\x71\x97\x15\x58\x3c\x52\x22\x75\x6f\x5c\x6a\x03\x5d\xd5\x44\xfa\x09\x2b\xb2\x6d\x26\x94\xc1\x00\x5b\x23\x52\xaf\x06\xae\xb6\xd4\x7a\xbc\x25\x32\x59\x81\x2a\x06\xa1\x41\xed\x10\x69\x61\xb0\x16\x3c\x5c\x03\xbb\x01\xde\xef\x36\x9f\xca\xbb\x2b\xa6\xb3\x7c\x98\x09\x21\x6b\xa0\x0d\xdc\xe9\xd7\x3b\x0e\xb2\xf4\xea\xb2\x31\x3e\x63\x53\x7d\xa1\x0e\xfa\x1b\x5b\xc9\x6e\x1d\x66\xeb\xc8\xd1\x88\xd7\xd2\xe7\x88\xf8\x91\xb8\x30\x1c\x2f\x8b\xb9\x7e\x67\xe0\xdb\xe2\xa5\xe2\x0e\xde\x42\xdb\x40\xf8\x81\xd8\xba\x65\xd8\x84\x16\xbf\xc6\x69\x67\x40\xb9\xa2\xe3\x33\xfb\xf1\x65\x0d\x5e\xce\xb3\xa2\x4b\xc8\xe2\xf3\xc0\x29\x29\x66\xfa\x64\xbb\x5e\x5b\x8c\x90\x46\x22\xdc\x68\x48\x0f\xd9\x46\x03\x32\x3d\x76\xac\x7b\x68\xbb\x72\xad\x3c\x1b\x3b\x3c\x4e\x8c\x9d\x49\xcd\xc1\x04\x51\xd4\x0b\xd2\x1c\xad\x6c\x8a\x30\xb5\x85\x92\xff\x8f\xbd\xaf\x6b\x6e\x1b\xc9\xce\xbe\xcf\xaf\xe8\xaa\x5c\x78\xfc\xbe\x14\xb5\x33\x5b\x49\x4d\x5c\x95\x0b\x5a\x96\x77\xb8\x6b\x4b\x5e\x49\x9e\xd9\xbc\x61\x8a\x6e\x02\x4d\x12\x11\xd8\x0d\xa3\x01\x69\x98\x6c\xfe\xfb\x5b\x7d\xce\xe9\x0f\x7c\x12\x20\x25\xdb\xbb\x99\x8b\x64\xc7\x22\xd0\xe8\xef\x3e\x7d\xce\x73\x9e\x87\xe7\x1b\xbc\x20\x69\x51\xe8\x97\x2d\x23\xec\x73\x1e\x4e\x18\xe1\x23\x34\x59\xc3\xb8\x27\x98\xdf\x7d\x2b\xcd\xd5\xb2\x4a\x2e\xea\x4e\x65\xa7\x6e\x1c\x30\xe7\xf9\x44\x8c\x48\xe5\xc8\xc4\x1d\x9b\xb5\xd2\xcd\x99\x72\xa2\x36\xf7\x15\xdf\x39\x46\x00\xab\x10\x4c\xf9\x5d\x58\xb9\x95\x00\x5e\xdc\xee\x3a\x9c\x2c\xc2\x1d\x56\x81\x44\x31\xbb\x6a\xb0\x90\x33\xfb\x88\x67\xf7\x32\x17\xb3\x1c\x0d\x70\xc0\x87\x22\x1a\x1a\xee\x57\xdc\xf7\x3a\x35\xae\xa3\x11\x63\x93\x37\xeb\x3a\xe2\xe6\x7e\xe7\x4e\x23\x52\x0c\x72\x1c\x9e\xbd\x6a\x4d\x24\x9f\x7f\xc2\xc7\x6f\x6d\x13\x6b\x4a\xfc\x6d\x1f\x3e\x7c\x97\xb2\x8c\x11\x54\x50\x28\xfe\x8f\x18\xd2\x74\xef\xa7\xa9\x27\x89\xab\x7d\xac\xb9\x5a\x8b\x93\x76\xe3\x84\xef\x96\xb9\xea\x96\xb3\x1a\xd0\x4d\xb6\x88\x8a\x7f\x67\x8b\xf2\x16\x7b\xf6\xb9\xe4\x29\x1e\x6e\x92\xa6\xa3\xad\x36\x98\xca\x3f\xfc\x33\x9b\xc1\xe9\xc3\xde\xc3\xbe\x08\x01\x7e\x28\xad\x50\x2c\xd9\x65\x22\xd7\x4a\xf2\x4e\x5d\xb7\xfb\x1f\xf5\x92\xb4\x69\x96\x3c\x8a\x54\xd9\xd4\xa1\x19\xd1\x92\x96\xd2\xc2\x46\x71\x76\x5f\xae\x44\x2e\x05\x6a\xd7\xc1\x73\xcc\x3e\x37\xa8\xba\x8a\x97\xc5\xf6\x87\x65\x94\x26\x83\x05\x73\x20\xbb\x68\x66\x5e\xbb\xc0\xb7\xfa\x1a\x50\x29\xbf\x52\x75\xc9\xf0\x37\x86\xbf\x4d\xd9\x6b\x1e\xdd\x0b\x19\xb3\x2c\x2d\x37\x09\x91\x09\xc0\x09\x05\xdb\x65\xe0\x9e\xad\x36\x0c\x6d\x0b\x2c\xdf\x1c\x43\x0b\xb9\xe3\xf7\x48\x62\x4b\x46\x64\xc4\xd3\x4e\x2a\x2a\x67\x56\x2f\x93\xe6\xdc\x3d\x38\x5a\xee\x3c\x6c\x16\x53\x9f\x7b\xba\xc4\xdc\x8a\xc7\xad\xa2\x88\x74\xc5\xaa\x1f\xb1\x70\xdd\x6c\x6d\x70\xbe\xd8\xbc\x7c\xa7\x62\x48\x95\xc1\xd5\x0b\xee\x5e\x20\x62\x2e\x25\xe3\x40\x1b\xf3\x42\xb3\x32\xb3\xf6\x19\xf8\x21\x53\x88\x0a\xe3\x10\x98\x1f\xb2\xc4\xdc\xd2\xb6\x62\x21\x01\x69\xcb\x5c\xf3\x1a\x62\x57\x4c\x78\x40\x4c\xdb\xd6\xb0\x46\xd2\x84\xd3\x62\x9c\x0d\x1e\xe7\x03\xf3\x74\x20\x8a\xb8\xd8\x0a\xb9\x3c\x82\x4e\x78\xf8\xa0\x55\x10\xc3\x64\x06\x3b\x7f\xae\xeb\xc2\x52\x26\x24\x20\x45\x2e\xfc\x90\x2b\x33\x59\xd7\xcc\xe8\x44\x33\xcd\x8b\x44\x9b\xbd\xac\xb5\xc7\x3d\x55\xc5\x29\xbd\xce\xc7\xf1\x63\xb4\x70\x63\xd4\xfa\xc2\x65\x25\x4c\xd9\x5b\xf0\x82\x05\x37\x03\xe5\x98\x26\xba\x36\xac\x62\x2b\x3a\x29\x17\x9f\x02\xce\x63\x5b\x10\x3c\xdf\xeb\xdc\x74\x19\x28\x53\x36\xf3\xd1\x07\xe4\xda\xc0\xb8\xc2\x81\x16\x89\x54\x8b\x63\x26\xdf\x20\x47\x1d\x44\xe8\x61\x02\x31\xb0\xa4\xb4\xf9\xbb\x67\x90\x77\xd5\x7c\x84\x24\x4f\x7e\x2f\x64\x9f\x37\x66\x78\x0d\xd1\x5d\xd6\xeb\x12\x70\x7e\x38\x85\xae\xb8\x63\x2a\x38\x7c\xd9\x79\x7a\x93\x64\x7d\x6e\xba\xdc\x5c\x43\xa2\x7b\x4a\x2d\x41\x6f\x2c\x11\xa4\x3c\x6e\x95\x0e\xd7\x99\x1d\x3f\xbc\xc9\xe6\xa5\x63\x09\x87\xd4\x1c\xd7\xc1\x88\xc9\x91\x2a\xe4\x4f\x81\x5a\xbb\x45\x8a\x9e\x66\x37\xde\xcc\x6e\xa1\xd0\x0d\x10\xc5\xb2\x45\x35\x57\xf3\x9f\x7e\xd4\xd7\xb0\x62\x9f\x22\x53\xbf\x5d\x96\xf5\x74\x94\xfc\x91\xf1\x01\x87\xff\xf2\x9a\xae\x3c\x76\xdc\x12\x99\x8a\x99\x9f\x5e\xe3\x05\x5c\xbf\x7e\xb3\x6a\xc2\xaf\x83\xda\x76\x68\x66\xbf\x0f\x40\x04\x6c\x55\x26\xa8\xa1\x5e\x31\x08\x95\xb5\x38\x80\xff\x18\x8e\xff\x44\xbb\xf3\xa4\x7d\x8e\x7d\x50\xf1\x29\x13\x6b\x3c\x9d\x5e\x73\x5e\x0f\xc0\x18\xeb\x36\xcd\xf7\x9e\x9e\xc8\x54\x37\x3a\x34\x5e\x0e\x57\x49\x07\x38\xc0\xaa\x5c\xdf\x82\xba\x48\x17\x63\x45\x40\xbc\x6f\x53\xd0\xcc\x38\x9b\xcf\xb8\x84\x88\xae\x41\xa1\xe8\xb2\x3f\xfe\x39\xfb\xe3\xed\xf5\xd5\xd9\x8e\xe7\x7a\xcb\x21\x23\xd8\x96\x35\xb1\x82\x6d\x78\x3d\xb6\x51\xaf\x44\x2e\xe4\x19\xdb\xa8\x09\xc6\x58\x5f\xb1\x6d\x51\x64\xfa\xd5\xf9\xf9\x26\x29\xb6\xe5\x6a\x1a\xa9\xdd\xb9\xef\x9a\x73\x9e\x25\xe7\xab\x54\xad\xce\x73\x01\x28\xdb\xb3\xef\xa7\x3f\x7c\x0f\x23\x73\xfe\xf0\xfd\x39\x44\xd6\xa6\x1b\xf5\x8f\xef\x7e\xf8\x97\xdf\xff\xb3\x29\x38\xdb\x17\x5b\x25\x5f\x51\x00\xb7\xb7\xec\x33\xb4\xca\xcf\xf1\x95\xda\x57\xfe\x65\xfa\xbb\xb0\x1a\xf4\xe8\x4e\xc5\x22\xd5\xe7\x0f\xdf\x2f\xed\xc0\x4c\xb3\xfd\x6f\xb8\xd4\xaf\x86\x4b\xbd\x4f\x8a\xdf\x70\xa9\x5f\x15\x97\x3a\xdc\xc2\x71\x7b\x0c\x10\x7d\xfa\xfd\xd1\xfc\xdd\xed\x91\xd6\xf5\x7e\x68\x1f\x6a\x39\x1c\xc2\xac\x81\x13\x8e\x88\x7b\x31\xea\x8a\x5d\x6b\xae\xbb\x3a\x74\xb8\xd8\xc6\x92\xed\x77\x1a\xf3\xa3\x92\xa4\x01\x05\x92\x44\x40\xe4\x8c\x2e\xc1\x8c\x27\x6d\x68\x53\x42\x3b\x9d\xd2\x7f\xcf\x49\x49\xfe\xd4\x5c\xe4\xd4\xdc\x23\x79\xc8\x53\x7c\xdb\x62\xb3\xd4\xa3\xe5\x1f\x7f\x0a\xd6\xee\x81\x3a\xae\x8e\x8c\x18\x27\x0f\xd4\xc5\xd6\xab\xa3\x1a\x5b\xae\x8f\x03\xf9\xcd\x90\xf2\xcf\xc5\xe9\x9c\x2a\x3e\x7d\xd0\x1e\x1c\x96\x45\x01\x44\xc2\x89\xac\x29\x2b\xf3\x4c\x69\xa1\xa7\xec\x6d\x4d\xe9\xd0\x03\x17\x6f\xde\x5e\xb0\xef\x7f\xfc\x97\xdf\x2f\xe4\x77\x2d\xe7\x36\xec\xf7\x2a\xdf\x10\x8e\x12\x4e\xeb\x1d\xd7\x85\xc8\xcf\xf3\x75\x74\x8e\xbb\xdc\xb9\x79\xff\x8c\x3e\x7a\xa6\xd6\x67\x8e\x92\xf8\x8c\xd8\x59\xa7\xbb\x78\x1c\xc1\x40\x65\xea\xe1\x59\x43\x07\x8d\x86\x43\x09\xa9\x88\xd4\xda\x91\xcf\x63\x9e\x0b\xea\x54\xa8\x75\xcb\x7f\xbc\x4e\xd5\x4a\xbf\x74\x04\x68\x5c\xdb\x6f\x78\x46\xa2\xee\xa5\xf9\x34\xec\xe4\x76\x8a\x3c\xa7\xa3\xc2\xee\x25\xe1\x75\x64\x4c\xc7\xb7\x2f\x36\x7f\xdc\x23\x1f\x03\xcf\x55\x29\x2d\xbb\xb3\x92\x42\xad\x01\xc5\x07\x96\xb0\x45\x29\x80\xaf\xd6\x9c\xb4\x9e\x7b\x21\x17\x19\x1e\x30\x10\x55\xe8\xee\xee\x13\x19\xce\x0f\xf5\xf3\x73\x30\x9c\x9f\xda\xef\xb4\xa1\x7c\xa5\x0e\x3f\x15\x4a\x88\x4b\x69\x0c\xaa\xc2\x3c\x7f\x30\x82\xea\xf6\x01\xaf\x3e\xe4\xc9\x84\x33\x9e\x83\x91\x26\xce\x0a\x75\x06\xa4\x35\x40\x85\x82\x9a\x03\x5d\xb0\x0a\x88\x3c\x8f\x39\x26\xcd\xf3\x03\xea\x89\x86\xf9\xaf\x41\x45\xc9\x26\xd1\x48\xe1\x49\x90\xac\x44\x4a\x91\x53\x4c\xed\xe0\x89\x3a\x32\x2e\x1d\x0e\x65\x3f\x22\x2b\xd0\xb5\x0e\xf8\xe0\x1d\x1e\x9f\x07\x9b\xc0\x94\x81\xf5\xb9\x55\x3b\x65\xcc\x19\x55\xea\xe0\x47\xbc\xbd\xc0\x21\xdc\x69\x7b\xed\x78\x86\x24\x75\x5f\xaf\x35\x66\x69\x99\x9f\xd0\xa9\x17\x3e\x34\x4a\x62\x63\x55\x15\x15\x38\x50\x7f\xc7\x06\xdf\x3f\x6f\x00\xf5\x80\x3a\x75\x20\x15\x4b\x1c\xcf\xc9\x7f\x99\x7b\x8d\x99\x52\xee\xa6\xe0\x4e\x6e\x04\xe9\x20\x17\x63\x48\xf7\x6a\xad\xf9\xce\x6c\xe9\x72\x37\x72\x0c\x1c\xc8\x78\xc8\x00\x70\x89\xb0\x5b\x8b\xb7\x3d\x6b\x05\xdc\x76\xad\x4b\x2b\xcc\x1a\x2f\x2d\x5f\xe8\xb8\xaa\xde\xba\x02\x88\x1a\xb4\x59\x6f\x4f\xb7\x04\xe8\x6c\xec\x63\xdc\x10\xac\x6d\xd1\x01\xba\x91\xe3\x17\x23\x08\xac\x8c\xe9\x3b\xf8\x08\x4e\xce\x46\x0f\x06\x6b\xa1\xab\x03\xc7\xb9\xd8\xfa\x3c\x56\x6d\x70\x7e\x64\xa8\xf3\xd9\x3b\xa6\x96\x8d\xcb\xa3\x7b\xf1\xc1\xab\x50\xef\x33\x31\x61\xab\x12\x7e\xbf\xba\xbe\x0b\xd1\x1a\x09\xb6\xf6\x2c\xda\x8a\xe8\x1e\x1c\x26\x78\xe4\x39\xd1\x46\x62\xc3\x5b\x48\x2f\xfd\x55\x28\x0b\x3d\xd8\x3b\x36\x74\xa7\x08\xa0\x72\x16\x27\x3a\x4b\xf9\x1e\x82\xbc\x12\x71\xfa\x3e\x40\xec\x12\x5c\xcc\x56\x70\xc8\x5f\x3c\x7c\xa4\xcd\xa8\xcc\xfc\x7b\x63\xfb\x92\xe7\xab\xa4\xc8\x79\xbe\x67\xbe\x33\x9b\xfb\x01\xd3\x62\xc7\x65\x91\x44\x0b\xb9\x13\x5c\x86\xa8\x3c\x0a\x72\x9b\x4e\x8e\x95\x20\xbe\xe0\xf5\x5a\x44\x85\x27\x1c\x04\xe3\xdd\xf5\xd4\xa1\x35\x38\xae\xed\x6e\xe5\xf5\x36\xfd\xa7\x44\x62\x7a\x7b\xb2\x03\xcc\x27\xcd\x21\x3a\x1a\x8f\x0c\xde\x80\x54\x1c\x1d\xb9\xf6\x32\x08\xff\xb2\x73\x8a\xad\x44\xf1\x28\x20\x9f\x9e\x12\x00\xdb\x6c\xfc\x93\xe5\x02\x4e\x53\xff\x6d\xd7\x4d\x0e\x90\x60\xb8\xc0\x42\x30\x99\x23\xfe\x91\x35\x06\x9f\x17\x94\x92\x08\xde\x9e\x17\xe4\xb7\x7a\x01\xc7\xb4\xb9\x3d\xe6\x0f\x22\x5e\xc8\x2a\xad\x12\xd9\x8c\x7e\xc1\x31\x2f\x84\xf5\x34\xbb\x8d\xed\xe3\x41\xbe\xfc\x4b\xa0\x92\xf0\x24\x92\x2e\xe9\xae\x47\x98\x0b\x1b\xfd\x9c\xb7\x2a\xab\x09\x18\x5a\xf7\x03\x20\x59\x42\x5b\xa1\x1b\xd2\xc5\xab\xe0\x29\xdc\xa4\x74\xa4\x31\xc8\x28\xe7\x00\xb0\xe4\x97\x6c\x78\x3a\xdb\xca\x58\x48\x9b\x4d\xbd\x2e\x53\x64\x09\xed\x92\x0a\x23\x0e\x29\x9b\xf9\xf1\xf5\x32\x80\x9c\x5f\x8d\x05\xda\x62\x0e\xf6\x10\x80\x91\x71\xaf\xb3\xb3\x5e\x48\x8d\x82\xd4\x56\x56\x08\x1c\xcf\x1b\x51\xc0\x69\x1e\x97\x29\x26\x07\x83\xc7\x1c\xf8\xa8\x78\x9a\xb2\xa4\xd0\x0b\xe9\xe8\xb3\x90\x0c\x1d\x76\x58\xeb\x52\xb7\x8a\xb4\xd2\xe9\xda\x92\x76\x3f\xd8\x61\x49\x94\x14\x0d\x08\xf7\x3e\x94\xe2\xc8\x32\xc1\x31\x97\x0d\x87\x6d\x21\xc3\x3b\x57\x7d\x10\x28\xf1\x0b\x34\xca\x9f\x22\x07\xab\x07\x91\x0f\xc2\xee\xa3\x87\x64\xca\x66\xd8\x3a\x73\xe1\xb2\x2a\x9b\x58\x5b\xca\x9f\x27\xa4\xa5\xb9\xd5\x14\xda\xfa\xc8\xfd\xbd\x15\xe4\x9c\xa3\x32\xe5\x79\x0a\x9c\xf4\xeb\x32\x65\xc9\x3a\x10\x0c\x85\x31\x40\xf2\x24\x33\x5c\x91\x82\xb3\xda\x7a\xc9\x35\xdf\x89\x20\x6f\x9b\xdc\x3b\x69\x80\xa1\x40\x46\x68\x0c\xce\x9b\xb2\x5e\x4e\xd9\x9b\xba\xc2\x3c\xac\x89\x80\x74\x31\xd1\xb8\xfd\xb9\xfa\x06\x29\x87\xa8\x54\x9f\xac\xcd\x95\xf2\x45\xb0\xea\x3a\x46\x10\xc8\xdb\xc7\x01\x34\x2c\x75\x7f\x3f\x6a\xb8\x35\xe5\xd8\xbc\x5a\x83\x6d\xb8\x05\xd1\x51\x41\x7b\x2a\x8c\xac\x64\x48\x58\x79\x44\x45\x1d\x21\x68\x4b\x65\x77\x3d\xfa\xa4\x30\x8e\x23\xab\x1a\xa8\xfd\x8c\xaf\x68\x30\x73\x42\x38\xce\x90\x9e\xdd\xf0\x62\x2c\x36\xc7\x25\xe3\x8c\xaf\x68\x2b\x0e\x6a\x48\x35\x61\xf7\x18\x59\x4f\x2f\xc1\x3f\xbe\xa2\x4e\xfa\xd9\xeb\x01\x78\x4d\xfc\x4a\x0e\xa5\x65\x3a\x74\x2d\xd0\x0b\x49\x87\xdd\xf8\xf4\xcf\x99\x9f\x73\x20\x78\xc4\x4c\xf5\xa7\xec\x5a\x0a\x44\xce\xa9\x75\x70\xa8\x50\x05\x48\x19\x09\xc8\xe6\x65\x20\x41\x9d\x26\xf2\xde\x52\x4b\x98\x25\x37\x61\xdc\x97\x0e\xbb\x1e\x4e\x1b\xdc\x45\x3a\x6c\xc9\x36\x69\x86\x13\xcc\xcb\x61\x09\x9a\xed\x77\xfe\x00\x80\x3a\x7e\x07\x68\x6b\xc7\xf0\x61\xe9\x45\x92\xbb\x5b\x5c\x45\x63\x3c\x44\x8d\x16\x49\xb1\x3f\xd4\xbf\x1f\xb6\x55\x14\xe2\x08\x21\xa3\x8f\x57\x6f\x2e\xdf\xce\xaf\xaa\xea\x43\x7f\xfe\x78\xf9\xb1\xfa\x97\x9b\x8f\x57\x57\xf3\xab\x3f\x84\x7f\xba\xfd\x78\x71\x71\x79\xf9\xa6\xfa\xdc\xdb\xd9\xfc\x5d\xed\x39\xf3\xa7\xea\x43\xb3\xd7\xd7\x37\x35\xbd\x23\x2b\x56\x14\xfc\xe9\x6e\xfe\xfe\xf2\xcd\xf2\xfa\x63\x45\x32\xe9\xcd\xbf\x5d\xcd\xde\xcf\x2f\x96\x2d\xf5\xb9\xb9\xbc\xb8\xfe\xf9\xf2\xe6\x80\xe2\x91\x6f\x6f\x6b\x97\x3e\x05\x7c\xec\x68\xfd\xab\x19\x5b\xe7\x89\x90\x71\xba\x47\xec\xbd\xbd\xd9\xd6\xc0\xb4\xe1\xd9\x9b\xec\x84\x2a\x4f\x81\xd0\xdf\x6d\x51\xa1\x1e\x58\x30\xb0\x34\x4a\x99\xe5\xfa\xbe\x93\x23\xb1\xc8\x9b\x51\x81\xde\x4c\xa1\x22\xdf\xbb\x5c\xb4\xbe\xea\x78\x06\x25\xfa\x08\xcb\x44\xde\x57\x17\xb0\x8c\xf2\x32\x2b\x92\x55\x77\x52\xc4\x40\x66\xa1\xf1\x77\x6f\xe4\xfb\x6b\x27\x47\xb9\x6a\xdf\x18\x2b\xb9\x01\xa7\x00\x8f\xa1\x84\x63\x65\xdd\xdc\xdb\x16\xac\x99\x95\xab\x34\x89\x58\x12\xd7\xfd\x29\x98\xc2\x86\x2e\xe3\x3a\x2d\x68\x26\x72\x30\x55\xcd\x0d\x20\xcb\xc5\x19\x2f\x8b\xad\x55\x9c\x77\x99\x8c\x48\xd3\x29\xa2\x5c\x60\x2c\x40\x68\x70\xd2\xa2\x9e\x57\xf0\x25\xa8\x0c\x65\x70\xc7\x40\x16\x33\x0d\x28\xda\x3b\x62\x04\xf8\x26\x96\x3e\xc2\x49\x8a\xcf\xf7\x76\x0d\xd5\x38\xd1\x75\x31\x67\x38\xe1\xf1\x47\xab\x0a\x66\xda\x6d\x76\x6a\xa7\x8a\x85\x83\x6c\x73\x37\xda\x9b\x71\x68\x8e\x85\x13\xa5\x9a\xcc\x40\xa5\xd3\x4f\x17\xb9\x80\x43\x84\xa0\x00\xd6\x7f\x01\xd0\x15\xca\xf5\x80\x14\x0f\x73\x55\x5b\x89\x2d\x4f\xd7\x68\x71\x98\xa1\xf1\xeb\xaa\x39\x45\xef\xd4\xbd\x90\x37\x38\x60\x5f\x65\x3b\x94\x78\xf3\xf1\x39\xfd\xce\x23\xe4\x5d\x98\xa6\x8e\x76\x56\xd9\x5c\x37\x30\xa6\x0a\xbc\x27\x04\x3f\x63\x4a\x87\x67\xec\xb5\x69\x72\xeb\x75\xf2\xab\x29\x70\x21\x45\x2b\x67\x29\xe0\x85\x2c\xbb\x92\xdb\x97\x01\x1b\x85\x14\x35\xf7\x42\x82\x9e\x18\xca\x0d\x1f\x9c\xb3\xe3\xfc\xe7\xcd\xb1\xe8\x71\xe8\x83\xcf\x2f\xa9\xc8\xac\x85\x51\x1e\xdb\x4f\x05\xe6\xd8\x4c\xd9\x1b\x22\xde\x30\x7f\xb9\x78\x37\xbf\xbc\xba\x5b\x5e\xdc\x5c\xbe\xb9\xbc\xba\x9b\xcf\xde\xdd\x0e\x5d\x7e\x4f\x91\x17\x55\x5b\x7d\xf5\xf4\x20\xb7\x43\x9c\xd3\xca\xf3\xe9\xb9\xae\x51\x7e\xd9\xc1\x90\x1c\xae\x7d\x12\x67\xcb\x38\xd1\x91\x39\xfe\xf6\x4b\x21\x63\x20\x7b\x3e\x6a\xaa\xb6\x17\x55\x6f\x85\x7b\x82\xb9\x27\xec\x0e\x82\xa7\xdd\x83\x9d\xd1\xee\x77\x40\xdd\x81\x1b\x32\x17\x66\xf1\xc7\xe6\x7e\xe0\x4e\x9b\xe9\x61\x85\x0f\x53\xdc\x69\x6d\xab\x16\x51\x6f\x13\xd6\x37\xd1\xba\xe4\x66\x7f\xb4\x8f\x01\xe4\xb0\xa3\x57\x88\x81\x2f\x64\x9c\x4e\x02\xb5\x54\x96\xe8\x85\xdc\x71\x19\xf3\x42\xe5\xfb\x8e\x26\x0e\xdb\x3c\xc3\x65\x53\xdd\x42\xc3\x23\x5b\x0a\x11\xdb\x51\xc0\x47\xb9\xac\x4f\x25\xe4\xa5\xbe\xbb\xfe\xd3\xe5\xd5\xed\xf2\xf2\xea\xe7\xe5\x87\x9b\xcb\xb7\xf3\xbf\x38\x24\x64\xc6\x75\x9b\x3a\x62\x96\x0b\xb3\xbb\x58\x9a\x8f\xd6\xfd\x05\x25\x0b\x6d\x39\x24\x53\x95\xac\x17\xd2\xee\x2c\xb9\x2f\x7e\x9b\xab\x72\xb3\x6d\x2f\xa8\x5e\xcb\x0f\xb3\xbb\x9f\x8e\xaa\x26\x90\x30\xa1\xae\x19\xae\xb6\x26\x22\x34\x59\xd3\xbe\x87\x30\xd2\x5a\xf5\x80\x4a\x0c\x1e\x6d\x8b\x32\x74\xec\x68\x47\xdd\x5e\x9a\x9b\x56\xaf\xf1\xdf\xf2\x78\xd7\x04\xba\x0b\xf6\xcd\xca\x31\x02\x08\x65\x94\xc7\x6c\x94\xf6\xaa\xe5\x6f\x95\x13\xec\x87\xb3\x54\x6c\x36\x22\xc6\xe9\x55\x2f\x98\x7c\x70\xb4\x05\x46\xfe\x5c\x6f\xeb\x45\x12\xb0\x3b\xe1\x60\x76\x78\xaf\xe1\x1b\xf8\x07\xf7\x4a\xfb\x5e\x71\x61\x45\xb2\x23\x25\x75\xc1\x65\x47\x20\xf9\xa1\x89\xd0\x1c\xb4\x15\x5d\xe7\xcc\x25\x3f\x91\xc3\xc4\x86\x0c\xfc\x3a\xe8\x02\xbc\x9c\x8e\x0b\x75\xf5\xb8\x11\x59\xca\x23\xe1\x72\x18\x90\x01\x0f\xee\xf5\xc7\x04\xf0\x48\x26\x50\x92\xbf\x25\x90\x0f\x0c\x34\xc5\x5b\xa6\x00\x78\x6e\x6f\xec\x7e\xfc\xfc\xae\x95\xde\x8b\x1b\xf1\x5e\x81\xa3\x19\x75\x9a\x08\xfa\x8e\xbe\x28\x10\x3f\xeb\x84\x25\x8f\x9a\x0e\xb5\x2f\xff\x4c\x03\x8f\x77\xe6\xaa\xa3\x9b\x5b\x66\x39\x37\x3d\x9c\xe9\xd8\xe7\x2f\x2c\x8a\xbc\x97\x8c\xf2\x29\xc2\x11\x1f\x72\xb5\x4b\xb4\x98\x15\x45\x9e\xac\xca\x50\x8d\x6f\x24\x60\xae\x72\x39\xf1\x0d\xce\x72\x15\x97\x91\xa5\x04\x82\xd6\x7a\xd8\x0f\x79\xf9\xac\xd5\x11\xb3\x33\x33\xfb\xe8\xe6\x26\xe2\x33\x00\xf4\x2f\x64\x57\x8c\xcd\x6e\x8c\x1d\xbe\xbf\x0f\xf6\x28\x3f\x65\x4a\xb6\x4c\x8a\xee\xce\xb4\x73\x60\x58\x62\x2d\xb3\x8f\x83\x05\xdc\x81\x9a\xa2\xe9\xb2\xe2\x18\x40\xaf\xda\x28\x5d\x0c\x20\xee\xa8\x19\x07\xee\x1a\x86\x8d\xa9\x66\xcc\xa0\xdd\xb0\xe5\x1a\xcd\xf9\x22\xda\x56\x2b\x0e\xad\xa9\xb2\xe6\xd5\xab\xeb\xcc\xe3\xd3\xdc\x26\x83\xc2\x68\x13\x74\x34\x24\xe4\xd8\xae\x28\xa0\x39\x39\xc7\x71\xde\xee\xd0\x62\x74\x37\x3a\x3c\x0c\x60\x1f\x4d\x79\x29\xa3\x2d\xcb\x52\x8e\xc9\xe4\x5b\xae\x71\x4a\x5b\x2c\x09\x5f\x25\x69\x52\x00\x4b\x0f\x86\x38\x6b\x3d\x6c\xae\x79\x3c\xbf\xb7\xc4\xb8\xdc\x53\x32\xf5\x4d\xfa\x13\x31\xbb\xae\x55\x5f\x14\xb5\xeb\x97\x6c\xb8\x0d\x0d\x9b\x96\x84\xd8\xf5\xc3\x61\x36\x62\x98\x96\xbe\x2d\xe3\x46\x96\x4a\xfc\x50\x7f\xbd\xd2\xdf\x2d\xd6\xcb\x78\xc4\x0a\x31\xbe\x8f\x38\x7d\xea\x7c\xf0\xad\x2b\x6b\x9d\x2a\xde\xa1\x49\x6c\xcb\x46\x7a\xf7\xae\xb2\x63\x55\xae\xba\x08\x85\xb1\x56\xfd\xa5\xf7\x05\x43\xec\xba\x7d\x2a\x67\x69\xb8\x01\xf2\x42\x14\xc9\x38\x7f\x4f\xd0\x68\x5e\x88\x33\x78\xbd\xbd\x70\xca\x30\x1c\xdc\xe6\xc6\x44\xf3\x22\x23\xce\x68\x03\x2c\x61\xdb\xec\xaa\x9d\xce\xa7\x60\xc2\x4f\x1c\xaf\x44\x1e\x98\x4a\x87\x75\x0b\x7e\xff\x43\x4b\xb7\x34\x1a\xfd\xe7\x92\x9b\xfd\xf0\x7a\x7d\x8b\x5c\x39\xa7\x34\xba\x48\x9a\xcb\xaa\x7d\xfb\xa9\x7f\xf5\xae\x1a\x5e\x0b\x27\xfe\xe0\x4c\xe4\xb6\xd6\xdc\x9a\xb7\x87\xef\x42\xf3\x8a\x1b\x2d\xcb\x13\x05\x9c\x31\x6a\x8d\x0c\x8c\xdd\x74\x93\xad\xdf\x3d\xa1\x27\x3f\x97\xa2\x14\x66\x02\xad\xca\x78\xd3\xf4\x72\x8f\xb0\x94\x7d\x93\xb6\xea\x91\xed\xca\x68\xcb\x6c\xe1\x2c\x16\x29\xdf\x57\x9a\x06\x46\x62\xa1\x52\x20\x70\x3e\x92\x4d\x36\x2a\x75\xa1\x76\x00\x30\xf6\xe5\xe6\xa5\x84\x55\xce\xb8\x5d\x5d\x6d\xfb\x7b\x85\x5d\xee\xc8\xd0\xe6\xed\x87\xcb\x8b\xf9\xdb\x79\x2d\xae\x38\xbb\xfd\x53\xf8\xef\x5f\xae\x6f\xfe\xf4\xf6\xdd\xf5\x2f\xe1\xdf\xde\xcd\x3e\x5e\x5d\xfc\xb4\xfc\xf0\x6e\x76\x55\x89\x3e\xce\xee\x66\xb7\x97\x77\x07\x02\x8c\xcd\xaf\x76\x0f\x04\x0f\xc8\xef\x2c\xe4\xd9\xb2\x80\x5b\x3f\x03\x7d\xf5\x15\x9b\x59\x2a\xc0\x0a\x59\xa5\x0d\x12\x03\xaa\x04\x35\xb1\x29\x96\xfc\x86\x17\xfc\x82\x17\x3c\x55\x9b\x29\x9b\x31\x02\x84\x23\xd0\x5f\x1b\x0b\x89\x78\xd2\xcc\xe8\x60\x11\xc6\x4c\x8a\xfc\x1d\xde\xcb\x1c\xaa\x35\x31\x14\xa6\x22\x24\xc4\xb7\x59\x6d\x0b\x79\xf9\x20\x64\x51\x02\x5b\x37\x4f\x53\x46\x9f\xb5\x0f\x04\x19\xfb\xb6\x96\x3a\xd9\x25\x29\xcf\xbd\x22\xdd\x35\x95\x05\xb7\x14\x5b\x57\x47\xd0\xd4\x4c\x07\xb7\x17\xb9\x8f\x73\x06\xf5\xbe\x78\x37\x07\xbb\x2f\x2a\xac\xdc\x8a\xfd\xf8\x42\x22\x03\x1e\x7d\x71\xc7\x21\xf9\xa4\x50\xe4\x59\xc5\xcf\xd3\xc3\xdd\x13\x51\x9f\xb2\x88\x6d\x0c\xe2\xb9\x6e\x94\xae\x92\xf6\x3f\x2e\x65\x91\xef\x07\x1b\x73\x77\x90\x6d\xad\xc1\x20\x27\x2c\x5b\x55\xa5\x0e\x1d\x5f\xcc\x96\x7e\x05\x16\x9e\x05\x5a\x52\x5c\xc6\x85\x5f\x10\xd7\xd2\x71\xe9\x48\xcd\xc9\xfb\xad\xf6\x43\x48\x88\x03\xbd\xb0\x52\xa5\x8c\x35\xa1\xee\x76\x89\x3c\xdf\xf1\x5f\x5f\xda\x96\x22\xc1\x84\xd3\x8a\x00\xf2\x30\x91\x9a\xeb\xd7\xde\x6c\x72\xfd\xdd\xb5\x90\x3d\xfd\x75\xd8\x44\xb6\x3b\x2b\xdc\xf5\xfc\xc5\x1c\xf1\x83\x0f\x62\xdf\x36\x7e\x0d\xbd\x1f\xc4\x28\xd2\x82\x87\x42\xb2\x5c\x98\x07\x1d\x38\x31\x45\xcc\xa9\xfb\x37\x24\x21\x54\x34\x09\xdb\xf7\xee\x30\xde\x7f\xd2\xb2\x69\x45\x1a\x3c\x83\x60\x13\x7d\xc9\x8c\x19\xe2\x0e\xac\xcb\x9b\x92\x2e\x28\xa0\x6a\x06\xeb\x3f\xd5\x8a\xad\x21\x03\x89\x34\xc7\x73\x01\x21\x0e\x18\x0a\xcb\x30\x0e\x14\x53\x0d\x30\x83\x9d\x02\xa9\xd0\xe0\xf8\x97\xe6\x8e\x29\x3e\x97\x14\xbb\xfd\xfe\x77\xe3\xce\xd9\x22\xdf\x33\xab\x66\x11\x66\x40\x51\x02\x20\x9d\xb9\x50\xaf\x52\x26\x6d\xbc\x73\x37\xa5\x34\x47\xf1\x53\xc0\x5e\x86\xc7\x35\x6b\x1f\xa5\x7f\x1e\x4c\x12\xb2\x2e\xf9\x1c\x9f\x7f\x36\x1a\xd1\x9f\x6b\xec\xa1\xf4\x39\x80\xa4\x53\xe9\xe1\x81\xb6\xe2\xd1\xfd\x23\xcf\x63\xf4\xdb\x02\x0e\x65\xca\x7e\x52\x8f\xe2\x41\xe4\x13\x16\x89\xbc\xe0\x44\xdd\xa5\x21\x10\x0f\x0b\x8a\xca\x59\x48\xc8\xd0\x40\x1e\x34\x09\x72\xed\x45\xb2\xd9\x9a\x4b\x74\x00\xa3\x50\xb9\xd9\x8e\x0a\x64\x6d\xcc\x44\x44\x64\x49\x1d\x1d\xb0\x4e\xf9\x43\x93\x8b\xec\x18\x96\x07\x36\x77\x69\xa6\x36\x4e\x69\x55\x1b\xfa\x80\x2f\xd4\x61\xb4\x69\x22\xbd\xcd\x84\x6d\x54\xca\xe5\x66\x3a\x9d\x32\x51\x44\xd3\x97\xa3\x26\x3a\x15\x18\x46\x3e\x1d\xbc\x3a\x55\x4a\x8b\x74\xef\x08\x7e\x5c\x02\x0c\x20\x2e\x7f\x2d\x84\xd4\x09\xfa\x79\x5a\xa6\xff\x6d\x3d\x2a\xf0\x65\x83\x28\xed\xd7\xf3\xd1\xe9\x95\x1d\xe5\x80\x08\xd4\x88\x92\xf0\xf9\xf6\x9b\xd7\x51\xe9\xc2\xed\x65\x49\x25\xc7\xe6\xc0\xfe\xac\xba\x24\xcd\x8f\xe2\xdd\x6b\x2d\x89\x48\x4a\x8e\xca\x1b\x6c\xef\xb3\x46\x2a\xe7\x09\x59\x9c\x3d\x09\x99\x23\x73\x31\x87\x38\x02\x6e\xeb\xc3\x3d\x7a\x59\x1c\xd6\xa5\x68\x6d\xd0\xc8\x5c\x57\x9f\x94\x3e\xc6\x74\xc2\x74\xb9\x74\x0f\x37\x2e\x97\xf9\x0a\xee\xf4\x38\x08\x07\x54\xa2\x1d\x90\x83\xe5\xc3\x25\x8e\x3c\x2a\x88\x8e\xe8\x42\xe5\x7c\x23\xd8\x4e\xc4\x49\xb9\x6b\xdd\x6c\x5c\x75\x4f\xc1\xfd\xa9\xb4\xdc\x75\xd3\xf8\x9d\x6a\x40\xfb\x4a\xe2\x7f\x5d\xc0\xe7\x06\x1b\xd0\x5e\xbc\xdf\xca\x03\x51\x7d\xd1\xf7\x4f\x7d\x6d\x4e\xca\x3c\xd1\x40\x38\x79\x4c\xca\xa3\x2b\x06\x8b\x86\xc8\xe9\x3e\x43\x9f\x73\x65\x74\xcf\x6c\x48\x8b\x5e\xd1\x38\xaa\x10\x6e\xed\x3e\x14\xea\x68\xc2\xd1\x63\x04\xe2\x33\x47\x45\xb8\xc1\x6c\x0c\x68\xe0\x09\xee\x04\x05\x12\x26\xa3\x50\x6c\x6d\x93\xe8\xee\x45\x40\x4b\x16\x03\x41\xfc\x23\x72\xdc\xfc\xe9\x47\x6d\xd1\x1b\x04\xb0\xf1\x16\x4b\xe1\x3f\x82\x01\x91\x87\xef\x2d\xae\x0a\x5b\x88\x45\x00\x79\x58\xcc\x65\xd1\x5a\x80\x87\x1d\x42\x59\xf8\xca\xcf\xbc\x4c\xdb\x1f\xa7\xf2\xe1\x51\x14\x9b\x9a\xfd\x72\xcb\xb0\xab\x89\x4a\x3c\xef\xab\x68\x50\xc8\x61\x64\x17\x74\xd7\xf2\x08\x4b\xb0\x32\x0e\xd8\xe9\x96\x4b\xde\x74\xbb\x28\xa2\xad\xb7\x3c\xaa\xaa\xd1\xa4\x24\x48\xed\xdc\x79\x72\x74\x04\xcd\x86\xe8\xc3\x64\x23\x55\xa8\xeb\xa1\xa4\x80\xc8\x94\xd9\x80\x54\x58\x2c\x4b\x8a\xc3\x10\xaf\x91\x8c\x61\x87\xa6\x5a\xa1\x10\xba\x43\xed\xac\x04\x18\xe1\x4a\x91\x20\xcf\x90\xc5\xc7\xe2\x9d\x88\x84\xe9\xea\xa4\xd9\x55\xe6\x86\x85\xac\x7e\xaa\xd1\x49\x16\x83\x95\xe4\x02\xb9\x6e\xb5\xb1\xde\x8a\xe4\xc1\x2c\xd4\xe6\xb4\x76\x13\x14\x76\x80\xe6\xdc\x5b\x48\xac\x76\x40\x98\x7b\x2f\xf6\x3a\x54\xc1\xa3\x19\xc5\xba\x26\x64\x62\xda\x43\xe3\x75\x78\x28\xa0\xe3\x96\x81\xaa\xff\xb0\xb3\x0c\x3f\xfa\xde\xbc\xdc\x03\xee\x6c\x14\x6e\xe6\xa0\xcf\x52\xf4\x3e\x45\xda\x26\x7c\x3f\xd3\x18\x7a\xfc\x16\xa0\xf3\x42\xfc\x5d\x98\x72\x02\x17\x5f\x73\xbf\x5d\x48\xe2\xd4\x0e\x0e\x39\xb3\xe1\x34\x87\x8d\x52\xa7\x91\xc9\x77\x5f\xa1\x7d\x01\xda\x43\x4b\x01\x59\xfd\xa4\x0d\xb6\x5a\x11\xd5\x85\x84\x4f\x63\x72\xa9\xf5\xe1\xb5\x7e\xf0\x48\x50\x20\x0d\x6e\x27\x10\x30\xc8\xe0\xc2\x27\x89\xf9\x0f\xe5\x14\xf1\xf6\x13\x09\xd3\x7d\x33\xd9\x8a\xc1\xb3\x08\xbc\xdb\xcb\x8b\x9b\xcb\xbb\x2f\x06\x14\xb4\x28\xbd\xd1\x48\x41\x5b\xcf\x37\x97\x6f\x67\x1f\xdf\xdd\x2d\xdf\xcc\x6f\x9e\x03\x2a\x48\x3f\x1d\x81\x15\xbc\x25\xaa\xfe\x0b\x25\x0b\xf1\xeb\x49\x67\x72\x5e\xca\x25\x1f\x91\xb3\xe2\xc4\x3a\xfa\xcc\x1d\x2c\xb4\x29\x35\xe0\x74\x00\x88\x77\x12\x4f\x34\xa7\x2c\xb0\xf6\x4e\xc3\x75\x92\xa6\x90\xc2\xeb\xdc\xeb\x94\x1e\x66\x3a\x15\xf6\x1f\x4b\xb5\x49\x7b\xea\x42\xae\x2a\x4a\x10\xe0\xf2\xdb\x9a\x4b\x30\x26\xef\x66\xa6\x03\xf2\x04\x52\x23\xfb\xd4\x08\x36\x89\x14\xbe\x1a\x28\x7d\x5c\x4a\xd6\x49\x21\x4d\x83\xf8\x9c\x90\x28\x32\xbc\x86\xda\x9a\x76\xc6\x55\xe6\xa7\x35\x3f\xed\x8f\xae\x85\xb8\x88\x13\x89\x86\x69\x65\x35\xdf\xb6\x4f\xdd\x73\xbf\x04\xa0\xdf\xcd\x48\x72\x88\x41\x80\xba\xb0\x1f\x48\x1a\x08\x54\x29\xf2\xc1\x89\xfb\x04\xa1\x43\x6a\x5d\xeb\x67\xb3\x15\x9a\xbe\x4e\x20\x52\xc1\x89\x95\x24\x4a\x4b\x5d\x88\x9c\xdc\x26\xb3\x5f\x6e\x17\xf2\xb5\x39\xbe\x5e\xd2\x29\x44\x4a\x36\xf8\x09\x04\xae\xa8\xca\xf7\xad\x85\x12\xee\x60\xdf\xa1\x8f\x7a\x27\xb8\xd4\xa8\xfc\x9e\xa6\x22\xf7\x33\x03\xeb\x23\x44\x4c\xea\x7f\x40\xc3\xea\xdf\x27\xf1\x6f\x05\xab\xd6\xd4\x97\x7e\x25\xf9\xeb\xfa\x7c\xea\xca\x10\x07\xa8\xf0\x73\xce\x9c\x96\x8c\x95\xa1\xb3\x88\x50\xd6\xad\x93\xa8\x9a\x3f\x32\x68\x2e\xdd\x61\x71\xbf\x4d\xa5\x27\x9c\x4a\x03\xce\xf5\xf0\x94\x60\x5b\x65\x36\x50\x27\xf3\xe2\xc3\xcc\x8e\xa1\x22\x05\xd0\x97\xe9\xc6\xd6\x53\xa7\x26\x75\x78\x0a\xf6\x03\x8a\x3a\x0d\x5a\x3b\x6b\xa1\xc2\xf1\x9a\x5a\x36\xb6\xd3\xab\xa2\xf8\x3c\x94\x73\x33\x0b\x32\x94\xaa\xb0\xe4\x11\x0e\xd7\x47\x20\x45\xf3\x80\x63\x2d\xe9\xad\x23\x31\x81\x58\x2b\x65\x79\xa2\x12\xd9\x5d\x08\x86\xac\xa4\xd3\x62\x2d\xc2\x44\x7c\x9b\x7c\xef\xc8\x3b\xc6\x4c\xbe\xe3\xb5\x2e\xab\x73\xce\x11\x41\x1e\x05\x76\xb8\xba\xbe\xba\x0c\xa1\x0a\xf3\xab\xbb\xcb\x3f\x5c\xde\x54\x12\xb1\xdf\x5d\xcf\x2a\xc9\xd4\xb7\x77\x37\xb5\x1c\xea\xd7\xd7\xd7\xef\x2e\x1b\x98\x87\xcb\xbb\xf9\xfb\x4a\xe1\x6f\x3e\xde\xcc\xee\xe6\xd7\x95\xe7\x5e\xcf\xaf\x66\x37\xff\x16\xfe\xe5\xf2\xe6\xe6\xfa\xa6\xf6\xbd\x8f\x17\xfd\xe8\x89\x4a\x33\xda\xdd\x3f\x3e\x38\x1b\x70\x62\xb6\x2e\xe3\xaa\x16\xe8\x09\xab\x78\x20\xf2\xec\xd0\x74\xb4\x79\xd6\x71\x48\x95\x8f\x0b\xc3\x54\x75\xd4\xac\x7b\x7a\xf1\xd2\x4a\xd7\x65\xfc\xb4\x6d\xcf\x9c\x6a\xcb\xa7\x40\x02\xf6\x1a\x80\xee\x2b\x35\xc7\xad\x2e\x20\x19\x0d\xbb\x36\x83\x08\xd6\x86\x77\x4a\xf7\xc8\xf8\xd9\x6b\x6a\xbf\x71\xa8\x9e\x9e\x83\xe9\x00\x95\xcd\x53\xd1\x58\xf4\x55\x3a\xf8\x98\xcd\x12\x4f\x62\x6b\x28\xd8\x1f\x83\x83\x1b\x9a\x61\x66\x4e\x30\x1d\xbb\x54\x26\xdb\xf3\x4d\xfa\x69\xd3\xc6\xd6\x9f\x3e\xd2\xac\x7b\x8d\x63\x63\x44\xbd\x81\xeb\x68\x4c\xbd\xef\xb8\xbe\x1f\x5b\x6f\xfa\x48\xb3\xde\x60\xf6\x1d\x55\x6f\x70\x78\x17\xed\xfc\x27\x23\x36\xb1\xb0\x98\x6a\xf5\x5c\x72\xb6\x7b\x24\x10\x73\x1d\x56\x47\xb3\x00\x9e\xf7\x7a\x99\xf1\xe1\x81\x0c\xa8\x8d\x5b\xae\xbc\x46\x07\x7e\x0b\xbf\x42\x0b\x57\xb9\xe0\xf7\xb1\x7a\xa4\xf1\xa8\x23\x43\xd9\xa0\xdd\xbc\xda\x41\x66\x0f\xb7\x47\x04\x48\xc0\x9b\x4f\x22\x4a\xcd\x17\x0f\x30\xb9\x84\x08\xad\xd1\x06\x0b\x54\x48\xeb\x0c\x32\xc0\xd9\x23\xfd\xe8\x2c\x24\x5a\xf3\x6d\x4a\xa6\x66\x54\x4d\x8d\x88\xf3\x01\x9a\xea\x6c\x68\x0c\xae\xeb\x60\x60\x29\x81\xa3\xcc\x01\x4c\xb7\xca\xe1\xce\x04\x1d\x92\x48\x70\x26\xe7\xe6\xc2\x93\x8b\x28\xd1\x22\x50\x73\x6a\x3d\xb1\x3f\x9f\xa6\xfd\x50\xf0\xa2\xd5\xed\x3a\xd8\x1f\xce\xa3\xa2\xe4\x29\xfb\x5c\x8a\x7c\x4f\xd4\x79\xe8\xab\xc4\xbf\x44\x5c\x62\xa6\x48\x21\x76\x19\xa4\x63\x87\x29\x0e\x0b\xf9\x0b\x00\x25\x70\x08\x5e\x68\xf6\x07\x80\x3c\xd8\x87\xe9\x10\xde\xf1\x02\xce\xe2\x3f\xe3\x37\xdc\x6f\xd3\x85\xac\xa8\xa3\x04\x6f\x55\x84\x52\xa6\x0b\x69\xe5\x09\x62\x15\xe9\x29\xdc\xf8\xa6\x2a\xdf\x9c\x93\xb0\xaf\x99\xec\xea\x7e\xa5\xd4\xfd\xb9\x90\xe7\xe0\x93\x2a\xce\x79\x59\xa8\x73\x80\x4b\xe1\xf8\xeb\x73\xab\xff\x69\x05\x54\xf5\xf9\x36\x79\x10\xf0\xff\xa6\xdb\x62\x97\xfe\xa3\xce\xb6\xbf\x9e\x6d\xd2\xfc\xcc\xbc\x7b\x16\xbe\x7b\x66\xdf\x3d\xb3\xef\x9e\x99\xd7\xf0\xff\x65\x7b\x0c\xef\x88\x5f\xb9\x39\xcb\x26\x0b\x99\x48\x2d\xf2\x02\xac\x9f\xc7\x3c\x29\xbc\x0c\xcd\x9e\xbd\xf8\xef\xff\x66\xd3\x9c\x3f\x62\x2a\xe3\x1b\x5e\xf0\x0f\xe8\x5f\xfc\x9f\xff\x79\x01\x01\x55\x4c\xea\xc9\x78\xfe\xb9\x14\xc5\x42\x6a\x61\x16\x21\xfb\x3f\x0b\x09\x11\xd8\xdd\x7e\x59\xa0\xdf\x15\x7d\x90\xb1\x66\xff\x8a\x65\xce\x91\x46\x32\xd6\xa6\xa4\x8e\x74\x82\x84\xa7\x2d\x92\xd1\x1d\x2e\xfa\xcf\xe9\x1b\x7a\x7e\xc4\xb2\xfe\x9c\x56\x57\xb5\x15\x42\xd1\x9f\x53\x38\x40\x53\xc5\x2d\x58\x8b\xb9\xc9\x0b\xf7\x64\xaa\x5c\xdb\x1a\x69\x40\x03\x9e\x35\x4c\xdf\xbe\x56\x6e\x91\xca\xda\x7a\xee\x1b\xdb\x08\xc4\x0a\x7c\x1c\x02\xa2\xe7\x89\x59\x21\xb7\xe8\x09\x05\xcb\x0d\x5b\x0e\x36\x29\x85\xce\x5d\x79\xe8\xb8\xd0\xbf\x7f\x75\x7e\x3e\x61\x1b\x0d\xff\xb3\xfa\x0c\xff\x03\xe8\xa1\xa7\x62\x63\x6d\x74\xa6\x03\xc2\x35\x47\xf9\xf0\x48\x3c\x05\x8a\xee\x4b\x10\x80\xd7\xa6\xe9\xeb\x52\xc6\xa9\xf0\x29\x90\x95\x90\x48\xaa\xac\x64\x3d\x3a\xc6\xea\x52\x2b\x30\xc6\x2b\x11\x71\xb3\xf1\x35\xbe\x8d\xe0\x52\xb5\x2e\x84\x44\x6f\x58\xee\x95\xd8\x38\x7a\xae\xc0\x2c\x06\x28\x24\x2f\x08\x72\x2e\xe0\x8f\xf0\x11\x60\xd4\x9e\xd4\x7f\x62\x7b\x55\x12\x39\x34\x50\x9e\xc6\x22\x4a\x81\x81\xdf\xd2\xbe\xb0\x5c\x14\x65\x2e\x19\x67\x19\x97\x31\xd7\x30\x03\xd7\x39\x44\x3b\x73\xc6\x9b\x15\x9d\x20\x1c\x57\x95\x05\x90\x19\x21\xb2\x20\xec\x09\x64\xef\x0e\xea\x3c\x09\x2a\x81\x67\x02\x90\x08\x37\x5e\x9c\x2e\xa4\xd5\x0a\x23\x2c\x1c\x7a\xca\x22\x95\xed\x89\xaa\xa6\xde\xe9\x89\xf5\x9c\x51\x77\x4f\x3c\xde\xa4\xfe\xec\x84\x25\xd5\xd0\x1a\x10\x85\x17\x81\xda\xb1\xd5\x8b\xfe\x4e\xc8\x48\xc5\x22\xd7\x2f\xcd\x32\x4c\xdc\xbd\x03\xed\x87\x44\xfb\xc1\x80\x5d\xca\x1c\x6e\xe4\x2d\x34\xc5\x3b\x45\x1d\xd3\x3b\x15\x6a\xe9\x36\x3b\xe7\xf0\x52\xf9\xd6\x51\x30\x6d\xf5\xa5\xff\xfc\xa2\x88\x98\x10\xd7\x69\xef\x9c\xc7\xbb\x20\x70\xc9\x86\x3b\x2e\x16\x8a\x36\x0e\x19\x27\x56\x5a\x36\x29\x40\xbd\x2e\x17\xba\x58\x48\x3a\x81\x27\x6c\x2d\xb8\xb1\xf3\x26\x2c\xd2\x0f\xb8\x19\xe3\x71\x5f\x3c\x2a\x8f\xc1\xb1\xba\x24\x00\x86\xad\x14\xee\x9d\xc4\xf8\x18\x20\x0a\x78\x54\x20\xc0\xa0\x53\x85\xdc\x9a\x2a\xd0\x59\xad\x1b\xe2\x11\xfd\x60\x65\x2e\xea\x92\x52\xa1\xca\x0a\xf4\xc4\x1e\x03\xc5\xac\x5e\x0f\xfc\xc1\x6c\x3c\xd8\x3a\x84\x81\x04\x9b\x23\x58\xdc\x84\xa5\xc5\x75\xe6\x63\xb8\x21\xd7\x38\xf8\x66\xba\x16\x55\x4f\x47\x40\x05\x8e\xf3\x5b\x98\x57\x0f\x3a\xac\xb4\xc8\xad\x06\x07\xb6\x15\x99\x01\xb7\x49\x1e\x9f\x65\x3c\x2f\xf6\x76\xfa\xa6\xc9\x0a\xa8\xfb\xd3\xe4\x5e\xb0\x59\x9e\xab\xc7\xa7\xee\x85\xce\xad\xa5\xeb\x86\x7d\x0a\x92\x7d\xec\x2d\xbf\x95\x17\xb4\xee\xee\x38\x8e\x83\xb4\xcb\xf1\xd1\xfa\x9d\x5c\x14\xf9\x7e\x69\x26\xe2\x2e\xeb\xdc\x29\x06\x25\x4d\x0c\x37\x72\xc7\xd1\x9b\xd6\x5c\x18\x9d\xf4\xa6\x95\x51\xfd\x76\xe8\x4d\x5b\x98\x4b\x9b\xf4\xa6\xf3\xab\xf9\xdd\x7c\xf6\x6e\xfe\xff\x6a\x25\xfe\x32\x9b\xdf\xcd\xaf\xfe\xb0\x7c\x7b\x7d\xb3\xbc\xb9\xbc\xbd\xfe\x78\x73\x71\xd9\xcf\x57\xd4\xac\xbd\x37\xc1\xcf\x58\xf8\x9d\x57\xec\x2e\x00\x6a\x60\xb2\x01\xd9\xdf\xa4\x5d\x09\xb3\xca\x2c\xe6\x44\x6e\x26\xb0\x50\x5f\xb1\xcb\x3c\x9f\xef\xf8\x46\x7c\x28\xd3\x14\xe0\x54\x98\xd9\x73\x91\x0b\xb8\x78\x4e\xd8\x07\x15\xcf\x83\xf7\x20\x1d\xb1\xb5\x19\xf0\x7d\x1e\xc7\xb9\xd0\x1a\x3f\x3f\xa1\xef\x07\xe0\x21\x97\xea\x48\xe0\x39\xfe\xc0\x93\xd4\xdc\xdf\x5e\xb1\xd7\x3c\xba\x57\xeb\x35\xa6\xcf\x4c\x5c\xe2\x14\xfb\x5c\xaa\x82\x33\xf1\x6b\x04\x1c\x5d\xed\xf3\xe4\x9d\xda\x7c\x05\xa8\xf2\x80\xf0\x54\xc7\x25\x05\x34\xca\x96\xed\xc7\x79\xfb\x46\x40\xad\x7c\x8f\xaf\xbe\xc5\x37\xdb\x1d\x94\x45\xfa\x04\xe9\xf1\xef\xd4\xa6\x5d\x31\x06\xac\x6b\x92\xb9\xa1\x40\x42\x44\x64\x1b\x6a\xc3\x74\x22\xef\x17\xf2\x97\xad\x90\x4c\x95\x39\xfe\x09\xae\xf9\xc6\xcc\x4c\x4b\xbd\x15\x20\x21\x3b\x61\x8f\x82\xed\xf8\x1e\xcd\x66\xb8\x13\x38\x99\x0b\x98\x32\x70\x8a\x98\xb7\xd3\x44\x9a\xdd\x22\x4b\x6c\x5e\x42\x7d\xe8\x9f\xe2\xc6\x65\x19\xea\xf8\xe9\x04\xb2\x7d\xe7\x69\x05\x9f\x07\xae\x32\x8f\x9b\xb4\x00\x21\xda\xb9\x41\x45\x53\xa9\xfb\x32\xf3\x5c\x96\x2f\x6c\x70\x12\xba\xfb\x41\x25\x31\x8b\xcb\x2c\x4d\x22\xb7\xef\x3e\xaa\xbc\x93\xb0\x17\x13\x68\x86\x9f\x3a\xf5\xb4\xb0\xbe\x86\xb5\x64\xe7\x04\x48\xba\x1e\xea\xde\x67\x26\x2f\x66\x89\x8c\xd2\x12\xf4\xc1\x4a\x2d\xf2\xb3\x22\x4f\x36\x1b\x30\xc0\x6d\xae\xdf\xb7\xcf\x6e\xec\xd9\x13\x4f\x4f\x6b\x0b\x93\xce\x53\xb5\x49\x22\x9e\x86\xe0\x66\x8f\x8a\x70\xf4\xa9\x76\xd9\x93\x7a\x2a\xe4\x41\xd8\x0a\x75\x32\x20\x65\xb9\x00\x06\xdf\x25\x6c\xe5\x4b\xda\xee\x4e\xa9\xf7\x9a\x99\x0b\x3a\xd6\x2b\x24\x37\xb5\xe1\x05\x7b\xc2\xf9\x6f\x5b\x09\x2d\x30\x31\x51\x5e\x9b\xa9\x47\x29\x72\xb0\x60\x01\xf6\x61\x5a\x2a\x15\xd8\x26\x4e\x56\xcb\xe1\x93\xad\xac\xdc\xda\x01\xb1\x31\x73\x76\x93\x3c\x08\xf9\xe5\xd9\xa8\x83\x0f\x44\x3c\xda\x8a\xa5\xb5\xcb\x9f\x7a\xcb\x72\x07\xc0\xc8\xcd\xca\xea\x5b\x84\x5b\xa9\x0b\x6f\xc2\xd5\x09\x6b\xdc\xdc\xbb\x30\x90\xd8\x93\x91\x65\x2a\xb1\x8c\x45\x74\xff\xc5\xb7\x66\x0f\xb2\xb2\x15\x61\x9c\xbd\x11\xd1\x3d\xfb\x78\x33\xc7\x6c\xe0\xa4\x60\x66\x2b\xd0\x5b\xaf\xd7\xd3\x79\x77\x2b\xf8\xe6\x19\x18\x9d\x86\x0a\x0e\x79\x8e\x79\x27\xb3\x66\x2a\x44\x80\x28\xc8\x97\x34\x9b\x24\xe5\xd2\x00\x10\x8c\x17\x56\x86\x06\x1c\xf1\x4c\xef\x40\x75\xa6\x2c\x02\xa9\xb6\x94\xaf\x44\xda\xc1\xb8\x98\xa9\x78\x69\xe3\x24\xa7\x82\x79\x1a\x65\x59\x3f\x06\x45\x1d\x6d\x1e\x03\x37\x16\xeb\x1d\x3d\xc8\xee\x7f\xd4\x01\xbd\x86\x0a\x89\x9f\xe1\x5e\xcf\x35\xa4\x77\xaf\x93\x8d\x8d\xb6\x25\x6b\xd2\xc6\xc1\x84\x7e\x50\x81\x37\xfb\xa5\x29\xe9\x83\x8a\x09\xa6\xe7\x48\xcc\x8c\x15\x24\xc8\x7b\xe2\x71\x15\x61\x15\x9c\x52\xbe\x06\xdf\x80\x2e\x04\x8f\x99\x5a\x93\x37\x31\xcb\xd2\x04\x28\x7d\x63\x64\x0f\x07\xf6\x0c\x5d\x45\xc7\x87\xa5\xd9\xca\x06\x24\x1f\x1f\x2c\x10\xaf\x37\xde\xe8\x83\x5c\xa6\x5d\x55\x27\x77\xdd\xa6\x3a\x55\x05\xce\xe5\x23\x1d\x7b\x85\xee\xf7\xa6\x6d\x52\xb5\x82\x8e\xea\x06\xc5\xf5\x6c\xd0\x66\x77\xca\x93\x78\xcc\xf1\x6e\xfb\xe4\xda\xbd\xda\x57\xc1\x6b\xeb\xe9\x70\x5f\xb2\xc3\xcc\x88\x70\x3d\x8c\xe0\xd7\xd2\xd8\x0f\xdd\xb5\x21\x40\xa8\x5d\x84\xd0\x59\xe3\x05\xc9\x0d\xc0\xaa\x70\xdb\x71\xc7\xb5\xba\xda\x96\x93\x06\xba\x49\x8c\x72\xa0\x2f\x3d\x97\x4a\xff\x20\x9f\xc0\x6e\x81\x2b\xd7\x51\x5c\x8c\xe1\x8c\xb6\x43\x87\x18\x5f\xd3\x9f\x7e\x10\x2b\xc9\x17\x83\x46\xb4\xde\xef\x76\x15\x9f\xd2\xe5\xcf\xb1\xa2\xca\x42\x79\x97\x3f\xb4\x67\x0e\xa4\xa1\x61\x5a\x17\x6c\x1b\xf3\xb8\x03\x2e\x60\x6d\x30\xbb\x34\x47\x80\x50\x47\xc1\x60\xb3\x5c\xd8\xe0\xd1\x5e\x14\x2e\xb9\x3f\xb5\xaa\x60\x10\x1b\x71\xad\xae\xb2\x9b\x58\x02\x03\xc7\x48\x05\x91\x0c\xb2\xf7\x22\xb5\xcb\x94\x04\x6c\x0a\xa6\x2a\x2d\x24\x15\x6e\xb5\x9d\x5d\x78\xa5\x92\xef\x36\x21\xaf\x16\x66\x4f\x08\xad\xd2\x07\x8a\xa3\x05\x12\x04\xa0\x0a\x67\x2a\x78\x61\x2e\x08\xe6\x3a\x0c\x01\x5e\xda\xde\x01\x0e\x5e\x13\x38\xce\xc5\x26\xd1\x85\x08\x53\x04\xc3\xf7\x9f\x4c\x8b\xb2\x72\x83\xee\xeb\xfa\x4e\x2d\xca\x43\xa6\xb0\x59\xb5\x23\xea\xb3\xcf\x44\x3c\x77\xef\xf5\x4f\x86\x5a\x16\xb7\xdf\x24\x2a\xa7\x00\xce\x01\xbc\x02\x68\xe4\x7b\xd2\x4e\x3c\xc0\x0d\x12\x31\xf1\x70\x8f\x6a\x33\x43\xb4\x29\x79\xce\x65\x21\x84\x5e\x48\x8a\x3e\x22\x6f\x59\x48\xcd\x51\x43\xc3\x39\x03\x37\x52\xba\x40\x1a\x20\x78\x65\xcd\x93\xb4\xcc\x3b\xef\x9c\x38\x2b\x8f\xe2\x1e\xe8\xeb\xa5\x0b\x28\x96\xb5\x0d\x9a\xcb\x62\x0d\x56\x91\xa3\xce\xa8\xc7\x0e\xab\x49\x9e\x1d\x4d\xb0\x5b\xee\xf0\xf1\x76\x0e\xc7\x8e\xc4\xd6\x1f\xf5\x32\x53\x23\x76\xbc\x3f\xfd\xa8\x3f\xa8\x8e\x94\x60\xfd\xb9\xe1\x18\xeb\x89\xa1\x7f\xee\x92\x53\xe0\xfa\x1e\xc2\x4f\x87\xee\xe3\x83\x28\x19\x0f\x06\xa9\x3a\xf7\x2e\x98\xb5\x5b\x2e\xe3\xd4\xdc\x53\x79\x51\x3b\x81\x3c\xd8\xd7\xd8\xc5\x85\xdd\x1c\xbb\x33\xbb\x20\x51\x62\x19\x35\xb2\xec\x0e\xf5\x53\x2d\x3d\xaf\x17\x50\x57\xfb\x4a\x35\x69\xae\x2d\x59\xc3\x9f\xec\x24\x62\xea\x16\x6c\xf7\x14\x5c\x27\x9b\x6f\xe0\x92\xf5\xbe\xb9\x53\x46\xb4\x14\xe9\xfc\x72\xc8\xef\x13\x17\x23\x24\xd9\x98\xcd\x2c\x24\x27\x5e\x48\xd2\x38\xc6\xc8\x2b\x84\xdc\x90\x8b\x4a\xb3\xef\x5d\xe6\xe5\xf7\xff\x64\x99\x88\xf6\x6c\x0d\x7d\x0d\x74\x5f\x2a\x8a\xca\x1c\xc2\xa2\xe4\xba\x61\x02\xcf\x26\x3d\x8a\x64\x03\x4e\x64\x07\x66\x41\xf3\xa9\xcd\x7a\x70\xbe\xba\x4a\xa3\xee\xc0\x45\x83\x6a\xcd\xee\x2c\x24\x11\x9e\x5c\x17\x4c\x17\x22\x6b\xdd\x95\x2a\x46\x57\x55\x90\xfc\x04\xb3\xcb\xcb\xa1\x0f\xb4\x75\x47\xec\xd1\xb3\xe0\x3a\xfd\xc7\xdb\xeb\x2b\x96\xf1\x3d\xe0\xc2\x0a\x45\x4a\xf2\x40\xc6\x58\x5f\xbf\x87\x46\xa0\xda\xf8\xea\x62\xc3\x3e\xb5\x00\xd3\x76\xdf\x2d\x7d\xb1\x69\x43\xc1\x9c\xa1\x29\x69\x96\x72\xae\xd2\xb3\x2c\xe5\x32\x80\xfe\xea\x29\xab\x7d\x3e\x8c\xf5\xba\xa8\x0f\xa1\x69\xa0\x02\xe0\x4e\xa1\xb9\x90\x97\xad\xe0\xd0\xaa\xc6\xfa\x49\xe1\xdd\xce\x3d\xa2\x17\xf4\xf6\x1e\xa5\x0d\x78\x64\x96\x09\x32\x0b\xd8\x90\xb5\x43\x3d\x70\x0d\x80\xc4\x11\x03\xd5\x2f\x08\xbf\x90\x56\xef\x57\x3d\x6a\x16\x23\xf7\x42\x99\xe8\x2d\xf8\x27\x31\x20\x00\xe0\x20\xda\x5f\x10\xb9\x90\x73\xa9\xcd\x80\x82\x4f\x53\x3c\x08\x72\x6c\x54\x82\x71\xf3\x37\xef\x5c\x7c\x1f\x07\x89\x24\xd9\x3a\xba\x3e\x30\xcc\x4e\xb9\xc0\xb4\x2a\x94\x1f\x26\xf6\x7f\xcf\xb3\xbe\xac\xb1\x93\x4b\x3c\x34\x4a\x8e\x79\xa6\x6e\x75\x82\x56\x2b\xa8\x34\x55\x52\xc7\xc2\xde\xfb\x28\x4f\xdc\x7e\x5a\xc9\x9f\x0f\x8b\x0a\x0c\xbe\x84\x0d\xcb\x04\x1c\xb1\xf7\x04\x24\x70\x0e\x5b\xe3\xec\x65\xb3\xca\x41\x03\x07\xd8\xab\xd0\x93\x36\x65\xb7\x42\xb0\x4f\xd0\x53\xe6\x63\x9f\x48\x63\x0d\xe0\x82\x05\x4f\x5a\x25\x70\xe0\xe9\xb9\x5c\xab\xd3\x36\x83\x7c\xd3\x80\xa3\x9d\xd4\x2b\xed\xf5\x3c\x15\xf0\x06\xa9\x8c\xf2\x79\xf3\xef\x5b\xdb\x75\x00\xde\xf6\xc1\xdf\xc9\x29\x2b\xcf\xd6\xd4\x9c\xcf\x30\xc4\xc7\x30\x3c\xd5\x26\x89\x69\xe5\x04\x59\x8b\xef\xa5\x7a\x94\x68\x0b\xd0\x97\xd8\x77\x66\xfd\xc1\x01\x86\x0e\x54\x34\x0b\x4a\xdc\x0d\x5f\x02\x8d\xf2\xcc\xfd\x9b\xdd\x62\xac\x08\xeb\x0c\xe2\x28\x1a\x8c\x1f\x92\x35\x81\xdd\xfc\xbb\xd9\x84\xbd\x9e\xb0\x8b\x09\x9b\x4e\xa7\x2f\x27\xa8\xdc\x4c\x35\xc2\x57\x10\x39\x56\xf0\x8d\x29\x9b\xe4\x22\xd6\xc1\x07\x40\x00\xc9\x1c\x56\x96\x2d\x8c\xfb\xa7\x02\xcf\x83\x6d\x02\xe6\x30\x52\xc2\x05\xc5\xd5\xa3\xad\x4a\x7c\xa5\x00\xa2\x29\x22\x95\x5b\x90\xa7\x2e\x54\x6e\x01\x6b\x0f\x3c\xe7\x89\x84\xd4\x6e\xde\x84\xeb\xd2\x97\x03\x72\x67\xf1\x2b\xdf\x41\xfb\x13\xe9\xf8\x2d\x4d\x37\xdd\xb9\xfa\x17\xfb\x8c\x1c\xd2\x8f\x79\x52\x14\xe6\x74\xd6\x0b\x79\xcb\x5e\xfd\x2b\x9b\x65\x59\x2a\xd8\x8c\xfd\x95\xbd\xe6\x92\x4b\xce\x5e\xb3\xbf\xb2\x0b\x2e\x0b\x9e\xaa\x32\x13\xec\x82\xfd\xd5\x74\x9b\x29\xef\x4a\x99\xe3\x70\x3f\x61\x9c\xc9\x32\xc5\x53\xff\x3b\x0b\x06\x7b\xe9\xda\xc5\xfd\xe8\xac\x44\xf1\x28\x84\x64\x5a\xed\xe8\x28\xfc\x8b\x8b\x49\xe8\x44\x6e\x52\x51\xd0\x7c\xa8\xc2\xf6\xf0\x03\x67\xd0\xd2\x57\x0b\xe9\x7c\x79\x7f\x31\x35\xfe\x0b\xfb\x2b\xbb\x2a\xd3\xd4\x54\xc9\x6c\x34\x66\x22\xbd\x62\x36\x8d\x42\xc8\xe9\x63\x72\x9f\x64\x22\x4e\x38\x24\x52\x98\x7f\x9d\xdf\xc1\x68\x2f\x4b\xcf\x99\x17\xae\x69\x27\x38\x73\xca\xd6\xf3\x2c\x49\xd9\x4e\x0e\xc9\x0e\x7e\xcf\xcd\xaf\xfa\xea\x78\x8b\xc8\x33\x85\xd2\x7a\x20\x83\x15\xc5\x82\x42\xd9\xa5\xa3\xb6\x80\xda\x61\x6b\xcb\x6a\x39\x0a\xc2\x43\xfd\xd4\x4d\x16\x34\xc4\x9e\xfc\x0e\x39\x40\xbb\x68\xe8\x96\xdb\x50\x5e\xa9\xa4\xb9\x83\x2d\xe9\xa9\x7e\x06\x45\x85\x9c\xe2\xca\xcf\x55\x11\xb5\x4a\x17\xab\x64\x90\xda\x5c\xad\xb2\x1f\xc9\x77\x81\x09\x6a\x66\x99\x26\xe9\xb9\x59\xaa\xe7\x57\x4a\x9a\x6b\xab\x4e\x36\x48\x4f\x04\x30\x22\x94\x69\xb3\x46\xc1\x5d\xd5\x64\x0d\x96\x00\xd8\x07\xa6\x4a\x08\x6d\x2b\xcc\x2e\x60\x86\x20\xdd\x2f\xa4\x79\x83\x4e\x24\x80\xb9\x27\x8e\xc5\x16\xbf\x66\x75\xed\xe9\x5b\xb4\x21\x07\x85\xb7\x4c\xb0\xbe\x1c\xda\x13\x26\x1c\xa5\x6c\x9d\xe0\x15\xbf\x0a\x18\xdc\xa8\x34\x4b\xef\x81\x71\xcf\x95\x48\x95\xdc\x98\x59\xd1\xb5\x09\xa8\x1d\x4f\x4e\x01\x96\x84\x55\xc0\xc2\x3a\x6b\x60\x0e\x4b\x7a\x84\x86\xc4\x9c\x93\x49\xec\xef\xf7\xba\x5c\x19\x3b\xc2\x79\x64\xdd\x69\x48\x8d\xeb\x4a\x28\x3e\x2d\xbe\xfc\x51\x8b\x1c\x68\x96\x11\xe1\xe0\xbc\xfd\x78\x70\x7a\xb2\x0d\x6c\xd1\xb0\x45\xd5\x0b\x8c\x6d\x77\x85\x50\x34\xa1\x91\x5a\x3d\x60\x3e\x7e\x4d\x8c\xec\x10\xe4\xec\xdb\xd9\xfc\x5d\xed\xb9\x26\x72\xb6\x05\x5e\x7b\x37\x7f\x7f\xf9\x66\x79\xfd\xf1\xae\xf1\x9c\x29\x8d\xfe\x34\x56\xe9\xdf\xf6\xde\x53\xc0\x07\x3f\xa3\xdc\xcb\x52\xad\x6d\x26\xe5\xf0\x33\xbd\x21\xb8\x33\x0c\xa5\x12\x92\x6c\x87\xc2\x34\xcd\x89\xd3\x99\x0f\x2e\x97\x14\x91\x18\x56\xd9\x7a\x87\x5d\xcb\xb7\xf8\xfa\x07\x95\x26\x51\x3f\xe8\xcd\x1e\x57\x5b\xf5\xd8\x82\x22\x5a\x09\x40\x81\x92\xff\x87\x2a\x85\x16\x7a\x21\xa2\xc2\x47\xdc\x9a\x8d\xfb\x5f\x0d\xb4\x39\x7c\x07\x47\x8f\xb2\xeb\x36\x10\xe0\x74\x31\x3c\x38\x5b\x81\x60\x13\x78\xe5\xd1\xd7\x0a\xb9\x74\x10\xdb\x8e\x38\xb9\xa0\x2b\x3d\x0f\x1b\xf4\xe3\x56\xa5\xe6\x2e\x26\x63\x22\x2b\x5d\xc8\x4c\xe4\x91\x02\x80\x0a\xe6\xc1\x2b\x16\x6d\x93\x34\xf6\xe2\x2d\xdf\x01\xa2\x17\x70\x77\x2f\x49\x96\x4f\xb8\x18\xb3\x2d\xbe\xe7\xd4\xb5\xd3\xce\xea\x95\x9f\xe6\x81\x7a\x3a\x88\x5e\xdf\xb4\xff\x85\xa0\x64\xd8\x15\x44\x2f\x54\x8b\x16\x9a\x4e\xaf\xd4\x67\x94\x87\x17\x14\xc5\xd7\x56\xfc\xd3\x5e\x9c\x8a\xda\xb8\xd2\x34\xab\x77\x25\x90\xce\x22\x8a\x0a\x01\x24\x5a\x40\x75\x76\x82\xa3\x2d\xe6\x29\x20\x69\x50\x17\xd2\xc7\x47\x5f\xe8\xd0\x2e\x6b\x1d\x67\xe4\x54\xb5\x20\xc0\x09\x7b\x51\x69\xe8\x0b\x20\x25\x95\x0a\xbe\x47\x31\xac\x4a\xd7\xc0\x74\x9d\xb0\xa4\x58\xc8\x44\xe3\xcc\xcc\x45\x2a\x1e\x4c\xed\x42\x67\x31\x61\x5d\xec\xdd\xd9\x36\x1b\x70\xe4\xdc\xa6\x1f\x3b\x99\x7b\x58\x84\x79\x48\x6e\xc9\xc1\x31\x1d\x0b\x6d\xec\x46\x90\xe5\x10\xbf\x9a\x05\x90\x40\x2c\x04\xe1\x1f\xb1\x90\xb6\x7e\x80\x0a\x41\x2d\xdb\x85\x9c\xaf\x21\x07\x14\x32\x4f\xe3\x18\x6f\xa1\x56\xa8\xc1\x31\x8d\x25\xe4\x1c\x56\x74\x27\xb7\x03\x41\xaa\x92\xb8\x92\xc4\x83\xc8\xf7\x05\x38\x75\xa1\x5f\xa5\xe0\xc5\x96\x25\xc5\x04\x28\xe2\xec\x4e\xb9\x90\x3c\x26\xa5\x72\x2a\xce\x74\x0d\xcc\xfb\x9e\x71\xa6\xdf\x57\xea\xa1\xcf\xb0\x3d\x15\xf5\x85\xab\x3a\x4b\xb9\x5c\xe2\x09\xf2\x15\x70\x5f\x81\xe0\x67\x57\xa8\xb3\x5c\x2d\x1d\xad\xcd\x93\xd4\x33\xd0\x84\x0e\x65\x78\x8d\x1d\x6b\x3f\x34\xc1\xc9\xe0\x69\xad\xed\xf5\xc4\xf9\x69\x08\x5d\x90\x33\x1b\x81\x1d\xbe\x0b\x78\x48\x18\xaf\x21\x11\xec\x6c\x3d\x84\x09\xb3\x33\xe0\x5b\xc5\x27\x0d\x19\xf9\xda\x19\x52\x1f\xf6\xf1\xd0\x98\x86\x85\x78\x14\x3c\xe6\x40\xb5\x9e\x17\x22\xd3\xe9\x47\x69\x42\x65\x6c\x6b\x83\x70\x1f\x26\x4f\x08\xf4\xc3\x39\x37\x4f\xbb\xa0\x6b\x78\x0f\x53\x2d\xd8\xca\xa7\xf4\x51\xc3\x3e\x35\xd4\x53\xe2\x73\xaf\xa1\x5e\x53\x36\x97\xcc\x9a\x7b\x13\xf6\x02\x27\x96\x7e\x41\x2e\x48\x52\x05\xa6\xd8\x79\x4c\xab\x87\xb2\x55\xeb\x50\x0c\xcc\x19\xf0\xcb\x0d\x23\x41\xbd\xd4\x86\xcf\xda\x2f\xaf\x13\xc8\x59\x38\x26\x2d\x1d\xa3\x88\x2b\x2c\x80\x0e\x49\xbc\x76\xef\xd1\x68\x57\xde\x9b\xed\x1b\x6c\xe3\x5d\xec\xb5\x7d\xd1\x74\x51\x56\xd2\x79\x6a\x7f\x67\x2a\x5f\x48\x5b\x1a\xb9\x24\x35\x6a\x29\xd5\x8b\x0a\x20\xd4\x64\xf3\x07\x33\x15\x40\x0c\x56\x3e\x0b\x54\xd9\x3c\xff\x6a\x7d\x17\x00\x50\xc4\x4a\x78\x3d\xf3\x29\x9b\xf9\xaf\x19\xc3\xc3\x4c\xf0\x1d\x1e\xf3\x75\x8e\xc6\x34\x35\x9d\x92\x14\x96\x12\x32\x48\x6f\xd0\x25\x10\x9b\xae\x4b\xb3\x19\x05\xec\xaf\x0b\x69\x3a\x8f\xad\x13\xc0\xfd\x52\xbf\x2c\xe4\x7b\xa5\x6d\x36\xbd\xf6\xfd\x61\x31\xa4\xd4\x6d\x2f\x9c\x8a\x18\xfd\xe1\x0d\x1c\xda\xe4\xf3\xaf\x49\xfc\x43\x5e\x0b\x51\x62\xec\x55\x99\xfb\x46\x45\x5c\x2e\xe4\x7f\x9a\xee\x41\x25\x6b\x27\x03\xaf\xd6\xb8\x84\x61\x04\x21\x58\xf2\x09\x0b\xfd\xee\x9f\x5e\x7e\x7a\x89\x38\xf4\x52\x83\x70\xe3\xa4\x7a\x80\x38\x22\xf0\x32\x4d\x21\x12\x6d\x5b\xe0\xc8\x28\xfc\x27\x78\x1f\x2c\x87\x2e\x75\x4b\x59\x35\x31\x86\x2c\xf4\xbe\x19\xec\x9d\xcf\x33\x16\xf1\x22\xda\x9e\x59\x5b\x8e\xb6\x31\x7b\xfa\xd1\xf0\xa1\x82\x9b\xb1\xb4\xda\xb9\xb0\xcd\x85\x33\xdf\x39\x76\xbe\xca\x7c\x31\x4d\x00\x60\xcd\x5d\x5d\x18\xc6\x91\x87\xe2\xe4\xf4\x42\xec\xde\xce\x73\x8f\x5b\x59\x36\x7f\xe3\x24\x2f\xb9\xe4\x3b\x11\xb3\x17\x90\x31\xf5\xc2\x0e\xfe\x42\x66\xab\x69\xba\x5f\x17\x44\xf1\x64\x3a\x65\x0a\x02\x46\x07\x4e\xb9\x65\xdc\xbc\x26\x1d\xe8\xec\xce\x8b\x56\xbb\xad\xe3\xfa\xc6\x7d\x69\xb8\xc1\x82\x3e\x2e\xd7\x3b\xb7\x55\x88\x50\x95\x49\x9d\xeb\xfb\x09\x5b\xe5\x5c\x82\xf6\x44\x1c\x1a\x55\x7e\x75\xc2\xe5\x19\xf9\x93\x6c\x0a\x85\xe4\xe9\x1e\xb0\xe3\x93\x85\x44\xb2\x29\x60\x25\xde\x47\x69\x12\xb1\x4d\xce\xb3\x6d\xcd\x0e\x12\x0f\x42\x16\x20\x61\x7a\x23\xb8\x3e\x2d\x5a\x9f\xd7\x4b\x60\x83\xe3\x29\x33\x09\xb7\x0f\x2e\x6b\xf4\xa0\x50\xbd\x8e\xa3\x05\xe0\x5a\x22\x5e\x8e\xa3\x06\x39\x48\x60\x59\xa1\x45\x23\x8e\x1e\x88\x40\x9a\xc6\x31\xfb\xd5\x43\xe1\x6f\xec\x57\x62\xad\xb0\xe0\xff\x53\x43\xf6\x8e\x05\xe3\x24\x2e\xc3\x79\xd5\x8a\xe4\x9e\xde\xc3\x7b\xae\x31\x01\x88\x3c\x15\x16\x2c\xec\x36\x8e\x09\x49\xcc\x01\xcf\x19\xfb\x73\xb9\x52\xa9\x25\x8a\x9b\xbf\x61\x2a\x07\x8d\x86\x42\xd1\x9f\x92\xb8\xcb\x3a\x48\x64\x2c\x7e\x3d\x89\xad\xa1\xff\xa0\xb7\x66\xb3\xf9\x4c\x20\x05\x50\x6f\x2c\xec\x4e\xb9\x30\x87\x70\x61\x6f\xc6\x8d\xa7\x74\x1d\xb9\x38\x4b\x8b\x2d\xc0\x09\x11\xc8\xee\x3b\x75\xc7\xf7\x2c\xda\x72\xb9\x09\x5c\x13\x80\xee\x12\x99\xca\x51\xcb\xf0\x01\x68\xd1\x54\x6e\xb3\x61\x29\xc7\x93\xd0\xf4\x2e\x90\x80\x20\x56\x65\x13\x39\xf9\x66\x93\x8b\x0d\x10\x14\x2c\x64\x25\x4b\x1d\x28\xe1\xac\x8c\x02\x7e\xa7\x2f\xc9\xf7\x69\x98\x32\xba\x6e\x83\x45\xbe\x77\x29\x92\x24\x04\xea\xd7\x73\xbd\x5b\x27\x2c\x11\xd3\x09\xfb\xc1\x03\x77\x45\xa4\xa4\xcb\xb1\xec\x48\xb0\xab\xb9\xfc\xd9\x81\xab\x43\x93\x52\xa3\xbd\xee\xf0\x5b\x43\x4e\xb4\x75\xd2\xf4\x26\xa9\x16\xbc\x28\x47\x9c\x41\x24\x19\x7d\x61\x5e\xbe\xc5\x77\x7b\xb1\xed\x3c\x33\xc7\x86\xa5\x33\x32\xcf\x9b\x93\xd3\x7c\xdb\xd3\x1d\xb7\xf5\xf5\x41\x07\x72\xaa\xba\x1d\xc8\x4f\x61\xaa\x5b\xce\x8a\xc3\x3e\xe4\xb4\x83\x87\xa1\xa7\x4d\x63\x5d\xc4\x16\xe4\x4b\xf0\x7d\x5d\xbf\xc6\xb6\xec\x00\x59\xae\xe2\x32\x12\xb1\x59\xb9\x70\x1f\x42\x44\x8c\xa3\x83\xa8\x6c\x92\x6d\x07\x6d\x85\xd3\x06\x4e\xdd\x2f\xe5\x73\x18\x44\x23\xec\xba\xff\x63\x87\xbf\xc1\x5a\x7c\x6d\x9d\x1e\xae\x4f\xec\xa7\x7c\xe4\x39\xe5\x3e\x5f\x25\xff\x55\x79\xb2\x49\x24\x2f\x54\xce\xbe\x73\x49\x9f\x2f\x9d\x62\x50\xb7\x85\x30\x72\x9b\xa8\x74\x11\x6e\x13\x5f\xd4\xf0\x68\x9b\xa4\xe6\x29\x5d\xf0\x5d\x16\xd2\x69\x3a\x3d\x66\xea\x99\x14\x3b\xc1\xd9\x26\xe0\x3b\x4d\xb4\xcf\x6d\x5b\x48\x8a\x38\xe0\xb8\xa9\x3c\xe4\x83\xee\x3c\x9b\xb3\xb2\x58\x1e\x49\x11\x83\x2f\x8f\x73\x3c\x11\x0c\xe1\x3d\xcf\xfa\x49\x37\x38\xb9\x1c\x30\xb9\xc7\x89\x54\x5b\x4b\xa5\x3a\x3f\xfb\x15\x17\x46\x92\x80\xd6\x43\xe7\x37\xef\x6c\xa0\xc8\xdf\x07\x2b\x17\x2c\x18\x08\x64\x1f\xd4\x60\x55\xe0\xd5\xde\x6d\x6b\xe6\x14\xb7\x4c\x1d\x17\xa9\x2a\x63\x46\x9b\x1a\x85\xe1\xf3\x29\x9e\x8e\x40\x07\x3a\x9d\x76\x71\xa3\x8d\x54\x82\x75\xfb\x0f\xbc\xd7\xbe\x02\xe1\xb7\x8e\x1d\xb8\x77\xe9\x53\xcf\x3e\xdb\xd0\x53\x4f\xc3\xd8\xbb\xed\x78\xd4\xd8\x3b\x2f\x38\x70\x93\x8d\x73\x90\xc2\x7d\x34\x89\x53\x58\x6f\x61\x00\xa1\x85\x3d\xb5\x12\x98\xd5\xf7\x27\x7f\xce\x66\x30\xf7\x7f\x2a\xe3\xb9\x90\xc5\x12\xbe\x38\xee\x63\xf0\x91\x0f\xf0\x7a\xc5\x60\x1a\xe4\x08\xfe\xf7\x3b\x85\xfe\x7d\x4b\x44\xf2\x1f\xec\x96\x7c\x5a\x66\xbf\x4a\x00\x44\xaa\xef\xd9\x77\x09\x60\x8e\x82\x58\xa8\x1b\xb8\x8e\xe1\xa2\x06\x1d\xd1\x7b\x41\x83\x2a\x5b\xfb\xa0\x06\xf9\xda\x43\xa8\x1a\x4a\x21\xf7\x1e\x65\xce\x9a\xad\xd6\xfe\x2d\x20\x27\xbf\xaa\xfc\x1b\x88\x24\xcd\xf8\xa5\xec\xbf\x44\xae\x7c\x3a\x08\x3a\xab\xc2\x82\x7b\xed\xf5\xe3\x75\x55\xd1\x1e\x47\x45\xcf\x50\xd2\x0e\xfe\x42\x5c\x2f\xe8\x51\x58\xed\xed\x75\xa4\x8b\xa6\x5e\x44\xcb\x0e\xfd\x82\x41\x55\x09\x2e\x9e\xa1\x1e\x41\x52\x3b\xcc\xec\x02\x3d\x07\x7f\x05\xb1\x29\xee\x78\x46\xf8\x3e\x82\x12\xd7\x83\x37\x53\x68\xc4\xbf\xff\xe5\x3f\xa6\x5d\x8a\xd9\x50\xf5\xb1\x70\x29\x57\xf9\xb7\x79\x22\x64\x0c\xc1\x58\x1e\x37\xa5\x75\x64\xc5\x3b\x5f\xd9\x9e\xcd\x34\x7c\x92\xac\xc9\xf6\xa3\x56\x2f\x71\x12\x7d\x81\x88\xbe\xdf\x64\xdd\xf2\xad\xc4\xfb\xba\x4c\x09\xbd\x8c\xf7\x92\xef\x9a\x1a\xe3\xcf\x5a\xc7\x7d\x22\xd2\x18\xaa\x48\x5f\x3f\x14\x95\x8a\x45\x74\x3f\xd6\x26\x38\x9a\x18\x5c\x44\xf7\xec\xa7\xbb\xf7\xef\x50\x07\x32\xd1\x0b\x79\xc5\x8b\xe4\x41\x7c\xcc\x53\x17\x0e\x20\xa6\x97\x3c\xb5\x6b\xa4\x4a\x54\x1b\x90\xa2\x58\x56\x5b\x6b\x38\x84\x3c\xe2\xbb\xfd\xd9\xaa\x8c\xee\x45\x71\x9e\x73\x19\xab\x1d\x36\xe3\x5c\x97\xeb\x75\xf2\xeb\xb4\xe0\x79\x07\xa9\x38\xfa\x11\xbe\xa2\x9d\xeb\xa5\x62\x0a\x6f\xf3\xa2\xa9\xfb\x08\x59\x9f\x24\x40\x5c\x31\x6e\xe1\x0a\x9c\xf3\x9d\x00\x56\x38\x56\x25\xe4\x87\x52\x30\x91\x12\x74\xeb\xb4\x26\x04\xbd\x22\x55\xdc\x4f\x81\x71\xff\x29\xa8\x55\x55\x99\xd9\x56\xca\x6b\xc1\xed\xf8\x3d\xde\x0f\x37\xb9\xd0\x7a\xc2\xb4\x82\x1a\x2f\xa4\xc5\xa2\xdb\x7c\x29\xc0\xbd\x00\xaf\x64\xba\x67\x91\xca\x12\x90\xce\x73\xed\xda\xaa\x47\xf0\xd3\x87\x69\x83\xa0\x76\x5a\xca\x22\x49\x19\x5f\x17\xe4\xc4\x07\x12\x6d\x2b\x9a\xa3\xa7\x0b\x09\xa1\xd8\x08\x9a\x0f\x10\x09\x17\x7e\x71\x8d\xd0\x6c\xcd\xa3\x24\x4d\x0a\xa2\xf6\x81\x24\x23\x6e\xda\x6b\xce\x03\xd3\x97\x39\xdf\xf3\xd4\x5f\xac\x78\x5a\xfa\x4c\xc9\x33\x2d\xea\xd4\x71\xdd\x8e\xcf\xbe\x53\xf7\x84\x0b\xef\x29\x87\x4f\xf3\x4a\xeb\x94\x5c\xfd\x39\x9e\xc4\x16\x7f\x5b\x31\x75\x3d\xa3\xaf\x3b\x7e\x20\x26\xd1\x71\xa9\x9e\x5a\xfd\x9d\xe6\x17\x46\xf4\x5e\xbb\x11\xf6\x85\xdc\x05\x5d\xdc\xc2\x43\xaa\x6f\xbd\xdd\x1f\x94\x4a\x4f\xf5\x78\xf3\xd4\x6e\xa8\x4b\x90\xa4\x3c\xe5\xba\x86\x13\xc0\x39\x8e\xe6\x6f\x5c\x4c\xdb\x91\xf5\x56\x85\x6c\x08\x6e\x45\x55\x80\x8d\x02\x2a\xd1\x83\xc4\xd6\x59\x0b\xa8\x61\x24\xa2\x1c\xca\x40\x34\x94\x35\x9d\x9b\x2e\xf8\x80\x23\x80\xfb\x3a\x02\xa1\x61\xad\x86\xa3\x9c\x61\x28\x20\x59\xfb\x94\x73\x8c\x85\xc4\xa7\xae\x1f\x83\x6f\xdb\xfe\x44\xd9\x6a\x73\x3e\x91\x95\xbc\x90\x81\x45\x8c\x6c\x45\x16\xb2\xef\x7a\xad\xcd\x5f\x56\x99\x86\x27\xfb\xcb\x4e\x61\xb7\xee\x0d\xa8\xbc\x09\x75\xaa\x00\x6b\x11\xa9\xdd\x2a\x91\x36\x05\x9c\x9c\xc8\x60\xca\xcf\x2c\x79\xa0\x73\xf8\x5b\x93\x1c\xd5\x0b\x6a\x7d\xef\xcc\x88\x90\x87\x31\xdc\xb2\x0e\x5d\x77\xc3\xfb\xd3\xd3\x12\x71\x77\x44\xf2\xea\x2d\x48\x34\xe3\xe9\x23\xdf\x6b\xd0\x72\x15\x66\x57\x5c\xa3\xe3\xb4\x5a\xff\x49\x70\xbc\x5b\x62\x4a\x12\x46\x2f\x49\xe2\x99\xda\x92\x20\x2f\x86\x48\xad\x6a\xad\xe7\x1b\x7a\xa1\xdb\x3b\xe7\xeb\xc4\x42\xf2\xde\x58\x08\x06\x79\xff\x36\xc2\x1f\x3d\x4e\xd6\x13\x7d\xbd\xc1\x31\x89\x16\x19\xc1\x70\x20\x31\xca\x85\x80\x27\x6c\xc7\x13\x49\xcb\x00\x95\xc1\x62\xb1\x2a\x37\x9b\x4e\x17\xe4\xb7\x1f\xcb\xa8\xae\x93\xbf\x7b\x5f\x73\x2f\x63\xd6\x53\x78\x63\xe7\xf6\x4b\xe8\x1e\x36\xf7\xaa\x2f\xe3\x80\xfd\x8a\xde\xee\xd6\x90\x53\x63\x12\x3d\x8d\xb7\x7b\x3e\xc4\xdb\x6d\xb1\x53\x90\xc2\x46\xd7\x55\x8b\x6f\xf9\xcd\x0d\xfe\x65\xdc\xe0\x83\x26\x05\xd2\xa6\x2c\x93\xaa\x81\xde\x53\xc3\x23\xd9\xd7\x1c\x4d\x27\xd4\x8a\x54\xd6\xb5\x90\xb1\x66\x2b\x1e\x3d\x03\x1d\x1b\x9c\x8e\xa7\xfb\xdb\x0e\x80\x4b\x6e\xd5\x4e\x30\xf8\x94\x46\x4d\x09\x46\x59\x82\x13\x40\x83\x9a\x06\x7a\x44\x06\xe1\x3d\xe0\x38\x45\x64\x48\xec\x8d\xea\xef\xa4\x78\x64\xe6\xb4\x9a\x84\xf0\xb8\x60\x78\x40\x6c\xe8\xa5\xb1\x0e\x2b\x58\x7a\x47\x89\x90\x8b\x0d\xcf\x63\xc8\xe0\xa0\x25\x99\xf2\xe8\xde\xfc\x37\xd4\x8f\xbe\x48\x10\x3e\xcb\x7b\x8e\xb0\x52\x5f\x5a\x22\xa3\x1c\xc8\xae\x08\x2d\xe8\xeb\x87\xaf\x6b\xc6\xa3\x5c\x69\x74\xca\x38\x8d\x4e\xc8\x20\x06\x03\xf6\x21\x89\x4b\x9e\xe2\x17\x3b\x3d\xd9\x63\xe1\x61\x75\x40\x4f\x20\xa7\xd3\x44\x8b\xd1\x70\x20\x07\x10\x74\xe3\x74\x21\xdf\xb8\x80\xc4\x2b\xf6\x51\x0b\x42\x71\x69\x4b\x48\xdc\x5b\xd3\x67\x33\x1f\x1a\x98\xbb\x4e\x1b\xa2\xa7\x03\x2c\x88\x39\xe8\x08\xdd\xdd\x13\x07\x48\xfd\x4e\x19\x94\xd1\xe4\xa4\xf3\x40\xd3\xd7\x77\x0b\xde\x13\x72\xc1\xe3\x7d\x48\x7d\x96\x48\x06\x51\x30\xc6\xe3\x5d\x22\xcd\x22\xb0\xba\x71\xee\xa4\xb1\x14\xd2\x08\xe9\x05\x79\x95\x34\xad\x6d\x82\x9a\x49\x61\x8c\x4b\x9e\x27\xe9\x1e\xee\x13\x59\x2e\xce\x82\xef\x04\xe3\x43\x19\x45\x40\x86\x4d\x34\x1d\xa5\x16\xeb\x32\xc5\x5b\x07\xdc\xcb\x5d\x03\x68\x47\xfa\x38\x9f\x18\x83\xa3\x20\x51\x83\xe0\xc3\x28\x15\xf6\x14\xd9\x19\x8d\x68\xe0\xb8\x88\x96\xa7\xe6\xcb\x01\x44\xbe\x55\x8f\x36\x95\xec\x91\x7b\xac\x70\xd7\xe9\xfa\x64\x51\x8c\x7e\x3b\xd4\xde\x00\xed\x3e\x85\x9d\x1f\x57\x42\x57\xf4\x9b\x88\xdd\xde\x94\x48\x68\x0e\xa9\x6d\x7a\xcf\x70\xa9\x31\x23\xcd\x8c\x25\x9c\x5f\xd6\xd1\x51\x75\x0c\x33\xd7\xba\x44\x2b\xc9\x16\xe5\xef\x7e\xf7\x7b\xc1\x7e\x07\x29\x7a\x74\x1f\xc1\xf8\x13\x90\xf3\x61\xe9\xb0\x65\xbb\x0f\x08\x64\xee\x6b\x8c\x08\x6b\x83\x80\xda\x7c\x78\x00\x51\xf2\x68\xcb\x74\xb9\x42\x84\x20\xa7\x10\x06\x97\x8e\xfb\xf6\x9d\x02\xb0\x1f\x9e\xec\xb6\xf6\xff\x4b\x1c\xf6\xc8\x3f\xbf\x90\x99\x42\x7a\x66\x80\x56\xae\x04\xdb\xf1\xfc\x1e\xe4\x04\x49\x33\x9e\xf1\x82\x7d\x97\x88\x69\xd5\x7d\xff\xb2\x52\x1f\x0a\x98\x20\xed\x2a\xcb\x4b\x29\xad\x3e\x0a\x33\x86\xa9\xf7\xa5\x4f\x16\x72\x55\x86\x77\xcf\x8a\x33\xde\x4f\x2d\x70\xc8\xc3\x66\xab\x80\x8b\x83\x2a\xc5\x75\xa0\x65\xcf\x06\x78\xe5\x17\xf2\x99\xdc\xf2\x5d\x0e\xbf\x0f\x64\x83\x59\x67\x5e\x90\x0f\x00\xcd\x0d\x25\x3c\x61\x38\x70\xda\x83\x91\xf3\x01\x74\x3c\x27\xec\xa7\xe4\x41\x4c\xd8\x6d\xc6\xf3\xfb\x09\x7b\x83\xe1\xb5\x3f\xaa\x55\x9b\x0f\xaf\x41\xd8\x70\xb2\x1f\xef\x38\x37\x56\x1f\x91\x49\xbb\xf5\xff\x4b\x53\xe9\xbf\x2b\xb6\xfc\xb7\x89\x78\xeb\xe0\xd2\xf8\x7b\xf7\x44\x1c\x08\x03\xff\x06\x0e\xfb\xbb\xbc\x15\xf7\xd3\x68\xfc\x43\xf8\xbf\x76\xff\xb2\x16\x17\xd8\x9e\xb4\xcb\xb5\xa2\xbe\xbe\xad\xc4\xe1\x24\xae\x1f\xca\xcd\xfc\xe1\x61\x4b\x81\xd2\xb3\x63\x97\x3a\x3e\x02\xd4\x4e\xaf\xda\xfe\xba\x48\x95\x2e\xf3\xfe\xc5\x7f\x53\xad\xb5\xfd\x7a\x0b\x95\x26\x4c\xb6\xdd\x4a\x00\x2b\xc0\x50\x78\x07\x3e\xb6\xfc\x4f\xb5\x5a\x02\x96\xe9\xb4\x15\xde\x56\x9c\x15\xe7\x71\x11\x31\xaa\xaa\x3f\x21\x6f\x33\x01\x8c\x4e\xde\x14\xf5\x01\x81\xda\x0c\x73\xae\x91\x85\xb4\x04\xd7\x98\x91\x9a\xe7\x02\x98\x78\x73\x01\x9a\x53\x2c\xe3\xb9\x03\x14\x58\x8b\x28\xb8\xf9\x78\xd0\x49\x98\x45\x06\xc9\xa0\x74\xdf\x5a\x09\x21\x5d\x6f\x8f\x31\x25\x8c\x75\x50\xef\x7d\x42\x93\x3d\x0a\x16\x61\xa2\x42\x87\x3e\x5e\xe3\xbd\xe0\x2e\x08\x26\xf7\x46\x14\xc1\x6e\x5e\x33\x2d\x2a\x4b\xb3\x12\xa1\xfa\xa6\x10\xf5\xad\x31\xe8\x1a\xf9\x55\xc5\x81\x32\x28\xa6\xf7\x14\xfe\xf2\x0f\xbc\xd8\xe2\x85\x76\xa7\x0a\x81\x7b\x26\xb2\xf0\xe0\x7c\x41\xaf\xf3\x2a\x55\x2b\x10\x7b\x32\xbf\x74\xdd\x0d\x23\x5a\xda\x83\xba\xae\x39\x60\x43\x76\x06\xb3\x9b\x40\x26\x6b\x2e\x34\x10\x9a\x34\xa3\x54\x43\xf1\xbf\xe3\x2e\xdd\xcd\xea\x9a\x4d\xff\x4d\xe3\xb2\xdd\x64\xc0\x37\xcb\x1a\xc0\xa0\x97\x47\x64\xa8\x5c\x86\xd9\xa0\xc6\x38\x20\x32\x60\x0a\x03\x23\x1f\x68\xad\xbd\x56\x53\x78\x21\x67\xf8\x4b\x70\x08\x70\xaf\xf4\xe2\xf0\x96\x24\x1f\xe9\xd6\x1f\xa6\x87\xb2\x59\x88\xf0\x23\x0f\xc1\xc4\xfb\x32\xe1\x32\x30\x81\xac\x41\x59\x24\xb9\x60\x12\x50\x08\x0b\xa9\xcb\xd5\x99\x27\xfe\x30\xb7\xb8\x07\x20\xab\xd1\x22\xe3\x70\x95\x01\x3e\xa0\xb3\x96\x63\x18\x3d\x93\x5e\xb1\xc1\x12\xe4\xf1\x94\x36\x7f\xc8\x45\xc4\xcc\x73\xd7\x76\x57\x8e\xb9\xac\xc1\x2d\xda\x66\x3d\xe3\x61\xd7\xb7\x5f\x80\xa6\x0c\x64\x38\xde\x20\x8a\xe2\x6b\x1f\xe0\x61\x34\x74\xe8\xd1\x0d\xf1\xb4\x85\xfc\xbf\xf6\x6c\xe8\x06\xed\x8e\x98\xe9\xa6\x67\xcc\x11\xd5\x09\x26\xae\xd4\xcd\x5e\x21\x03\x23\xb0\xbb\x52\x8d\x29\xdf\x56\x2a\xb7\xb8\x96\x50\x41\x41\x51\x3a\x2a\xfc\xfa\x90\xe8\x80\x4e\x1b\xbe\x76\x2b\x04\x7b\x95\x8b\xf5\xab\x4f\xb9\x58\x2f\xed\x48\x4f\xa1\x41\x53\xd3\xa2\x26\xa9\xf6\xc0\xc9\xa1\x33\x25\xdb\xc9\x05\x0f\x90\x7f\xd6\x9a\x84\xe5\x04\x6d\x4a\xd6\xcc\x0b\xed\x99\xf6\x00\xc3\x82\x88\xeb\x6c\xdf\x8d\x9a\x7d\xf1\x63\xae\x0b\x09\x36\x00\x6a\xd5\x21\x50\xf7\xf7\x7f\xbc\x55\xfa\x6c\xc8\xf1\x76\x57\x85\xcc\xd8\xcd\x9e\x4b\x77\xe0\x75\x43\xab\xbf\x2c\xfa\x1b\x06\x50\x67\xfc\x51\x12\x4f\xcc\x28\xd7\xd3\xb0\x63\xad\x5d\x2a\xdf\x1c\x6b\x0d\x0c\x9c\x5f\x65\xd2\x7a\xfa\x12\xa7\xe6\x36\x09\x84\x90\x79\x9a\x86\x9a\x05\x3e\xd2\xb6\x90\x3e\xef\xd3\x58\xad\x69\x6a\x5d\x78\x15\x7b\x83\x58\x81\x62\x48\xb8\x15\x13\x4b\x6a\x42\x74\x80\x14\x0f\x3b\x5b\x71\x50\xd9\x74\x4a\x3e\x87\x56\xf3\x53\x5d\x22\xbf\xb1\xbc\xe3\x03\x91\x67\xfc\xec\xf2\x5e\xec\x47\xd7\xb5\x3d\xd2\x11\x50\x36\xc0\x62\xb6\xbb\x6c\xc4\xf3\xdc\xa2\xe8\xe9\xab\xcc\xdc\x95\xd6\x3c\xaa\xb8\x39\x3b\xea\xb9\x15\xd1\x7d\xa6\x12\x39\x7a\x2f\xaa\x50\x48\xc0\x64\x2f\x98\x2f\xcd\xdd\x0e\x07\x1d\x8e\x15\x7b\x12\x1b\xa2\x01\x5e\x61\xa1\xa1\x9e\xec\x8c\x33\xa7\x62\xda\x3d\xed\x9e\xda\x7f\x21\xfc\xd9\xf0\x0c\xbe\xd8\x96\xf8\x50\xed\x54\xe1\x2d\x8e\x9d\x0a\xd3\x26\x6f\x64\x57\x0d\xec\x6c\xce\x2a\x14\x81\xad\x5d\x0a\x2e\xc8\xdf\x3c\x43\xbf\x79\x86\xfe\xc6\x3d\x43\x5f\xd2\x2d\x04\xd8\x98\xe7\xf4\x09\xf5\x04\xc8\x4f\x58\x8e\xee\xab\xa7\x4a\x7a\xa3\x75\x3c\x09\xa4\x67\x83\x4c\xc2\x26\xd0\xdf\x12\x4d\x14\x20\xdc\x1d\xdd\x0b\xd9\x19\xa3\xb7\xf4\x40\x9d\xfa\xc4\x4f\x8b\x60\x69\x63\x37\x0a\xde\xee\x87\xb2\x78\xa8\x13\x91\xf2\xb6\x11\x6e\x98\x75\x02\xb6\xa7\x69\xf8\x19\x80\xc6\x54\xee\x88\xa3\x35\x65\xb9\x61\x30\x12\x69\x88\x10\x2c\x55\xa3\x5a\x1e\x8a\x89\xb3\x1f\x5e\x66\x4a\xa5\xad\xd0\xb8\x27\xed\xc0\x46\xa2\xcc\xd0\xce\x9b\xa3\x31\xaa\x43\xc0\x98\xed\x45\x9f\x74\xe1\x53\x34\x30\x1f\x03\xb4\x26\x60\x36\xc5\x25\xe4\x2a\xfa\xee\x98\xfa\x0c\x27\xee\x1c\x2e\x84\x11\x5b\x89\x88\x83\xce\xa2\x05\xef\x45\xdc\x65\x9f\x84\xa4\x43\x8d\x74\x10\xdd\xfc\x4e\x47\xd4\x12\xca\x5d\x26\x6d\xc2\x12\x63\x17\x57\xcd\x42\xb0\xd0\x72\xac\xb9\x45\x92\x58\x5a\xc3\x43\xb2\x9a\x96\xc3\x79\x19\xa5\x5c\x0f\x34\xac\x5b\xf7\x9d\x39\x15\x74\x01\xe5\x0c\xdf\x48\x7f\x82\x74\x9c\xdd\x40\xe4\xce\x42\xce\x9c\xac\xa4\xc7\x7e\x39\xe4\x1e\x86\x4b\x11\xb3\xd8\x18\x1a\xe4\x4a\xf4\x37\x97\x09\xd3\x65\xb4\x05\x36\xc8\xea\x3e\x15\xee\x5b\xcd\x15\x3b\x59\x48\x73\x21\x02\x57\xcb\x8e\x43\xde\xf9\xa3\x31\x56\x75\xf2\x5f\xc2\xc1\xb3\x88\x1c\x2b\x44\x64\xe1\xc5\x49\xc9\x56\xf4\x9a\x25\xe6\x44\x80\x85\xc7\x94\x94\x59\xcc\x0b\x31\x5d\x78\xb4\x4d\x82\x9e\x4e\x8b\xf2\x20\x93\x59\x87\x0d\x0b\x71\x8c\xb5\x9d\x36\x4d\xd6\x22\xda\x47\x0d\x9d\x9d\x7e\x1a\x86\xdf\xae\x6d\xdf\xd6\xb5\x0d\x59\x6c\x31\x67\x70\x4c\xd7\x52\x55\x6f\xfc\xeb\xa7\x75\xae\x60\x41\x4d\xf4\x88\x7e\xfe\x82\xd7\xce\x16\x1b\x78\x9c\x3d\x3f\xf8\x1e\xd4\x7f\x9c\xf9\x8b\xad\x3f\xac\x03\x8a\x81\x86\x59\x18\x06\x17\x8b\x70\xea\x18\x83\x76\x70\x58\xbf\x9b\xc5\xe5\x9b\x02\x27\x0d\xb9\xb8\x1a\x8b\xdb\xc1\x95\xae\xac\xa5\x2d\x05\x9e\x77\x3d\x16\x77\xc0\x9a\xce\x8b\x17\xda\xf5\x7a\x75\x07\xb4\xd8\xff\x77\x89\x2e\x7e\xae\x69\x72\x1e\x27\xea\xf9\x6c\xa6\xa9\xad\x2a\x56\x73\xa8\x45\x75\x53\xb5\x79\xd4\xda\xce\x39\xb8\x3c\x59\x15\x36\x53\xef\x31\xf7\xa0\x4f\xae\xbf\x3e\xe1\xd1\xf4\x98\xf3\x2c\x13\xb9\x3d\xc8\x1b\xb6\x16\x48\x9a\xc1\x57\x40\x93\x70\x2b\x50\x18\xb9\x76\xcb\x35\x5b\x49\xad\x68\x78\x0c\xba\x6e\xda\x3e\x72\x57\x65\x9a\x76\x8e\xdc\x61\xa5\xa4\xab\x8f\xef\xde\x2d\x7f\x9e\xbd\xfb\x78\x69\x9b\xdf\xaa\x3c\x14\x3c\xd6\xd9\x27\xae\x26\xd4\x27\x5e\xdb\xd0\x7c\x56\x58\x71\x66\xe5\x5b\x8d\x4e\xae\x32\x4d\xab\xaa\x54\x0b\xf9\x89\xca\x01\x98\x36\x2a\x6e\x9a\x7e\x63\xbd\x1d\x57\xfd\x3e\x3c\xf6\xc9\x14\xfe\x09\xdf\x3d\x63\xbe\x11\xaf\x40\x3b\x91\x34\xd9\xda\xfb\x95\xb2\x61\x4e\x58\x0e\x08\x06\xee\x5a\x0e\x4f\xad\xbb\x77\xdc\xf2\xf8\x28\x81\xf1\x5b\xc4\x56\x2e\xef\x49\x56\x07\xf6\xdd\xa7\x6a\x9c\xda\xed\xe5\x31\x5e\x69\xa0\xdc\x09\xaa\xa5\x81\x06\xb4\x17\x14\x5b\x48\xf4\x81\x9a\x3a\x15\xaa\xbb\x4e\x6c\x4e\xe6\x6d\xca\xe5\xa6\xe4\x1b\x63\xdd\xda\x8f\x2f\xe4\x2e\xd9\x6c\x91\x67\xa3\xcc\x3c\x3e\x99\x33\x09\x74\x2c\xb5\x29\x54\xc3\x27\x27\x72\x21\xa9\x4d\x72\xe3\x8b\x47\xac\xec\x1f\x6f\x5d\x73\x08\x94\x8e\x05\x91\xe0\x9b\x5c\x48\x1c\x5c\xe4\xff\xb0\x91\x10\xb8\xb1\xf0\xa2\x3e\x75\x39\xc4\x2e\x51\x14\xdd\xec\xe9\x1b\x88\xc9\x2c\xa4\x4b\xd1\x45\xcf\x11\xb5\x21\x10\x06\xc1\x2a\x1d\xde\x4f\xec\x60\xd8\x35\x41\x75\x6b\x9f\xf5\x27\x9f\x01\x66\xc1\x2d\x47\xa8\x3b\x37\xb7\xb1\x81\xde\x42\x1e\x6c\x1c\x5d\xbc\x0d\x90\x97\xdd\x5e\x1b\xdb\x2e\x7c\xa6\x13\xda\xaa\xca\x55\x3a\xa2\x4a\xf8\x7c\x6f\xa5\x70\x4b\xee\xaf\xd4\x80\xeb\xf0\x4d\x6d\x69\x99\x69\xda\xf7\xd9\x95\x52\x1d\xe3\xf2\x84\x01\xc5\x4a\xa5\xe8\x85\x43\x9d\x51\x46\xc5\x31\xf3\x65\x40\xb2\x62\xbd\x8b\xec\xee\xd3\x57\xa1\x34\xd1\x47\x55\xc7\xdb\x4f\x83\x6b\xe4\x2c\x04\x3a\xec\x46\xed\xb0\x74\xce\x55\x36\xd8\x8e\x6d\x92\xe2\x49\x56\x26\x39\xc1\xed\xc5\x2c\x1e\xd4\x30\x36\xf3\x7f\xe2\x26\xd1\xc4\x8f\xdc\x04\x2a\x19\x95\xb9\x36\xdb\x25\xed\x77\xb4\x6b\xab\x9c\xf1\x85\xb4\xa9\x6a\x76\x3b\x9e\x59\x70\x6e\xee\xfe\x8a\x09\xa0\x19\xf2\xd5\x83\xc5\x5a\x30\x25\x85\xdd\x0d\x17\xd2\x6a\x6b\x4f\x18\x5f\x69\x2b\x59\xcd\xe5\xde\xe9\x48\x27\x4e\x24\x90\x4b\x06\xa8\xe7\xc3\x7b\x5e\xcd\x0c\xa8\x9c\xf3\xff\x60\xfe\xef\x7f\xfe\xe1\xff\x07\x00\x00\xff\xff\x1b\xbe\x58\x42\x2a\xac\x04\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( @@ -93,7 +93,7 @@ func adminSwaggerJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin.swagger.json", size: 306216, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 306218, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -157,11 +157,13 @@ var _bindata = map[string]func() (*asset, error){ // directory embedded in the file by go-bindata. // For example if you run go-bindata on data/... and data contains the // following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png +// +// data/ +// foo.txt +// img/ +// a.png +// b.png +// // then AssetDir("data") would return []string{"foo.txt", "img"} // AssetDir("data/img") would return []string{"a.png", "b.png"} // AssetDir("foo.txt") and AssetDir("notexist") would return an error diff --git a/flyteidl/gen/pb-go/flyteidl/service/signal.pb.go b/flyteidl/gen/pb-go/flyteidl/service/signal.pb.go index b992897ee8..5a38bf8ab8 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/signal.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/service/signal.pb.go @@ -6,13 +6,14 @@ package service import ( context "context" fmt "fmt" - admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + math "math" + + admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" proto "github.com/golang/protobuf/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - math "math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -29,27 +30,27 @@ const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package func init() { proto.RegisterFile("flyteidl/service/signal.proto", fileDescriptor_ca211d25a1023377) } var fileDescriptor_ca211d25a1023377 = []byte{ - // 314 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0xc1, 0x4a, 0xec, 0x30, - 0x14, 0x86, 0xef, 0x5c, 0x41, 0xb0, 0x22, 0x6a, 0x10, 0x17, 0x55, 0xc1, 0xe9, 0x4a, 0x04, 0x1b, - 0xd4, 0x85, 0xe8, 0x52, 0x17, 0x6e, 0x04, 0xc1, 0x2e, 0x04, 0x37, 0x43, 0xda, 0x9e, 0x89, 0x71, - 0xd2, 0x9c, 0x9a, 0xa4, 0x33, 0x8a, 0xcc, 0xc6, 0x57, 0x70, 0xe7, 0xdb, 0xf8, 0x0c, 0xbe, 0x82, - 0x0f, 0x22, 0x4d, 0x3b, 0x45, 0x87, 0xd6, 0xed, 0xf9, 0x3f, 0xfe, 0x9e, 0xaf, 0x27, 0xde, 0xce, - 0x50, 0x3e, 0x5b, 0x10, 0xa9, 0xa4, 0x06, 0xf4, 0x58, 0x24, 0x40, 0x8d, 0xe0, 0x8a, 0xc9, 0x30, - 0xd7, 0x68, 0x91, 0xac, 0xcd, 0xe2, 0xb0, 0x8e, 0xfd, 0x6d, 0x8e, 0xc8, 0x25, 0x50, 0x96, 0x0b, - 0xca, 0x94, 0x42, 0xcb, 0xac, 0x40, 0x65, 0x2a, 0xde, 0xdf, 0x6a, 0xea, 0x58, 0x9a, 0x09, 0xf5, - 0xab, 0xec, 0xe8, 0x7d, 0xc1, 0x5b, 0x89, 0xdc, 0x20, 0xaa, 0xca, 0xc8, 0xad, 0xb7, 0x7e, 0x09, - 0xf6, 0x5a, 0x5f, 0x68, 0x60, 0x16, 0xaa, 0x8c, 0xec, 0x85, 0xcd, 0x47, 0x5d, 0x49, 0x58, 0xcd, - 0x7f, 0x80, 0x37, 0xf0, 0x58, 0x80, 0xb1, 0xfe, 0x66, 0x3b, 0x19, 0xfc, 0x23, 0x1f, 0x3d, 0x6f, - 0xf9, 0x4a, 0x18, 0x5b, 0x0d, 0x0c, 0xe9, 0xb7, 0x93, 0x25, 0x32, 0x2b, 0xf3, 0xbb, 0x91, 0xc0, - 0xbc, 0x7e, 0x7e, 0xbd, 0xfd, 0xcf, 0xc8, 0xc8, 0x69, 0x8f, 0x0f, 0x6b, 0x2f, 0x43, 0x5f, 0x26, - 0xa8, 0x47, 0x43, 0x89, 0x93, 0x01, 0x3c, 0x41, 0x52, 0x94, 0xbf, 0x62, 0x20, 0xd2, 0xd2, 0xf7, - 0x01, 0x12, 0x3b, 0xed, 0xca, 0x53, 0xcc, 0x98, 0x50, 0x9d, 0xb1, 0x62, 0x19, 0x4c, 0x89, 0xf4, - 0x96, 0x22, 0xa8, 0x0d, 0xc8, 0x6e, 0xfb, 0x76, 0x11, 0x34, 0xfb, 0xf7, 0xff, 0x20, 0x4c, 0x8e, - 0xca, 0x40, 0xe0, 0x3b, 0x8d, 0x8d, 0x60, 0x75, 0x4e, 0xe3, 0xac, 0xb7, 0x7f, 0x7e, 0x7a, 0x77, - 0xc2, 0x85, 0xbd, 0x2f, 0xe2, 0x30, 0xc1, 0x8c, 0xba, 0x2a, 0xd4, 0x9c, 0x36, 0xf7, 0xe4, 0xa0, - 0x68, 0x1e, 0x1f, 0x70, 0xa4, 0xf3, 0x2f, 0x26, 0x5e, 0x74, 0xe7, 0x3d, 0xfe, 0x0e, 0x00, 0x00, - 0xff, 0xff, 0x99, 0xac, 0x92, 0x50, 0x4c, 0x02, 0x00, 0x00, + // 317 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0xc1, 0x4a, 0xf4, 0x30, + 0x14, 0x85, 0xff, 0xf9, 0x05, 0xc1, 0x8a, 0xa8, 0x41, 0x5c, 0x54, 0x05, 0xa7, 0x2b, 0x11, 0x6c, + 0x50, 0x77, 0x82, 0x08, 0xba, 0x70, 0x23, 0x08, 0x76, 0x21, 0xb8, 0x19, 0x32, 0xed, 0x9d, 0x18, + 0x27, 0xcd, 0xad, 0x49, 0x66, 0x46, 0x91, 0xd9, 0xf8, 0x0a, 0xee, 0x7c, 0x1b, 0x9f, 0xc1, 0x57, + 0xf0, 0x41, 0xa4, 0x49, 0xa7, 0xe8, 0xd0, 0xba, 0x0b, 0xe7, 0x7c, 0x9c, 0xdc, 0x93, 0x9b, 0x60, + 0x67, 0x20, 0x9f, 0x2d, 0x88, 0x4c, 0x52, 0x03, 0x7a, 0x2c, 0x52, 0xa0, 0x46, 0x70, 0xc5, 0x64, + 0x5c, 0x68, 0xb4, 0x48, 0xd6, 0x66, 0x76, 0x5c, 0xd9, 0xe1, 0x36, 0x47, 0xe4, 0x12, 0x28, 0x2b, + 0x04, 0x65, 0x4a, 0xa1, 0x65, 0x56, 0xa0, 0x32, 0x9e, 0x0f, 0xb7, 0xea, 0x38, 0x96, 0xe5, 0x42, + 0xfd, 0x0a, 0x3b, 0x7a, 0x5f, 0x08, 0x56, 0x12, 0x27, 0x24, 0x3e, 0x8c, 0xdc, 0x06, 0xeb, 0x97, + 0x60, 0xaf, 0xf5, 0x85, 0x06, 0x66, 0xc1, 0x7b, 0x64, 0x2f, 0xae, 0x2f, 0x75, 0x21, 0xb1, 0xd7, + 0x7f, 0x80, 0x37, 0xf0, 0x38, 0x02, 0x63, 0xc3, 0xcd, 0x66, 0x32, 0xfa, 0x47, 0x3e, 0x3a, 0xc1, + 0xf2, 0x95, 0x30, 0xd6, 0x0b, 0x86, 0x74, 0x9b, 0xc9, 0x12, 0x99, 0x85, 0x85, 0xed, 0x48, 0x64, + 0x5e, 0x3f, 0xbf, 0xde, 0xfe, 0xe7, 0x64, 0xe8, 0x6a, 0x8f, 0x0f, 0xab, 0x5e, 0x86, 0xbe, 0x4c, + 0x50, 0x0f, 0x07, 0x12, 0x27, 0x3d, 0x78, 0x82, 0x74, 0x54, 0x3e, 0x45, 0x4f, 0x64, 0x65, 0xdf, + 0x07, 0x48, 0xed, 0xb4, 0xcd, 0xcf, 0x30, 0x67, 0x42, 0xb5, 0xda, 0x8a, 0xe5, 0x30, 0x25, 0x32, + 0x58, 0x4a, 0xa0, 0x6a, 0x40, 0x76, 0x9b, 0xa7, 0x4b, 0xa0, 0x9e, 0xbf, 0xfb, 0x07, 0x61, 0x0a, + 0x54, 0x06, 0xa2, 0xd0, 0xd5, 0xd8, 0x88, 0x56, 0xe7, 0x6a, 0x9c, 0x74, 0xf6, 0xcf, 0xcf, 0xee, + 0x4e, 0xb9, 0xb0, 0xf7, 0xa3, 0x7e, 0x9c, 0x62, 0x4e, 0x5d, 0x14, 0x6a, 0xee, 0x0f, 0xb4, 0xde, + 0x2a, 0x07, 0x45, 0x8b, 0xfe, 0x01, 0x47, 0x3a, 0xff, 0x6f, 0xfa, 0x8b, 0x6e, 0xc9, 0xc7, 0xdf, + 0x01, 0x00, 0x00, 0xff, 0xff, 0xa0, 0x03, 0x65, 0xd6, 0x52, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/flyteidl/gen/pb-go/flyteidl/service/signal.pb.gw.go b/flyteidl/gen/pb-go/flyteidl/service/signal.pb.gw.go index 8a6b4895b1..43397bb36e 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/signal.pb.gw.go +++ b/flyteidl/gen/pb-go/flyteidl/service/signal.pb.gw.go @@ -13,7 +13,7 @@ import ( "io" "net/http" - "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin" "github.com/golang/protobuf/proto" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/grpc-ecosystem/grpc-gateway/utilities" diff --git a/flyteidl/gen/pb-java/datacatalog/Datacatalog.java b/flyteidl/gen/pb-java/datacatalog/Datacatalog.java index a10dd9b2a4..6a46ef05db 100644 --- a/flyteidl/gen/pb-java/datacatalog/Datacatalog.java +++ b/flyteidl/gen/pb-java/datacatalog/Datacatalog.java @@ -13335,7 +13335,7 @@ public interface GetOrExtendReservationRequestOrBuilder extends } /** *
-   * Try to acquire or extend an artifact reservation. If an active reservation exists, retreive that instance.
+   * Try to acquire or extend an artifact reservation. If an active reservation exists, retrieve that instance.
    * 
* * Protobuf type {@code datacatalog.GetOrExtendReservationRequest} @@ -13737,7 +13737,7 @@ protected Builder newBuilderForType( } /** *
-     * Try to acquire or extend an artifact reservation. If an active reservation exists, retreive that instance.
+     * Try to acquire or extend an artifact reservation. If an active reservation exists, retrieve that instance.
      * 
* * Protobuf type {@code datacatalog.GetOrExtendReservationRequest} @@ -33679,8 +33679,8 @@ public datacatalog.Datacatalog.PaginationOptions getDefaultInstanceForType() { "servationResponse\022e\n\022ReleaseReservation\022" + "&.datacatalog.ReleaseReservationRequest\032" + "\'.datacatalog.ReleaseReservationResponse" + - "B=Z;github.com/flyteorg/flyteidl/gen/pb-" + - "go/flyteidl/datacatalogb\006proto3" + "BCZAgithub.com/flyteorg/flyte/flyteidl/g" + + "en/pb-go/flyteidl/datacatalogb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/Agent.java b/flyteidl/gen/pb-java/flyteidl/admin/Agent.java index cefc777009..b0d9d2574e 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/Agent.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/Agent.java @@ -7430,9 +7430,9 @@ public flyteidl.admin.Agent.DeleteTaskResponse getDefaultInstanceForType() { "ask_type\030\001 \001(\t\022\025\n\rresource_meta\030\002 \001(\014\"\024\n" + "\022DeleteTaskResponse*^\n\005State\022\025\n\021RETRYABL" + "E_FAILURE\020\000\022\025\n\021PERMANENT_FAILURE\020\001\022\013\n\007PE" + - "NDING\020\002\022\013\n\007RUNNING\020\003\022\r\n\tSUCCEEDED\020\004B7Z5g" + - "ithub.com/flyteorg/flyteidl/gen/pb-go/fl" + - "yteidl/adminb\006proto3" + "NDING\020\002\022\013\n\007RUNNING\020\003\022\r\n\tSUCCEEDED\020\004B=Z;g" + + "ithub.com/flyteorg/flyte/flyteidl/gen/pb" + + "-go/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/ClusterAssignmentOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/ClusterAssignmentOuterClass.java index d36dcfdc8e..5557da7b50 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/ClusterAssignmentOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/ClusterAssignmentOuterClass.java @@ -587,9 +587,9 @@ public flyteidl.admin.ClusterAssignmentOuterClass.ClusterAssignment getDefaultIn java.lang.String[] descriptorData = { "\n\'flyteidl/admin/cluster_assignment.prot" + "o\022\016flyteidl.admin\":\n\021ClusterAssignment\022\031" + - "\n\021cluster_pool_name\030\003 \001(\tJ\004\010\001\020\002J\004\010\002\020\003B7Z" + - "5github.com/flyteorg/flyteidl/gen/pb-go/" + - "flyteidl/adminb\006proto3" + "\n\021cluster_pool_name\030\003 \001(\tJ\004\010\001\020\002J\004\010\002\020\003B=Z" + + ";github.com/flyteorg/flyte/flyteidl/gen/" + + "pb-go/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/Common.java b/flyteidl/gen/pb-java/flyteidl/admin/Common.java index f236673403..4120abc852 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/Common.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/Common.java @@ -22686,8 +22686,9 @@ public flyteidl.admin.Common.FlyteURLs getDefaultInstanceForType() { "\001 \001(\t\022\017\n\007outputs\030\002 \001(\t\022\014\n\004deck\030\003 \001(\t*\\\n\020" + "NamedEntityState\022\027\n\023NAMED_ENTITY_ACTIVE\020" + "\000\022\031\n\025NAMED_ENTITY_ARCHIVED\020\001\022\024\n\020SYSTEM_G" + - "ENERATED\020\002B7Z5github.com/flyteorg/flytei" + - "dl/gen/pb-go/flyteidl/adminb\006proto3" + "ENERATED\020\002B=Z;github.com/flyteorg/flyte/" + + "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/flyteidl/gen/pb-java/flyteidl/admin/DescriptionEntityOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/DescriptionEntityOuterClass.java index f70cf0204d..44ab6d1f61 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/DescriptionEntityOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/DescriptionEntityOuterClass.java @@ -6243,9 +6243,9 @@ public flyteidl.admin.DescriptionEntityOuterClass.DescriptionEntityListRequest g "n.Sort*\215\001\n\021DescriptionFormat\022\036\n\032DESCRIPT" + "ION_FORMAT_UNKNOWN\020\000\022\037\n\033DESCRIPTION_FORM" + "AT_MARKDOWN\020\001\022\033\n\027DESCRIPTION_FORMAT_HTML" + - "\020\002\022\032\n\026DESCRIPTION_FORMAT_RST\020\003B7Z5github" + - ".com/flyteorg/flyteidl/gen/pb-go/flyteid" + - "l/adminb\006proto3" + "\020\002\022\032\n\026DESCRIPTION_FORMAT_RST\020\003B=Z;github" + + ".com/flyteorg/flyte/flyteidl/gen/pb-go/f" + + "lyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/Event.java b/flyteidl/gen/pb-java/flyteidl/admin/Event.java index 2cf63d6c83..d698a0538f 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/Event.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/Event.java @@ -6008,9 +6008,9 @@ public flyteidl.admin.Event.TaskExecutionEventResponse getDefaultInstanceForType "ventResponse\"b\n\031TaskExecutionEventReques" + "t\022\022\n\nrequest_id\030\001 \001(\t\0221\n\005event\030\002 \001(\0132\".f" + "lyteidl.event.TaskExecutionEvent\"\034\n\032Task" + - "ExecutionEventResponseB7Z5github.com/fly" + - "teorg/flyteidl/gen/pb-go/flyteidl/adminb" + - "\006proto3" + "ExecutionEventResponseB=Z;github.com/fly" + + "teorg/flyte/flyteidl/gen/pb-go/flyteidl/" + + "adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/ExecutionOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/ExecutionOuterClass.java index 4ceddc6412..a911efd93e 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/ExecutionOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/ExecutionOuterClass.java @@ -28547,9 +28547,9 @@ public flyteidl.admin.ExecutionOuterClass.WorkflowExecutionGetMetricsResponse ge "\n\005depth\030\002 \001(\005\"H\n#WorkflowExecutionGetMet" + "ricsResponse\022!\n\004span\030\001 \001(\0132\023.flyteidl.co" + "re.Span*>\n\016ExecutionState\022\024\n\020EXECUTION_A" + - "CTIVE\020\000\022\026\n\022EXECUTION_ARCHIVED\020\001B7Z5githu" + - "b.com/flyteorg/flyteidl/gen/pb-go/flytei" + - "dl/adminb\006proto3" + "CTIVE\020\000\022\026\n\022EXECUTION_ARCHIVED\020\001B=Z;githu" + + "b.com/flyteorg/flyte/flyteidl/gen/pb-go/" + + "flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/LaunchPlanOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/LaunchPlanOuterClass.java index 826aa2eab1..8642e176d2 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/LaunchPlanOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/LaunchPlanOuterClass.java @@ -4462,7 +4462,7 @@ public interface LaunchPlanSpecOrBuilder extends /** *
      * Input values to be passed for the execution.
-     * These can be overriden when an execution is created with this launch plan.
+     * These can be overridden when an execution is created with this launch plan.
      * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -4471,7 +4471,7 @@ public interface LaunchPlanSpecOrBuilder extends /** *
      * Input values to be passed for the execution.
-     * These can be overriden when an execution is created with this launch plan.
+     * These can be overridden when an execution is created with this launch plan.
      * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -4480,7 +4480,7 @@ public interface LaunchPlanSpecOrBuilder extends /** *
      * Input values to be passed for the execution.
-     * These can be overriden when an execution is created with this launch plan.
+     * These can be overridden when an execution is created with this launch plan.
      * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -4490,7 +4490,7 @@ public interface LaunchPlanSpecOrBuilder extends /** *
      * Fixed, non-overridable inputs for the Launch Plan.
-     * These can not be overriden when an execution is created with this launch plan.
+     * These can not be overridden when an execution is created with this launch plan.
      * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -4499,7 +4499,7 @@ public interface LaunchPlanSpecOrBuilder extends /** *
      * Fixed, non-overridable inputs for the Launch Plan.
-     * These can not be overriden when an execution is created with this launch plan.
+     * These can not be overridden when an execution is created with this launch plan.
      * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -4508,7 +4508,7 @@ public interface LaunchPlanSpecOrBuilder extends /** *
      * Fixed, non-overridable inputs for the Launch Plan.
-     * These can not be overriden when an execution is created with this launch plan.
+     * These can not be overridden when an execution is created with this launch plan.
      * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -5109,7 +5109,7 @@ public flyteidl.admin.LaunchPlanOuterClass.LaunchPlanMetadataOrBuilder getEntity /** *
      * Input values to be passed for the execution.
-     * These can be overriden when an execution is created with this launch plan.
+     * These can be overridden when an execution is created with this launch plan.
      * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -5120,7 +5120,7 @@ public boolean hasDefaultInputs() { /** *
      * Input values to be passed for the execution.
-     * These can be overriden when an execution is created with this launch plan.
+     * These can be overridden when an execution is created with this launch plan.
      * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -5131,7 +5131,7 @@ public flyteidl.core.Interface.ParameterMap getDefaultInputs() { /** *
      * Input values to be passed for the execution.
-     * These can be overriden when an execution is created with this launch plan.
+     * These can be overridden when an execution is created with this launch plan.
      * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -5145,7 +5145,7 @@ public flyteidl.core.Interface.ParameterMapOrBuilder getDefaultInputsOrBuilder() /** *
      * Fixed, non-overridable inputs for the Launch Plan.
-     * These can not be overriden when an execution is created with this launch plan.
+     * These can not be overridden when an execution is created with this launch plan.
      * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -5156,7 +5156,7 @@ public boolean hasFixedInputs() { /** *
      * Fixed, non-overridable inputs for the Launch Plan.
-     * These can not be overriden when an execution is created with this launch plan.
+     * These can not be overridden when an execution is created with this launch plan.
      * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -5167,7 +5167,7 @@ public flyteidl.core.Literals.LiteralMap getFixedInputs() { /** *
      * Fixed, non-overridable inputs for the Launch Plan.
-     * These can not be overriden when an execution is created with this launch plan.
+     * These can not be overridden when an execution is created with this launch plan.
      * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -6585,7 +6585,7 @@ public flyteidl.admin.LaunchPlanOuterClass.LaunchPlanMetadataOrBuilder getEntity /** *
        * Input values to be passed for the execution.
-       * These can be overriden when an execution is created with this launch plan.
+       * These can be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -6596,7 +6596,7 @@ public boolean hasDefaultInputs() { /** *
        * Input values to be passed for the execution.
-       * These can be overriden when an execution is created with this launch plan.
+       * These can be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -6611,7 +6611,7 @@ public flyteidl.core.Interface.ParameterMap getDefaultInputs() { /** *
        * Input values to be passed for the execution.
-       * These can be overriden when an execution is created with this launch plan.
+       * These can be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -6632,7 +6632,7 @@ public Builder setDefaultInputs(flyteidl.core.Interface.ParameterMap value) { /** *
        * Input values to be passed for the execution.
-       * These can be overriden when an execution is created with this launch plan.
+       * These can be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -6651,7 +6651,7 @@ public Builder setDefaultInputs( /** *
        * Input values to be passed for the execution.
-       * These can be overriden when an execution is created with this launch plan.
+       * These can be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -6674,7 +6674,7 @@ public Builder mergeDefaultInputs(flyteidl.core.Interface.ParameterMap value) { /** *
        * Input values to be passed for the execution.
-       * These can be overriden when an execution is created with this launch plan.
+       * These can be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -6693,7 +6693,7 @@ public Builder clearDefaultInputs() { /** *
        * Input values to be passed for the execution.
-       * These can be overriden when an execution is created with this launch plan.
+       * These can be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -6706,7 +6706,7 @@ public flyteidl.core.Interface.ParameterMap.Builder getDefaultInputsBuilder() { /** *
        * Input values to be passed for the execution.
-       * These can be overriden when an execution is created with this launch plan.
+       * These can be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -6722,7 +6722,7 @@ public flyteidl.core.Interface.ParameterMapOrBuilder getDefaultInputsOrBuilder() /** *
        * Input values to be passed for the execution.
-       * These can be overriden when an execution is created with this launch plan.
+       * These can be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.ParameterMap default_inputs = 3; @@ -6747,7 +6747,7 @@ public flyteidl.core.Interface.ParameterMapOrBuilder getDefaultInputsOrBuilder() /** *
        * Fixed, non-overridable inputs for the Launch Plan.
-       * These can not be overriden when an execution is created with this launch plan.
+       * These can not be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -6758,7 +6758,7 @@ public boolean hasFixedInputs() { /** *
        * Fixed, non-overridable inputs for the Launch Plan.
-       * These can not be overriden when an execution is created with this launch plan.
+       * These can not be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -6773,7 +6773,7 @@ public flyteidl.core.Literals.LiteralMap getFixedInputs() { /** *
        * Fixed, non-overridable inputs for the Launch Plan.
-       * These can not be overriden when an execution is created with this launch plan.
+       * These can not be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -6794,7 +6794,7 @@ public Builder setFixedInputs(flyteidl.core.Literals.LiteralMap value) { /** *
        * Fixed, non-overridable inputs for the Launch Plan.
-       * These can not be overriden when an execution is created with this launch plan.
+       * These can not be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -6813,7 +6813,7 @@ public Builder setFixedInputs( /** *
        * Fixed, non-overridable inputs for the Launch Plan.
-       * These can not be overriden when an execution is created with this launch plan.
+       * These can not be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -6836,7 +6836,7 @@ public Builder mergeFixedInputs(flyteidl.core.Literals.LiteralMap value) { /** *
        * Fixed, non-overridable inputs for the Launch Plan.
-       * These can not be overriden when an execution is created with this launch plan.
+       * These can not be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -6855,7 +6855,7 @@ public Builder clearFixedInputs() { /** *
        * Fixed, non-overridable inputs for the Launch Plan.
-       * These can not be overriden when an execution is created with this launch plan.
+       * These can not be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -6868,7 +6868,7 @@ public flyteidl.core.Literals.LiteralMap.Builder getFixedInputsBuilder() { /** *
        * Fixed, non-overridable inputs for the Launch Plan.
-       * These can not be overriden when an execution is created with this launch plan.
+       * These can not be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -6884,7 +6884,7 @@ public flyteidl.core.Literals.LiteralMapOrBuilder getFixedInputsOrBuilder() { /** *
        * Fixed, non-overridable inputs for the Launch Plan.
-       * These can not be overriden when an execution is created with this launch plan.
+       * These can not be overridden when an execution is created with this launch plan.
        * 
* * .flyteidl.core.LiteralMap fixed_inputs = 4; @@ -14615,8 +14615,8 @@ public flyteidl.admin.LaunchPlanOuterClass.ActiveLaunchPlanListRequest getDefaul "main\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\010INACTIVE\020\000\022\n\n\006ACTI" + - "VE\020\001B7Z5github.com/flyteorg/flyteidl/gen" + - "/pb-go/flyteidl/adminb\006proto3" + "VE\020\001B=Z;github.com/flyteorg/flyte/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/flyteidl/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java index 398761528a..0f4b473a21 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/MatchableResourceOuterClass.java @@ -13141,9 +13141,9 @@ public flyteidl.admin.MatchableResourceOuterClass.ListMatchableAttributesRespons "UEUE\020\002\022\033\n\027EXECUTION_CLUSTER_LABEL\020\003\022$\n Q" + "UALITY_OF_SERVICE_SPECIFICATION\020\004\022\023\n\017PLU" + "GIN_OVERRIDE\020\005\022\035\n\031WORKFLOW_EXECUTION_CON" + - "FIG\020\006\022\026\n\022CLUSTER_ASSIGNMENT\020\007B7Z5github." + - "com/flyteorg/flyteidl/gen/pb-go/flyteidl" + - "/adminb\006proto3" + "FIG\020\006\022\026\n\022CLUSTER_ASSIGNMENT\020\007B=Z;github." + + "com/flyteorg/flyte/flyteidl/gen/pb-go/fl" + + "yteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/NodeExecutionOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/NodeExecutionOuterClass.java index 7fde076944..4273fdce1e 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/NodeExecutionOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/NodeExecutionOuterClass.java @@ -15756,9 +15756,9 @@ public flyteidl.admin.NodeExecutionOuterClass.NodeExecutionGetDataResponse getDe "puts\030\004 \001(\0132\031.flyteidl.core.LiteralMap\022E\n" + "\020dynamic_workflow\030\020 \001(\0132+.flyteidl.admin" + ".DynamicWorkflowNodeMetadata\022-\n\nflyte_ur" + - "ls\030\021 \001(\0132\031.flyteidl.admin.FlyteURLsB7Z5g" + - "ithub.com/flyteorg/flyteidl/gen/pb-go/fl" + - "yteidl/adminb\006proto3" + "ls\030\021 \001(\0132\031.flyteidl.admin.FlyteURLsB=Z;g" + + "ithub.com/flyteorg/flyte/flyteidl/gen/pb" + + "-go/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/Notification.java b/flyteidl/gen/pb-java/flyteidl/admin/Notification.java index 934af41b89..4d5a1f2b35 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/Notification.java +++ b/flyteidl/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(\tB7Z5githu" + - "b.com/flyteorg/flyteidl/gen/pb-go/flytei" + - "dl/adminb\006proto3" + "ubject_line\030\003 \001(\t\022\014\n\004body\030\004 \001(\tB=Z;githu" + + "b.com/flyteorg/flyte/flyteidl/gen/pb-go/" + + "flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/ProjectAttributesOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/ProjectAttributesOuterClass.java index b01c6ccfae..4af2acdb48 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/ProjectAttributesOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/ProjectAttributesOuterClass.java @@ -4479,9 +4479,9 @@ public flyteidl.admin.ProjectAttributesOuterClass.ProjectAttributesDeleteRespons "\n\036ProjectAttributesDeleteRequest\022\017\n\007proj" + "ect\030\001 \001(\t\0228\n\rresource_type\030\002 \001(\0162!.flyte" + "idl.admin.MatchableResource\"!\n\037ProjectAt" + - "tributesDeleteResponseB7Z5github.com/fly" + - "teorg/flyteidl/gen/pb-go/flyteidl/adminb" + - "\006proto3" + "tributesDeleteResponseB=Z;github.com/fly" + + "teorg/flyte/flyteidl/gen/pb-go/flyteidl/" + + "adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/ProjectDomainAttributesOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/ProjectDomainAttributesOuterClass.java index 063fdd4d27..d3512369cd 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/ProjectDomainAttributesOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/ProjectDomainAttributesOuterClass.java @@ -5019,8 +5019,9 @@ 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" + - "leteResponseB7Z5github.com/flyteorg/flyt" + - "eidl/gen/pb-go/flyteidl/adminb\006proto3" + "leteResponseB=Z;github.com/flyteorg/flyt" + + "e/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/flyteidl/gen/pb-java/flyteidl/admin/ProjectOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/ProjectOuterClass.java index 8b464a4f94..518b844a41 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/ProjectOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/ProjectOuterClass.java @@ -6265,9 +6265,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\025ProjectUpdateResponseB7Z5github.com" + - "/flyteorg/flyteidl/gen/pb-go/flyteidl/ad" + - "minb\006proto3" + "e\"\027\n\025ProjectUpdateResponseB=Z;github.com" + + "/flyteorg/flyte/flyteidl/gen/pb-go/flyte" + + "idl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/ScheduleOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/ScheduleOuterClass.java index 82eaac0a1e..d0ab80c575 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/ScheduleOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/ScheduleOuterClass.java @@ -2832,8 +2832,9 @@ 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\002B7Z5github.com/flyteorg/fl" + - "yteidl/gen/pb-go/flyteidl/adminb\006proto3" + "OUR\020\001\022\007\n\003DAY\020\002B=Z;github.com/flyteorg/fl" + + "yte/flyteidl/gen/pb-go/flyteidl/adminb\006p" + + "roto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/SignalOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/SignalOuterClass.java index 490119af7f..06cb554d90 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/SignalOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/SignalOuterClass.java @@ -70,7 +70,7 @@ public interface SignalGetOrCreateRequestOrBuilder extends } /** *
-   * SignalGetOrCreateRequest represents a request structure to retrive or create a signal.
+   * SignalGetOrCreateRequest represents a request structure to retrieve or create a signal.
    * See :ref:`ref_flyteidl.admin.Signal` for more details
    * 
* @@ -414,7 +414,7 @@ protected Builder newBuilderForType( } /** *
-     * SignalGetOrCreateRequest represents a request structure to retrive or create a signal.
+     * SignalGetOrCreateRequest represents a request structure to retrieve or create a signal.
      * See :ref:`ref_flyteidl.admin.Signal` for more details
      * 
* @@ -6062,9 +6062,9 @@ public flyteidl.admin.SignalOuterClass.Signal getDefaultInstanceForType() { "ignalSetResponse\"\206\001\n\006Signal\022+\n\002id\030\001 \001(\0132" + "\037.flyteidl.core.SignalIdentifier\022(\n\004type" + "\030\002 \001(\0132\032.flyteidl.core.LiteralType\022%\n\005va" + - "lue\030\003 \001(\0132\026.flyteidl.core.LiteralB7Z5git" + - "hub.com/flyteorg/flyteidl/gen/pb-go/flyt" + - "eidl/adminb\006proto3" + "lue\030\003 \001(\0132\026.flyteidl.core.LiteralB=Z;git" + + "hub.com/flyteorg/flyte/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/flyteidl/gen/pb-java/flyteidl/admin/TaskExecutionOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/TaskExecutionOuterClass.java index 7094d57d6c..9fe3947f83 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/TaskExecutionOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/TaskExecutionOuterClass.java @@ -12021,8 +12021,9 @@ public flyteidl.admin.TaskExecutionOuterClass.TaskExecutionGetDataResponse getDe "ts\030\003 \001(\0132\031.flyteidl.core.LiteralMap\022/\n\014f" + "ull_outputs\030\004 \001(\0132\031.flyteidl.core.Litera" + "lMap\022-\n\nflyte_urls\030\005 \001(\0132\031.flyteidl.admi" + - "n.FlyteURLsB7Z5github.com/flyteorg/flyte" + - "idl/gen/pb-go/flyteidl/adminb\006proto3" + "n.FlyteURLsB=Z;github.com/flyteorg/flyte" + + "/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/flyteidl/gen/pb-java/flyteidl/admin/TaskOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/TaskOuterClass.java index dbdefaa61d..f238912262 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/TaskOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/TaskOuterClass.java @@ -5501,9 +5501,9 @@ public flyteidl.admin.TaskOuterClass.TaskClosure getDefaultInstanceForType() { "idl.admin.DescriptionEntity\"q\n\013TaskClosu" + "re\0222\n\rcompiled_task\030\001 \001(\0132\033.flyteidl.cor" + "e.CompiledTask\022.\n\ncreated_at\030\002 \001(\0132\032.goo" + - "gle.protobuf.TimestampB7Z5github.com/fly" + - "teorg/flyteidl/gen/pb-go/flyteidl/adminb" + - "\006proto3" + "gle.protobuf.TimestampB=Z;github.com/fly" + + "teorg/flyte/flyteidl/gen/pb-go/flyteidl/" + + "adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/VersionOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/VersionOuterClass.java index eeba2f4d2d..c641640bb6 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/VersionOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/VersionOuterClass.java @@ -2090,8 +2090,8 @@ public flyteidl.admin.VersionOuterClass.GetVersionRequest getDefaultInstanceForT "plane_version\030\001 \001(\0132\027.flyteidl.admin.Ver" + "sion\"<\n\007Version\022\r\n\005Build\030\001 \001(\t\022\017\n\007Versio" + "n\030\002 \001(\t\022\021\n\tBuildTime\030\003 \001(\t\"\023\n\021GetVersion" + - "RequestB7Z5github.com/flyteorg/flyteidl/" + - "gen/pb-go/flyteidl/adminb\006proto3" + "RequestB=Z;github.com/flyteorg/flyte/fly" + + "teidl/gen/pb-go/flyteidl/adminb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/WorkflowAttributesOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/WorkflowAttributesOuterClass.java index 707e61bcdc..21be6d20a5 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/WorkflowAttributesOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/WorkflowAttributesOuterClass.java @@ -5494,9 +5494,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" + - "tesDeleteResponseB7Z5github.com/flyteorg" + - "/flyteidl/gen/pb-go/flyteidl/adminb\006prot" + - "o3" + "tesDeleteResponseB=Z;github.com/flyteorg" + + "/flyte/flyteidl/gen/pb-go/flyteidl/admin" + + "b\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/admin/WorkflowOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/WorkflowOuterClass.java index c7b891b02b..9def14e8f1 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/WorkflowOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/WorkflowOuterClass.java @@ -7244,7 +7244,7 @@ public interface CreateWorkflowFailureReasonOrBuilder extends } /** *
-   * When a CreateWorkflowRequest failes due to matching id
+   * When a CreateWorkflowRequest fails due to matching id
    * 
* * Protobuf type {@code flyteidl.admin.CreateWorkflowFailureReason} @@ -7620,7 +7620,7 @@ protected Builder newBuilderForType( } /** *
-     * When a CreateWorkflowRequest failes due to matching id
+     * When a CreateWorkflowRequest fails due to matching id
      * 
* * Protobuf type {@code flyteidl.admin.CreateWorkflowFailureReason} @@ -8217,8 +8217,9 @@ public flyteidl.admin.WorkflowOuterClass.CreateWorkflowFailureReason getDefaultI "ErrorExistsDifferentStructureH\000\022[\n\032exist" + "s_identical_structure\030\002 \001(\01325.flyteidl.a" + "dmin.WorkflowErrorExistsIdenticalStructu" + - "reH\000B\010\n\006reasonB7Z5github.com/flyteorg/fl" + - "yteidl/gen/pb-go/flyteidl/adminb\006proto3" + "reH\000B\010\n\006reasonB=Z;github.com/flyteorg/fl" + + "yte/flyteidl/gen/pb-go/flyteidl/adminb\006p" + + "roto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/core/Catalog.java b/flyteidl/gen/pb-java/flyteidl/core/Catalog.java index 103123580b..61f9bc344a 100644 --- a/flyteidl/gen/pb-java/flyteidl/core/Catalog.java +++ b/flyteidl/gen/pb-java/flyteidl/core/Catalog.java @@ -2868,9 +2868,9 @@ public flyteidl.core.Catalog.CatalogReservation getDefaultInstanceForType() { "logCacheStatus\022\022\n\016CACHE_DISABLED\020\000\022\016\n\nCA" + "CHE_MISS\020\001\022\r\n\tCACHE_HIT\020\002\022\023\n\017CACHE_POPUL" + "ATED\020\003\022\030\n\024CACHE_LOOKUP_FAILURE\020\004\022\025\n\021CACH" + - "E_PUT_FAILURE\020\005\022\021\n\rCACHE_SKIPPED\020\006B6Z4gi" + - "thub.com/flyteorg/flyteidl/gen/pb-go/fly" + - "teidl/coreb\006proto3" + "E_PUT_FAILURE\020\005\022\021\n\rCACHE_SKIPPED\020\006B\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(\tB9Z7github.co" + - "m/flyteorg/flyteidl/gen/pb-go/flyteidl/p" + - "luginsb\006proto3" + ".Phase\022\023\n\013workflow_id\030\003 \001(\tB?Z=github.co" + + "m/flyteorg/flyte/flyteidl/gen/pb-go/flyt" + + "eidl/pluginsb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Common.java b/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Common.java index a260c723ac..bcd37c0837 100644 --- a/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Common.java +++ b/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Common.java @@ -1046,8 +1046,8 @@ public flyteidl.plugins.kubeflow.Common.RunPolicy getDefaultInstanceForType() { "RESTART_POLICY_ALWAYS\020\002*`\n\016CleanPodPolic" + "y\022\030\n\024CLEANPOD_POLICY_NONE\020\000\022\033\n\027CLEANPOD_" + "POLICY_RUNNING\020\001\022\027\n\023CLEANPOD_POLICY_ALL\020" + - "\002B9Z7github.com/flyteorg/flyteidl/gen/pb" + - "-go/flyteidl/pluginsb\006proto3" + "\002B?Z=github.com/flyteorg/flyte/flyteidl/" + + "gen/pb-go/flyteidl/pluginsb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Mpi.java b/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Mpi.java index f467a15e08..bb57a2e620 100644 --- a/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Mpi.java +++ b/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Mpi.java @@ -2663,8 +2663,9 @@ public flyteidl.plugins.kubeflow.Mpi.DistributedMPITrainingReplicaSpec getDefaul "(\t\022+\n\tresources\030\003 \001(\0132\030.flyteidl.core.Re" + "sources\022@\n\016restart_policy\030\004 \001(\0162(.flytei" + "dl.plugins.kubeflow.RestartPolicy\022\017\n\007com" + - "mand\030\005 \003(\tB9Z7github.com/flyteorg/flytei" + - "dl/gen/pb-go/flyteidl/pluginsb\006proto3" + "mand\030\005 \003(\tB?Z=github.com/flyteorg/flyte/" + + "flyteidl/gen/pb-go/flyteidl/pluginsb\006pro" + + "to3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Pytorch.java b/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Pytorch.java index fa8d3d113b..dfb6c5769f 100644 --- a/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Pytorch.java +++ b/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Pytorch.java @@ -3381,9 +3381,9 @@ public flyteidl.plugins.kubeflow.Pytorch.DistributedPyTorchTrainingReplicaSpec g "icaSpec\022\020\n\010replicas\030\001 \001(\005\022\r\n\005image\030\002 \001(\t" + "\022+\n\tresources\030\003 \001(\0132\030.flyteidl.core.Reso" + "urces\022@\n\016restart_policy\030\004 \001(\0162(.flyteidl" + - ".plugins.kubeflow.RestartPolicyB9Z7githu" + - "b.com/flyteorg/flyteidl/gen/pb-go/flytei" + - "dl/pluginsb\006proto3" + ".plugins.kubeflow.RestartPolicyB?Z=githu" + + "b.com/flyteorg/flyte/flyteidl/gen/pb-go/" + + "flyteidl/pluginsb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Tensorflow.java b/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Tensorflow.java index 3e9c0a5cfc..ec763705c8 100644 --- a/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Tensorflow.java +++ b/flyteidl/gen/pb-java/flyteidl/plugins/kubeflow/Tensorflow.java @@ -2567,9 +2567,9 @@ public flyteidl.plugins.kubeflow.Tensorflow.DistributedTensorflowTrainingReplica "replicas\030\001 \001(\005\022\r\n\005image\030\002 \001(\t\022+\n\tresourc" + "es\030\003 \001(\0132\030.flyteidl.core.Resources\022@\n\016re" + "start_policy\030\004 \001(\0162(.flyteidl.plugins.ku" + - "beflow.RestartPolicyB9Z7github.com/flyte" + - "org/flyteidl/gen/pb-go/flyteidl/pluginsb" + - "\006proto3" + "beflow.RestartPolicyB?Z=github.com/flyte" + + "org/flyte/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/flyteidl/gen/pb-java/flyteidl/plugins/sagemaker/HyperparameterTuningJobOuterClass.java b/flyteidl/gen/pb-java/flyteidl/plugins/sagemaker/HyperparameterTuningJobOuterClass.java index 4c30a86145..6c91927e51 100644 --- a/flyteidl/gen/pb-java/flyteidl/plugins/sagemaker/HyperparameterTuningJobOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/plugins/sagemaker/HyperparameterTuningJobOuterClass.java @@ -4435,8 +4435,9 @@ public flyteidl.plugins.sagemaker.HyperparameterTuningJobOuterClass.Hyperparamet "arameterTuningObjective\022h\n training_job_" + "early_stopping_type\030\004 \001(\0162>.flyteidl.plu" + "gins.sagemaker.TrainingJobEarlyStoppingT" + - "ype.ValueB9Z7github.com/flyteorg/flyteid" + - "l/gen/pb-go/flyteidl/pluginsb\006proto3" + "ype.ValueB?Z=github.com/flyteorg/flyte/f" + + "lyteidl/gen/pb-go/flyteidl/pluginsb\006prot" + + "o3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/plugins/sagemaker/ParameterRangesOuterClass.java b/flyteidl/gen/pb-java/flyteidl/plugins/sagemaker/ParameterRangesOuterClass.java index 5f3d8c59ff..4c7c23a438 100644 --- a/flyteidl/gen/pb-java/flyteidl/plugins/sagemaker/ParameterRangesOuterClass.java +++ b/flyteidl/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\001B9Z7github.com" + - "/flyteorg/flyteidl/gen/pb-go/flyteidl/pl" + - "uginsb\006proto3" + "er.ParameterRangeOneOf:\0028\001B?Z=github.com" + + "/flyteorg/flyte/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/flyteidl/gen/pb-java/flyteidl/plugins/sagemaker/TrainingJobOuterClass.java b/flyteidl/gen/pb-java/flyteidl/plugins/sagemaker/TrainingJobOuterClass.java index 8c335d5ca0..7b81bb48b6 100644 --- a/flyteidl/gen/pb-java/flyteidl/plugins/sagemaker/TrainingJobOuterClass.java +++ b/flyteidl/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" + - "9Z7github.com/flyteorg/flyteidl/gen/pb-g" + - "o/flyteidl/pluginsb\006proto3" + "?Z=github.com/flyteorg/flyte/flyteidl/ge" + + "n/pb-go/flyteidl/pluginsb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/service/Admin.java b/flyteidl/gen/pb-java/flyteidl/service/Admin.java index 193fc74e20..80e46d6475 100644 --- a/flyteidl/gen/pb-java/flyteidl/service/Admin.java +++ b/flyteidl/gen/pb-java/flyteidl/service/Admin.java @@ -287,9 +287,9 @@ public static void registerAllExtensions( "orkflowExecutionGetMetricsRequest\0323.flyt" + "eidl.admin.WorkflowExecutionGetMetricsRe" + "sponse\"E\202\323\344\223\002?\022=/api/v1/metrics/executio" + - "ns/{id.project}/{id.domain}/{id.name}B9Z" + - "7github.com/flyteorg/flyteidl/gen/pb-go/" + - "flyteidl/serviceb\006proto3" + "ns/{id.project}/{id.domain}/{id.name}B?Z" + + "=github.com/flyteorg/flyte/flyteidl/gen/" + + "pb-go/flyteidl/serviceb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/service/Agent.java b/flyteidl/gen/pb-java/flyteidl/service/Agent.java index 592b30c653..8d80085901 100644 --- a/flyteidl/gen/pb-java/flyteidl/service/Agent.java +++ b/flyteidl/gen/pb-java/flyteidl/service/Agent.java @@ -31,9 +31,9 @@ public static void registerAllExtensions( "lyteidl.admin.GetTaskRequest\032\037.flyteidl." + "admin.GetTaskResponse\"\000\022U\n\nDeleteTask\022!." + "flyteidl.admin.DeleteTaskRequest\032\".flyte" + - "idl.admin.DeleteTaskResponse\"\000B9Z7github" + - ".com/flyteorg/flyteidl/gen/pb-go/flyteid" + - "l/serviceb\006proto3" + "idl.admin.DeleteTaskResponse\"\000B?Z=github" + + ".com/flyteorg/flyte/flyteidl/gen/pb-go/f" + + "lyteidl/serviceb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/service/Auth.java b/flyteidl/gen/pb-java/flyteidl/service/Auth.java index c56a695e7b..a748cdffae 100644 --- a/flyteidl/gen/pb-java/flyteidl/service/Auth.java +++ b/flyteidl/gen/pb-java/flyteidl/service/Auth.java @@ -5084,9 +5084,9 @@ public flyteidl.service.Auth.PublicClientAuthConfigResponse getDefaultInstanceFo "ClientConfig\022/.flyteidl.service.PublicCl" + "ientAuthConfigRequest\0320.flyteidl.service" + ".PublicClientAuthConfigResponse\"\037\202\323\344\223\002\031\022" + - "\027/config/v1/flyte_clientB9Z7github.com/f" + - "lyteorg/flyteidl/gen/pb-go/flyteidl/serv" + - "iceb\006proto3" + "\027/config/v1/flyte_clientB?Z=github.com/f" + + "lyteorg/flyte/flyteidl/gen/pb-go/flyteid" + + "l/serviceb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { diff --git a/flyteidl/gen/pb-java/flyteidl/service/Dataproxy.java b/flyteidl/gen/pb-java/flyteidl/service/Dataproxy.java index 431c1d3808..df75c41816 100644 --- a/flyteidl/gen/pb-java/flyteidl/service/Dataproxy.java +++ b/flyteidl/gen/pb-java/flyteidl/service/Dataproxy.java @@ -7743,7 +7743,7 @@ public interface GetDataRequestOrBuilder extends /** *
      * A unique identifier in the form of flyte://<something> that uniquely, for a given Flyte
-     * backend, identifies a Flyte artifact ([i]nput, [o]utput, flyte [d]eck, etc.).
+     * backend, identifies a Flyte artifact ([i]nput, [o]output, flyte [d]eck, etc.).
      * e.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input)
      *      flyte://v1/proj/development/execid/n2/i (for node execution input)
      *      flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node)
@@ -7755,7 +7755,7 @@ public interface GetDataRequestOrBuilder extends
     /**
      * 
      * A unique identifier in the form of flyte://<something> that uniquely, for a given Flyte
-     * backend, identifies a Flyte artifact ([i]nput, [o]utput, flyte [d]eck, etc.).
+     * backend, identifies a Flyte artifact ([i]nput, [o]output, flyte [d]eck, etc.).
      * e.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input)
      *      flyte://v1/proj/development/execid/n2/i (for node execution input)
      *      flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node)
@@ -7853,7 +7853,7 @@ private GetDataRequest(
     /**
      * 
      * A unique identifier in the form of flyte://<something> that uniquely, for a given Flyte
-     * backend, identifies a Flyte artifact ([i]nput, [o]utput, flyte [d]eck, etc.).
+     * backend, identifies a Flyte artifact ([i]nput, [o]output, flyte [d]eck, etc.).
      * e.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input)
      *      flyte://v1/proj/development/execid/n2/i (for node execution input)
      *      flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node)
@@ -7876,7 +7876,7 @@ public java.lang.String getFlyteUrl() {
     /**
      * 
      * A unique identifier in the form of flyte://<something> that uniquely, for a given Flyte
-     * backend, identifies a Flyte artifact ([i]nput, [o]utput, flyte [d]eck, etc.).
+     * backend, identifies a Flyte artifact ([i]nput, [o]output, flyte [d]eck, etc.).
      * e.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input)
      *      flyte://v1/proj/development/execid/n2/i (for node execution input)
      *      flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node)
@@ -8208,7 +8208,7 @@ public Builder mergeFrom(
       /**
        * 
        * A unique identifier in the form of flyte://<something> that uniquely, for a given Flyte
-       * backend, identifies a Flyte artifact ([i]nput, [o]utput, flyte [d]eck, etc.).
+       * backend, identifies a Flyte artifact ([i]nput, [o]output, flyte [d]eck, etc.).
        * e.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input)
        *      flyte://v1/proj/development/execid/n2/i (for node execution input)
        *      flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node)
@@ -8231,7 +8231,7 @@ public java.lang.String getFlyteUrl() {
       /**
        * 
        * A unique identifier in the form of flyte://<something> that uniquely, for a given Flyte
-       * backend, identifies a Flyte artifact ([i]nput, [o]utput, flyte [d]eck, etc.).
+       * backend, identifies a Flyte artifact ([i]nput, [o]output, flyte [d]eck, etc.).
        * e.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input)
        *      flyte://v1/proj/development/execid/n2/i (for node execution input)
        *      flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node)
@@ -8255,7 +8255,7 @@ public java.lang.String getFlyteUrl() {
       /**
        * 
        * A unique identifier in the form of flyte://<something> that uniquely, for a given Flyte
-       * backend, identifies a Flyte artifact ([i]nput, [o]utput, flyte [d]eck, etc.).
+       * backend, identifies a Flyte artifact ([i]nput, [o]output, flyte [d]eck, etc.).
        * e.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input)
        *      flyte://v1/proj/development/execid/n2/i (for node execution input)
        *      flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node)
@@ -8276,7 +8276,7 @@ public Builder setFlyteUrl(
       /**
        * 
        * A unique identifier in the form of flyte://<something> that uniquely, for a given Flyte
-       * backend, identifies a Flyte artifact ([i]nput, [o]utput, flyte [d]eck, etc.).
+       * backend, identifies a Flyte artifact ([i]nput, [o]output, flyte [d]eck, etc.).
        * e.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input)
        *      flyte://v1/proj/development/execid/n2/i (for node execution input)
        *      flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node)
@@ -8293,7 +8293,7 @@ public Builder clearFlyteUrl() {
       /**
        * 
        * A unique identifier in the form of flyte://<something> that uniquely, for a given Flyte
-       * backend, identifies a Flyte artifact ([i]nput, [o]utput, flyte [d]eck, etc.).
+       * backend, identifies a Flyte artifact ([i]nput, [o]output, flyte [d]eck, etc.).
        * e.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input)
        *      flyte://v1/proj/development/execid/n2/i (for node execution input)
        *      flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node)
@@ -9796,9 +9796,9 @@ public flyteidl.service.Dataproxy.GetDataResponse getDefaultInstanceForType() {
       "Response\"*\202\323\344\223\002$\"\037/api/v1/dataproxy/arti" +
       "fact_link:\001*\022d\n\007GetData\022 .flyteidl.servi" +
       "ce.GetDataRequest\032!.flyteidl.service.Get" +
-      "DataResponse\"\024\202\323\344\223\002\016\022\014/api/v1/dataB9Z7gi" +
-      "thub.com/flyteorg/flyteidl/gen/pb-go/fly" +
-      "teidl/serviceb\006proto3"
+      "DataResponse\"\024\202\323\344\223\002\016\022\014/api/v1/dataB?Z=gi" +
+      "thub.com/flyteorg/flyte/flyteidl/gen/pb-" +
+      "go/flyteidl/serviceb\006proto3"
     };
     com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
         new com.google.protobuf.Descriptors.FileDescriptor.    InternalDescriptorAssigner() {
diff --git a/flyteidl/gen/pb-java/flyteidl/service/ExternalPluginServiceOuterClass.java b/flyteidl/gen/pb-java/flyteidl/service/ExternalPluginServiceOuterClass.java
index 0ab9800584..2336dd1564 100644
--- a/flyteidl/gen/pb-java/flyteidl/service/ExternalPluginServiceOuterClass.java
+++ b/flyteidl/gen/pb-java/flyteidl/service/ExternalPluginServiceOuterClass.java
@@ -4679,9 +4679,9 @@ public flyteidl.service.ExternalPluginServiceOuterClass.TaskDeleteResponse getDe
       "GetRequest\032!.flyteidl.service.TaskGetRes" +
       "ponse\"\003\210\002\001\022\\\n\nDeleteTask\022#.flyteidl.serv" +
       "ice.TaskDeleteRequest\032$.flyteidl.service" +
-      ".TaskDeleteResponse\"\003\210\002\001B9Z7github.com/f" +
-      "lyteorg/flyteidl/gen/pb-go/flyteidl/serv" +
-      "iceb\006proto3"
+      ".TaskDeleteResponse\"\003\210\002\001B?Z=github.com/f" +
+      "lyteorg/flyte/flyteidl/gen/pb-go/flyteid" +
+      "l/serviceb\006proto3"
     };
     com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
         new com.google.protobuf.Descriptors.FileDescriptor.    InternalDescriptorAssigner() {
diff --git a/flyteidl/gen/pb-java/flyteidl/service/Identity.java b/flyteidl/gen/pb-java/flyteidl/service/Identity.java
index 9a56444a52..742a6b05df 100644
--- a/flyteidl/gen/pb-java/flyteidl/service/Identity.java
+++ b/flyteidl/gen/pb-java/flyteidl/service/Identity.java
@@ -2349,8 +2349,9 @@ public flyteidl.service.Identity.UserInfoResponse getDefaultInstanceForType() {
       "protobuf.Struct2q\n\017IdentityService\022^\n\010Us" +
       "erInfo\022!.flyteidl.service.UserInfoReques" +
       "t\032\".flyteidl.service.UserInfoResponse\"\013\202" +
-      "\323\344\223\002\005\022\003/meB9Z7github.com/flyteorg/flytei" +
-      "dl/gen/pb-go/flyteidl/serviceb\006proto3"
+      "\323\344\223\002\005\022\003/meB?Z=github.com/flyteorg/flyte/" +
+      "flyteidl/gen/pb-go/flyteidl/serviceb\006pro" +
+      "to3"
     };
     com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
         new com.google.protobuf.Descriptors.FileDescriptor.    InternalDescriptorAssigner() {
diff --git a/flyteidl/gen/pb-java/flyteidl/service/Signal.java b/flyteidl/gen/pb-java/flyteidl/service/Signal.java
index a62684466e..bf83c2a8b0 100644
--- a/flyteidl/gen/pb-java/flyteidl/service/Signal.java
+++ b/flyteidl/gen/pb-java/flyteidl/service/Signal.java
@@ -36,8 +36,8 @@ public static void registerAllExtensions(
       "on_id.name}\022l\n\tSetSignal\022 .flyteidl.admi" +
       "n.SignalSetRequest\032!.flyteidl.admin.Sign" +
       "alSetResponse\"\032\202\323\344\223\002\024\"\017/api/v1/signals:\001" +
-      "*B9Z7github.com/flyteorg/flyteidl/gen/pb" +
-      "-go/flyteidl/serviceb\006proto3"
+      "*B?Z=github.com/flyteorg/flyte/flyteidl/" +
+      "gen/pb-go/flyteidl/serviceb\006proto3"
     };
     com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
         new com.google.protobuf.Descriptors.FileDescriptor.    InternalDescriptorAssigner() {
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/agent_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/agent_pb2.py
index ea0ef0afe1..236728acf1 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/agent_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/agent_pb2.py
@@ -17,7 +17,7 @@
 from flyteidl.core import identifier_pb2 as flyteidl_dot_core_dot_identifier__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/admin/agent.proto\x12\x0e\x66lyteidl.admin\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1e\x66lyteidl/core/identifier.proto\"\x98\x05\n\x15TaskExecutionMetadata\x12R\n\x11task_execution_id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x0ftaskExecutionId\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\x12I\n\x06labels\x18\x03 \x03(\x0b\x32\x31.flyteidl.admin.TaskExecutionMetadata.LabelsEntryR\x06labels\x12X\n\x0b\x61nnotations\x18\x04 \x03(\x0b\x32\x36.flyteidl.admin.TaskExecutionMetadata.AnnotationsEntryR\x0b\x61nnotations\x12.\n\x13k8s_service_account\x18\x05 \x01(\tR\x11k8sServiceAccount\x12t\n\x15\x65nvironment_variables\x18\x06 \x03(\x0b\x32?.flyteidl.admin.TaskExecutionMetadata.EnvironmentVariablesEntryR\x14\x65nvironmentVariables\x1a\x39\n\x0bLabelsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a>\n\x10\x41nnotationsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1aG\n\x19\x45nvironmentVariablesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x83\x02\n\x11\x43reateTaskRequest\x12\x31\n\x06inputs\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x06inputs\x12\x37\n\x08template\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplateR\x08template\x12#\n\routput_prefix\x18\x03 \x01(\tR\x0coutputPrefix\x12]\n\x17task_execution_metadata\x18\x04 \x01(\x0b\x32%.flyteidl.admin.TaskExecutionMetadataR\x15taskExecutionMetadata\"9\n\x12\x43reateTaskResponse\x12#\n\rresource_meta\x18\x01 \x01(\x0cR\x0cresourceMeta\"R\n\x0eGetTaskRequest\x12\x1b\n\ttask_type\x18\x01 \x01(\tR\x08taskType\x12#\n\rresource_meta\x18\x02 \x01(\x0cR\x0cresourceMeta\"G\n\x0fGetTaskResponse\x12\x34\n\x08resource\x18\x01 \x01(\x0b\x32\x18.flyteidl.admin.ResourceR\x08resource\"l\n\x08Resource\x12+\n\x05state\x18\x01 \x01(\x0e\x32\x15.flyteidl.admin.StateR\x05state\x12\x33\n\x07outputs\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x07outputs\"U\n\x11\x44\x65leteTaskRequest\x12\x1b\n\ttask_type\x18\x01 \x01(\tR\x08taskType\x12#\n\rresource_meta\x18\x02 \x01(\x0cR\x0cresourceMeta\"\x14\n\x12\x44\x65leteTaskResponse*^\n\x05State\x12\x15\n\x11RETRYABLE_FAILURE\x10\x00\x12\x15\n\x11PERMANENT_FAILURE\x10\x01\x12\x0b\n\x07PENDING\x10\x02\x12\x0b\n\x07RUNNING\x10\x03\x12\r\n\tSUCCEEDED\x10\x04\x42\xb0\x01\n\x12\x63om.flyteidl.adminB\nAgentProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/admin/agent.proto\x12\x0e\x66lyteidl.admin\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x1d\x66lyteidl/core/interface.proto\x1a\x1e\x66lyteidl/core/identifier.proto\"\x98\x05\n\x15TaskExecutionMetadata\x12R\n\x11task_execution_id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x0ftaskExecutionId\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\x12I\n\x06labels\x18\x03 \x03(\x0b\x32\x31.flyteidl.admin.TaskExecutionMetadata.LabelsEntryR\x06labels\x12X\n\x0b\x61nnotations\x18\x04 \x03(\x0b\x32\x36.flyteidl.admin.TaskExecutionMetadata.AnnotationsEntryR\x0b\x61nnotations\x12.\n\x13k8s_service_account\x18\x05 \x01(\tR\x11k8sServiceAccount\x12t\n\x15\x65nvironment_variables\x18\x06 \x03(\x0b\x32?.flyteidl.admin.TaskExecutionMetadata.EnvironmentVariablesEntryR\x14\x65nvironmentVariables\x1a\x39\n\x0bLabelsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a>\n\x10\x41nnotationsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1aG\n\x19\x45nvironmentVariablesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x83\x02\n\x11\x43reateTaskRequest\x12\x31\n\x06inputs\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x06inputs\x12\x37\n\x08template\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplateR\x08template\x12#\n\routput_prefix\x18\x03 \x01(\tR\x0coutputPrefix\x12]\n\x17task_execution_metadata\x18\x04 \x01(\x0b\x32%.flyteidl.admin.TaskExecutionMetadataR\x15taskExecutionMetadata\"9\n\x12\x43reateTaskResponse\x12#\n\rresource_meta\x18\x01 \x01(\x0cR\x0cresourceMeta\"R\n\x0eGetTaskRequest\x12\x1b\n\ttask_type\x18\x01 \x01(\tR\x08taskType\x12#\n\rresource_meta\x18\x02 \x01(\x0cR\x0cresourceMeta\"G\n\x0fGetTaskResponse\x12\x34\n\x08resource\x18\x01 \x01(\x0b\x32\x18.flyteidl.admin.ResourceR\x08resource\"l\n\x08Resource\x12+\n\x05state\x18\x01 \x01(\x0e\x32\x15.flyteidl.admin.StateR\x05state\x12\x33\n\x07outputs\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x07outputs\"U\n\x11\x44\x65leteTaskRequest\x12\x1b\n\ttask_type\x18\x01 \x01(\tR\x08taskType\x12#\n\rresource_meta\x18\x02 \x01(\x0cR\x0cresourceMeta\"\x14\n\x12\x44\x65leteTaskResponse*^\n\x05State\x12\x15\n\x11RETRYABLE_FAILURE\x10\x00\x12\x15\n\x11PERMANENT_FAILURE\x10\x01\x12\x0b\n\x07PENDING\x10\x02\x12\x0b\n\x07RUNNING\x10\x03\x12\r\n\tSUCCEEDED\x10\x04\x42\xb6\x01\n\x12\x63om.flyteidl.adminB\nAgentProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -25,7 +25,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\nAgentProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\nAgentProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _TASKEXECUTIONMETADATA_LABELSENTRY._options = None
   _TASKEXECUTIONMETADATA_LABELSENTRY._serialized_options = b'8\001'
   _TASKEXECUTIONMETADATA_ANNOTATIONSENTRY._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/cluster_assignment_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/cluster_assignment_pb2.py
index ed4ab7bb36..ab2330e69e 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/cluster_assignment_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/cluster_assignment_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'flyteidl/admin/cluster_assignment.proto\x12\x0e\x66lyteidl.admin\"K\n\x11\x43lusterAssignment\x12*\n\x11\x63luster_pool_name\x18\x03 \x01(\tR\x0f\x63lusterPoolNameJ\x04\x08\x01\x10\x02J\x04\x08\x02\x10\x03\x42\xbc\x01\n\x12\x63om.flyteidl.adminB\x16\x43lusterAssignmentProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'flyteidl/admin/cluster_assignment.proto\x12\x0e\x66lyteidl.admin\"K\n\x11\x43lusterAssignment\x12*\n\x11\x63luster_pool_name\x18\x03 \x01(\tR\x0f\x63lusterPoolNameJ\x04\x08\x01\x10\x02J\x04\x08\x02\x10\x03\x42\xc2\x01\n\x12\x63om.flyteidl.adminB\x16\x43lusterAssignmentProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\026ClusterAssignmentProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\026ClusterAssignmentProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _globals['_CLUSTERASSIGNMENT']._serialized_start=59
   _globals['_CLUSTERASSIGNMENT']._serialized_end=134
 # @@protoc_insertion_point(module_scope)
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/common_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/common_pb2.py
index 7555b8b095..7c99413e09 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/common_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/common_pb2.py
@@ -17,7 +17,7 @@
 from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x66lyteidl/admin/common.proto\x12\x0e\x66lyteidl.admin\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"]\n\x15NamedEntityIdentifier\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\"o\n\x13NamedEntityMetadata\x12 \n\x0b\x64\x65scription\x18\x01 \x01(\tR\x0b\x64\x65scription\x12\x36\n\x05state\x18\x02 \x01(\x0e\x32 .flyteidl.admin.NamedEntityStateR\x05state\"\xc7\x01\n\x0bNamedEntity\x12@\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceTypeR\x0cresourceType\x12\x35\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x02id\x12?\n\x08metadata\x18\x03 \x01(\x0b\x32#.flyteidl.admin.NamedEntityMetadataR\x08metadata\"\x82\x01\n\x04Sort\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12<\n\tdirection\x18\x02 \x01(\x0e\x32\x1e.flyteidl.admin.Sort.DirectionR\tdirection\"*\n\tDirection\x12\x0e\n\nDESCENDING\x10\x00\x12\r\n\tASCENDING\x10\x01\"\xc9\x01\n NamedEntityIdentifierListRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x14\n\x05limit\x18\x03 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x04 \x01(\tR\x05token\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\x12\x18\n\x07\x66ilters\x18\x06 \x01(\tR\x07\x66ilters\"\x81\x02\n\x16NamedEntityListRequest\x12@\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceTypeR\x0cresourceType\x12\x18\n\x07project\x18\x02 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x03 \x01(\tR\x06\x64omain\x12\x14\n\x05limit\x18\x04 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x05 \x01(\tR\x05token\x12-\n\x07sort_by\x18\x06 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\x12\x18\n\x07\x66ilters\x18\x07 \x01(\tR\x07\x66ilters\"t\n\x19NamedEntityIdentifierList\x12\x41\n\x08\x65ntities\x18\x01 \x03(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x08\x65ntities\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"`\n\x0fNamedEntityList\x12\x37\n\x08\x65ntities\x18\x01 \x03(\x0b\x32\x1b.flyteidl.admin.NamedEntityR\x08\x65ntities\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\x90\x01\n\x15NamedEntityGetRequest\x12@\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceTypeR\x0cresourceType\x12\x35\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x02id\"\xd4\x01\n\x18NamedEntityUpdateRequest\x12@\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceTypeR\x0cresourceType\x12\x35\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x02id\x12?\n\x08metadata\x18\x03 \x01(\x0b\x32#.flyteidl.admin.NamedEntityMetadataR\x08metadata\"\x1b\n\x19NamedEntityUpdateResponse\"=\n\x10ObjectGetRequest\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\"\xc1\x01\n\x13ResourceListRequest\x12\x35\n\x02id\x18\x01 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x02id\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\">\n\x11\x45mailNotification\x12)\n\x10recipients_email\x18\x01 \x03(\tR\x0frecipientsEmail\"B\n\x15PagerDutyNotification\x12)\n\x10recipients_email\x18\x01 \x03(\tR\x0frecipientsEmail\">\n\x11SlackNotification\x12)\n\x10recipients_email\x18\x01 \x03(\tR\x0frecipientsEmail\"\x94\x02\n\x0cNotification\x12>\n\x06phases\x18\x01 \x03(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x06phases\x12\x39\n\x05\x65mail\x18\x02 \x01(\x0b\x32!.flyteidl.admin.EmailNotificationH\x00R\x05\x65mail\x12\x46\n\npager_duty\x18\x03 \x01(\x0b\x32%.flyteidl.admin.PagerDutyNotificationH\x00R\tpagerDuty\x12\x39\n\x05slack\x18\x04 \x01(\x0b\x32!.flyteidl.admin.SlackNotificationH\x00R\x05slackB\x06\n\x04type\"5\n\x07UrlBlob\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url\x12\x14\n\x05\x62ytes\x18\x02 \x01(\x03R\x05\x62ytes:\x02\x18\x01\"\x7f\n\x06Labels\x12:\n\x06values\x18\x01 \x03(\x0b\x32\".flyteidl.admin.Labels.ValuesEntryR\x06values\x1a\x39\n\x0bValuesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x89\x01\n\x0b\x41nnotations\x12?\n\x06values\x18\x01 \x03(\x0b\x32\'.flyteidl.admin.Annotations.ValuesEntryR\x06values\x1a\x39\n\x0bValuesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\";\n\x04\x45nvs\x12\x33\n\x06values\x18\x01 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairR\x06values\"z\n\x08\x41uthRole\x12,\n\x12\x61ssumable_iam_role\x18\x01 \x01(\tR\x10\x61ssumableIamRole\x12<\n\x1akubernetes_service_account\x18\x02 \x01(\tR\x18kubernetesServiceAccount:\x02\x18\x01\"K\n\x13RawOutputDataConfig\x12\x34\n\x16output_location_prefix\x18\x01 \x01(\tR\x14outputLocationPrefix\"Q\n\tFlyteURLs\x12\x16\n\x06inputs\x18\x01 \x01(\tR\x06inputs\x12\x18\n\x07outputs\x18\x02 \x01(\tR\x07outputs\x12\x12\n\x04\x64\x65\x63k\x18\x03 \x01(\tR\x04\x64\x65\x63k*\\\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\xb1\x01\n\x12\x63om.flyteidl.adminB\x0b\x43ommonProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x66lyteidl/admin/common.proto\x12\x0e\x66lyteidl.admin\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"]\n\x15NamedEntityIdentifier\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\"o\n\x13NamedEntityMetadata\x12 \n\x0b\x64\x65scription\x18\x01 \x01(\tR\x0b\x64\x65scription\x12\x36\n\x05state\x18\x02 \x01(\x0e\x32 .flyteidl.admin.NamedEntityStateR\x05state\"\xc7\x01\n\x0bNamedEntity\x12@\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceTypeR\x0cresourceType\x12\x35\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x02id\x12?\n\x08metadata\x18\x03 \x01(\x0b\x32#.flyteidl.admin.NamedEntityMetadataR\x08metadata\"\x82\x01\n\x04Sort\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12<\n\tdirection\x18\x02 \x01(\x0e\x32\x1e.flyteidl.admin.Sort.DirectionR\tdirection\"*\n\tDirection\x12\x0e\n\nDESCENDING\x10\x00\x12\r\n\tASCENDING\x10\x01\"\xc9\x01\n NamedEntityIdentifierListRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x14\n\x05limit\x18\x03 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x04 \x01(\tR\x05token\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\x12\x18\n\x07\x66ilters\x18\x06 \x01(\tR\x07\x66ilters\"\x81\x02\n\x16NamedEntityListRequest\x12@\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceTypeR\x0cresourceType\x12\x18\n\x07project\x18\x02 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x03 \x01(\tR\x06\x64omain\x12\x14\n\x05limit\x18\x04 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x05 \x01(\tR\x05token\x12-\n\x07sort_by\x18\x06 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\x12\x18\n\x07\x66ilters\x18\x07 \x01(\tR\x07\x66ilters\"t\n\x19NamedEntityIdentifierList\x12\x41\n\x08\x65ntities\x18\x01 \x03(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x08\x65ntities\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"`\n\x0fNamedEntityList\x12\x37\n\x08\x65ntities\x18\x01 \x03(\x0b\x32\x1b.flyteidl.admin.NamedEntityR\x08\x65ntities\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\x90\x01\n\x15NamedEntityGetRequest\x12@\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceTypeR\x0cresourceType\x12\x35\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x02id\"\xd4\x01\n\x18NamedEntityUpdateRequest\x12@\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceTypeR\x0cresourceType\x12\x35\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x02id\x12?\n\x08metadata\x18\x03 \x01(\x0b\x32#.flyteidl.admin.NamedEntityMetadataR\x08metadata\"\x1b\n\x19NamedEntityUpdateResponse\"=\n\x10ObjectGetRequest\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\"\xc1\x01\n\x13ResourceListRequest\x12\x35\n\x02id\x18\x01 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x02id\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\">\n\x11\x45mailNotification\x12)\n\x10recipients_email\x18\x01 \x03(\tR\x0frecipientsEmail\"B\n\x15PagerDutyNotification\x12)\n\x10recipients_email\x18\x01 \x03(\tR\x0frecipientsEmail\">\n\x11SlackNotification\x12)\n\x10recipients_email\x18\x01 \x03(\tR\x0frecipientsEmail\"\x94\x02\n\x0cNotification\x12>\n\x06phases\x18\x01 \x03(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x06phases\x12\x39\n\x05\x65mail\x18\x02 \x01(\x0b\x32!.flyteidl.admin.EmailNotificationH\x00R\x05\x65mail\x12\x46\n\npager_duty\x18\x03 \x01(\x0b\x32%.flyteidl.admin.PagerDutyNotificationH\x00R\tpagerDuty\x12\x39\n\x05slack\x18\x04 \x01(\x0b\x32!.flyteidl.admin.SlackNotificationH\x00R\x05slackB\x06\n\x04type\"5\n\x07UrlBlob\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url\x12\x14\n\x05\x62ytes\x18\x02 \x01(\x03R\x05\x62ytes:\x02\x18\x01\"\x7f\n\x06Labels\x12:\n\x06values\x18\x01 \x03(\x0b\x32\".flyteidl.admin.Labels.ValuesEntryR\x06values\x1a\x39\n\x0bValuesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x89\x01\n\x0b\x41nnotations\x12?\n\x06values\x18\x01 \x03(\x0b\x32\'.flyteidl.admin.Annotations.ValuesEntryR\x06values\x1a\x39\n\x0bValuesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\";\n\x04\x45nvs\x12\x33\n\x06values\x18\x01 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairR\x06values\"z\n\x08\x41uthRole\x12,\n\x12\x61ssumable_iam_role\x18\x01 \x01(\tR\x10\x61ssumableIamRole\x12<\n\x1akubernetes_service_account\x18\x02 \x01(\tR\x18kubernetesServiceAccount:\x02\x18\x01\"K\n\x13RawOutputDataConfig\x12\x34\n\x16output_location_prefix\x18\x01 \x01(\tR\x14outputLocationPrefix\"Q\n\tFlyteURLs\x12\x16\n\x06inputs\x18\x01 \x01(\tR\x06inputs\x12\x18\n\x07outputs\x18\x02 \x01(\tR\x07outputs\x12\x12\n\x04\x64\x65\x63k\x18\x03 \x01(\tR\x04\x64\x65\x63k*\\\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\xb7\x01\n\x12\x63om.flyteidl.adminB\x0b\x43ommonProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -25,7 +25,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\013CommonProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\013CommonProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _URLBLOB._options = None
   _URLBLOB._serialized_options = b'\030\001'
   _LABELS_VALUESENTRY._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/description_entity_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/description_entity_pb2.py
index 11ce1f4de3..af96988c48 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/description_entity_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/description_entity_pb2.py
@@ -15,7 +15,7 @@
 from flyteidl.admin import common_pb2 as flyteidl_dot_admin_dot_common__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'flyteidl/admin/description_entity.proto\x12\x0e\x66lyteidl.admin\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1b\x66lyteidl/admin/common.proto\"\x84\x02\n\x11\x44\x65scriptionEntity\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12+\n\x11short_description\x18\x02 \x01(\tR\x10shortDescription\x12\x46\n\x10long_description\x18\x03 \x01(\x0b\x32\x1b.flyteidl.admin.DescriptionR\x0flongDescription\x12;\n\x0bsource_code\x18\x04 \x01(\x0b\x32\x1a.flyteidl.admin.SourceCodeR\nsourceCode\x12\x12\n\x04tags\x18\x05 \x03(\tR\x04tags\"\x9c\x01\n\x0b\x44\x65scription\x12\x16\n\x05value\x18\x01 \x01(\tH\x00R\x05value\x12\x12\n\x03uri\x18\x02 \x01(\tH\x00R\x03uri\x12\x39\n\x06\x66ormat\x18\x03 \x01(\x0e\x32!.flyteidl.admin.DescriptionFormatR\x06\x66ormat\x12\x1b\n\ticon_link\x18\x04 \x01(\tR\x08iconLinkB\t\n\x07\x63ontent\" \n\nSourceCode\x12\x12\n\x04link\x18\x01 \x01(\tR\x04link\"\x82\x01\n\x15\x44\x65scriptionEntityList\x12S\n\x13\x64\x65scriptionEntities\x18\x01 \x03(\x0b\x32!.flyteidl.admin.DescriptionEntityR\x13\x64\x65scriptionEntities\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\x8c\x02\n\x1c\x44\x65scriptionEntityListRequest\x12@\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceTypeR\x0cresourceType\x12\x35\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x02id\x12\x14\n\x05limit\x18\x03 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x04 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x05 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x06 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy*\x8d\x01\n\x11\x44\x65scriptionFormat\x12\x1e\n\x1a\x44\x45SCRIPTION_FORMAT_UNKNOWN\x10\x00\x12\x1f\n\x1b\x44\x45SCRIPTION_FORMAT_MARKDOWN\x10\x01\x12\x1b\n\x17\x44\x45SCRIPTION_FORMAT_HTML\x10\x02\x12\x1a\n\x16\x44\x45SCRIPTION_FORMAT_RST\x10\x03\x42\xbc\x01\n\x12\x63om.flyteidl.adminB\x16\x44\x65scriptionEntityProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'flyteidl/admin/description_entity.proto\x12\x0e\x66lyteidl.admin\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1b\x66lyteidl/admin/common.proto\"\x84\x02\n\x11\x44\x65scriptionEntity\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12+\n\x11short_description\x18\x02 \x01(\tR\x10shortDescription\x12\x46\n\x10long_description\x18\x03 \x01(\x0b\x32\x1b.flyteidl.admin.DescriptionR\x0flongDescription\x12;\n\x0bsource_code\x18\x04 \x01(\x0b\x32\x1a.flyteidl.admin.SourceCodeR\nsourceCode\x12\x12\n\x04tags\x18\x05 \x03(\tR\x04tags\"\x9c\x01\n\x0b\x44\x65scription\x12\x16\n\x05value\x18\x01 \x01(\tH\x00R\x05value\x12\x12\n\x03uri\x18\x02 \x01(\tH\x00R\x03uri\x12\x39\n\x06\x66ormat\x18\x03 \x01(\x0e\x32!.flyteidl.admin.DescriptionFormatR\x06\x66ormat\x12\x1b\n\ticon_link\x18\x04 \x01(\tR\x08iconLinkB\t\n\x07\x63ontent\" \n\nSourceCode\x12\x12\n\x04link\x18\x01 \x01(\tR\x04link\"\x82\x01\n\x15\x44\x65scriptionEntityList\x12S\n\x13\x64\x65scriptionEntities\x18\x01 \x03(\x0b\x32!.flyteidl.admin.DescriptionEntityR\x13\x64\x65scriptionEntities\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\x8c\x02\n\x1c\x44\x65scriptionEntityListRequest\x12@\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceTypeR\x0cresourceType\x12\x35\n\x02id\x18\x02 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x02id\x12\x14\n\x05limit\x18\x03 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x04 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x05 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x06 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy*\x8d\x01\n\x11\x44\x65scriptionFormat\x12\x1e\n\x1a\x44\x45SCRIPTION_FORMAT_UNKNOWN\x10\x00\x12\x1f\n\x1b\x44\x45SCRIPTION_FORMAT_MARKDOWN\x10\x01\x12\x1b\n\x17\x44\x45SCRIPTION_FORMAT_HTML\x10\x02\x12\x1a\n\x16\x44\x45SCRIPTION_FORMAT_RST\x10\x03\x42\xc2\x01\n\x12\x63om.flyteidl.adminB\x16\x44\x65scriptionEntityProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,7 +23,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\026DescriptionEntityProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\026DescriptionEntityProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _globals['_DESCRIPTIONFORMAT']._serialized_start=981
   _globals['_DESCRIPTIONFORMAT']._serialized_end=1122
   _globals['_DESCRIPTIONENTITY']._serialized_start=121
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/event_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/event_pb2.py
index 9324008150..7f2ba1e6ba 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/event_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/event_pb2.py
@@ -14,7 +14,7 @@
 from flyteidl.event import event_pb2 as flyteidl_dot_event_dot_event__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/admin/event.proto\x12\x0e\x66lyteidl.admin\x1a\x1a\x66lyteidl/event/event.proto\"G\n EventErrorAlreadyInTerminalState\x12#\n\rcurrent_phase\x18\x01 \x01(\tR\x0c\x63urrentPhase\"9\n\x1d\x45ventErrorIncompatibleCluster\x12\x18\n\x07\x63luster\x18\x01 \x01(\tR\x07\x63luster\"\xf1\x01\n\x12\x45ventFailureReason\x12m\n\x19\x61lready_in_terminal_state\x18\x01 \x01(\x0b\x32\x30.flyteidl.admin.EventErrorAlreadyInTerminalStateH\x00R\x16\x61lreadyInTerminalState\x12\x62\n\x14incompatible_cluster\x18\x02 \x01(\x0b\x32-.flyteidl.admin.EventErrorIncompatibleClusterH\x00R\x13incompatibleClusterB\x08\n\x06reason\"|\n\x1dWorkflowExecutionEventRequest\x12\x1d\n\nrequest_id\x18\x01 \x01(\tR\trequestId\x12<\n\x05\x65vent\x18\x02 \x01(\x0b\x32&.flyteidl.event.WorkflowExecutionEventR\x05\x65vent\" \n\x1eWorkflowExecutionEventResponse\"t\n\x19NodeExecutionEventRequest\x12\x1d\n\nrequest_id\x18\x01 \x01(\tR\trequestId\x12\x38\n\x05\x65vent\x18\x02 \x01(\x0b\x32\".flyteidl.event.NodeExecutionEventR\x05\x65vent\"\x1c\n\x1aNodeExecutionEventResponse\"t\n\x19TaskExecutionEventRequest\x12\x1d\n\nrequest_id\x18\x01 \x01(\tR\trequestId\x12\x38\n\x05\x65vent\x18\x02 \x01(\x0b\x32\".flyteidl.event.TaskExecutionEventR\x05\x65vent\"\x1c\n\x1aTaskExecutionEventResponseB\xb0\x01\n\x12\x63om.flyteidl.adminB\nEventProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/admin/event.proto\x12\x0e\x66lyteidl.admin\x1a\x1a\x66lyteidl/event/event.proto\"G\n EventErrorAlreadyInTerminalState\x12#\n\rcurrent_phase\x18\x01 \x01(\tR\x0c\x63urrentPhase\"9\n\x1d\x45ventErrorIncompatibleCluster\x12\x18\n\x07\x63luster\x18\x01 \x01(\tR\x07\x63luster\"\xf1\x01\n\x12\x45ventFailureReason\x12m\n\x19\x61lready_in_terminal_state\x18\x01 \x01(\x0b\x32\x30.flyteidl.admin.EventErrorAlreadyInTerminalStateH\x00R\x16\x61lreadyInTerminalState\x12\x62\n\x14incompatible_cluster\x18\x02 \x01(\x0b\x32-.flyteidl.admin.EventErrorIncompatibleClusterH\x00R\x13incompatibleClusterB\x08\n\x06reason\"|\n\x1dWorkflowExecutionEventRequest\x12\x1d\n\nrequest_id\x18\x01 \x01(\tR\trequestId\x12<\n\x05\x65vent\x18\x02 \x01(\x0b\x32&.flyteidl.event.WorkflowExecutionEventR\x05\x65vent\" \n\x1eWorkflowExecutionEventResponse\"t\n\x19NodeExecutionEventRequest\x12\x1d\n\nrequest_id\x18\x01 \x01(\tR\trequestId\x12\x38\n\x05\x65vent\x18\x02 \x01(\x0b\x32\".flyteidl.event.NodeExecutionEventR\x05\x65vent\"\x1c\n\x1aNodeExecutionEventResponse\"t\n\x19TaskExecutionEventRequest\x12\x1d\n\nrequest_id\x18\x01 \x01(\tR\trequestId\x12\x38\n\x05\x65vent\x18\x02 \x01(\x0b\x32\".flyteidl.event.TaskExecutionEventR\x05\x65vent\"\x1c\n\x1aTaskExecutionEventResponseB\xb6\x01\n\x12\x63om.flyteidl.adminB\nEventProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\nEventProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\nEventProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _globals['_EVENTERRORALREADYINTERMINALSTATE']._serialized_start=74
   _globals['_EVENTERRORALREADYINTERMINALSTATE']._serialized_end=145
   _globals['_EVENTERRORINCOMPATIBLECLUSTER']._serialized_start=147
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/execution_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/execution_pb2.py
index 38643f04a0..373d09440e 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/execution_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/execution_pb2.py
@@ -23,7 +23,7 @@
 from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x66lyteidl/admin/execution.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/cluster_assignment.proto\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\x1b\x66lyteidl/core/metrics.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\xc4\x01\n\x16\x45xecutionCreateRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12\x31\n\x04spec\x18\x04 \x01(\x0b\x32\x1d.flyteidl.admin.ExecutionSpecR\x04spec\x12\x31\n\x06inputs\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x06inputs\"\x99\x01\n\x18\x45xecutionRelaunchRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12\'\n\x0foverwrite_cache\x18\x04 \x01(\x08R\x0eoverwriteCacheJ\x04\x08\x02\x10\x03\"\xa8\x01\n\x17\x45xecutionRecoverRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12=\n\x08metadata\x18\x03 \x01(\x0b\x32!.flyteidl.admin.ExecutionMetadataR\x08metadata\"U\n\x17\x45xecutionCreateResponse\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\"Y\n\x1bWorkflowExecutionGetRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\"\xb6\x01\n\tExecution\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x31\n\x04spec\x18\x02 \x01(\x0b\x32\x1d.flyteidl.admin.ExecutionSpecR\x04spec\x12:\n\x07\x63losure\x18\x03 \x01(\x0b\x32 .flyteidl.admin.ExecutionClosureR\x07\x63losure\"`\n\rExecutionList\x12\x39\n\nexecutions\x18\x01 \x03(\x0b\x32\x19.flyteidl.admin.ExecutionR\nexecutions\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"e\n\x0eLiteralMapBlob\x12\x37\n\x06values\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\x06values\x12\x12\n\x03uri\x18\x02 \x01(\tH\x00R\x03uriB\x06\n\x04\x64\x61ta\"C\n\rAbortMetadata\x12\x14\n\x05\x63\x61use\x18\x01 \x01(\tR\x05\x63\x61use\x12\x1c\n\tprincipal\x18\x02 \x01(\tR\tprincipal\"\x98\x07\n\x10\x45xecutionClosure\x12>\n\x07outputs\x18\x01 \x01(\x0b\x32\x1e.flyteidl.admin.LiteralMapBlobB\x02\x18\x01H\x00R\x07outputs\x12\x35\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12%\n\x0b\x61\x62ort_cause\x18\n \x01(\tB\x02\x18\x01H\x00R\nabortCause\x12\x46\n\x0e\x61\x62ort_metadata\x18\x0c \x01(\x0b\x32\x1d.flyteidl.admin.AbortMetadataH\x00R\rabortMetadata\x12@\n\x0boutput_data\x18\r \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\noutputData\x12\x46\n\x0f\x63omputed_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01R\x0e\x63omputedInputs\x12<\n\x05phase\x18\x04 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x05phase\x12\x39\n\nstarted_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x35\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x42\n\rnotifications\x18\t \x03(\x0b\x32\x1c.flyteidl.admin.NotificationR\rnotifications\x12:\n\x0bworkflow_id\x18\x0b \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\nworkflowId\x12]\n\x14state_change_details\x18\x0e \x01(\x0b\x32+.flyteidl.admin.ExecutionStateChangeDetailsR\x12stateChangeDetailsB\x0f\n\routput_result\"[\n\x0eSystemMetadata\x12+\n\x11\x65xecution_cluster\x18\x01 \x01(\tR\x10\x65xecutionCluster\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\"\xba\x04\n\x11\x45xecutionMetadata\x12\x43\n\x04mode\x18\x01 \x01(\x0e\x32/.flyteidl.admin.ExecutionMetadata.ExecutionModeR\x04mode\x12\x1c\n\tprincipal\x18\x02 \x01(\tR\tprincipal\x12\x18\n\x07nesting\x18\x03 \x01(\rR\x07nesting\x12=\n\x0cscheduled_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0bscheduledAt\x12Z\n\x15parent_node_execution\x18\x05 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x13parentNodeExecution\x12[\n\x13reference_execution\x18\x10 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x12referenceExecution\x12G\n\x0fsystem_metadata\x18\x11 \x01(\x0b\x32\x1e.flyteidl.admin.SystemMetadataR\x0esystemMetadata\"g\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\x12\r\n\tRECOVERED\x10\x05\"V\n\x10NotificationList\x12\x42\n\rnotifications\x18\x01 \x03(\x0b\x32\x1c.flyteidl.admin.NotificationR\rnotifications\"\x90\x08\n\rExecutionSpec\x12:\n\x0blaunch_plan\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\nlaunchPlan\x12\x35\n\x06inputs\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01R\x06inputs\x12=\n\x08metadata\x18\x03 \x01(\x0b\x32!.flyteidl.admin.ExecutionMetadataR\x08metadata\x12H\n\rnotifications\x18\x05 \x01(\x0b\x32 .flyteidl.admin.NotificationListH\x00R\rnotifications\x12!\n\x0b\x64isable_all\x18\x06 \x01(\x08H\x00R\ndisableAll\x12.\n\x06labels\x18\x07 \x01(\x0b\x32\x16.flyteidl.admin.LabelsR\x06labels\x12=\n\x0b\x61nnotations\x18\x08 \x01(\x0b\x32\x1b.flyteidl.admin.AnnotationsR\x0b\x61nnotations\x12I\n\x10security_context\x18\n \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12\x39\n\tauth_role\x18\x10 \x01(\x0b\x32\x18.flyteidl.admin.AuthRoleB\x02\x18\x01R\x08\x61uthRole\x12M\n\x12quality_of_service\x18\x11 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceR\x10qualityOfService\x12\'\n\x0fmax_parallelism\x18\x12 \x01(\x05R\x0emaxParallelism\x12X\n\x16raw_output_data_config\x18\x13 \x01(\x0b\x32#.flyteidl.admin.RawOutputDataConfigR\x13rawOutputDataConfig\x12P\n\x12\x63luster_assignment\x18\x14 \x01(\x0b\x32!.flyteidl.admin.ClusterAssignmentR\x11\x63lusterAssignment\x12@\n\rinterruptible\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.BoolValueR\rinterruptible\x12\'\n\x0foverwrite_cache\x18\x16 \x01(\x08R\x0eoverwriteCache\x12(\n\x04\x65nvs\x18\x17 \x01(\x0b\x32\x14.flyteidl.admin.EnvsR\x04\x65nvs\x12\x12\n\x04tags\x18\x18 \x03(\tR\x04tagsB\x18\n\x16notification_overridesJ\x04\x08\x04\x10\x05\"m\n\x19\x45xecutionTerminateRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x14\n\x05\x63\x61use\x18\x02 \x01(\tR\x05\x63\x61use\"\x1c\n\x1a\x45xecutionTerminateResponse\"]\n\x1fWorkflowExecutionGetDataRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\"\x88\x02\n WorkflowExecutionGetDataResponse\x12\x35\n\x07outputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x07outputs\x12\x33\n\x06inputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x06inputs\x12:\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\nfullInputs\x12<\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x0b\x66ullOutputs\"\x8a\x01\n\x16\x45xecutionUpdateRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x34\n\x05state\x18\x02 \x01(\x0e\x32\x1e.flyteidl.admin.ExecutionStateR\x05state\"\xae\x01\n\x1b\x45xecutionStateChangeDetails\x12\x34\n\x05state\x18\x01 \x01(\x0e\x32\x1e.flyteidl.admin.ExecutionStateR\x05state\x12;\n\x0boccurred_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1c\n\tprincipal\x18\x03 \x01(\tR\tprincipal\"\x19\n\x17\x45xecutionUpdateResponse\"v\n\"WorkflowExecutionGetMetricsRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x14\n\x05\x64\x65pth\x18\x02 \x01(\x05R\x05\x64\x65pth\"N\n#WorkflowExecutionGetMetricsResponse\x12\'\n\x04span\x18\x01 \x01(\x0b\x32\x13.flyteidl.core.SpanR\x04span*>\n\x0e\x45xecutionState\x12\x14\n\x10\x45XECUTION_ACTIVE\x10\x00\x12\x16\n\x12\x45XECUTION_ARCHIVED\x10\x01\x42\xb4\x01\n\x12\x63om.flyteidl.adminB\x0e\x45xecutionProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x66lyteidl/admin/execution.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/cluster_assignment.proto\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\x1b\x66lyteidl/core/metrics.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\xc4\x01\n\x16\x45xecutionCreateRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12\x31\n\x04spec\x18\x04 \x01(\x0b\x32\x1d.flyteidl.admin.ExecutionSpecR\x04spec\x12\x31\n\x06inputs\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x06inputs\"\x99\x01\n\x18\x45xecutionRelaunchRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12\'\n\x0foverwrite_cache\x18\x04 \x01(\x08R\x0eoverwriteCacheJ\x04\x08\x02\x10\x03\"\xa8\x01\n\x17\x45xecutionRecoverRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12=\n\x08metadata\x18\x03 \x01(\x0b\x32!.flyteidl.admin.ExecutionMetadataR\x08metadata\"U\n\x17\x45xecutionCreateResponse\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\"Y\n\x1bWorkflowExecutionGetRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\"\xb6\x01\n\tExecution\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x31\n\x04spec\x18\x02 \x01(\x0b\x32\x1d.flyteidl.admin.ExecutionSpecR\x04spec\x12:\n\x07\x63losure\x18\x03 \x01(\x0b\x32 .flyteidl.admin.ExecutionClosureR\x07\x63losure\"`\n\rExecutionList\x12\x39\n\nexecutions\x18\x01 \x03(\x0b\x32\x19.flyteidl.admin.ExecutionR\nexecutions\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"e\n\x0eLiteralMapBlob\x12\x37\n\x06values\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\x06values\x12\x12\n\x03uri\x18\x02 \x01(\tH\x00R\x03uriB\x06\n\x04\x64\x61ta\"C\n\rAbortMetadata\x12\x14\n\x05\x63\x61use\x18\x01 \x01(\tR\x05\x63\x61use\x12\x1c\n\tprincipal\x18\x02 \x01(\tR\tprincipal\"\x98\x07\n\x10\x45xecutionClosure\x12>\n\x07outputs\x18\x01 \x01(\x0b\x32\x1e.flyteidl.admin.LiteralMapBlobB\x02\x18\x01H\x00R\x07outputs\x12\x35\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12%\n\x0b\x61\x62ort_cause\x18\n \x01(\tB\x02\x18\x01H\x00R\nabortCause\x12\x46\n\x0e\x61\x62ort_metadata\x18\x0c \x01(\x0b\x32\x1d.flyteidl.admin.AbortMetadataH\x00R\rabortMetadata\x12@\n\x0boutput_data\x18\r \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\noutputData\x12\x46\n\x0f\x63omputed_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01R\x0e\x63omputedInputs\x12<\n\x05phase\x18\x04 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x05phase\x12\x39\n\nstarted_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x35\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x42\n\rnotifications\x18\t \x03(\x0b\x32\x1c.flyteidl.admin.NotificationR\rnotifications\x12:\n\x0bworkflow_id\x18\x0b \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\nworkflowId\x12]\n\x14state_change_details\x18\x0e \x01(\x0b\x32+.flyteidl.admin.ExecutionStateChangeDetailsR\x12stateChangeDetailsB\x0f\n\routput_result\"[\n\x0eSystemMetadata\x12+\n\x11\x65xecution_cluster\x18\x01 \x01(\tR\x10\x65xecutionCluster\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\"\xba\x04\n\x11\x45xecutionMetadata\x12\x43\n\x04mode\x18\x01 \x01(\x0e\x32/.flyteidl.admin.ExecutionMetadata.ExecutionModeR\x04mode\x12\x1c\n\tprincipal\x18\x02 \x01(\tR\tprincipal\x12\x18\n\x07nesting\x18\x03 \x01(\rR\x07nesting\x12=\n\x0cscheduled_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0bscheduledAt\x12Z\n\x15parent_node_execution\x18\x05 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x13parentNodeExecution\x12[\n\x13reference_execution\x18\x10 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x12referenceExecution\x12G\n\x0fsystem_metadata\x18\x11 \x01(\x0b\x32\x1e.flyteidl.admin.SystemMetadataR\x0esystemMetadata\"g\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\x12\r\n\tRECOVERED\x10\x05\"V\n\x10NotificationList\x12\x42\n\rnotifications\x18\x01 \x03(\x0b\x32\x1c.flyteidl.admin.NotificationR\rnotifications\"\x90\x08\n\rExecutionSpec\x12:\n\x0blaunch_plan\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\nlaunchPlan\x12\x35\n\x06inputs\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01R\x06inputs\x12=\n\x08metadata\x18\x03 \x01(\x0b\x32!.flyteidl.admin.ExecutionMetadataR\x08metadata\x12H\n\rnotifications\x18\x05 \x01(\x0b\x32 .flyteidl.admin.NotificationListH\x00R\rnotifications\x12!\n\x0b\x64isable_all\x18\x06 \x01(\x08H\x00R\ndisableAll\x12.\n\x06labels\x18\x07 \x01(\x0b\x32\x16.flyteidl.admin.LabelsR\x06labels\x12=\n\x0b\x61nnotations\x18\x08 \x01(\x0b\x32\x1b.flyteidl.admin.AnnotationsR\x0b\x61nnotations\x12I\n\x10security_context\x18\n \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12\x39\n\tauth_role\x18\x10 \x01(\x0b\x32\x18.flyteidl.admin.AuthRoleB\x02\x18\x01R\x08\x61uthRole\x12M\n\x12quality_of_service\x18\x11 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceR\x10qualityOfService\x12\'\n\x0fmax_parallelism\x18\x12 \x01(\x05R\x0emaxParallelism\x12X\n\x16raw_output_data_config\x18\x13 \x01(\x0b\x32#.flyteidl.admin.RawOutputDataConfigR\x13rawOutputDataConfig\x12P\n\x12\x63luster_assignment\x18\x14 \x01(\x0b\x32!.flyteidl.admin.ClusterAssignmentR\x11\x63lusterAssignment\x12@\n\rinterruptible\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.BoolValueR\rinterruptible\x12\'\n\x0foverwrite_cache\x18\x16 \x01(\x08R\x0eoverwriteCache\x12(\n\x04\x65nvs\x18\x17 \x01(\x0b\x32\x14.flyteidl.admin.EnvsR\x04\x65nvs\x12\x12\n\x04tags\x18\x18 \x03(\tR\x04tagsB\x18\n\x16notification_overridesJ\x04\x08\x04\x10\x05\"m\n\x19\x45xecutionTerminateRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x14\n\x05\x63\x61use\x18\x02 \x01(\tR\x05\x63\x61use\"\x1c\n\x1a\x45xecutionTerminateResponse\"]\n\x1fWorkflowExecutionGetDataRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\"\x88\x02\n WorkflowExecutionGetDataResponse\x12\x35\n\x07outputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x07outputs\x12\x33\n\x06inputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x06inputs\x12:\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\nfullInputs\x12<\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x0b\x66ullOutputs\"\x8a\x01\n\x16\x45xecutionUpdateRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x34\n\x05state\x18\x02 \x01(\x0e\x32\x1e.flyteidl.admin.ExecutionStateR\x05state\"\xae\x01\n\x1b\x45xecutionStateChangeDetails\x12\x34\n\x05state\x18\x01 \x01(\x0e\x32\x1e.flyteidl.admin.ExecutionStateR\x05state\x12;\n\x0boccurred_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1c\n\tprincipal\x18\x03 \x01(\tR\tprincipal\"\x19\n\x17\x45xecutionUpdateResponse\"v\n\"WorkflowExecutionGetMetricsRequest\x12:\n\x02id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x02id\x12\x14\n\x05\x64\x65pth\x18\x02 \x01(\x05R\x05\x64\x65pth\"N\n#WorkflowExecutionGetMetricsResponse\x12\'\n\x04span\x18\x01 \x01(\x0b\x32\x13.flyteidl.core.SpanR\x04span*>\n\x0e\x45xecutionState\x12\x14\n\x10\x45XECUTION_ACTIVE\x10\x00\x12\x16\n\x12\x45XECUTION_ARCHIVED\x10\x01\x42\xba\x01\n\x12\x63om.flyteidl.adminB\x0e\x45xecutionProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -31,7 +31,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\016ExecutionProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\016ExecutionProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _LITERALMAPBLOB.fields_by_name['values']._options = None
   _LITERALMAPBLOB.fields_by_name['values']._serialized_options = b'\030\001'
   _EXECUTIONCLOSURE.fields_by_name['outputs']._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/launch_plan_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/launch_plan_pb2.py
index 3bd7b79dc0..b0827f2901 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/launch_plan_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/launch_plan_pb2.py
@@ -22,7 +22,7 @@
 from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\x1c\x66lyteidl/core/security.proto\x1a\x1d\x66lyteidl/admin/schedule.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\"x\n\x17LaunchPlanCreateRequest\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x32\n\x04spec\x18\x02 \x01(\x0b\x32\x1e.flyteidl.admin.LaunchPlanSpecR\x04spec\"\x1a\n\x18LaunchPlanCreateResponse\"\xa8\x01\n\nLaunchPlan\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x32\n\x04spec\x18\x02 \x01(\x0b\x32\x1e.flyteidl.admin.LaunchPlanSpecR\x04spec\x12;\n\x07\x63losure\x18\x03 \x01(\x0b\x32!.flyteidl.admin.LaunchPlanClosureR\x07\x63losure\"e\n\x0eLaunchPlanList\x12=\n\x0claunch_plans\x18\x01 \x03(\x0b\x32\x1a.flyteidl.admin.LaunchPlanR\x0blaunchPlans\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"v\n\x04\x41uth\x12,\n\x12\x61ssumable_iam_role\x18\x01 \x01(\tR\x10\x61ssumableIamRole\x12<\n\x1akubernetes_service_account\x18\x02 \x01(\tR\x18kubernetesServiceAccount:\x02\x18\x01\"\xbd\x07\n\x0eLaunchPlanSpec\x12:\n\x0bworkflow_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\nworkflowId\x12K\n\x0f\x65ntity_metadata\x18\x02 \x01(\x0b\x32\".flyteidl.admin.LaunchPlanMetadataR\x0e\x65ntityMetadata\x12\x42\n\x0e\x64\x65\x66\x61ult_inputs\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.ParameterMapR\rdefaultInputs\x12<\n\x0c\x66ixed_inputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x0b\x66ixedInputs\x12\x16\n\x04role\x18\x05 \x01(\tB\x02\x18\x01R\x04role\x12.\n\x06labels\x18\x06 \x01(\x0b\x32\x16.flyteidl.admin.LabelsR\x06labels\x12=\n\x0b\x61nnotations\x18\x07 \x01(\x0b\x32\x1b.flyteidl.admin.AnnotationsR\x0b\x61nnotations\x12,\n\x04\x61uth\x18\x08 \x01(\x0b\x32\x14.flyteidl.admin.AuthB\x02\x18\x01R\x04\x61uth\x12\x39\n\tauth_role\x18\t \x01(\x0b\x32\x18.flyteidl.admin.AuthRoleB\x02\x18\x01R\x08\x61uthRole\x12I\n\x10security_context\x18\n \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12M\n\x12quality_of_service\x18\x10 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceR\x10qualityOfService\x12X\n\x16raw_output_data_config\x18\x11 \x01(\x0b\x32#.flyteidl.admin.RawOutputDataConfigR\x13rawOutputDataConfig\x12\'\n\x0fmax_parallelism\x18\x12 \x01(\x05R\x0emaxParallelism\x12@\n\rinterruptible\x18\x13 \x01(\x0b\x32\x1a.google.protobuf.BoolValueR\rinterruptible\x12\'\n\x0foverwrite_cache\x18\x14 \x01(\x08R\x0eoverwriteCache\x12(\n\x04\x65nvs\x18\x15 \x01(\x0b\x32\x14.flyteidl.admin.EnvsR\x04\x65nvs\"\xcd\x02\n\x11LaunchPlanClosure\x12\x35\n\x05state\x18\x01 \x01(\x0e\x32\x1f.flyteidl.admin.LaunchPlanStateR\x05state\x12\x44\n\x0f\x65xpected_inputs\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.ParameterMapR\x0e\x65xpectedInputs\x12\x45\n\x10\x65xpected_outputs\x18\x03 \x01(\x0b\x32\x1a.flyteidl.core.VariableMapR\x0f\x65xpectedOutputs\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\"\x8e\x01\n\x12LaunchPlanMetadata\x12\x34\n\x08schedule\x18\x01 \x01(\x0b\x32\x18.flyteidl.admin.ScheduleR\x08schedule\x12\x42\n\rnotifications\x18\x02 \x03(\x0b\x32\x1c.flyteidl.admin.NotificationR\rnotifications\"{\n\x17LaunchPlanUpdateRequest\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x35\n\x05state\x18\x02 \x01(\x0e\x32\x1f.flyteidl.admin.LaunchPlanStateR\x05state\"\x1a\n\x18LaunchPlanUpdateResponse\"P\n\x17\x41\x63tiveLaunchPlanRequest\x12\x35\n\x02id\x18\x01 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x02id\"\xaa\x01\n\x1b\x41\x63tiveLaunchPlanListRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x14\n\x05limit\x18\x03 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x04 \x01(\tR\x05token\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy*+\n\x0fLaunchPlanState\x12\x0c\n\x08INACTIVE\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x01\x42\xb5\x01\n\x12\x63om.flyteidl.adminB\x0fLaunchPlanProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\x1c\x66lyteidl/core/security.proto\x1a\x1d\x66lyteidl/admin/schedule.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\"x\n\x17LaunchPlanCreateRequest\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x32\n\x04spec\x18\x02 \x01(\x0b\x32\x1e.flyteidl.admin.LaunchPlanSpecR\x04spec\"\x1a\n\x18LaunchPlanCreateResponse\"\xa8\x01\n\nLaunchPlan\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x32\n\x04spec\x18\x02 \x01(\x0b\x32\x1e.flyteidl.admin.LaunchPlanSpecR\x04spec\x12;\n\x07\x63losure\x18\x03 \x01(\x0b\x32!.flyteidl.admin.LaunchPlanClosureR\x07\x63losure\"e\n\x0eLaunchPlanList\x12=\n\x0claunch_plans\x18\x01 \x03(\x0b\x32\x1a.flyteidl.admin.LaunchPlanR\x0blaunchPlans\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"v\n\x04\x41uth\x12,\n\x12\x61ssumable_iam_role\x18\x01 \x01(\tR\x10\x61ssumableIamRole\x12<\n\x1akubernetes_service_account\x18\x02 \x01(\tR\x18kubernetesServiceAccount:\x02\x18\x01\"\xbd\x07\n\x0eLaunchPlanSpec\x12:\n\x0bworkflow_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\nworkflowId\x12K\n\x0f\x65ntity_metadata\x18\x02 \x01(\x0b\x32\".flyteidl.admin.LaunchPlanMetadataR\x0e\x65ntityMetadata\x12\x42\n\x0e\x64\x65\x66\x61ult_inputs\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.ParameterMapR\rdefaultInputs\x12<\n\x0c\x66ixed_inputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x0b\x66ixedInputs\x12\x16\n\x04role\x18\x05 \x01(\tB\x02\x18\x01R\x04role\x12.\n\x06labels\x18\x06 \x01(\x0b\x32\x16.flyteidl.admin.LabelsR\x06labels\x12=\n\x0b\x61nnotations\x18\x07 \x01(\x0b\x32\x1b.flyteidl.admin.AnnotationsR\x0b\x61nnotations\x12,\n\x04\x61uth\x18\x08 \x01(\x0b\x32\x14.flyteidl.admin.AuthB\x02\x18\x01R\x04\x61uth\x12\x39\n\tauth_role\x18\t \x01(\x0b\x32\x18.flyteidl.admin.AuthRoleB\x02\x18\x01R\x08\x61uthRole\x12I\n\x10security_context\x18\n \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12M\n\x12quality_of_service\x18\x10 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceR\x10qualityOfService\x12X\n\x16raw_output_data_config\x18\x11 \x01(\x0b\x32#.flyteidl.admin.RawOutputDataConfigR\x13rawOutputDataConfig\x12\'\n\x0fmax_parallelism\x18\x12 \x01(\x05R\x0emaxParallelism\x12@\n\rinterruptible\x18\x13 \x01(\x0b\x32\x1a.google.protobuf.BoolValueR\rinterruptible\x12\'\n\x0foverwrite_cache\x18\x14 \x01(\x08R\x0eoverwriteCache\x12(\n\x04\x65nvs\x18\x15 \x01(\x0b\x32\x14.flyteidl.admin.EnvsR\x04\x65nvs\"\xcd\x02\n\x11LaunchPlanClosure\x12\x35\n\x05state\x18\x01 \x01(\x0e\x32\x1f.flyteidl.admin.LaunchPlanStateR\x05state\x12\x44\n\x0f\x65xpected_inputs\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.ParameterMapR\x0e\x65xpectedInputs\x12\x45\n\x10\x65xpected_outputs\x18\x03 \x01(\x0b\x32\x1a.flyteidl.core.VariableMapR\x0f\x65xpectedOutputs\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\"\x8e\x01\n\x12LaunchPlanMetadata\x12\x34\n\x08schedule\x18\x01 \x01(\x0b\x32\x18.flyteidl.admin.ScheduleR\x08schedule\x12\x42\n\rnotifications\x18\x02 \x03(\x0b\x32\x1c.flyteidl.admin.NotificationR\rnotifications\"{\n\x17LaunchPlanUpdateRequest\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x35\n\x05state\x18\x02 \x01(\x0e\x32\x1f.flyteidl.admin.LaunchPlanStateR\x05state\"\x1a\n\x18LaunchPlanUpdateResponse\"P\n\x17\x41\x63tiveLaunchPlanRequest\x12\x35\n\x02id\x18\x01 \x01(\x0b\x32%.flyteidl.admin.NamedEntityIdentifierR\x02id\"\xaa\x01\n\x1b\x41\x63tiveLaunchPlanListRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x14\n\x05limit\x18\x03 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x04 \x01(\tR\x05token\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy*+\n\x0fLaunchPlanState\x12\x0c\n\x08INACTIVE\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x01\x42\xbb\x01\n\x12\x63om.flyteidl.adminB\x0fLaunchPlanProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -30,7 +30,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\017LaunchPlanProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\017LaunchPlanProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _AUTH._options = None
   _AUTH._serialized_options = b'\030\001'
   _LAUNCHPLANSPEC.fields_by_name['role']._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py
index 009314ccd1..931defd6e8 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/matchable_resource_pb2.py
@@ -18,7 +18,7 @@
 from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'flyteidl/admin/matchable_resource.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\'flyteidl/admin/cluster_assignment.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\x95\x01\n\x10TaskResourceSpec\x12\x10\n\x03\x63pu\x18\x01 \x01(\tR\x03\x63pu\x12\x10\n\x03gpu\x18\x02 \x01(\tR\x03gpu\x12\x16\n\x06memory\x18\x03 \x01(\tR\x06memory\x12\x18\n\x07storage\x18\x04 \x01(\tR\x07storage\x12+\n\x11\x65phemeral_storage\x18\x05 \x01(\tR\x10\x65phemeralStorage\"\x90\x01\n\x16TaskResourceAttributes\x12<\n\x08\x64\x65\x66\x61ults\x18\x01 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpecR\x08\x64\x65\x66\x61ults\x12\x38\n\x06limits\x18\x02 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpecR\x06limits\"\xb5\x01\n\x19\x43lusterResourceAttributes\x12Y\n\nattributes\x18\x01 \x03(\x0b\x32\x39.flyteidl.admin.ClusterResourceAttributes.AttributesEntryR\nattributes\x1a=\n\x0f\x41ttributesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\".\n\x18\x45xecutionQueueAttributes\x12\x12\n\x04tags\x18\x01 \x03(\tR\x04tags\"-\n\x15\x45xecutionClusterLabel\x12\x14\n\x05value\x18\x01 \x01(\tR\x05value\"\xec\x01\n\x0ePluginOverride\x12\x1b\n\ttask_type\x18\x01 \x01(\tR\x08taskType\x12\x1b\n\tplugin_id\x18\x02 \x03(\tR\x08pluginId\x12l\n\x17missing_plugin_behavior\x18\x04 \x01(\x0e\x32\x34.flyteidl.admin.PluginOverride.MissingPluginBehaviorR\x15missingPluginBehavior\"2\n\x15MissingPluginBehavior\x12\x08\n\x04\x46\x41IL\x10\x00\x12\x0f\n\x0bUSE_DEFAULT\x10\x01\"O\n\x0fPluginOverrides\x12<\n\toverrides\x18\x01 \x03(\x0b\x32\x1e.flyteidl.admin.PluginOverrideR\toverrides\"\xeb\x03\n\x17WorkflowExecutionConfig\x12\'\n\x0fmax_parallelism\x18\x01 \x01(\x05R\x0emaxParallelism\x12I\n\x10security_context\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12X\n\x16raw_output_data_config\x18\x03 \x01(\x0b\x32#.flyteidl.admin.RawOutputDataConfigR\x13rawOutputDataConfig\x12.\n\x06labels\x18\x04 \x01(\x0b\x32\x16.flyteidl.admin.LabelsR\x06labels\x12=\n\x0b\x61nnotations\x18\x05 \x01(\x0b\x32\x1b.flyteidl.admin.AnnotationsR\x0b\x61nnotations\x12@\n\rinterruptible\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.BoolValueR\rinterruptible\x12\'\n\x0foverwrite_cache\x18\x07 \x01(\x08R\x0eoverwriteCache\x12(\n\x04\x65nvs\x18\x08 \x01(\x0b\x32\x14.flyteidl.admin.EnvsR\x04\x65nvs\"\x94\x06\n\x12MatchingAttributes\x12\x62\n\x18task_resource_attributes\x18\x01 \x01(\x0b\x32&.flyteidl.admin.TaskResourceAttributesH\x00R\x16taskResourceAttributes\x12k\n\x1b\x63luster_resource_attributes\x18\x02 \x01(\x0b\x32).flyteidl.admin.ClusterResourceAttributesH\x00R\x19\x63lusterResourceAttributes\x12h\n\x1a\x65xecution_queue_attributes\x18\x03 \x01(\x0b\x32(.flyteidl.admin.ExecutionQueueAttributesH\x00R\x18\x65xecutionQueueAttributes\x12_\n\x17\x65xecution_cluster_label\x18\x04 \x01(\x0b\x32%.flyteidl.admin.ExecutionClusterLabelH\x00R\x15\x65xecutionClusterLabel\x12O\n\x12quality_of_service\x18\x05 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceH\x00R\x10qualityOfService\x12L\n\x10plugin_overrides\x18\x06 \x01(\x0b\x32\x1f.flyteidl.admin.PluginOverridesH\x00R\x0fpluginOverrides\x12\x65\n\x19workflow_execution_config\x18\x07 \x01(\x0b\x32\'.flyteidl.admin.WorkflowExecutionConfigH\x00R\x17workflowExecutionConfig\x12R\n\x12\x63luster_assignment\x18\x08 \x01(\x0b\x32!.flyteidl.admin.ClusterAssignmentH\x00R\x11\x63lusterAssignmentB\x08\n\x06target\"\xd5\x01\n MatchableAttributesConfiguration\x12\x42\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributesR\nattributes\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x18\n\x07project\x18\x03 \x01(\tR\x07project\x12\x1a\n\x08workflow\x18\x04 \x01(\tR\x08workflow\x12\x1f\n\x0blaunch_plan\x18\x05 \x01(\tR\nlaunchPlan\"h\n\x1eListMatchableAttributesRequest\x12\x46\n\rresource_type\x18\x01 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"{\n\x1fListMatchableAttributesResponse\x12X\n\x0e\x63onfigurations\x18\x01 \x03(\x0b\x32\x30.flyteidl.admin.MatchableAttributesConfigurationR\x0e\x63onfigurations*\xe0\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\x12\x1d\n\x19WORKFLOW_EXECUTION_CONFIG\x10\x06\x12\x16\n\x12\x43LUSTER_ASSIGNMENT\x10\x07\x42\xbc\x01\n\x12\x63om.flyteidl.adminB\x16MatchableResourceProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'flyteidl/admin/matchable_resource.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\'flyteidl/admin/cluster_assignment.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\x95\x01\n\x10TaskResourceSpec\x12\x10\n\x03\x63pu\x18\x01 \x01(\tR\x03\x63pu\x12\x10\n\x03gpu\x18\x02 \x01(\tR\x03gpu\x12\x16\n\x06memory\x18\x03 \x01(\tR\x06memory\x12\x18\n\x07storage\x18\x04 \x01(\tR\x07storage\x12+\n\x11\x65phemeral_storage\x18\x05 \x01(\tR\x10\x65phemeralStorage\"\x90\x01\n\x16TaskResourceAttributes\x12<\n\x08\x64\x65\x66\x61ults\x18\x01 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpecR\x08\x64\x65\x66\x61ults\x12\x38\n\x06limits\x18\x02 \x01(\x0b\x32 .flyteidl.admin.TaskResourceSpecR\x06limits\"\xb5\x01\n\x19\x43lusterResourceAttributes\x12Y\n\nattributes\x18\x01 \x03(\x0b\x32\x39.flyteidl.admin.ClusterResourceAttributes.AttributesEntryR\nattributes\x1a=\n\x0f\x41ttributesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\".\n\x18\x45xecutionQueueAttributes\x12\x12\n\x04tags\x18\x01 \x03(\tR\x04tags\"-\n\x15\x45xecutionClusterLabel\x12\x14\n\x05value\x18\x01 \x01(\tR\x05value\"\xec\x01\n\x0ePluginOverride\x12\x1b\n\ttask_type\x18\x01 \x01(\tR\x08taskType\x12\x1b\n\tplugin_id\x18\x02 \x03(\tR\x08pluginId\x12l\n\x17missing_plugin_behavior\x18\x04 \x01(\x0e\x32\x34.flyteidl.admin.PluginOverride.MissingPluginBehaviorR\x15missingPluginBehavior\"2\n\x15MissingPluginBehavior\x12\x08\n\x04\x46\x41IL\x10\x00\x12\x0f\n\x0bUSE_DEFAULT\x10\x01\"O\n\x0fPluginOverrides\x12<\n\toverrides\x18\x01 \x03(\x0b\x32\x1e.flyteidl.admin.PluginOverrideR\toverrides\"\xeb\x03\n\x17WorkflowExecutionConfig\x12\'\n\x0fmax_parallelism\x18\x01 \x01(\x05R\x0emaxParallelism\x12I\n\x10security_context\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12X\n\x16raw_output_data_config\x18\x03 \x01(\x0b\x32#.flyteidl.admin.RawOutputDataConfigR\x13rawOutputDataConfig\x12.\n\x06labels\x18\x04 \x01(\x0b\x32\x16.flyteidl.admin.LabelsR\x06labels\x12=\n\x0b\x61nnotations\x18\x05 \x01(\x0b\x32\x1b.flyteidl.admin.AnnotationsR\x0b\x61nnotations\x12@\n\rinterruptible\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.BoolValueR\rinterruptible\x12\'\n\x0foverwrite_cache\x18\x07 \x01(\x08R\x0eoverwriteCache\x12(\n\x04\x65nvs\x18\x08 \x01(\x0b\x32\x14.flyteidl.admin.EnvsR\x04\x65nvs\"\x94\x06\n\x12MatchingAttributes\x12\x62\n\x18task_resource_attributes\x18\x01 \x01(\x0b\x32&.flyteidl.admin.TaskResourceAttributesH\x00R\x16taskResourceAttributes\x12k\n\x1b\x63luster_resource_attributes\x18\x02 \x01(\x0b\x32).flyteidl.admin.ClusterResourceAttributesH\x00R\x19\x63lusterResourceAttributes\x12h\n\x1a\x65xecution_queue_attributes\x18\x03 \x01(\x0b\x32(.flyteidl.admin.ExecutionQueueAttributesH\x00R\x18\x65xecutionQueueAttributes\x12_\n\x17\x65xecution_cluster_label\x18\x04 \x01(\x0b\x32%.flyteidl.admin.ExecutionClusterLabelH\x00R\x15\x65xecutionClusterLabel\x12O\n\x12quality_of_service\x18\x05 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceH\x00R\x10qualityOfService\x12L\n\x10plugin_overrides\x18\x06 \x01(\x0b\x32\x1f.flyteidl.admin.PluginOverridesH\x00R\x0fpluginOverrides\x12\x65\n\x19workflow_execution_config\x18\x07 \x01(\x0b\x32\'.flyteidl.admin.WorkflowExecutionConfigH\x00R\x17workflowExecutionConfig\x12R\n\x12\x63luster_assignment\x18\x08 \x01(\x0b\x32!.flyteidl.admin.ClusterAssignmentH\x00R\x11\x63lusterAssignmentB\x08\n\x06target\"\xd5\x01\n MatchableAttributesConfiguration\x12\x42\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributesR\nattributes\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x18\n\x07project\x18\x03 \x01(\tR\x07project\x12\x1a\n\x08workflow\x18\x04 \x01(\tR\x08workflow\x12\x1f\n\x0blaunch_plan\x18\x05 \x01(\tR\nlaunchPlan\"h\n\x1eListMatchableAttributesRequest\x12\x46\n\rresource_type\x18\x01 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"{\n\x1fListMatchableAttributesResponse\x12X\n\x0e\x63onfigurations\x18\x01 \x03(\x0b\x32\x30.flyteidl.admin.MatchableAttributesConfigurationR\x0e\x63onfigurations*\xe0\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\x12\x1d\n\x19WORKFLOW_EXECUTION_CONFIG\x10\x06\x12\x16\n\x12\x43LUSTER_ASSIGNMENT\x10\x07\x42\xc2\x01\n\x12\x63om.flyteidl.adminB\x16MatchableResourceProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -26,7 +26,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\026MatchableResourceProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\026MatchableResourceProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _CLUSTERRESOURCEATTRIBUTES_ATTRIBUTESENTRY._options = None
   _CLUSTERRESOURCEATTRIBUTES_ATTRIBUTESENTRY._serialized_options = b'8\001'
   _globals['_MATCHABLERESOURCE']._serialized_start=2853
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/node_execution_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/node_execution_pb2.py
index 0eb0b0297f..35f8b4dc37 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/node_execution_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/node_execution_pb2.py
@@ -21,7 +21,7 @@
 from google.protobuf import duration_pb2 as google_dot_protobuf_dot_duration__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\x1c\x66lyteidl/core/compiler.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\"Q\n\x17NodeExecutionGetRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\"\x99\x02\n\x18NodeExecutionListRequest\x12^\n\x15workflow_execution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x13workflowExecutionId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\x12(\n\x10unique_parent_id\x18\x06 \x01(\tR\x0euniqueParentId\"\xea\x01\n\x1fNodeExecutionForTaskListRequest\x12R\n\x11task_execution_id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x0ftaskExecutionId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\"\xe7\x01\n\rNodeExecution\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\x12\x1b\n\tinput_uri\x18\x02 \x01(\tR\x08inputUri\x12>\n\x07\x63losure\x18\x03 \x01(\x0b\x32$.flyteidl.admin.NodeExecutionClosureR\x07\x63losure\x12\x41\n\x08metadata\x18\x04 \x01(\x0b\x32%.flyteidl.admin.NodeExecutionMetaDataR\x08metadata\"\x9f\x01\n\x15NodeExecutionMetaData\x12\x1f\n\x0bretry_group\x18\x01 \x01(\tR\nretryGroup\x12$\n\x0eis_parent_node\x18\x02 \x01(\x08R\x0cisParentNode\x12 \n\x0cspec_node_id\x18\x03 \x01(\tR\nspecNodeId\x12\x1d\n\nis_dynamic\x18\x04 \x01(\x08R\tisDynamic\"q\n\x11NodeExecutionList\x12\x46\n\x0fnode_executions\x18\x01 \x03(\x0b\x32\x1d.flyteidl.admin.NodeExecutionR\x0enodeExecutions\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\xf6\x05\n\x14NodeExecutionClosure\x12#\n\noutput_uri\x18\x01 \x01(\tB\x02\x18\x01H\x00R\toutputUri\x12\x35\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12@\n\x0boutput_data\x18\n \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\noutputData\x12\x38\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.PhaseR\x05phase\x12\x39\n\nstarted_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x35\n\x08\x64uration\x18\x05 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\x12\x39\n\ncreated_at\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\\\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.admin.WorkflowNodeMetadataH\x01R\x14workflowNodeMetadata\x12P\n\x12task_node_metadata\x18\t \x01(\x0b\x32 .flyteidl.admin.TaskNodeMetadataH\x01R\x10taskNodeMetadata\x12\x19\n\x08\x64\x65\x63k_uri\x18\x0b \x01(\tR\x07\x64\x65\x63kUri\x12/\n\x14\x64ynamic_job_spec_uri\x18\x0c \x01(\tR\x11\x64ynamicJobSpecUriB\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"d\n\x14WorkflowNodeMetadata\x12L\n\x0b\x65xecutionId\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\"\xc0\x01\n\x10TaskNodeMetadata\x12\x44\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12?\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadataR\ncatalogKey\x12%\n\x0e\x63heckpoint_uri\x18\x04 \x01(\tR\rcheckpointUri\"\xce\x01\n\x1b\x44ynamicWorkflowNodeMetadata\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12S\n\x11\x63ompiled_workflow\x18\x02 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosureR\x10\x63ompiledWorkflow\x12/\n\x14\x64ynamic_job_spec_uri\x18\x03 \x01(\tR\x11\x64ynamicJobSpecUri\"U\n\x1bNodeExecutionGetDataRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\"\x96\x03\n\x1cNodeExecutionGetDataResponse\x12\x33\n\x06inputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x06inputs\x12\x35\n\x07outputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x07outputs\x12:\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\nfullInputs\x12<\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x0b\x66ullOutputs\x12V\n\x10\x64ynamic_workflow\x18\x10 \x01(\x0b\x32+.flyteidl.admin.DynamicWorkflowNodeMetadataR\x0f\x64ynamicWorkflow\x12\x38\n\nflyte_urls\x18\x11 \x01(\x0b\x32\x19.flyteidl.admin.FlyteURLsR\tflyteUrlsB\xb8\x01\n\x12\x63om.flyteidl.adminB\x12NodeExecutionProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\x1c\x66lyteidl/core/compiler.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\"Q\n\x17NodeExecutionGetRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\"\x99\x02\n\x18NodeExecutionListRequest\x12^\n\x15workflow_execution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x13workflowExecutionId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\x12(\n\x10unique_parent_id\x18\x06 \x01(\tR\x0euniqueParentId\"\xea\x01\n\x1fNodeExecutionForTaskListRequest\x12R\n\x11task_execution_id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x0ftaskExecutionId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\"\xe7\x01\n\rNodeExecution\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\x12\x1b\n\tinput_uri\x18\x02 \x01(\tR\x08inputUri\x12>\n\x07\x63losure\x18\x03 \x01(\x0b\x32$.flyteidl.admin.NodeExecutionClosureR\x07\x63losure\x12\x41\n\x08metadata\x18\x04 \x01(\x0b\x32%.flyteidl.admin.NodeExecutionMetaDataR\x08metadata\"\x9f\x01\n\x15NodeExecutionMetaData\x12\x1f\n\x0bretry_group\x18\x01 \x01(\tR\nretryGroup\x12$\n\x0eis_parent_node\x18\x02 \x01(\x08R\x0cisParentNode\x12 \n\x0cspec_node_id\x18\x03 \x01(\tR\nspecNodeId\x12\x1d\n\nis_dynamic\x18\x04 \x01(\x08R\tisDynamic\"q\n\x11NodeExecutionList\x12\x46\n\x0fnode_executions\x18\x01 \x03(\x0b\x32\x1d.flyteidl.admin.NodeExecutionR\x0enodeExecutions\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\xf6\x05\n\x14NodeExecutionClosure\x12#\n\noutput_uri\x18\x01 \x01(\tB\x02\x18\x01H\x00R\toutputUri\x12\x35\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12@\n\x0boutput_data\x18\n \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\noutputData\x12\x38\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.PhaseR\x05phase\x12\x39\n\nstarted_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x35\n\x08\x64uration\x18\x05 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\x12\x39\n\ncreated_at\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\\\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.admin.WorkflowNodeMetadataH\x01R\x14workflowNodeMetadata\x12P\n\x12task_node_metadata\x18\t \x01(\x0b\x32 .flyteidl.admin.TaskNodeMetadataH\x01R\x10taskNodeMetadata\x12\x19\n\x08\x64\x65\x63k_uri\x18\x0b \x01(\tR\x07\x64\x65\x63kUri\x12/\n\x14\x64ynamic_job_spec_uri\x18\x0c \x01(\tR\x11\x64ynamicJobSpecUriB\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"d\n\x14WorkflowNodeMetadata\x12L\n\x0b\x65xecutionId\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\"\xc0\x01\n\x10TaskNodeMetadata\x12\x44\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12?\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadataR\ncatalogKey\x12%\n\x0e\x63heckpoint_uri\x18\x04 \x01(\tR\rcheckpointUri\"\xce\x01\n\x1b\x44ynamicWorkflowNodeMetadata\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12S\n\x11\x63ompiled_workflow\x18\x02 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosureR\x10\x63ompiledWorkflow\x12/\n\x14\x64ynamic_job_spec_uri\x18\x03 \x01(\tR\x11\x64ynamicJobSpecUri\"U\n\x1bNodeExecutionGetDataRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\"\x96\x03\n\x1cNodeExecutionGetDataResponse\x12\x33\n\x06inputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x06inputs\x12\x35\n\x07outputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x07outputs\x12:\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\nfullInputs\x12<\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x0b\x66ullOutputs\x12V\n\x10\x64ynamic_workflow\x18\x10 \x01(\x0b\x32+.flyteidl.admin.DynamicWorkflowNodeMetadataR\x0f\x64ynamicWorkflow\x12\x38\n\nflyte_urls\x18\x11 \x01(\x0b\x32\x19.flyteidl.admin.FlyteURLsR\tflyteUrlsB\xbe\x01\n\x12\x63om.flyteidl.adminB\x12NodeExecutionProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -29,7 +29,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\022NodeExecutionProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\022NodeExecutionProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _NODEEXECUTIONCLOSURE.fields_by_name['output_uri']._options = None
   _NODEEXECUTIONCLOSURE.fields_by_name['output_uri']._serialized_options = b'\030\001'
   _NODEEXECUTIONCLOSURE.fields_by_name['output_data']._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/notification_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/notification_pb2.py
index f6e0882877..5f247002e5 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/notification_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/notification_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!flyteidl/admin/notification.proto\x12\x0e\x66lyteidl.admin\"\x93\x01\n\x0c\x45mailMessage\x12)\n\x10recipients_email\x18\x01 \x03(\tR\x0frecipientsEmail\x12!\n\x0csender_email\x18\x02 \x01(\tR\x0bsenderEmail\x12!\n\x0csubject_line\x18\x03 \x01(\tR\x0bsubjectLine\x12\x12\n\x04\x62ody\x18\x04 \x01(\tR\x04\x62odyB\xb7\x01\n\x12\x63om.flyteidl.adminB\x11NotificationProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!flyteidl/admin/notification.proto\x12\x0e\x66lyteidl.admin\"\x93\x01\n\x0c\x45mailMessage\x12)\n\x10recipients_email\x18\x01 \x03(\tR\x0frecipientsEmail\x12!\n\x0csender_email\x18\x02 \x01(\tR\x0bsenderEmail\x12!\n\x0csubject_line\x18\x03 \x01(\tR\x0bsubjectLine\x12\x12\n\x04\x62ody\x18\x04 \x01(\tR\x04\x62odyB\xbd\x01\n\x12\x63om.flyteidl.adminB\x11NotificationProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\021NotificationProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\021NotificationProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _globals['_EMAILMESSAGE']._serialized_start=54
   _globals['_EMAILMESSAGE']._serialized_end=201
 # @@protoc_insertion_point(module_scope)
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/project_attributes_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/project_attributes_pb2.py
index 942db24c33..b6f7d05f5e 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/project_attributes_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/project_attributes_pb2.py
@@ -14,7 +14,7 @@
 from flyteidl.admin import matchable_resource_pb2 as flyteidl_dot_admin_dot_matchable__resource__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'flyteidl/admin/project_attributes.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/matchable_resource.proto\"\x82\x01\n\x11ProjectAttributes\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12S\n\x13matching_attributes\x18\x02 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributesR\x12matchingAttributes\"c\n\x1eProjectAttributesUpdateRequest\x12\x41\n\nattributes\x18\x01 \x01(\x0b\x32!.flyteidl.admin.ProjectAttributesR\nattributes\"!\n\x1fProjectAttributesUpdateResponse\"\x7f\n\x1bProjectAttributesGetRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x46\n\rresource_type\x18\x02 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"a\n\x1cProjectAttributesGetResponse\x12\x41\n\nattributes\x18\x01 \x01(\x0b\x32!.flyteidl.admin.ProjectAttributesR\nattributes\"\x82\x01\n\x1eProjectAttributesDeleteRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x46\n\rresource_type\x18\x02 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"!\n\x1fProjectAttributesDeleteResponseB\xbc\x01\n\x12\x63om.flyteidl.adminB\x16ProjectAttributesProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'flyteidl/admin/project_attributes.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/matchable_resource.proto\"\x82\x01\n\x11ProjectAttributes\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12S\n\x13matching_attributes\x18\x02 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributesR\x12matchingAttributes\"c\n\x1eProjectAttributesUpdateRequest\x12\x41\n\nattributes\x18\x01 \x01(\x0b\x32!.flyteidl.admin.ProjectAttributesR\nattributes\"!\n\x1fProjectAttributesUpdateResponse\"\x7f\n\x1bProjectAttributesGetRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x46\n\rresource_type\x18\x02 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"a\n\x1cProjectAttributesGetResponse\x12\x41\n\nattributes\x18\x01 \x01(\x0b\x32!.flyteidl.admin.ProjectAttributesR\nattributes\"\x82\x01\n\x1eProjectAttributesDeleteRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x46\n\rresource_type\x18\x02 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"!\n\x1fProjectAttributesDeleteResponseB\xc2\x01\n\x12\x63om.flyteidl.adminB\x16ProjectAttributesProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\026ProjectAttributesProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\026ProjectAttributesProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _globals['_PROJECTATTRIBUTES']._serialized_start=101
   _globals['_PROJECTATTRIBUTES']._serialized_end=231
   _globals['_PROJECTATTRIBUTESUPDATEREQUEST']._serialized_start=233
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/project_domain_attributes_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/project_domain_attributes_pb2.py
index bc545863c7..ff5c077221 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/project_domain_attributes_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/project_domain_attributes_pb2.py
@@ -14,7 +14,7 @@
 from flyteidl.admin import matchable_resource_pb2 as flyteidl_dot_admin_dot_matchable__resource__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.flyteidl/admin/project_domain_attributes.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/matchable_resource.proto\"\xa0\x01\n\x17ProjectDomainAttributes\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12S\n\x13matching_attributes\x18\x03 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributesR\x12matchingAttributes\"o\n$ProjectDomainAttributesUpdateRequest\x12G\n\nattributes\x18\x01 \x01(\x0b\x32\'.flyteidl.admin.ProjectDomainAttributesR\nattributes\"\'\n%ProjectDomainAttributesUpdateResponse\"\x9d\x01\n!ProjectDomainAttributesGetRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x46\n\rresource_type\x18\x03 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"m\n\"ProjectDomainAttributesGetResponse\x12G\n\nattributes\x18\x01 \x01(\x0b\x32\'.flyteidl.admin.ProjectDomainAttributesR\nattributes\"\xa0\x01\n$ProjectDomainAttributesDeleteRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x46\n\rresource_type\x18\x03 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"\'\n%ProjectDomainAttributesDeleteResponseB\xc2\x01\n\x12\x63om.flyteidl.adminB\x1cProjectDomainAttributesProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.flyteidl/admin/project_domain_attributes.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/matchable_resource.proto\"\xa0\x01\n\x17ProjectDomainAttributes\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12S\n\x13matching_attributes\x18\x03 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributesR\x12matchingAttributes\"o\n$ProjectDomainAttributesUpdateRequest\x12G\n\nattributes\x18\x01 \x01(\x0b\x32\'.flyteidl.admin.ProjectDomainAttributesR\nattributes\"\'\n%ProjectDomainAttributesUpdateResponse\"\x9d\x01\n!ProjectDomainAttributesGetRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x46\n\rresource_type\x18\x03 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"m\n\"ProjectDomainAttributesGetResponse\x12G\n\nattributes\x18\x01 \x01(\x0b\x32\'.flyteidl.admin.ProjectDomainAttributesR\nattributes\"\xa0\x01\n$ProjectDomainAttributesDeleteRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x46\n\rresource_type\x18\x03 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"\'\n%ProjectDomainAttributesDeleteResponseB\xc8\x01\n\x12\x63om.flyteidl.adminB\x1cProjectDomainAttributesProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\034ProjectDomainAttributesProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\034ProjectDomainAttributesProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _globals['_PROJECTDOMAINATTRIBUTES']._serialized_start=108
   _globals['_PROJECTDOMAINATTRIBUTES']._serialized_end=268
   _globals['_PROJECTDOMAINATTRIBUTESUPDATEREQUEST']._serialized_start=270
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/project_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/project_pb2.py
index b936372510..ae321b092c 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/project_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/project_pb2.py
@@ -14,7 +14,7 @@
 from flyteidl.admin import common_pb2 as flyteidl_dot_admin_dot_common__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/admin/project.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\",\n\x06\x44omain\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\"\xad\x02\n\x07Project\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x30\n\x07\x64omains\x18\x03 \x03(\x0b\x32\x16.flyteidl.admin.DomainR\x07\x64omains\x12 \n\x0b\x64\x65scription\x18\x04 \x01(\tR\x0b\x64\x65scription\x12.\n\x06labels\x18\x05 \x01(\x0b\x32\x16.flyteidl.admin.LabelsR\x06labels\x12:\n\x05state\x18\x06 \x01(\x0e\x32$.flyteidl.admin.Project.ProjectStateR\x05state\">\n\x0cProjectState\x12\n\n\x06\x41\x43TIVE\x10\x00\x12\x0c\n\x08\x41RCHIVED\x10\x01\x12\x14\n\x10SYSTEM_GENERATED\x10\x02\"U\n\x08Projects\x12\x33\n\x08projects\x18\x01 \x03(\x0b\x32\x17.flyteidl.admin.ProjectR\x08projects\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\x89\x01\n\x12ProjectListRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x03 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x04 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\"K\n\x16ProjectRegisterRequest\x12\x31\n\x07project\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.ProjectR\x07project\"\x19\n\x17ProjectRegisterResponse\"\x17\n\x15ProjectUpdateResponseB\xb2\x01\n\x12\x63om.flyteidl.adminB\x0cProjectProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/admin/project.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\",\n\x06\x44omain\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\"\xad\x02\n\x07Project\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x30\n\x07\x64omains\x18\x03 \x03(\x0b\x32\x16.flyteidl.admin.DomainR\x07\x64omains\x12 \n\x0b\x64\x65scription\x18\x04 \x01(\tR\x0b\x64\x65scription\x12.\n\x06labels\x18\x05 \x01(\x0b\x32\x16.flyteidl.admin.LabelsR\x06labels\x12:\n\x05state\x18\x06 \x01(\x0e\x32$.flyteidl.admin.Project.ProjectStateR\x05state\">\n\x0cProjectState\x12\n\n\x06\x41\x43TIVE\x10\x00\x12\x0c\n\x08\x41RCHIVED\x10\x01\x12\x14\n\x10SYSTEM_GENERATED\x10\x02\"U\n\x08Projects\x12\x33\n\x08projects\x18\x01 \x03(\x0b\x32\x17.flyteidl.admin.ProjectR\x08projects\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\x89\x01\n\x12ProjectListRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x03 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x04 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\"K\n\x16ProjectRegisterRequest\x12\x31\n\x07project\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.ProjectR\x07project\"\x19\n\x17ProjectRegisterResponse\"\x17\n\x15ProjectUpdateResponseB\xb8\x01\n\x12\x63om.flyteidl.adminB\x0cProjectProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\014ProjectProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\014ProjectProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _globals['_DOMAIN']._serialized_start=77
   _globals['_DOMAIN']._serialized_end=121
   _globals['_PROJECT']._serialized_start=124
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/schedule_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/schedule_pb2.py
index 16d85b7926..42af3da7a2 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/schedule_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/schedule_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/admin/schedule.proto\x12\x0e\x66lyteidl.admin\"T\n\tFixedRate\x12\x14\n\x05value\x18\x01 \x01(\rR\x05value\x12\x31\n\x04unit\x18\x02 \x01(\x0e\x32\x1d.flyteidl.admin.FixedRateUnitR\x04unit\"B\n\x0c\x43ronSchedule\x12\x1a\n\x08schedule\x18\x01 \x01(\tR\x08schedule\x12\x16\n\x06offset\x18\x02 \x01(\tR\x06offset\"\xfa\x01\n\x08Schedule\x12-\n\x0f\x63ron_expression\x18\x01 \x01(\tB\x02\x18\x01H\x00R\x0e\x63ronExpression\x12/\n\x04rate\x18\x02 \x01(\x0b\x32\x19.flyteidl.admin.FixedRateH\x00R\x04rate\x12\x43\n\rcron_schedule\x18\x04 \x01(\x0b\x32\x1c.flyteidl.admin.CronScheduleH\x00R\x0c\x63ronSchedule\x12\x33\n\x16kickoff_time_input_arg\x18\x03 \x01(\tR\x13kickoffTimeInputArgB\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\xb3\x01\n\x12\x63om.flyteidl.adminB\rScheduleProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/admin/schedule.proto\x12\x0e\x66lyteidl.admin\"T\n\tFixedRate\x12\x14\n\x05value\x18\x01 \x01(\rR\x05value\x12\x31\n\x04unit\x18\x02 \x01(\x0e\x32\x1d.flyteidl.admin.FixedRateUnitR\x04unit\"B\n\x0c\x43ronSchedule\x12\x1a\n\x08schedule\x18\x01 \x01(\tR\x08schedule\x12\x16\n\x06offset\x18\x02 \x01(\tR\x06offset\"\xfa\x01\n\x08Schedule\x12-\n\x0f\x63ron_expression\x18\x01 \x01(\tB\x02\x18\x01H\x00R\x0e\x63ronExpression\x12/\n\x04rate\x18\x02 \x01(\x0b\x32\x19.flyteidl.admin.FixedRateH\x00R\x04rate\x12\x43\n\rcron_schedule\x18\x04 \x01(\x0b\x32\x1c.flyteidl.admin.CronScheduleH\x00R\x0c\x63ronSchedule\x12\x33\n\x16kickoff_time_input_arg\x18\x03 \x01(\tR\x13kickoffTimeInputArgB\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\xb9\x01\n\x12\x63om.flyteidl.adminB\rScheduleProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\rScheduleProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\rScheduleProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _SCHEDULE.fields_by_name['cron_expression']._options = None
   _SCHEDULE.fields_by_name['cron_expression']._serialized_options = b'\030\001'
   _globals['_FIXEDRATEUNIT']._serialized_start=456
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/signal_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/signal_pb2.py
index 3d2a2c066d..be296a4ae8 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/signal_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/signal_pb2.py
@@ -17,7 +17,7 @@
 from flyteidl.core import types_pb2 as flyteidl_dot_core_dot_types__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x66lyteidl/admin/signal.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/types.proto\"{\n\x18SignalGetOrCreateRequest\x12/\n\x02id\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.SignalIdentifierR\x02id\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\"\xe8\x01\n\x11SignalListRequest\x12^\n\x15workflow_execution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x13workflowExecutionId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\"T\n\nSignalList\x12\x30\n\x07signals\x18\x01 \x03(\x0b\x32\x16.flyteidl.admin.SignalR\x07signals\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"q\n\x10SignalSetRequest\x12/\n\x02id\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.SignalIdentifierR\x02id\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05value\"\x13\n\x11SignalSetResponse\"\x97\x01\n\x06Signal\x12/\n\x02id\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.SignalIdentifierR\x02id\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12,\n\x05value\x18\x03 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05valueB\xb1\x01\n\x12\x63om.flyteidl.adminB\x0bSignalProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x66lyteidl/admin/signal.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/types.proto\"{\n\x18SignalGetOrCreateRequest\x12/\n\x02id\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.SignalIdentifierR\x02id\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\"\xe8\x01\n\x11SignalListRequest\x12^\n\x15workflow_execution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x13workflowExecutionId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\"T\n\nSignalList\x12\x30\n\x07signals\x18\x01 \x03(\x0b\x32\x16.flyteidl.admin.SignalR\x07signals\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"q\n\x10SignalSetRequest\x12/\n\x02id\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.SignalIdentifierR\x02id\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05value\"\x13\n\x11SignalSetResponse\"\x97\x01\n\x06Signal\x12/\n\x02id\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.SignalIdentifierR\x02id\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12,\n\x05value\x18\x03 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05valueB\xb7\x01\n\x12\x63om.flyteidl.adminB\x0bSignalProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -25,7 +25,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\013SignalProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\013SignalProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _globals['_SIGNALGETORCREATEREQUEST']._serialized_start=165
   _globals['_SIGNALGETORCREATEREQUEST']._serialized_end=288
   _globals['_SIGNALLISTREQUEST']._serialized_start=291
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/task_execution_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/task_execution_pb2.py
index 17a1fc991a..226866f72d 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/task_execution_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/task_execution_pb2.py
@@ -21,7 +21,7 @@
 from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\x1a\x66lyteidl/event/event.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"Q\n\x17TaskExecutionGetRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x02id\"\xe3\x01\n\x18TaskExecutionListRequest\x12R\n\x11node_execution_id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x0fnodeExecutionId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\"\xc1\x01\n\rTaskExecution\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x02id\x12\x1b\n\tinput_uri\x18\x02 \x01(\tR\x08inputUri\x12>\n\x07\x63losure\x18\x03 \x01(\x0b\x32$.flyteidl.admin.TaskExecutionClosureR\x07\x63losure\x12\x1b\n\tis_parent\x18\x04 \x01(\x08R\x08isParent\"q\n\x11TaskExecutionList\x12\x46\n\x0ftask_executions\x18\x01 \x03(\x0b\x32\x1d.flyteidl.admin.TaskExecutionR\x0etaskExecutions\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\x9c\x06\n\x14TaskExecutionClosure\x12#\n\noutput_uri\x18\x01 \x01(\tB\x02\x18\x01H\x00R\toutputUri\x12\x35\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12@\n\x0boutput_data\x18\x0c \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\noutputData\x12\x38\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12*\n\x04logs\x18\x04 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\x12\x39\n\nstarted_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x35\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x38\n\x0b\x63ustom_info\x18\t \x01(\x0b\x32\x17.google.protobuf.StructR\ncustomInfo\x12\x16\n\x06reason\x18\n \x01(\tR\x06reason\x12\x1b\n\ttask_type\x18\x0b \x01(\tR\x08taskType\x12\x41\n\x08metadata\x18\x10 \x01(\x0b\x32%.flyteidl.event.TaskExecutionMetadataR\x08metadata\x12#\n\revent_version\x18\x11 \x01(\x05R\x0c\x65ventVersion\x12\x30\n\x07reasons\x18\x12 \x03(\x0b\x32\x16.flyteidl.admin.ReasonR\x07reasonsB\x0f\n\routput_result\"_\n\x06Reason\x12;\n\x0boccurred_at\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\"U\n\x1bTaskExecutionGetDataRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x02id\"\xbe\x02\n\x1cTaskExecutionGetDataResponse\x12\x33\n\x06inputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x06inputs\x12\x35\n\x07outputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x07outputs\x12:\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\nfullInputs\x12<\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x0b\x66ullOutputs\x12\x38\n\nflyte_urls\x18\x05 \x01(\x0b\x32\x19.flyteidl.admin.FlyteURLsR\tflyteUrlsB\xb8\x01\n\x12\x63om.flyteidl.adminB\x12TaskExecutionProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\x1a\x66lyteidl/event/event.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"Q\n\x17TaskExecutionGetRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x02id\"\xe3\x01\n\x18TaskExecutionListRequest\x12R\n\x11node_execution_id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x0fnodeExecutionId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\"\xc1\x01\n\rTaskExecution\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x02id\x12\x1b\n\tinput_uri\x18\x02 \x01(\tR\x08inputUri\x12>\n\x07\x63losure\x18\x03 \x01(\x0b\x32$.flyteidl.admin.TaskExecutionClosureR\x07\x63losure\x12\x1b\n\tis_parent\x18\x04 \x01(\x08R\x08isParent\"q\n\x11TaskExecutionList\x12\x46\n\x0ftask_executions\x18\x01 \x03(\x0b\x32\x1d.flyteidl.admin.TaskExecutionR\x0etaskExecutions\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\x9c\x06\n\x14TaskExecutionClosure\x12#\n\noutput_uri\x18\x01 \x01(\tB\x02\x18\x01H\x00R\toutputUri\x12\x35\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12@\n\x0boutput_data\x18\x0c \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\noutputData\x12\x38\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12*\n\x04logs\x18\x04 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\x12\x39\n\nstarted_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x35\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x38\n\x0b\x63ustom_info\x18\t \x01(\x0b\x32\x17.google.protobuf.StructR\ncustomInfo\x12\x16\n\x06reason\x18\n \x01(\tR\x06reason\x12\x1b\n\ttask_type\x18\x0b \x01(\tR\x08taskType\x12\x41\n\x08metadata\x18\x10 \x01(\x0b\x32%.flyteidl.event.TaskExecutionMetadataR\x08metadata\x12#\n\revent_version\x18\x11 \x01(\x05R\x0c\x65ventVersion\x12\x30\n\x07reasons\x18\x12 \x03(\x0b\x32\x16.flyteidl.admin.ReasonR\x07reasonsB\x0f\n\routput_result\"_\n\x06Reason\x12;\n\x0boccurred_at\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\"U\n\x1bTaskExecutionGetDataRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x02id\"\xbe\x02\n\x1cTaskExecutionGetDataResponse\x12\x33\n\x06inputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x06inputs\x12\x35\n\x07outputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x07outputs\x12:\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\nfullInputs\x12<\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x0b\x66ullOutputs\x12\x38\n\nflyte_urls\x18\x05 \x01(\x0b\x32\x19.flyteidl.admin.FlyteURLsR\tflyteUrlsB\xbe\x01\n\x12\x63om.flyteidl.adminB\x12TaskExecutionProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -29,7 +29,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\022TaskExecutionProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\022TaskExecutionProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _TASKEXECUTIONCLOSURE.fields_by_name['output_uri']._options = None
   _TASKEXECUTIONCLOSURE.fields_by_name['output_uri']._serialized_options = b'\030\001'
   _TASKEXECUTIONCLOSURE.fields_by_name['output_data']._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/task_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/task_pb2.py
index c30868f000..97dc00dfef 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/task_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/task_pb2.py
@@ -18,7 +18,7 @@
 from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\'flyteidl/admin/description_entity.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"l\n\x11TaskCreateRequest\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12,\n\x04spec\x18\x02 \x01(\x0b\x32\x18.flyteidl.admin.TaskSpecR\x04spec\"\x14\n\x12TaskCreateResponse\"\x95\x01\n\x04Task\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x35\n\x07\x63losure\x18\x02 \x01(\x0b\x32\x1b.flyteidl.admin.TaskClosureR\x07\x63losure\x12+\n\x11short_description\x18\x03 \x01(\tR\x10shortDescription\"L\n\x08TaskList\x12*\n\x05tasks\x18\x01 \x03(\x0b\x32\x14.flyteidl.admin.TaskR\x05tasks\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\x88\x01\n\x08TaskSpec\x12\x37\n\x08template\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplateR\x08template\x12\x43\n\x0b\x64\x65scription\x18\x02 \x01(\x0b\x32!.flyteidl.admin.DescriptionEntityR\x0b\x64\x65scription\"\x8a\x01\n\x0bTaskClosure\x12@\n\rcompiled_task\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.CompiledTaskR\x0c\x63ompiledTask\x12\x39\n\ncreated_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAtB\xaf\x01\n\x12\x63om.flyteidl.adminB\tTaskProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\'flyteidl/admin/description_entity.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"l\n\x11TaskCreateRequest\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12,\n\x04spec\x18\x02 \x01(\x0b\x32\x18.flyteidl.admin.TaskSpecR\x04spec\"\x14\n\x12TaskCreateResponse\"\x95\x01\n\x04Task\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x35\n\x07\x63losure\x18\x02 \x01(\x0b\x32\x1b.flyteidl.admin.TaskClosureR\x07\x63losure\x12+\n\x11short_description\x18\x03 \x01(\tR\x10shortDescription\"L\n\x08TaskList\x12*\n\x05tasks\x18\x01 \x03(\x0b\x32\x14.flyteidl.admin.TaskR\x05tasks\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\x88\x01\n\x08TaskSpec\x12\x37\n\x08template\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplateR\x08template\x12\x43\n\x0b\x64\x65scription\x18\x02 \x01(\x0b\x32!.flyteidl.admin.DescriptionEntityR\x0b\x64\x65scription\"\x8a\x01\n\x0bTaskClosure\x12@\n\rcompiled_task\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.CompiledTaskR\x0c\x63ompiledTask\x12\x39\n\ncreated_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAtB\xb5\x01\n\x12\x63om.flyteidl.adminB\tTaskProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -26,7 +26,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\tTaskProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\tTaskProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _globals['_TASKCREATEREQUEST']._serialized_start=208
   _globals['_TASKCREATEREQUEST']._serialized_end=316
   _globals['_TASKCREATERESPONSE']._serialized_start=318
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/version_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/version_pb2.py
index e04466e67a..bcdc4a9ea0 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/version_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/version_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/admin/version.proto\x12\x0e\x66lyteidl.admin\"a\n\x12GetVersionResponse\x12K\n\x15\x63ontrol_plane_version\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.VersionR\x13\x63ontrolPlaneVersion\"W\n\x07Version\x12\x14\n\x05\x42uild\x18\x01 \x01(\tR\x05\x42uild\x12\x18\n\x07Version\x18\x02 \x01(\tR\x07Version\x12\x1c\n\tBuildTime\x18\x03 \x01(\tR\tBuildTime\"\x13\n\x11GetVersionRequestB\xb2\x01\n\x12\x63om.flyteidl.adminB\x0cVersionProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/admin/version.proto\x12\x0e\x66lyteidl.admin\"a\n\x12GetVersionResponse\x12K\n\x15\x63ontrol_plane_version\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.VersionR\x13\x63ontrolPlaneVersion\"W\n\x07Version\x12\x14\n\x05\x42uild\x18\x01 \x01(\tR\x05\x42uild\x12\x18\n\x07Version\x18\x02 \x01(\tR\x07Version\x12\x1c\n\tBuildTime\x18\x03 \x01(\tR\tBuildTime\"\x13\n\x11GetVersionRequestB\xb8\x01\n\x12\x63om.flyteidl.adminB\x0cVersionProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\014VersionProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\014VersionProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _globals['_GETVERSIONRESPONSE']._serialized_start=48
   _globals['_GETVERSIONRESPONSE']._serialized_end=145
   _globals['_VERSION']._serialized_start=147
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/workflow_attributes_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/workflow_attributes_pb2.py
index caaec98ecf..a277fac588 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/workflow_attributes_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/workflow_attributes_pb2.py
@@ -14,7 +14,7 @@
 from flyteidl.admin import matchable_resource_pb2 as flyteidl_dot_admin_dot_matchable__resource__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n(flyteidl/admin/workflow_attributes.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/matchable_resource.proto\"\xb7\x01\n\x12WorkflowAttributes\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x1a\n\x08workflow\x18\x03 \x01(\tR\x08workflow\x12S\n\x13matching_attributes\x18\x04 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributesR\x12matchingAttributes\"e\n\x1fWorkflowAttributesUpdateRequest\x12\x42\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.WorkflowAttributesR\nattributes\"\"\n WorkflowAttributesUpdateResponse\"\xb4\x01\n\x1cWorkflowAttributesGetRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x1a\n\x08workflow\x18\x03 \x01(\tR\x08workflow\x12\x46\n\rresource_type\x18\x04 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"c\n\x1dWorkflowAttributesGetResponse\x12\x42\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.WorkflowAttributesR\nattributes\"\xb7\x01\n\x1fWorkflowAttributesDeleteRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x1a\n\x08workflow\x18\x03 \x01(\tR\x08workflow\x12\x46\n\rresource_type\x18\x04 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"\"\n WorkflowAttributesDeleteResponseB\xbd\x01\n\x12\x63om.flyteidl.adminB\x17WorkflowAttributesProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n(flyteidl/admin/workflow_attributes.proto\x12\x0e\x66lyteidl.admin\x1a\'flyteidl/admin/matchable_resource.proto\"\xb7\x01\n\x12WorkflowAttributes\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x1a\n\x08workflow\x18\x03 \x01(\tR\x08workflow\x12S\n\x13matching_attributes\x18\x04 \x01(\x0b\x32\".flyteidl.admin.MatchingAttributesR\x12matchingAttributes\"e\n\x1fWorkflowAttributesUpdateRequest\x12\x42\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.WorkflowAttributesR\nattributes\"\"\n WorkflowAttributesUpdateResponse\"\xb4\x01\n\x1cWorkflowAttributesGetRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x1a\n\x08workflow\x18\x03 \x01(\tR\x08workflow\x12\x46\n\rresource_type\x18\x04 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"c\n\x1dWorkflowAttributesGetResponse\x12\x42\n\nattributes\x18\x01 \x01(\x0b\x32\".flyteidl.admin.WorkflowAttributesR\nattributes\"\xb7\x01\n\x1fWorkflowAttributesDeleteRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x1a\n\x08workflow\x18\x03 \x01(\tR\x08workflow\x12\x46\n\rresource_type\x18\x04 \x01(\x0e\x32!.flyteidl.admin.MatchableResourceR\x0cresourceType\"\"\n WorkflowAttributesDeleteResponseB\xc3\x01\n\x12\x63om.flyteidl.adminB\x17WorkflowAttributesProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\027WorkflowAttributesProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\027WorkflowAttributesProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _globals['_WORKFLOWATTRIBUTES']._serialized_start=102
   _globals['_WORKFLOWATTRIBUTES']._serialized_end=285
   _globals['_WORKFLOWATTRIBUTESUPDATEREQUEST']._serialized_start=287
diff --git a/flyteidl/gen/pb_python/flyteidl/admin/workflow_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/workflow_pb2.py
index 6912efc7b4..360e634029 100644
--- a/flyteidl/gen/pb_python/flyteidl/admin/workflow_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/admin/workflow_pb2.py
@@ -18,7 +18,7 @@
 from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\'flyteidl/admin/description_entity.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"t\n\x15WorkflowCreateRequest\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x30\n\x04spec\x18\x02 \x01(\x0b\x32\x1c.flyteidl.admin.WorkflowSpecR\x04spec\"\x18\n\x16WorkflowCreateResponse\"\x9d\x01\n\x08Workflow\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x39\n\x07\x63losure\x18\x02 \x01(\x0b\x32\x1f.flyteidl.admin.WorkflowClosureR\x07\x63losure\x12+\n\x11short_description\x18\x03 \x01(\tR\x10shortDescription\"\\\n\x0cWorkflowList\x12\x36\n\tworkflows\x18\x01 \x03(\x0b\x32\x18.flyteidl.admin.WorkflowR\tworkflows\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\xd6\x01\n\x0cWorkflowSpec\x12;\n\x08template\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplateR\x08template\x12\x44\n\rsub_workflows\x18\x02 \x03(\x0b\x32\x1f.flyteidl.core.WorkflowTemplateR\x0csubWorkflows\x12\x43\n\x0b\x64\x65scription\x18\x03 \x01(\x0b\x32!.flyteidl.admin.DescriptionEntityR\x0b\x64\x65scription\"\xa1\x01\n\x0fWorkflowClosure\x12S\n\x11\x63ompiled_workflow\x18\x01 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosureR\x10\x63ompiledWorkflow\x12\x39\n\ncreated_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\"R\n%WorkflowErrorExistsDifferentStructure\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\"R\n%WorkflowErrorExistsIdenticalStructure\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\"\x95\x02\n\x1b\x43reateWorkflowFailureReason\x12u\n\x1a\x65xists_different_structure\x18\x01 \x01(\x0b\x32\x35.flyteidl.admin.WorkflowErrorExistsDifferentStructureH\x00R\x18\x65xistsDifferentStructure\x12u\n\x1a\x65xists_identical_structure\x18\x02 \x01(\x0b\x32\x35.flyteidl.admin.WorkflowErrorExistsIdenticalStructureH\x00R\x18\x65xistsIdenticalStructureB\x08\n\x06reasonB\xb3\x01\n\x12\x63om.flyteidl.adminB\rWorkflowProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\'flyteidl/admin/description_entity.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"t\n\x15WorkflowCreateRequest\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x30\n\x04spec\x18\x02 \x01(\x0b\x32\x1c.flyteidl.admin.WorkflowSpecR\x04spec\"\x18\n\x16WorkflowCreateResponse\"\x9d\x01\n\x08Workflow\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x39\n\x07\x63losure\x18\x02 \x01(\x0b\x32\x1f.flyteidl.admin.WorkflowClosureR\x07\x63losure\x12+\n\x11short_description\x18\x03 \x01(\tR\x10shortDescription\"\\\n\x0cWorkflowList\x12\x36\n\tworkflows\x18\x01 \x03(\x0b\x32\x18.flyteidl.admin.WorkflowR\tworkflows\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\xd6\x01\n\x0cWorkflowSpec\x12;\n\x08template\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplateR\x08template\x12\x44\n\rsub_workflows\x18\x02 \x03(\x0b\x32\x1f.flyteidl.core.WorkflowTemplateR\x0csubWorkflows\x12\x43\n\x0b\x64\x65scription\x18\x03 \x01(\x0b\x32!.flyteidl.admin.DescriptionEntityR\x0b\x64\x65scription\"\xa1\x01\n\x0fWorkflowClosure\x12S\n\x11\x63ompiled_workflow\x18\x01 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosureR\x10\x63ompiledWorkflow\x12\x39\n\ncreated_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\"R\n%WorkflowErrorExistsDifferentStructure\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\"R\n%WorkflowErrorExistsIdenticalStructure\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\"\x95\x02\n\x1b\x43reateWorkflowFailureReason\x12u\n\x1a\x65xists_different_structure\x18\x01 \x01(\x0b\x32\x35.flyteidl.admin.WorkflowErrorExistsDifferentStructureH\x00R\x18\x65xistsDifferentStructure\x12u\n\x1a\x65xists_identical_structure\x18\x02 \x01(\x0b\x32\x35.flyteidl.admin.WorkflowErrorExistsIdenticalStructureH\x00R\x18\x65xistsIdenticalStructureB\x08\n\x06reasonB\xb9\x01\n\x12\x63om.flyteidl.adminB\rWorkflowProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -26,7 +26,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\rWorkflowProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.adminB\rWorkflowProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\242\002\003FAX\252\002\016Flyteidl.Admin\312\002\016Flyteidl\\Admin\342\002\032Flyteidl\\Admin\\GPBMetadata\352\002\017Flyteidl::Admin'
   _globals['_WORKFLOWCREATEREQUEST']._serialized_start=215
   _globals['_WORKFLOWCREATEREQUEST']._serialized_end=331
   _globals['_WORKFLOWCREATERESPONSE']._serialized_start=333
diff --git a/flyteidl/gen/pb_python/flyteidl/core/catalog_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/catalog_pb2.py
index ff4431f193..dc72c89d9f 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/catalog_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/catalog_pb2.py
@@ -14,7 +14,7 @@
 from flyteidl.core import identifier_pb2 as flyteidl_dot_core_dot_identifier__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x66lyteidl/core/catalog.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\"I\n\x12\x43\x61talogArtifactTag\x12\x1f\n\x0b\x61rtifact_id\x18\x01 \x01(\tR\nartifactId\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\"\x83\x02\n\x0f\x43\x61talogMetadata\x12\x38\n\ndataset_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\tdatasetId\x12\x44\n\x0c\x61rtifact_tag\x18\x02 \x01(\x0b\x32!.flyteidl.core.CatalogArtifactTagR\x0b\x61rtifactTag\x12\\\n\x15source_task_execution\x18\x03 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierH\x00R\x13sourceTaskExecutionB\x12\n\x10source_execution\"\x9e\x01\n\x12\x43\x61talogReservation\"\x87\x01\n\x06Status\x12\x18\n\x14RESERVATION_DISABLED\x10\x00\x12\x18\n\x14RESERVATION_ACQUIRED\x10\x01\x12\x16\n\x12RESERVATION_EXISTS\x10\x02\x12\x18\n\x14RESERVATION_RELEASED\x10\x03\x12\x17\n\x13RESERVATION_FAILURE\x10\x04*\xa0\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\x12\x11\n\rCACHE_SKIPPED\x10\x06\x42\xac\x01\n\x11\x63om.flyteidl.coreB\x0c\x43\x61talogProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x66lyteidl/core/catalog.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\"I\n\x12\x43\x61talogArtifactTag\x12\x1f\n\x0b\x61rtifact_id\x18\x01 \x01(\tR\nartifactId\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\"\x83\x02\n\x0f\x43\x61talogMetadata\x12\x38\n\ndataset_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\tdatasetId\x12\x44\n\x0c\x61rtifact_tag\x18\x02 \x01(\x0b\x32!.flyteidl.core.CatalogArtifactTagR\x0b\x61rtifactTag\x12\\\n\x15source_task_execution\x18\x03 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierH\x00R\x13sourceTaskExecutionB\x12\n\x10source_execution\"\x9e\x01\n\x12\x43\x61talogReservation\"\x87\x01\n\x06Status\x12\x18\n\x14RESERVATION_DISABLED\x10\x00\x12\x18\n\x14RESERVATION_ACQUIRED\x10\x01\x12\x16\n\x12RESERVATION_EXISTS\x10\x02\x12\x18\n\x14RESERVATION_RELEASED\x10\x03\x12\x17\n\x13RESERVATION_FAILURE\x10\x04*\xa0\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\x12\x11\n\rCACHE_SKIPPED\x10\x06\x42\xb2\x01\n\x11\x63om.flyteidl.coreB\x0c\x43\x61talogProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\014CatalogProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\014CatalogProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _globals['_CATALOGCACHESTATUS']._serialized_start=577
   _globals['_CATALOGCACHESTATUS']._serialized_end=737
   _globals['_CATALOGARTIFACTTAG']._serialized_start=78
diff --git a/flyteidl/gen/pb_python/flyteidl/core/compiler_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/compiler_pb2.py
index 726c5d0db6..a47a859e9f 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/compiler_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/compiler_pb2.py
@@ -15,7 +15,7 @@
 from flyteidl.core import tasks_pb2 as flyteidl_dot_core_dot_tasks__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/core/compiler.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x19\x66lyteidl/core/tasks.proto\"\x87\x03\n\rConnectionSet\x12L\n\ndownstream\x18\x07 \x03(\x0b\x32,.flyteidl.core.ConnectionSet.DownstreamEntryR\ndownstream\x12\x46\n\x08upstream\x18\x08 \x03(\x0b\x32*.flyteidl.core.ConnectionSet.UpstreamEntryR\x08upstream\x1a\x1a\n\x06IdList\x12\x10\n\x03ids\x18\x01 \x03(\tR\x03ids\x1a\x62\n\x0f\x44ownstreamEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32#.flyteidl.core.ConnectionSet.IdListR\x05value:\x02\x38\x01\x1a`\n\rUpstreamEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32#.flyteidl.core.ConnectionSet.IdListR\x05value:\x02\x38\x01\"\x8f\x01\n\x10\x43ompiledWorkflow\x12;\n\x08template\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplateR\x08template\x12>\n\x0b\x63onnections\x18\x02 \x01(\x0b\x32\x1c.flyteidl.core.ConnectionSetR\x0b\x63onnections\"G\n\x0c\x43ompiledTask\x12\x37\n\x08template\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplateR\x08template\"\xcd\x01\n\x17\x43ompiledWorkflowClosure\x12\x39\n\x07primary\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.CompiledWorkflowR\x07primary\x12\x44\n\rsub_workflows\x18\x02 \x03(\x0b\x32\x1f.flyteidl.core.CompiledWorkflowR\x0csubWorkflows\x12\x31\n\x05tasks\x18\x03 \x03(\x0b\x32\x1b.flyteidl.core.CompiledTaskR\x05tasksB\xad\x01\n\x11\x63om.flyteidl.coreB\rCompilerProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/core/compiler.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x19\x66lyteidl/core/tasks.proto\"\x87\x03\n\rConnectionSet\x12L\n\ndownstream\x18\x07 \x03(\x0b\x32,.flyteidl.core.ConnectionSet.DownstreamEntryR\ndownstream\x12\x46\n\x08upstream\x18\x08 \x03(\x0b\x32*.flyteidl.core.ConnectionSet.UpstreamEntryR\x08upstream\x1a\x1a\n\x06IdList\x12\x10\n\x03ids\x18\x01 \x03(\tR\x03ids\x1a\x62\n\x0f\x44ownstreamEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32#.flyteidl.core.ConnectionSet.IdListR\x05value:\x02\x38\x01\x1a`\n\rUpstreamEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32#.flyteidl.core.ConnectionSet.IdListR\x05value:\x02\x38\x01\"\x8f\x01\n\x10\x43ompiledWorkflow\x12;\n\x08template\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplateR\x08template\x12>\n\x0b\x63onnections\x18\x02 \x01(\x0b\x32\x1c.flyteidl.core.ConnectionSetR\x0b\x63onnections\"G\n\x0c\x43ompiledTask\x12\x37\n\x08template\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplateR\x08template\"\xcd\x01\n\x17\x43ompiledWorkflowClosure\x12\x39\n\x07primary\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.CompiledWorkflowR\x07primary\x12\x44\n\rsub_workflows\x18\x02 \x03(\x0b\x32\x1f.flyteidl.core.CompiledWorkflowR\x0csubWorkflows\x12\x31\n\x05tasks\x18\x03 \x03(\x0b\x32\x1b.flyteidl.core.CompiledTaskR\x05tasksB\xb3\x01\n\x11\x63om.flyteidl.coreB\rCompilerProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,7 +23,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\rCompilerProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\rCompilerProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _CONNECTIONSET_DOWNSTREAMENTRY._options = None
   _CONNECTIONSET_DOWNSTREAMENTRY._serialized_options = b'8\001'
   _CONNECTIONSET_UPSTREAMENTRY._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/core/condition_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/condition_pb2.py
index 71bdaec35d..ffa115e024 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/condition_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/condition_pb2.py
@@ -14,7 +14,7 @@
 from flyteidl.core import literals_pb2 as flyteidl_dot_core_dot_literals__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/core/condition.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/literals.proto\"\x8f\x02\n\x14\x43omparisonExpression\x12H\n\x08operator\x18\x01 \x01(\x0e\x32,.flyteidl.core.ComparisonExpression.OperatorR\x08operator\x12\x35\n\nleft_value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.OperandR\tleftValue\x12\x37\n\x0bright_value\x18\x03 \x01(\x0b\x32\x16.flyteidl.core.OperandR\nrightValue\"=\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\"\x93\x01\n\x07Operand\x12<\n\tprimitive\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.PrimitiveB\x02\x18\x01H\x00R\tprimitive\x12\x12\n\x03var\x18\x02 \x01(\tH\x00R\x03var\x12/\n\x06scalar\x18\x03 \x01(\x0b\x32\x15.flyteidl.core.ScalarH\x00R\x06scalarB\x05\n\x03val\"\xac\x01\n\x11\x42ooleanExpression\x12H\n\x0b\x63onjunction\x18\x01 \x01(\x0b\x32$.flyteidl.core.ConjunctionExpressionH\x00R\x0b\x63onjunction\x12\x45\n\ncomparison\x18\x02 \x01(\x0b\x32#.flyteidl.core.ComparisonExpressionH\x00R\ncomparisonB\x06\n\x04\x65xpr\"\xa5\x02\n\x15\x43onjunctionExpression\x12P\n\x08operator\x18\x01 \x01(\x0e\x32\x34.flyteidl.core.ConjunctionExpression.LogicalOperatorR\x08operator\x12I\n\x0fleft_expression\x18\x02 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\x0eleftExpression\x12K\n\x10right_expression\x18\x03 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\x0frightExpression\"\"\n\x0fLogicalOperator\x12\x07\n\x03\x41ND\x10\x00\x12\x06\n\x02OR\x10\x01\x42\xae\x01\n\x11\x63om.flyteidl.coreB\x0e\x43onditionProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/core/condition.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/literals.proto\"\x8f\x02\n\x14\x43omparisonExpression\x12H\n\x08operator\x18\x01 \x01(\x0e\x32,.flyteidl.core.ComparisonExpression.OperatorR\x08operator\x12\x35\n\nleft_value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.OperandR\tleftValue\x12\x37\n\x0bright_value\x18\x03 \x01(\x0b\x32\x16.flyteidl.core.OperandR\nrightValue\"=\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\"\x93\x01\n\x07Operand\x12<\n\tprimitive\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.PrimitiveB\x02\x18\x01H\x00R\tprimitive\x12\x12\n\x03var\x18\x02 \x01(\tH\x00R\x03var\x12/\n\x06scalar\x18\x03 \x01(\x0b\x32\x15.flyteidl.core.ScalarH\x00R\x06scalarB\x05\n\x03val\"\xac\x01\n\x11\x42ooleanExpression\x12H\n\x0b\x63onjunction\x18\x01 \x01(\x0b\x32$.flyteidl.core.ConjunctionExpressionH\x00R\x0b\x63onjunction\x12\x45\n\ncomparison\x18\x02 \x01(\x0b\x32#.flyteidl.core.ComparisonExpressionH\x00R\ncomparisonB\x06\n\x04\x65xpr\"\xa5\x02\n\x15\x43onjunctionExpression\x12P\n\x08operator\x18\x01 \x01(\x0e\x32\x34.flyteidl.core.ConjunctionExpression.LogicalOperatorR\x08operator\x12I\n\x0fleft_expression\x18\x02 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\x0eleftExpression\x12K\n\x10right_expression\x18\x03 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\x0frightExpression\"\"\n\x0fLogicalOperator\x12\x07\n\x03\x41ND\x10\x00\x12\x06\n\x02OR\x10\x01\x42\xb4\x01\n\x11\x63om.flyteidl.coreB\x0e\x43onditionProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\016ConditionProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\016ConditionProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _OPERAND.fields_by_name['primitive']._options = None
   _OPERAND.fields_by_name['primitive']._serialized_options = b'\030\001'
   _globals['_COMPARISONEXPRESSION']._serialized_start=79
diff --git a/flyteidl/gen/pb_python/flyteidl/core/dynamic_job_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/dynamic_job_pb2.py
index e8aadc94ac..583a11294e 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/dynamic_job_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/dynamic_job_pb2.py
@@ -16,7 +16,7 @@
 from flyteidl.core import literals_pb2 as flyteidl_dot_core_dot_literals__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\"\x8a\x02\n\x0e\x44ynamicJobSpec\x12)\n\x05nodes\x18\x01 \x03(\x0b\x32\x13.flyteidl.core.NodeR\x05nodes\x12#\n\rmin_successes\x18\x02 \x01(\x03R\x0cminSuccesses\x12\x30\n\x07outputs\x18\x03 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x07outputs\x12\x31\n\x05tasks\x18\x04 \x03(\x0b\x32\x1b.flyteidl.core.TaskTemplateR\x05tasks\x12\x43\n\x0csubworkflows\x18\x05 \x03(\x0b\x32\x1f.flyteidl.core.WorkflowTemplateR\x0csubworkflowsB\xaf\x01\n\x11\x63om.flyteidl.coreB\x0f\x44ynamicJobProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\"\x8a\x02\n\x0e\x44ynamicJobSpec\x12)\n\x05nodes\x18\x01 \x03(\x0b\x32\x13.flyteidl.core.NodeR\x05nodes\x12#\n\rmin_successes\x18\x02 \x01(\x03R\x0cminSuccesses\x12\x30\n\x07outputs\x18\x03 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x07outputs\x12\x31\n\x05tasks\x18\x04 \x03(\x0b\x32\x1b.flyteidl.core.TaskTemplateR\x05tasks\x12\x43\n\x0csubworkflows\x18\x05 \x03(\x0b\x32\x1f.flyteidl.core.WorkflowTemplateR\x0csubworkflowsB\xb5\x01\n\x11\x63om.flyteidl.coreB\x0f\x44ynamicJobProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -24,7 +24,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\017DynamicJobProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\017DynamicJobProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _globals['_DYNAMICJOBSPEC']._serialized_start=138
   _globals['_DYNAMICJOBSPEC']._serialized_end=404
 # @@protoc_insertion_point(module_scope)
diff --git a/flyteidl/gen/pb_python/flyteidl/core/errors_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/errors_pb2.py
index 7e1e65a83b..68182fd259 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/errors_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/errors_pb2.py
@@ -14,7 +14,7 @@
 from flyteidl.core import execution_pb2 as flyteidl_dot_core_dot_execution__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/core/errors.proto\x12\rflyteidl.core\x1a\x1d\x66lyteidl/core/execution.proto\"\xe5\x01\n\x0e\x43ontainerError\x12\x12\n\x04\x63ode\x18\x01 \x01(\tR\x04\x63ode\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\x12\x36\n\x04kind\x18\x03 \x01(\x0e\x32\".flyteidl.core.ContainerError.KindR\x04kind\x12?\n\x06origin\x18\x04 \x01(\x0e\x32\'.flyteidl.core.ExecutionError.ErrorKindR\x06origin\",\n\x04Kind\x12\x13\n\x0fNON_RECOVERABLE\x10\x00\x12\x0f\n\x0bRECOVERABLE\x10\x01\"D\n\rErrorDocument\x12\x33\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x1d.flyteidl.core.ContainerErrorR\x05\x65rrorB\xab\x01\n\x11\x63om.flyteidl.coreB\x0b\x45rrorsProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/core/errors.proto\x12\rflyteidl.core\x1a\x1d\x66lyteidl/core/execution.proto\"\xe5\x01\n\x0e\x43ontainerError\x12\x12\n\x04\x63ode\x18\x01 \x01(\tR\x04\x63ode\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\x12\x36\n\x04kind\x18\x03 \x01(\x0e\x32\".flyteidl.core.ContainerError.KindR\x04kind\x12?\n\x06origin\x18\x04 \x01(\x0e\x32\'.flyteidl.core.ExecutionError.ErrorKindR\x06origin\",\n\x04Kind\x12\x13\n\x0fNON_RECOVERABLE\x10\x00\x12\x0f\n\x0bRECOVERABLE\x10\x01\"D\n\rErrorDocument\x12\x33\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x1d.flyteidl.core.ContainerErrorR\x05\x65rrorB\xb1\x01\n\x11\x63om.flyteidl.coreB\x0b\x45rrorsProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\013ErrorsProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\013ErrorsProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _globals['_CONTAINERERROR']._serialized_start=77
   _globals['_CONTAINERERROR']._serialized_end=306
   _globals['_CONTAINERERROR_KIND']._serialized_start=262
diff --git a/flyteidl/gen/pb_python/flyteidl/core/execution_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/execution_pb2.py
index a38614f114..c2c9810083 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/execution_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/execution_pb2.py
@@ -14,7 +14,7 @@
 from google.protobuf import duration_pb2 as google_dot_protobuf_dot_duration__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/core/execution.proto\x12\rflyteidl.core\x1a\x1egoogle/protobuf/duration.proto\"\xa7\x01\n\x11WorkflowExecution\"\x91\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\x12\x0c\n\x08\x41\x42ORTING\x10\t\"\xb6\x01\n\rNodeExecution\"\xa4\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\x12\x13\n\x0f\x44YNAMIC_RUNNING\x10\t\x12\r\n\tRECOVERED\x10\n\"\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\"\xc8\x01\n\x0e\x45xecutionError\x12\x12\n\x04\x63ode\x18\x01 \x01(\tR\x04\x63ode\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\x12\x1b\n\terror_uri\x18\x03 \x01(\tR\x08\x65rrorUri\x12;\n\x04kind\x18\x04 \x01(\x0e\x32\'.flyteidl.core.ExecutionError.ErrorKindR\x04kind\".\n\tErrorKind\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x08\n\x04USER\x10\x01\x12\n\n\x06SYSTEM\x10\x02\"\xda\x01\n\x07TaskLog\x12\x10\n\x03uri\x18\x01 \x01(\tR\x03uri\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12K\n\x0emessage_format\x18\x03 \x01(\x0e\x32$.flyteidl.core.TaskLog.MessageFormatR\rmessageFormat\x12+\n\x03ttl\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x03ttl\"/\n\rMessageFormat\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03\x43SV\x10\x01\x12\x08\n\x04JSON\x10\x02\"Z\n\x14QualityOfServiceSpec\x12\x42\n\x0fqueueing_budget\x18\x01 \x01(\x0b\x32\x19.google.protobuf.DurationR\x0equeueingBudget\"\xce\x01\n\x10QualityOfService\x12:\n\x04tier\x18\x01 \x01(\x0e\x32$.flyteidl.core.QualityOfService.TierH\x00R\x04tier\x12\x39\n\x04spec\x18\x02 \x01(\x0b\x32#.flyteidl.core.QualityOfServiceSpecH\x00R\x04spec\"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\x65signationB\xae\x01\n\x11\x63om.flyteidl.coreB\x0e\x45xecutionProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/core/execution.proto\x12\rflyteidl.core\x1a\x1egoogle/protobuf/duration.proto\"\xa7\x01\n\x11WorkflowExecution\"\x91\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\x12\x0c\n\x08\x41\x42ORTING\x10\t\"\xb6\x01\n\rNodeExecution\"\xa4\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\x12\x13\n\x0f\x44YNAMIC_RUNNING\x10\t\x12\r\n\tRECOVERED\x10\n\"\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\"\xc8\x01\n\x0e\x45xecutionError\x12\x12\n\x04\x63ode\x18\x01 \x01(\tR\x04\x63ode\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\x12\x1b\n\terror_uri\x18\x03 \x01(\tR\x08\x65rrorUri\x12;\n\x04kind\x18\x04 \x01(\x0e\x32\'.flyteidl.core.ExecutionError.ErrorKindR\x04kind\".\n\tErrorKind\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x08\n\x04USER\x10\x01\x12\n\n\x06SYSTEM\x10\x02\"\xda\x01\n\x07TaskLog\x12\x10\n\x03uri\x18\x01 \x01(\tR\x03uri\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12K\n\x0emessage_format\x18\x03 \x01(\x0e\x32$.flyteidl.core.TaskLog.MessageFormatR\rmessageFormat\x12+\n\x03ttl\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x03ttl\"/\n\rMessageFormat\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03\x43SV\x10\x01\x12\x08\n\x04JSON\x10\x02\"Z\n\x14QualityOfServiceSpec\x12\x42\n\x0fqueueing_budget\x18\x01 \x01(\x0b\x32\x19.google.protobuf.DurationR\x0equeueingBudget\"\xce\x01\n\x10QualityOfService\x12:\n\x04tier\x18\x01 \x01(\x0e\x32$.flyteidl.core.QualityOfService.TierH\x00R\x04tier\x12\x39\n\x04spec\x18\x02 \x01(\x0b\x32#.flyteidl.core.QualityOfServiceSpecH\x00R\x04spec\"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\x65signationB\xb4\x01\n\x11\x63om.flyteidl.coreB\x0e\x45xecutionProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\016ExecutionProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\016ExecutionProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _globals['_WORKFLOWEXECUTION']._serialized_start=81
   _globals['_WORKFLOWEXECUTION']._serialized_end=248
   _globals['_WORKFLOWEXECUTION_PHASE']._serialized_start=103
diff --git a/flyteidl/gen/pb_python/flyteidl/core/identifier_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/identifier_pb2.py
index e593384c93..bcb507c1cb 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/identifier_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/identifier_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x66lyteidl/core/identifier.proto\x12\rflyteidl.core\"\xae\x01\n\nIdentifier\x12@\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceTypeR\x0cresourceType\x12\x18\n\x07project\x18\x02 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x03 \x01(\tR\x06\x64omain\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12\x18\n\x07version\x18\x05 \x01(\tR\x07version\"c\n\x1bWorkflowExecutionIdentifier\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\"\x81\x01\n\x17NodeExecutionIdentifier\x12\x17\n\x07node_id\x18\x01 \x01(\tR\x06nodeId\x12M\n\x0c\x65xecution_id\x18\x02 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\"\xc6\x01\n\x17TaskExecutionIdentifier\x12\x32\n\x07task_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x06taskId\x12R\n\x11node_execution_id\x18\x02 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x0fnodeExecutionId\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\"~\n\x10SignalIdentifier\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\x12M\n\x0c\x65xecution_id\x18\x02 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId*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\xaf\x01\n\x11\x63om.flyteidl.coreB\x0fIdentifierProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x66lyteidl/core/identifier.proto\x12\rflyteidl.core\"\xae\x01\n\nIdentifier\x12@\n\rresource_type\x18\x01 \x01(\x0e\x32\x1b.flyteidl.core.ResourceTypeR\x0cresourceType\x12\x18\n\x07project\x18\x02 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x03 \x01(\tR\x06\x64omain\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12\x18\n\x07version\x18\x05 \x01(\tR\x07version\"c\n\x1bWorkflowExecutionIdentifier\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\"\x81\x01\n\x17NodeExecutionIdentifier\x12\x17\n\x07node_id\x18\x01 \x01(\tR\x06nodeId\x12M\n\x0c\x65xecution_id\x18\x02 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\"\xc6\x01\n\x17TaskExecutionIdentifier\x12\x32\n\x07task_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x06taskId\x12R\n\x11node_execution_id\x18\x02 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x0fnodeExecutionId\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\"~\n\x10SignalIdentifier\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\x12M\n\x0c\x65xecution_id\x18\x02 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId*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\xb5\x01\n\x11\x63om.flyteidl.coreB\x0fIdentifierProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\017IdentifierProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\017IdentifierProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _globals['_RESOURCETYPE']._serialized_start=788
   _globals['_RESOURCETYPE']._serialized_end=873
   _globals['_IDENTIFIER']._serialized_start=50
diff --git a/flyteidl/gen/pb_python/flyteidl/core/interface_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/interface_pb2.py
index 6fdba85eab..7ac90d0dd1 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/interface_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/interface_pb2.py
@@ -15,7 +15,7 @@
 from flyteidl.core import literals_pb2 as flyteidl_dot_core_dot_literals__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/core/interface.proto\x12\rflyteidl.core\x1a\x19\x66lyteidl/core/types.proto\x1a\x1c\x66lyteidl/core/literals.proto\"\\\n\x08Variable\x12.\n\x04type\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12 \n\x0b\x64\x65scription\x18\x02 \x01(\tR\x0b\x64\x65scription\"\xad\x01\n\x0bVariableMap\x12G\n\tvariables\x18\x01 \x03(\x0b\x32).flyteidl.core.VariableMap.VariablesEntryR\tvariables\x1aU\n\x0eVariablesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12-\n\x05value\x18\x02 \x01(\x0b\x32\x17.flyteidl.core.VariableR\x05value:\x02\x38\x01\"z\n\x0eTypedInterface\x12\x32\n\x06inputs\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.VariableMapR\x06inputs\x12\x34\n\x07outputs\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.VariableMapR\x07outputs\"\x94\x01\n\tParameter\x12)\n\x03var\x18\x01 \x01(\x0b\x32\x17.flyteidl.core.VariableR\x03var\x12\x32\n\x07\x64\x65\x66\x61ult\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.LiteralH\x00R\x07\x64\x65\x66\x61ult\x12\x1c\n\x08required\x18\x03 \x01(\x08H\x00R\x08requiredB\n\n\x08\x62\x65havior\"\xb4\x01\n\x0cParameterMap\x12K\n\nparameters\x18\x01 \x03(\x0b\x32+.flyteidl.core.ParameterMap.ParametersEntryR\nparameters\x1aW\n\x0fParametersEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12.\n\x05value\x18\x02 \x01(\x0b\x32\x18.flyteidl.core.ParameterR\x05value:\x02\x38\x01\x42\xae\x01\n\x11\x63om.flyteidl.coreB\x0eInterfaceProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/core/interface.proto\x12\rflyteidl.core\x1a\x19\x66lyteidl/core/types.proto\x1a\x1c\x66lyteidl/core/literals.proto\"\\\n\x08Variable\x12.\n\x04type\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12 \n\x0b\x64\x65scription\x18\x02 \x01(\tR\x0b\x64\x65scription\"\xad\x01\n\x0bVariableMap\x12G\n\tvariables\x18\x01 \x03(\x0b\x32).flyteidl.core.VariableMap.VariablesEntryR\tvariables\x1aU\n\x0eVariablesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12-\n\x05value\x18\x02 \x01(\x0b\x32\x17.flyteidl.core.VariableR\x05value:\x02\x38\x01\"z\n\x0eTypedInterface\x12\x32\n\x06inputs\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.VariableMapR\x06inputs\x12\x34\n\x07outputs\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.VariableMapR\x07outputs\"\x94\x01\n\tParameter\x12)\n\x03var\x18\x01 \x01(\x0b\x32\x17.flyteidl.core.VariableR\x03var\x12\x32\n\x07\x64\x65\x66\x61ult\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.LiteralH\x00R\x07\x64\x65\x66\x61ult\x12\x1c\n\x08required\x18\x03 \x01(\x08H\x00R\x08requiredB\n\n\x08\x62\x65havior\"\xb4\x01\n\x0cParameterMap\x12K\n\nparameters\x18\x01 \x03(\x0b\x32+.flyteidl.core.ParameterMap.ParametersEntryR\nparameters\x1aW\n\x0fParametersEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12.\n\x05value\x18\x02 \x01(\x0b\x32\x18.flyteidl.core.ParameterR\x05value:\x02\x38\x01\x42\xb4\x01\n\x11\x63om.flyteidl.coreB\x0eInterfaceProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,7 +23,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\016InterfaceProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\016InterfaceProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _VARIABLEMAP_VARIABLESENTRY._options = None
   _VARIABLEMAP_VARIABLESENTRY._serialized_options = b'8\001'
   _PARAMETERMAP_PARAMETERSENTRY._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/core/literals_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/literals_pb2.py
index f7e431bc81..42a098cb95 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/literals_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/literals_pb2.py
@@ -17,7 +17,7 @@
 from flyteidl.core import types_pb2 as flyteidl_dot_core_dot_types__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\"\x87\x02\n\tPrimitive\x12\x1a\n\x07integer\x18\x01 \x01(\x03H\x00R\x07integer\x12!\n\x0b\x66loat_value\x18\x02 \x01(\x01H\x00R\nfloatValue\x12#\n\x0cstring_value\x18\x03 \x01(\tH\x00R\x0bstringValue\x12\x1a\n\x07\x62oolean\x18\x04 \x01(\x08H\x00R\x07\x62oolean\x12\x38\n\x08\x64\x61tetime\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x08\x64\x61tetime\x12\x37\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.DurationH\x00R\x08\x64urationB\x07\n\x05value\"\x06\n\x04Void\"Q\n\x04\x42lob\x12\x37\n\x08metadata\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.BlobMetadataR\x08metadata\x12\x10\n\x03uri\x18\x03 \x01(\tR\x03uri\";\n\x0c\x42lobMetadata\x12+\n\x04type\x18\x01 \x01(\x0b\x32\x17.flyteidl.core.BlobTypeR\x04type\"0\n\x06\x42inary\x12\x14\n\x05value\x18\x01 \x01(\x0cR\x05value\x12\x10\n\x03tag\x18\x02 \x01(\tR\x03tag\"I\n\x06Schema\x12\x10\n\x03uri\x18\x01 \x01(\tR\x03uri\x12-\n\x04type\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.SchemaTypeR\x04type\"e\n\x05Union\x12,\n\x05value\x18\x01 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05value\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\"y\n\x19StructuredDatasetMetadata\x12\\\n\x17structured_dataset_type\x18\x01 \x01(\x0b\x32$.flyteidl.core.StructuredDatasetTypeR\x15structuredDatasetType\"k\n\x11StructuredDataset\x12\x10\n\x03uri\x18\x01 \x01(\tR\x03uri\x12\x44\n\x08metadata\x18\x02 \x01(\x0b\x32(.flyteidl.core.StructuredDatasetMetadataR\x08metadata\"\xf0\x03\n\x06Scalar\x12\x38\n\tprimitive\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.PrimitiveH\x00R\tprimitive\x12)\n\x04\x62lob\x18\x02 \x01(\x0b\x32\x13.flyteidl.core.BlobH\x00R\x04\x62lob\x12/\n\x06\x62inary\x18\x03 \x01(\x0b\x32\x15.flyteidl.core.BinaryH\x00R\x06\x62inary\x12/\n\x06schema\x18\x04 \x01(\x0b\x32\x15.flyteidl.core.SchemaH\x00R\x06schema\x12\x32\n\tnone_type\x18\x05 \x01(\x0b\x32\x13.flyteidl.core.VoidH\x00R\x08noneType\x12,\n\x05\x65rror\x18\x06 \x01(\x0b\x32\x14.flyteidl.core.ErrorH\x00R\x05\x65rror\x12\x33\n\x07generic\x18\x07 \x01(\x0b\x32\x17.google.protobuf.StructH\x00R\x07generic\x12Q\n\x12structured_dataset\x18\x08 \x01(\x0b\x32 .flyteidl.core.StructuredDatasetH\x00R\x11structuredDataset\x12,\n\x05union\x18\t \x01(\x0b\x32\x14.flyteidl.core.UnionH\x00R\x05unionB\x07\n\x05value\"\xca\x01\n\x07Literal\x12/\n\x06scalar\x18\x01 \x01(\x0b\x32\x15.flyteidl.core.ScalarH\x00R\x06scalar\x12\x42\n\ncollection\x18\x02 \x01(\x0b\x32 .flyteidl.core.LiteralCollectionH\x00R\ncollection\x12-\n\x03map\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\x03map\x12\x12\n\x04hash\x18\x04 \x01(\tR\x04hashB\x07\n\x05value\"G\n\x11LiteralCollection\x12\x32\n\x08literals\x18\x01 \x03(\x0b\x32\x16.flyteidl.core.LiteralR\x08literals\"\xa6\x01\n\nLiteralMap\x12\x43\n\x08literals\x18\x01 \x03(\x0b\x32\'.flyteidl.core.LiteralMap.LiteralsEntryR\x08literals\x1aS\n\rLiteralsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05value:\x02\x38\x01\"O\n\x15\x42indingDataCollection\x12\x36\n\x08\x62indings\x18\x01 \x03(\x0b\x32\x1a.flyteidl.core.BindingDataR\x08\x62indings\"\xb2\x01\n\x0e\x42indingDataMap\x12G\n\x08\x62indings\x18\x01 \x03(\x0b\x32+.flyteidl.core.BindingDataMap.BindingsEntryR\x08\x62indings\x1aW\n\rBindingsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x30\n\x05value\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.BindingDataR\x05value:\x02\x38\x01\"G\n\tUnionInfo\x12:\n\ntargetType\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\ntargetType\"\xae\x02\n\x0b\x42indingData\x12/\n\x06scalar\x18\x01 \x01(\x0b\x32\x15.flyteidl.core.ScalarH\x00R\x06scalar\x12\x46\n\ncollection\x18\x02 \x01(\x0b\x32$.flyteidl.core.BindingDataCollectionH\x00R\ncollection\x12:\n\x07promise\x18\x03 \x01(\x0b\x32\x1e.flyteidl.core.OutputReferenceH\x00R\x07promise\x12\x31\n\x03map\x18\x04 \x01(\x0b\x32\x1d.flyteidl.core.BindingDataMapH\x00R\x03map\x12.\n\x05union\x18\x05 \x01(\x0b\x32\x18.flyteidl.core.UnionInfoR\x05unionB\x07\n\x05value\"Q\n\x07\x42inding\x12\x10\n\x03var\x18\x01 \x01(\tR\x03var\x12\x34\n\x07\x62inding\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.BindingDataR\x07\x62inding\"6\n\x0cKeyValuePair\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\")\n\rRetryStrategy\x12\x18\n\x07retries\x18\x05 \x01(\rR\x07retriesB\xad\x01\n\x11\x63om.flyteidl.coreB\rLiteralsProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\"\x87\x02\n\tPrimitive\x12\x1a\n\x07integer\x18\x01 \x01(\x03H\x00R\x07integer\x12!\n\x0b\x66loat_value\x18\x02 \x01(\x01H\x00R\nfloatValue\x12#\n\x0cstring_value\x18\x03 \x01(\tH\x00R\x0bstringValue\x12\x1a\n\x07\x62oolean\x18\x04 \x01(\x08H\x00R\x07\x62oolean\x12\x38\n\x08\x64\x61tetime\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00R\x08\x64\x61tetime\x12\x37\n\x08\x64uration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.DurationH\x00R\x08\x64urationB\x07\n\x05value\"\x06\n\x04Void\"Q\n\x04\x42lob\x12\x37\n\x08metadata\x18\x01 \x01(\x0b\x32\x1b.flyteidl.core.BlobMetadataR\x08metadata\x12\x10\n\x03uri\x18\x03 \x01(\tR\x03uri\";\n\x0c\x42lobMetadata\x12+\n\x04type\x18\x01 \x01(\x0b\x32\x17.flyteidl.core.BlobTypeR\x04type\"0\n\x06\x42inary\x12\x14\n\x05value\x18\x01 \x01(\x0cR\x05value\x12\x10\n\x03tag\x18\x02 \x01(\tR\x03tag\"I\n\x06Schema\x12\x10\n\x03uri\x18\x01 \x01(\tR\x03uri\x12-\n\x04type\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.SchemaTypeR\x04type\"e\n\x05Union\x12,\n\x05value\x18\x01 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05value\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\"y\n\x19StructuredDatasetMetadata\x12\\\n\x17structured_dataset_type\x18\x01 \x01(\x0b\x32$.flyteidl.core.StructuredDatasetTypeR\x15structuredDatasetType\"k\n\x11StructuredDataset\x12\x10\n\x03uri\x18\x01 \x01(\tR\x03uri\x12\x44\n\x08metadata\x18\x02 \x01(\x0b\x32(.flyteidl.core.StructuredDatasetMetadataR\x08metadata\"\xf0\x03\n\x06Scalar\x12\x38\n\tprimitive\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.PrimitiveH\x00R\tprimitive\x12)\n\x04\x62lob\x18\x02 \x01(\x0b\x32\x13.flyteidl.core.BlobH\x00R\x04\x62lob\x12/\n\x06\x62inary\x18\x03 \x01(\x0b\x32\x15.flyteidl.core.BinaryH\x00R\x06\x62inary\x12/\n\x06schema\x18\x04 \x01(\x0b\x32\x15.flyteidl.core.SchemaH\x00R\x06schema\x12\x32\n\tnone_type\x18\x05 \x01(\x0b\x32\x13.flyteidl.core.VoidH\x00R\x08noneType\x12,\n\x05\x65rror\x18\x06 \x01(\x0b\x32\x14.flyteidl.core.ErrorH\x00R\x05\x65rror\x12\x33\n\x07generic\x18\x07 \x01(\x0b\x32\x17.google.protobuf.StructH\x00R\x07generic\x12Q\n\x12structured_dataset\x18\x08 \x01(\x0b\x32 .flyteidl.core.StructuredDatasetH\x00R\x11structuredDataset\x12,\n\x05union\x18\t \x01(\x0b\x32\x14.flyteidl.core.UnionH\x00R\x05unionB\x07\n\x05value\"\xca\x01\n\x07Literal\x12/\n\x06scalar\x18\x01 \x01(\x0b\x32\x15.flyteidl.core.ScalarH\x00R\x06scalar\x12\x42\n\ncollection\x18\x02 \x01(\x0b\x32 .flyteidl.core.LiteralCollectionH\x00R\ncollection\x12-\n\x03map\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\x03map\x12\x12\n\x04hash\x18\x04 \x01(\tR\x04hashB\x07\n\x05value\"G\n\x11LiteralCollection\x12\x32\n\x08literals\x18\x01 \x03(\x0b\x32\x16.flyteidl.core.LiteralR\x08literals\"\xa6\x01\n\nLiteralMap\x12\x43\n\x08literals\x18\x01 \x03(\x0b\x32\'.flyteidl.core.LiteralMap.LiteralsEntryR\x08literals\x1aS\n\rLiteralsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05value:\x02\x38\x01\"O\n\x15\x42indingDataCollection\x12\x36\n\x08\x62indings\x18\x01 \x03(\x0b\x32\x1a.flyteidl.core.BindingDataR\x08\x62indings\"\xb2\x01\n\x0e\x42indingDataMap\x12G\n\x08\x62indings\x18\x01 \x03(\x0b\x32+.flyteidl.core.BindingDataMap.BindingsEntryR\x08\x62indings\x1aW\n\rBindingsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x30\n\x05value\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.BindingDataR\x05value:\x02\x38\x01\"G\n\tUnionInfo\x12:\n\ntargetType\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\ntargetType\"\xae\x02\n\x0b\x42indingData\x12/\n\x06scalar\x18\x01 \x01(\x0b\x32\x15.flyteidl.core.ScalarH\x00R\x06scalar\x12\x46\n\ncollection\x18\x02 \x01(\x0b\x32$.flyteidl.core.BindingDataCollectionH\x00R\ncollection\x12:\n\x07promise\x18\x03 \x01(\x0b\x32\x1e.flyteidl.core.OutputReferenceH\x00R\x07promise\x12\x31\n\x03map\x18\x04 \x01(\x0b\x32\x1d.flyteidl.core.BindingDataMapH\x00R\x03map\x12.\n\x05union\x18\x05 \x01(\x0b\x32\x18.flyteidl.core.UnionInfoR\x05unionB\x07\n\x05value\"Q\n\x07\x42inding\x12\x10\n\x03var\x18\x01 \x01(\tR\x03var\x12\x34\n\x07\x62inding\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.BindingDataR\x07\x62inding\"6\n\x0cKeyValuePair\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\")\n\rRetryStrategy\x12\x18\n\x07retries\x18\x05 \x01(\rR\x07retriesB\xb3\x01\n\x11\x63om.flyteidl.coreB\rLiteralsProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -25,7 +25,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\rLiteralsProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\rLiteralsProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _LITERALMAP_LITERALSENTRY._options = None
   _LITERALMAP_LITERALSENTRY._serialized_options = b'8\001'
   _BINDINGDATAMAP_BINDINGSENTRY._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/core/metrics_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/metrics_pb2.py
index 58fb40b669..1dc42f4b3c 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/metrics_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/metrics_pb2.py
@@ -15,7 +15,7 @@
 from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x66lyteidl/core/metrics.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xa3\x03\n\x04Span\x12\x39\n\nstart_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartTime\x12\x35\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x07\x65ndTime\x12M\n\x0bworkflow_id\x18\x03 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierH\x00R\nworkflowId\x12\x41\n\x07node_id\x18\x04 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierH\x00R\x06nodeId\x12\x41\n\x07task_id\x18\x05 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierH\x00R\x06taskId\x12#\n\x0coperation_id\x18\x06 \x01(\tH\x00R\x0boperationId\x12)\n\x05spans\x18\x07 \x03(\x0b\x32\x13.flyteidl.core.SpanR\x05spansB\x04\n\x02idB\xac\x01\n\x11\x63om.flyteidl.coreB\x0cMetricsProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x66lyteidl/core/metrics.proto\x12\rflyteidl.core\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xa3\x03\n\x04Span\x12\x39\n\nstart_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartTime\x12\x35\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x07\x65ndTime\x12M\n\x0bworkflow_id\x18\x03 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierH\x00R\nworkflowId\x12\x41\n\x07node_id\x18\x04 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierH\x00R\x06nodeId\x12\x41\n\x07task_id\x18\x05 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierH\x00R\x06taskId\x12#\n\x0coperation_id\x18\x06 \x01(\tH\x00R\x0boperationId\x12)\n\x05spans\x18\x07 \x03(\x0b\x32\x13.flyteidl.core.SpanR\x05spansB\x04\n\x02idB\xb2\x01\n\x11\x63om.flyteidl.coreB\x0cMetricsProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,7 +23,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\014MetricsProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\014MetricsProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _globals['_SPAN']._serialized_start=112
   _globals['_SPAN']._serialized_end=531
 # @@protoc_insertion_point(module_scope)
diff --git a/flyteidl/gen/pb_python/flyteidl/core/security_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/security_pb2.py
index 4b8e59c6e1..023c8e4aa3 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/security_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/security_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/core/security.proto\x12\rflyteidl.core\"\xd0\x01\n\x06Secret\x12\x14\n\x05group\x18\x01 \x01(\tR\x05group\x12#\n\rgroup_version\x18\x02 \x01(\tR\x0cgroupVersion\x12\x10\n\x03key\x18\x03 \x01(\tR\x03key\x12L\n\x11mount_requirement\x18\x04 \x01(\x0e\x32\x1f.flyteidl.core.Secret.MountTypeR\x10mountRequirement\"+\n\tMountType\x12\x07\n\x03\x41NY\x10\x00\x12\x0b\n\x07\x45NV_VAR\x10\x01\x12\x08\n\x04\x46ILE\x10\x02\"g\n\x0cOAuth2Client\x12\x1b\n\tclient_id\x18\x01 \x01(\tR\x08\x63lientId\x12:\n\rclient_secret\x18\x02 \x01(\x0b\x32\x15.flyteidl.core.SecretR\x0c\x63lientSecret\"\xc6\x01\n\x08Identity\x12\x19\n\x08iam_role\x18\x01 \x01(\tR\x07iamRole\x12.\n\x13k8s_service_account\x18\x02 \x01(\tR\x11k8sServiceAccount\x12@\n\roauth2_client\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.OAuth2ClientR\x0coauth2Client\x12-\n\x12\x65xecution_identity\x18\x04 \x01(\tR\x11\x65xecutionIdentity\"\x96\x02\n\x12OAuth2TokenRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12:\n\x04type\x18\x02 \x01(\x0e\x32&.flyteidl.core.OAuth2TokenRequest.TypeR\x04type\x12\x33\n\x06\x63lient\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.OAuth2ClientR\x06\x63lient\x12\x34\n\x16idp_discovery_endpoint\x18\x04 \x01(\tR\x14idpDiscoveryEndpoint\x12%\n\x0etoken_endpoint\x18\x05 \x01(\tR\rtokenEndpoint\"\x1e\n\x04Type\x12\x16\n\x12\x43LIENT_CREDENTIALS\x10\x00\"\xad\x01\n\x0fSecurityContext\x12.\n\x06run_as\x18\x01 \x01(\x0b\x32\x17.flyteidl.core.IdentityR\x05runAs\x12/\n\x07secrets\x18\x02 \x03(\x0b\x32\x15.flyteidl.core.SecretR\x07secrets\x12\x39\n\x06tokens\x18\x03 \x03(\x0b\x32!.flyteidl.core.OAuth2TokenRequestR\x06tokensB\xad\x01\n\x11\x63om.flyteidl.coreB\rSecurityProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/core/security.proto\x12\rflyteidl.core\"\xd0\x01\n\x06Secret\x12\x14\n\x05group\x18\x01 \x01(\tR\x05group\x12#\n\rgroup_version\x18\x02 \x01(\tR\x0cgroupVersion\x12\x10\n\x03key\x18\x03 \x01(\tR\x03key\x12L\n\x11mount_requirement\x18\x04 \x01(\x0e\x32\x1f.flyteidl.core.Secret.MountTypeR\x10mountRequirement\"+\n\tMountType\x12\x07\n\x03\x41NY\x10\x00\x12\x0b\n\x07\x45NV_VAR\x10\x01\x12\x08\n\x04\x46ILE\x10\x02\"g\n\x0cOAuth2Client\x12\x1b\n\tclient_id\x18\x01 \x01(\tR\x08\x63lientId\x12:\n\rclient_secret\x18\x02 \x01(\x0b\x32\x15.flyteidl.core.SecretR\x0c\x63lientSecret\"\xc6\x01\n\x08Identity\x12\x19\n\x08iam_role\x18\x01 \x01(\tR\x07iamRole\x12.\n\x13k8s_service_account\x18\x02 \x01(\tR\x11k8sServiceAccount\x12@\n\roauth2_client\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.OAuth2ClientR\x0coauth2Client\x12-\n\x12\x65xecution_identity\x18\x04 \x01(\tR\x11\x65xecutionIdentity\"\x96\x02\n\x12OAuth2TokenRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12:\n\x04type\x18\x02 \x01(\x0e\x32&.flyteidl.core.OAuth2TokenRequest.TypeR\x04type\x12\x33\n\x06\x63lient\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.OAuth2ClientR\x06\x63lient\x12\x34\n\x16idp_discovery_endpoint\x18\x04 \x01(\tR\x14idpDiscoveryEndpoint\x12%\n\x0etoken_endpoint\x18\x05 \x01(\tR\rtokenEndpoint\"\x1e\n\x04Type\x12\x16\n\x12\x43LIENT_CREDENTIALS\x10\x00\"\xad\x01\n\x0fSecurityContext\x12.\n\x06run_as\x18\x01 \x01(\x0b\x32\x17.flyteidl.core.IdentityR\x05runAs\x12/\n\x07secrets\x18\x02 \x03(\x0b\x32\x15.flyteidl.core.SecretR\x07secrets\x12\x39\n\x06tokens\x18\x03 \x03(\x0b\x32!.flyteidl.core.OAuth2TokenRequestR\x06tokensB\xb3\x01\n\x11\x63om.flyteidl.coreB\rSecurityProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\rSecurityProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\rSecurityProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _globals['_SECRET']._serialized_start=48
   _globals['_SECRET']._serialized_end=256
   _globals['_SECRET_MOUNTTYPE']._serialized_start=213
diff --git a/flyteidl/gen/pb_python/flyteidl/core/tasks_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/tasks_pb2.py
index fcafa0a321..2452ead45e 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/tasks_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/tasks_pb2.py
@@ -19,7 +19,7 @@
 from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xd0\x02\n\tResources\x12\x42\n\x08requests\x18\x01 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntryR\x08requests\x12>\n\x06limits\x18\x02 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntryR\x06limits\x1a`\n\rResourceEntry\x12\x39\n\x04name\x18\x01 \x01(\x0e\x32%.flyteidl.core.Resources.ResourceNameR\x04name\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"]\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\x12\x15\n\x11\x45PHEMERAL_STORAGE\x10\x05\"\xac\x01\n\x0fRuntimeMetadata\x12>\n\x04type\x18\x01 \x01(\x0e\x32*.flyteidl.core.RuntimeMetadata.RuntimeTypeR\x04type\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12\x16\n\x06\x66lavor\x18\x03 \x01(\tR\x06\x66lavor\"\'\n\x0bRuntimeType\x12\t\n\x05OTHER\x10\x00\x12\r\n\tFLYTE_SDK\x10\x01\"\xf5\x04\n\x0cTaskMetadata\x12\"\n\x0c\x64iscoverable\x18\x01 \x01(\x08R\x0c\x64iscoverable\x12\x38\n\x07runtime\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.RuntimeMetadataR\x07runtime\x12\x33\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x07timeout\x12\x36\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategyR\x07retries\x12+\n\x11\x64iscovery_version\x18\x06 \x01(\tR\x10\x64iscoveryVersion\x12\x38\n\x18\x64\x65precated_error_message\x18\x07 \x01(\tR\x16\x64\x65precatedErrorMessage\x12&\n\rinterruptible\x18\x08 \x01(\x08H\x00R\rinterruptible\x12-\n\x12\x63\x61\x63he_serializable\x18\t \x01(\x08R\x11\x63\x61\x63heSerializable\x12%\n\x0egenerates_deck\x18\n \x01(\x08R\rgeneratesDeck\x12\x39\n\x04tags\x18\x0b \x03(\x0b\x32%.flyteidl.core.TaskMetadata.TagsEntryR\x04tags\x12*\n\x11pod_template_name\x18\x0c \x01(\tR\x0fpodTemplateName\x1a\x37\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x15\n\x13interruptible_value\"\x85\x05\n\x0cTaskTemplate\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x12\n\x04type\x18\x02 \x01(\tR\x04type\x12\x37\n\x08metadata\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.TaskMetadataR\x08metadata\x12;\n\tinterface\x18\x04 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\x12/\n\x06\x63ustom\x18\x05 \x01(\x0b\x32\x17.google.protobuf.StructR\x06\x63ustom\x12\x38\n\tcontainer\x18\x06 \x01(\x0b\x32\x18.flyteidl.core.ContainerH\x00R\tcontainer\x12\x30\n\x07k8s_pod\x18\x11 \x01(\x0b\x32\x15.flyteidl.core.K8sPodH\x00R\x06k8sPod\x12&\n\x03sql\x18\x12 \x01(\x0b\x32\x12.flyteidl.core.SqlH\x00R\x03sql\x12*\n\x11task_type_version\x18\x07 \x01(\x05R\x0ftaskTypeVersion\x12I\n\x10security_context\x18\x08 \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12?\n\x06\x63onfig\x18\x10 \x03(\x0b\x32\'.flyteidl.core.TaskTemplate.ConfigEntryR\x06\x63onfig\x1a\x39\n\x0b\x43onfigEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x08\n\x06target\"6\n\rContainerPort\x12%\n\x0e\x63ontainer_port\x18\x01 \x01(\rR\rcontainerPort\"\xfc\x03\n\tContainer\x12\x14\n\x05image\x18\x01 \x01(\tR\x05image\x12\x18\n\x07\x63ommand\x18\x02 \x03(\tR\x07\x63ommand\x12\x12\n\x04\x61rgs\x18\x03 \x03(\tR\x04\x61rgs\x12\x36\n\tresources\x18\x04 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12-\n\x03\x65nv\x18\x05 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairR\x03\x65nv\x12\x37\n\x06\x63onfig\x18\x06 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairB\x02\x18\x01R\x06\x63onfig\x12\x32\n\x05ports\x18\x07 \x03(\x0b\x32\x1c.flyteidl.core.ContainerPortR\x05ports\x12\x41\n\x0b\x64\x61ta_config\x18\t \x01(\x0b\x32 .flyteidl.core.DataLoadingConfigR\ndataConfig\x12I\n\x0c\x61rchitecture\x18\n \x01(\x0e\x32%.flyteidl.core.Container.ArchitectureR\x0c\x61rchitecture\"I\n\x0c\x41rchitecture\x12\x0b\n\x07UNKNOWN\x10\x00\x12\t\n\x05\x41MD64\x10\x01\x12\t\n\x05\x41RM64\x10\x02\x12\n\n\x06\x41RM_V6\x10\x03\x12\n\n\x06\x41RM_V7\x10\x04\"\xb5\x02\n\nIOStrategy\x12K\n\rdownload_mode\x18\x01 \x01(\x0e\x32&.flyteidl.core.IOStrategy.DownloadModeR\x0c\x64ownloadMode\x12\x45\n\x0bupload_mode\x18\x02 \x01(\x0e\x32$.flyteidl.core.IOStrategy.UploadModeR\nuploadMode\"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\"\xa7\x02\n\x11\x44\x61taLoadingConfig\x12\x18\n\x07\x65nabled\x18\x01 \x01(\x08R\x07\x65nabled\x12\x1d\n\ninput_path\x18\x02 \x01(\tR\tinputPath\x12\x1f\n\x0boutput_path\x18\x03 \x01(\tR\noutputPath\x12I\n\x06\x66ormat\x18\x04 \x01(\x0e\x32\x31.flyteidl.core.DataLoadingConfig.LiteralMapFormatR\x06\x66ormat\x12:\n\x0bio_strategy\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.IOStrategyR\nioStrategy\"1\n\x10LiteralMapFormat\x12\x08\n\x04JSON\x10\x00\x12\x08\n\x04YAML\x10\x01\x12\t\n\x05PROTO\x10\x02\"\xbd\x01\n\x06K8sPod\x12<\n\x08metadata\x18\x01 \x01(\x0b\x32 .flyteidl.core.K8sObjectMetadataR\x08metadata\x12\x32\n\x08pod_spec\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructR\x07podSpec\x12\x41\n\x0b\x64\x61ta_config\x18\x03 \x01(\x0b\x32 .flyteidl.core.DataLoadingConfigR\ndataConfig\"\xa9\x02\n\x11K8sObjectMetadata\x12\x44\n\x06labels\x18\x01 \x03(\x0b\x32,.flyteidl.core.K8sObjectMetadata.LabelsEntryR\x06labels\x12S\n\x0b\x61nnotations\x18\x02 \x03(\x0b\x32\x31.flyteidl.core.K8sObjectMetadata.AnnotationsEntryR\x0b\x61nnotations\x1a\x39\n\x0bLabelsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a>\n\x10\x41nnotationsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x92\x01\n\x03Sql\x12\x1c\n\tstatement\x18\x01 \x01(\tR\tstatement\x12\x34\n\x07\x64ialect\x18\x02 \x01(\x0e\x32\x1a.flyteidl.core.Sql.DialectR\x07\x64ialect\"7\n\x07\x44ialect\x12\r\n\tUNDEFINED\x10\x00\x12\x08\n\x04\x41NSI\x10\x01\x12\x08\n\x04HIVE\x10\x02\x12\t\n\x05OTHER\x10\x03\x42\xaa\x01\n\x11\x63om.flyteidl.coreB\nTasksProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xd0\x02\n\tResources\x12\x42\n\x08requests\x18\x01 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntryR\x08requests\x12>\n\x06limits\x18\x02 \x03(\x0b\x32&.flyteidl.core.Resources.ResourceEntryR\x06limits\x1a`\n\rResourceEntry\x12\x39\n\x04name\x18\x01 \x01(\x0e\x32%.flyteidl.core.Resources.ResourceNameR\x04name\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"]\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\x12\x15\n\x11\x45PHEMERAL_STORAGE\x10\x05\"\xac\x01\n\x0fRuntimeMetadata\x12>\n\x04type\x18\x01 \x01(\x0e\x32*.flyteidl.core.RuntimeMetadata.RuntimeTypeR\x04type\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12\x16\n\x06\x66lavor\x18\x03 \x01(\tR\x06\x66lavor\"\'\n\x0bRuntimeType\x12\t\n\x05OTHER\x10\x00\x12\r\n\tFLYTE_SDK\x10\x01\"\xf5\x04\n\x0cTaskMetadata\x12\"\n\x0c\x64iscoverable\x18\x01 \x01(\x08R\x0c\x64iscoverable\x12\x38\n\x07runtime\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.RuntimeMetadataR\x07runtime\x12\x33\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x07timeout\x12\x36\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategyR\x07retries\x12+\n\x11\x64iscovery_version\x18\x06 \x01(\tR\x10\x64iscoveryVersion\x12\x38\n\x18\x64\x65precated_error_message\x18\x07 \x01(\tR\x16\x64\x65precatedErrorMessage\x12&\n\rinterruptible\x18\x08 \x01(\x08H\x00R\rinterruptible\x12-\n\x12\x63\x61\x63he_serializable\x18\t \x01(\x08R\x11\x63\x61\x63heSerializable\x12%\n\x0egenerates_deck\x18\n \x01(\x08R\rgeneratesDeck\x12\x39\n\x04tags\x18\x0b \x03(\x0b\x32%.flyteidl.core.TaskMetadata.TagsEntryR\x04tags\x12*\n\x11pod_template_name\x18\x0c \x01(\tR\x0fpodTemplateName\x1a\x37\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x15\n\x13interruptible_value\"\x85\x05\n\x0cTaskTemplate\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12\x12\n\x04type\x18\x02 \x01(\tR\x04type\x12\x37\n\x08metadata\x18\x03 \x01(\x0b\x32\x1b.flyteidl.core.TaskMetadataR\x08metadata\x12;\n\tinterface\x18\x04 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\x12/\n\x06\x63ustom\x18\x05 \x01(\x0b\x32\x17.google.protobuf.StructR\x06\x63ustom\x12\x38\n\tcontainer\x18\x06 \x01(\x0b\x32\x18.flyteidl.core.ContainerH\x00R\tcontainer\x12\x30\n\x07k8s_pod\x18\x11 \x01(\x0b\x32\x15.flyteidl.core.K8sPodH\x00R\x06k8sPod\x12&\n\x03sql\x18\x12 \x01(\x0b\x32\x12.flyteidl.core.SqlH\x00R\x03sql\x12*\n\x11task_type_version\x18\x07 \x01(\x05R\x0ftaskTypeVersion\x12I\n\x10security_context\x18\x08 \x01(\x0b\x32\x1e.flyteidl.core.SecurityContextR\x0fsecurityContext\x12?\n\x06\x63onfig\x18\x10 \x03(\x0b\x32\'.flyteidl.core.TaskTemplate.ConfigEntryR\x06\x63onfig\x1a\x39\n\x0b\x43onfigEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x08\n\x06target\"6\n\rContainerPort\x12%\n\x0e\x63ontainer_port\x18\x01 \x01(\rR\rcontainerPort\"\xfc\x03\n\tContainer\x12\x14\n\x05image\x18\x01 \x01(\tR\x05image\x12\x18\n\x07\x63ommand\x18\x02 \x03(\tR\x07\x63ommand\x12\x12\n\x04\x61rgs\x18\x03 \x03(\tR\x04\x61rgs\x12\x36\n\tresources\x18\x04 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12-\n\x03\x65nv\x18\x05 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairR\x03\x65nv\x12\x37\n\x06\x63onfig\x18\x06 \x03(\x0b\x32\x1b.flyteidl.core.KeyValuePairB\x02\x18\x01R\x06\x63onfig\x12\x32\n\x05ports\x18\x07 \x03(\x0b\x32\x1c.flyteidl.core.ContainerPortR\x05ports\x12\x41\n\x0b\x64\x61ta_config\x18\t \x01(\x0b\x32 .flyteidl.core.DataLoadingConfigR\ndataConfig\x12I\n\x0c\x61rchitecture\x18\n \x01(\x0e\x32%.flyteidl.core.Container.ArchitectureR\x0c\x61rchitecture\"I\n\x0c\x41rchitecture\x12\x0b\n\x07UNKNOWN\x10\x00\x12\t\n\x05\x41MD64\x10\x01\x12\t\n\x05\x41RM64\x10\x02\x12\n\n\x06\x41RM_V6\x10\x03\x12\n\n\x06\x41RM_V7\x10\x04\"\xb5\x02\n\nIOStrategy\x12K\n\rdownload_mode\x18\x01 \x01(\x0e\x32&.flyteidl.core.IOStrategy.DownloadModeR\x0c\x64ownloadMode\x12\x45\n\x0bupload_mode\x18\x02 \x01(\x0e\x32$.flyteidl.core.IOStrategy.UploadModeR\nuploadMode\"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\"\xa7\x02\n\x11\x44\x61taLoadingConfig\x12\x18\n\x07\x65nabled\x18\x01 \x01(\x08R\x07\x65nabled\x12\x1d\n\ninput_path\x18\x02 \x01(\tR\tinputPath\x12\x1f\n\x0boutput_path\x18\x03 \x01(\tR\noutputPath\x12I\n\x06\x66ormat\x18\x04 \x01(\x0e\x32\x31.flyteidl.core.DataLoadingConfig.LiteralMapFormatR\x06\x66ormat\x12:\n\x0bio_strategy\x18\x05 \x01(\x0b\x32\x19.flyteidl.core.IOStrategyR\nioStrategy\"1\n\x10LiteralMapFormat\x12\x08\n\x04JSON\x10\x00\x12\x08\n\x04YAML\x10\x01\x12\t\n\x05PROTO\x10\x02\"\xbd\x01\n\x06K8sPod\x12<\n\x08metadata\x18\x01 \x01(\x0b\x32 .flyteidl.core.K8sObjectMetadataR\x08metadata\x12\x32\n\x08pod_spec\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructR\x07podSpec\x12\x41\n\x0b\x64\x61ta_config\x18\x03 \x01(\x0b\x32 .flyteidl.core.DataLoadingConfigR\ndataConfig\"\xa9\x02\n\x11K8sObjectMetadata\x12\x44\n\x06labels\x18\x01 \x03(\x0b\x32,.flyteidl.core.K8sObjectMetadata.LabelsEntryR\x06labels\x12S\n\x0b\x61nnotations\x18\x02 \x03(\x0b\x32\x31.flyteidl.core.K8sObjectMetadata.AnnotationsEntryR\x0b\x61nnotations\x1a\x39\n\x0bLabelsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a>\n\x10\x41nnotationsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x92\x01\n\x03Sql\x12\x1c\n\tstatement\x18\x01 \x01(\tR\tstatement\x12\x34\n\x07\x64ialect\x18\x02 \x01(\x0e\x32\x1a.flyteidl.core.Sql.DialectR\x07\x64ialect\"7\n\x07\x44ialect\x12\r\n\tUNDEFINED\x10\x00\x12\x08\n\x04\x41NSI\x10\x01\x12\x08\n\x04HIVE\x10\x02\x12\t\n\x05OTHER\x10\x03\x42\xb0\x01\n\x11\x63om.flyteidl.coreB\nTasksProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -27,7 +27,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\nTasksProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\nTasksProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _TASKMETADATA_TAGSENTRY._options = None
   _TASKMETADATA_TAGSENTRY._serialized_options = b'8\001'
   _TASKTEMPLATE_CONFIGENTRY._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/core/types_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/types_pb2.py
index 4f2f994662..3544f7afba 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/types_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/types_pb2.py
@@ -14,7 +14,7 @@
 from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19\x66lyteidl/core/types.proto\x12\rflyteidl.core\x1a\x1cgoogle/protobuf/struct.proto\"\xa1\x02\n\nSchemaType\x12@\n\x07\x63olumns\x18\x03 \x03(\x0b\x32&.flyteidl.core.SchemaType.SchemaColumnR\x07\x63olumns\x1a\xd0\x01\n\x0cSchemaColumn\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12K\n\x04type\x18\x02 \x01(\x0e\x32\x37.flyteidl.core.SchemaType.SchemaColumn.SchemaColumnTypeR\x04type\"_\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\"\xc7\x02\n\x15StructuredDatasetType\x12L\n\x07\x63olumns\x18\x01 \x03(\x0b\x32\x32.flyteidl.core.StructuredDatasetType.DatasetColumnR\x07\x63olumns\x12\x16\n\x06\x66ormat\x18\x02 \x01(\tR\x06\x66ormat\x12\x30\n\x14\x65xternal_schema_type\x18\x03 \x01(\tR\x12\x65xternalSchemaType\x12\x32\n\x15\x65xternal_schema_bytes\x18\x04 \x01(\x0cR\x13\x65xternalSchemaBytes\x1a\x62\n\rDatasetColumn\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12=\n\x0cliteral_type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x0bliteralType\"\xa7\x01\n\x08\x42lobType\x12\x16\n\x06\x66ormat\x18\x01 \x01(\tR\x06\x66ormat\x12R\n\x0e\x64imensionality\x18\x02 \x01(\x0e\x32*.flyteidl.core.BlobType.BlobDimensionalityR\x0e\x64imensionality\"/\n\x12\x42lobDimensionality\x12\n\n\x06SINGLE\x10\x00\x12\r\n\tMULTIPART\x10\x01\"\"\n\x08\x45numType\x12\x16\n\x06values\x18\x01 \x03(\tR\x06values\"C\n\tUnionType\x12\x36\n\x08variants\x18\x01 \x03(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x08variants\"!\n\rTypeStructure\x12\x10\n\x03tag\x18\x01 \x01(\tR\x03tag\"K\n\x0eTypeAnnotation\x12\x39\n\x0b\x61nnotations\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructR\x0b\x61nnotations\"\xbc\x05\n\x0bLiteralType\x12\x33\n\x06simple\x18\x01 \x01(\x0e\x32\x19.flyteidl.core.SimpleTypeH\x00R\x06simple\x12\x33\n\x06schema\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.SchemaTypeH\x00R\x06schema\x12\x45\n\x0f\x63ollection_type\x18\x03 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeH\x00R\x0e\x63ollectionType\x12\x42\n\x0emap_value_type\x18\x04 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeH\x00R\x0cmapValueType\x12-\n\x04\x62lob\x18\x05 \x01(\x0b\x32\x17.flyteidl.core.BlobTypeH\x00R\x04\x62lob\x12\x36\n\tenum_type\x18\x07 \x01(\x0b\x32\x17.flyteidl.core.EnumTypeH\x00R\x08\x65numType\x12^\n\x17structured_dataset_type\x18\x08 \x01(\x0b\x32$.flyteidl.core.StructuredDatasetTypeH\x00R\x15structuredDatasetType\x12\x39\n\nunion_type\x18\n \x01(\x0b\x32\x18.flyteidl.core.UnionTypeH\x00R\tunionType\x12\x33\n\x08metadata\x18\x06 \x01(\x0b\x32\x17.google.protobuf.StructR\x08metadata\x12=\n\nannotation\x18\t \x01(\x0b\x32\x1d.flyteidl.core.TypeAnnotationR\nannotation\x12:\n\tstructure\x18\x0b \x01(\x0b\x32\x1c.flyteidl.core.TypeStructureR\tstructureB\x06\n\x04type\"z\n\x0fOutputReference\x12\x17\n\x07node_id\x18\x01 \x01(\tR\x06nodeId\x12\x10\n\x03var\x18\x02 \x01(\tR\x03var\x12<\n\tattr_path\x18\x03 \x03(\x0b\x32\x1f.flyteidl.core.PromiseAttributeR\x08\x61ttrPath\"_\n\x10PromiseAttribute\x12#\n\x0cstring_value\x18\x01 \x01(\tH\x00R\x0bstringValue\x12\x1d\n\tint_value\x18\x02 \x01(\x05H\x00R\x08intValueB\x07\n\x05value\"G\n\x05\x45rror\x12$\n\x0e\x66\x61iled_node_id\x18\x01 \x01(\tR\x0c\x66\x61iledNodeId\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message*\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\tB\xaa\x01\n\x11\x63om.flyteidl.coreB\nTypesProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19\x66lyteidl/core/types.proto\x12\rflyteidl.core\x1a\x1cgoogle/protobuf/struct.proto\"\xa1\x02\n\nSchemaType\x12@\n\x07\x63olumns\x18\x03 \x03(\x0b\x32&.flyteidl.core.SchemaType.SchemaColumnR\x07\x63olumns\x1a\xd0\x01\n\x0cSchemaColumn\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12K\n\x04type\x18\x02 \x01(\x0e\x32\x37.flyteidl.core.SchemaType.SchemaColumn.SchemaColumnTypeR\x04type\"_\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\"\xc7\x02\n\x15StructuredDatasetType\x12L\n\x07\x63olumns\x18\x01 \x03(\x0b\x32\x32.flyteidl.core.StructuredDatasetType.DatasetColumnR\x07\x63olumns\x12\x16\n\x06\x66ormat\x18\x02 \x01(\tR\x06\x66ormat\x12\x30\n\x14\x65xternal_schema_type\x18\x03 \x01(\tR\x12\x65xternalSchemaType\x12\x32\n\x15\x65xternal_schema_bytes\x18\x04 \x01(\x0cR\x13\x65xternalSchemaBytes\x1a\x62\n\rDatasetColumn\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12=\n\x0cliteral_type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x0bliteralType\"\xa7\x01\n\x08\x42lobType\x12\x16\n\x06\x66ormat\x18\x01 \x01(\tR\x06\x66ormat\x12R\n\x0e\x64imensionality\x18\x02 \x01(\x0e\x32*.flyteidl.core.BlobType.BlobDimensionalityR\x0e\x64imensionality\"/\n\x12\x42lobDimensionality\x12\n\n\x06SINGLE\x10\x00\x12\r\n\tMULTIPART\x10\x01\"\"\n\x08\x45numType\x12\x16\n\x06values\x18\x01 \x03(\tR\x06values\"C\n\tUnionType\x12\x36\n\x08variants\x18\x01 \x03(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x08variants\"!\n\rTypeStructure\x12\x10\n\x03tag\x18\x01 \x01(\tR\x03tag\"K\n\x0eTypeAnnotation\x12\x39\n\x0b\x61nnotations\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructR\x0b\x61nnotations\"\xbc\x05\n\x0bLiteralType\x12\x33\n\x06simple\x18\x01 \x01(\x0e\x32\x19.flyteidl.core.SimpleTypeH\x00R\x06simple\x12\x33\n\x06schema\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.SchemaTypeH\x00R\x06schema\x12\x45\n\x0f\x63ollection_type\x18\x03 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeH\x00R\x0e\x63ollectionType\x12\x42\n\x0emap_value_type\x18\x04 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeH\x00R\x0cmapValueType\x12-\n\x04\x62lob\x18\x05 \x01(\x0b\x32\x17.flyteidl.core.BlobTypeH\x00R\x04\x62lob\x12\x36\n\tenum_type\x18\x07 \x01(\x0b\x32\x17.flyteidl.core.EnumTypeH\x00R\x08\x65numType\x12^\n\x17structured_dataset_type\x18\x08 \x01(\x0b\x32$.flyteidl.core.StructuredDatasetTypeH\x00R\x15structuredDatasetType\x12\x39\n\nunion_type\x18\n \x01(\x0b\x32\x18.flyteidl.core.UnionTypeH\x00R\tunionType\x12\x33\n\x08metadata\x18\x06 \x01(\x0b\x32\x17.google.protobuf.StructR\x08metadata\x12=\n\nannotation\x18\t \x01(\x0b\x32\x1d.flyteidl.core.TypeAnnotationR\nannotation\x12:\n\tstructure\x18\x0b \x01(\x0b\x32\x1c.flyteidl.core.TypeStructureR\tstructureB\x06\n\x04type\"z\n\x0fOutputReference\x12\x17\n\x07node_id\x18\x01 \x01(\tR\x06nodeId\x12\x10\n\x03var\x18\x02 \x01(\tR\x03var\x12<\n\tattr_path\x18\x03 \x03(\x0b\x32\x1f.flyteidl.core.PromiseAttributeR\x08\x61ttrPath\"_\n\x10PromiseAttribute\x12#\n\x0cstring_value\x18\x01 \x01(\tH\x00R\x0bstringValue\x12\x1d\n\tint_value\x18\x02 \x01(\x05H\x00R\x08intValueB\x07\n\x05value\"G\n\x05\x45rror\x12$\n\x0e\x66\x61iled_node_id\x18\x01 \x01(\tR\x0c\x66\x61iledNodeId\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message*\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\tB\xb0\x01\n\x11\x63om.flyteidl.coreB\nTypesProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\nTypesProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\nTypesProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _globals['_SIMPLETYPE']._serialized_start=2081
   _globals['_SIMPLETYPE']._serialized_end=2215
   _globals['_SCHEMATYPE']._serialized_start=75
diff --git a/flyteidl/gen/pb_python/flyteidl/core/workflow_closure_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/workflow_closure_pb2.py
index 6b826768c0..e7a1b9ee93 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/workflow_closure_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/workflow_closure_pb2.py
@@ -15,7 +15,7 @@
 from flyteidl.core import tasks_pb2 as flyteidl_dot_core_dot_tasks__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$flyteidl/core/workflow_closure.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x19\x66lyteidl/core/tasks.proto\"\x81\x01\n\x0fWorkflowClosure\x12;\n\x08workflow\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplateR\x08workflow\x12\x31\n\x05tasks\x18\x02 \x03(\x0b\x32\x1b.flyteidl.core.TaskTemplateR\x05tasksB\xb4\x01\n\x11\x63om.flyteidl.coreB\x14WorkflowClosureProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$flyteidl/core/workflow_closure.proto\x12\rflyteidl.core\x1a\x1c\x66lyteidl/core/workflow.proto\x1a\x19\x66lyteidl/core/tasks.proto\"\x81\x01\n\x0fWorkflowClosure\x12;\n\x08workflow\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowTemplateR\x08workflow\x12\x31\n\x05tasks\x18\x02 \x03(\x0b\x32\x1b.flyteidl.core.TaskTemplateR\x05tasksB\xba\x01\n\x11\x63om.flyteidl.coreB\x14WorkflowClosureProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,7 +23,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\024WorkflowClosureProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\024WorkflowClosureProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _globals['_WORKFLOWCLOSURE']._serialized_start=113
   _globals['_WORKFLOWCLOSURE']._serialized_end=242
 # @@protoc_insertion_point(module_scope)
diff --git a/flyteidl/gen/pb_python/flyteidl/core/workflow_pb2.py b/flyteidl/gen/pb_python/flyteidl/core/workflow_pb2.py
index 5272c8babc..df7570e9b3 100644
--- a/flyteidl/gen/pb_python/flyteidl/core/workflow_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/core/workflow_pb2.py
@@ -22,7 +22,7 @@
 from google.protobuf import duration_pb2 as google_dot_protobuf_dot_duration__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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/tasks.proto\x1a\x19\x66lyteidl/core/types.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\"{\n\x07IfBlock\x12>\n\tcondition\x18\x01 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\tcondition\x12\x30\n\tthen_node\x18\x02 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x08thenNode\"\xd4\x01\n\x0bIfElseBlock\x12*\n\x04\x63\x61se\x18\x01 \x01(\x0b\x32\x16.flyteidl.core.IfBlockR\x04\x63\x61se\x12,\n\x05other\x18\x02 \x03(\x0b\x32\x16.flyteidl.core.IfBlockR\x05other\x12\x32\n\telse_node\x18\x03 \x01(\x0b\x32\x13.flyteidl.core.NodeH\x00R\x08\x65lseNode\x12,\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x14.flyteidl.core.ErrorH\x00R\x05\x65rrorB\t\n\x07\x64\x65\x66\x61ult\"A\n\nBranchNode\x12\x33\n\x07if_else\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.IfElseBlockR\x06ifElse\"\x97\x01\n\x08TaskNode\x12>\n\x0creference_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\x0breferenceId\x12>\n\toverrides\x18\x02 \x01(\x0b\x32 .flyteidl.core.TaskNodeOverridesR\toverridesB\x0b\n\treference\"\xa6\x01\n\x0cWorkflowNode\x12\x42\n\x0elaunchplan_ref\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\rlaunchplanRef\x12\x45\n\x10sub_workflow_ref\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\x0esubWorkflowRefB\x0b\n\treference\"/\n\x10\x41pproveCondition\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\"\x90\x01\n\x0fSignalCondition\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12\x30\n\x14output_variable_name\x18\x03 \x01(\tR\x12outputVariableName\"G\n\x0eSleepCondition\x12\x35\n\x08\x64uration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\"\xc5\x01\n\x08GateNode\x12;\n\x07\x61pprove\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.ApproveConditionH\x00R\x07\x61pprove\x12\x38\n\x06signal\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.SignalConditionH\x00R\x06signal\x12\x35\n\x05sleep\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.SleepConditionH\x00R\x05sleepB\x0b\n\tcondition\"\xbf\x01\n\tArrayNode\x12\'\n\x04node\x18\x01 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x04node\x12 \n\x0bparallelism\x18\x02 \x01(\rR\x0bparallelism\x12%\n\rmin_successes\x18\x03 \x01(\rH\x00R\x0cminSuccesses\x12,\n\x11min_success_ratio\x18\x04 \x01(\x02H\x00R\x0fminSuccessRatioB\x12\n\x10success_criteria\"\xce\x01\n\x0cNodeMetadata\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x33\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x07timeout\x12\x36\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategyR\x07retries\x12&\n\rinterruptible\x18\x06 \x01(\x08H\x00R\rinterruptibleB\x15\n\x13interruptible_value\"/\n\x05\x41lias\x12\x10\n\x03var\x18\x01 \x01(\tR\x03var\x12\x14\n\x05\x61lias\x18\x02 \x01(\tR\x05\x61lias\"\x9f\x04\n\x04Node\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x37\n\x08metadata\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.NodeMetadataR\x08metadata\x12.\n\x06inputs\x18\x03 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x06inputs\x12*\n\x11upstream_node_ids\x18\x04 \x03(\tR\x0fupstreamNodeIds\x12;\n\x0eoutput_aliases\x18\x05 \x03(\x0b\x32\x14.flyteidl.core.AliasR\routputAliases\x12\x36\n\ttask_node\x18\x06 \x01(\x0b\x32\x17.flyteidl.core.TaskNodeH\x00R\x08taskNode\x12\x42\n\rworkflow_node\x18\x07 \x01(\x0b\x32\x1b.flyteidl.core.WorkflowNodeH\x00R\x0cworkflowNode\x12<\n\x0b\x62ranch_node\x18\x08 \x01(\x0b\x32\x19.flyteidl.core.BranchNodeH\x00R\nbranchNode\x12\x36\n\tgate_node\x18\t \x01(\x0b\x32\x17.flyteidl.core.GateNodeH\x00R\x08gateNode\x12\x39\n\narray_node\x18\n \x01(\x0b\x32\x18.flyteidl.core.ArrayNodeH\x00R\tarrayNodeB\x08\n\x06target\"\xfc\x02\n\x10WorkflowMetadata\x12M\n\x12quality_of_service\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceR\x10qualityOfService\x12N\n\non_failure\x18\x02 \x01(\x0e\x32/.flyteidl.core.WorkflowMetadata.OnFailurePolicyR\tonFailure\x12=\n\x04tags\x18\x03 \x03(\x0b\x32).flyteidl.core.WorkflowMetadata.TagsEntryR\x04tags\x1a\x37\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"Q\n\x0fOnFailurePolicy\x12\x14\n\x10\x46\x41IL_IMMEDIATELY\x10\x00\x12(\n$FAIL_AFTER_EXECUTABLE_NODES_COMPLETE\x10\x01\"@\n\x18WorkflowMetadataDefaults\x12$\n\rinterruptible\x18\x01 \x01(\x08R\rinterruptible\"\xa2\x03\n\x10WorkflowTemplate\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12;\n\x08metadata\x18\x02 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowMetadataR\x08metadata\x12;\n\tinterface\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\x12)\n\x05nodes\x18\x04 \x03(\x0b\x32\x13.flyteidl.core.NodeR\x05nodes\x12\x30\n\x07outputs\x18\x05 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x07outputs\x12\x36\n\x0c\x66\x61ilure_node\x18\x06 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x0b\x66\x61ilureNode\x12T\n\x11metadata_defaults\x18\x07 \x01(\x0b\x32\'.flyteidl.core.WorkflowMetadataDefaultsR\x10metadataDefaults\"K\n\x11TaskNodeOverrides\x12\x36\n\tresources\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresourcesB\xad\x01\n\x11\x63om.flyteidl.coreB\rWorkflowProtoP\x01Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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/tasks.proto\x1a\x19\x66lyteidl/core/types.proto\x1a\x1c\x66lyteidl/core/security.proto\x1a\x1egoogle/protobuf/duration.proto\"{\n\x07IfBlock\x12>\n\tcondition\x18\x01 \x01(\x0b\x32 .flyteidl.core.BooleanExpressionR\tcondition\x12\x30\n\tthen_node\x18\x02 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x08thenNode\"\xd4\x01\n\x0bIfElseBlock\x12*\n\x04\x63\x61se\x18\x01 \x01(\x0b\x32\x16.flyteidl.core.IfBlockR\x04\x63\x61se\x12,\n\x05other\x18\x02 \x03(\x0b\x32\x16.flyteidl.core.IfBlockR\x05other\x12\x32\n\telse_node\x18\x03 \x01(\x0b\x32\x13.flyteidl.core.NodeH\x00R\x08\x65lseNode\x12,\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x14.flyteidl.core.ErrorH\x00R\x05\x65rrorB\t\n\x07\x64\x65\x66\x61ult\"A\n\nBranchNode\x12\x33\n\x07if_else\x18\x01 \x01(\x0b\x32\x1a.flyteidl.core.IfElseBlockR\x06ifElse\"\x97\x01\n\x08TaskNode\x12>\n\x0creference_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\x0breferenceId\x12>\n\toverrides\x18\x02 \x01(\x0b\x32 .flyteidl.core.TaskNodeOverridesR\toverridesB\x0b\n\treference\"\xa6\x01\n\x0cWorkflowNode\x12\x42\n\x0elaunchplan_ref\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\rlaunchplanRef\x12\x45\n\x10sub_workflow_ref\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.IdentifierH\x00R\x0esubWorkflowRefB\x0b\n\treference\"/\n\x10\x41pproveCondition\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\"\x90\x01\n\x0fSignalCondition\x12\x1b\n\tsignal_id\x18\x01 \x01(\tR\x08signalId\x12.\n\x04type\x18\x02 \x01(\x0b\x32\x1a.flyteidl.core.LiteralTypeR\x04type\x12\x30\n\x14output_variable_name\x18\x03 \x01(\tR\x12outputVariableName\"G\n\x0eSleepCondition\x12\x35\n\x08\x64uration\x18\x01 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\"\xc5\x01\n\x08GateNode\x12;\n\x07\x61pprove\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.ApproveConditionH\x00R\x07\x61pprove\x12\x38\n\x06signal\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.SignalConditionH\x00R\x06signal\x12\x35\n\x05sleep\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.SleepConditionH\x00R\x05sleepB\x0b\n\tcondition\"\xbf\x01\n\tArrayNode\x12\'\n\x04node\x18\x01 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x04node\x12 \n\x0bparallelism\x18\x02 \x01(\rR\x0bparallelism\x12%\n\rmin_successes\x18\x03 \x01(\rH\x00R\x0cminSuccesses\x12,\n\x11min_success_ratio\x18\x04 \x01(\x02H\x00R\x0fminSuccessRatioB\x12\n\x10success_criteria\"\xce\x01\n\x0cNodeMetadata\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x33\n\x07timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\x07timeout\x12\x36\n\x07retries\x18\x05 \x01(\x0b\x32\x1c.flyteidl.core.RetryStrategyR\x07retries\x12&\n\rinterruptible\x18\x06 \x01(\x08H\x00R\rinterruptibleB\x15\n\x13interruptible_value\"/\n\x05\x41lias\x12\x10\n\x03var\x18\x01 \x01(\tR\x03var\x12\x14\n\x05\x61lias\x18\x02 \x01(\tR\x05\x61lias\"\x9f\x04\n\x04Node\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x37\n\x08metadata\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.NodeMetadataR\x08metadata\x12.\n\x06inputs\x18\x03 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x06inputs\x12*\n\x11upstream_node_ids\x18\x04 \x03(\tR\x0fupstreamNodeIds\x12;\n\x0eoutput_aliases\x18\x05 \x03(\x0b\x32\x14.flyteidl.core.AliasR\routputAliases\x12\x36\n\ttask_node\x18\x06 \x01(\x0b\x32\x17.flyteidl.core.TaskNodeH\x00R\x08taskNode\x12\x42\n\rworkflow_node\x18\x07 \x01(\x0b\x32\x1b.flyteidl.core.WorkflowNodeH\x00R\x0cworkflowNode\x12<\n\x0b\x62ranch_node\x18\x08 \x01(\x0b\x32\x19.flyteidl.core.BranchNodeH\x00R\nbranchNode\x12\x36\n\tgate_node\x18\t \x01(\x0b\x32\x17.flyteidl.core.GateNodeH\x00R\x08gateNode\x12\x39\n\narray_node\x18\n \x01(\x0b\x32\x18.flyteidl.core.ArrayNodeH\x00R\tarrayNodeB\x08\n\x06target\"\xfc\x02\n\x10WorkflowMetadata\x12M\n\x12quality_of_service\x18\x01 \x01(\x0b\x32\x1f.flyteidl.core.QualityOfServiceR\x10qualityOfService\x12N\n\non_failure\x18\x02 \x01(\x0e\x32/.flyteidl.core.WorkflowMetadata.OnFailurePolicyR\tonFailure\x12=\n\x04tags\x18\x03 \x03(\x0b\x32).flyteidl.core.WorkflowMetadata.TagsEntryR\x04tags\x1a\x37\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"Q\n\x0fOnFailurePolicy\x12\x14\n\x10\x46\x41IL_IMMEDIATELY\x10\x00\x12(\n$FAIL_AFTER_EXECUTABLE_NODES_COMPLETE\x10\x01\"@\n\x18WorkflowMetadataDefaults\x12$\n\rinterruptible\x18\x01 \x01(\x08R\rinterruptible\"\xa2\x03\n\x10WorkflowTemplate\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12;\n\x08metadata\x18\x02 \x01(\x0b\x32\x1f.flyteidl.core.WorkflowMetadataR\x08metadata\x12;\n\tinterface\x18\x03 \x01(\x0b\x32\x1d.flyteidl.core.TypedInterfaceR\tinterface\x12)\n\x05nodes\x18\x04 \x03(\x0b\x32\x13.flyteidl.core.NodeR\x05nodes\x12\x30\n\x07outputs\x18\x05 \x03(\x0b\x32\x16.flyteidl.core.BindingR\x07outputs\x12\x36\n\x0c\x66\x61ilure_node\x18\x06 \x01(\x0b\x32\x13.flyteidl.core.NodeR\x0b\x66\x61ilureNode\x12T\n\x11metadata_defaults\x18\x07 \x01(\x0b\x32\'.flyteidl.core.WorkflowMetadataDefaultsR\x10metadataDefaults\"K\n\x11TaskNodeOverrides\x12\x36\n\tresources\x18\x01 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresourcesB\xb3\x01\n\x11\x63om.flyteidl.coreB\rWorkflowProtoP\x01Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\xa2\x02\x03\x46\x43X\xaa\x02\rFlyteidl.Core\xca\x02\rFlyteidl\\Core\xe2\x02\x19\x46lyteidl\\Core\\GPBMetadata\xea\x02\x0e\x46lyteidl::Coreb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -30,7 +30,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\rWorkflowProtoP\001Z4github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
+  DESCRIPTOR._serialized_options = b'\n\021com.flyteidl.coreB\rWorkflowProtoP\001Z:github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core\242\002\003FCX\252\002\rFlyteidl.Core\312\002\rFlyteidl\\Core\342\002\031Flyteidl\\Core\\GPBMetadata\352\002\016Flyteidl::Core'
   _WORKFLOWMETADATA_TAGSENTRY._options = None
   _WORKFLOWMETADATA_TAGSENTRY._serialized_options = b'8\001'
   _globals['_IFBLOCK']._serialized_start=318
diff --git a/flyteidl/gen/pb_python/flyteidl/datacatalog/datacatalog_pb2.py b/flyteidl/gen/pb_python/flyteidl/datacatalog/datacatalog_pb2.py
index 2bffde9896..610a93a6da 100644
--- a/flyteidl/gen/pb_python/flyteidl/datacatalog/datacatalog_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/datacatalog/datacatalog_pb2.py
@@ -16,7 +16,7 @@
 from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n&flyteidl/datacatalog/datacatalog.proto\x12\x0b\x64\x61tacatalog\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"F\n\x14\x43reateDatasetRequest\x12.\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32\x14.datacatalog.DatasetR\x07\x64\x61taset\"\x17\n\x15\x43reateDatasetResponse\"E\n\x11GetDatasetRequest\x12\x30\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x07\x64\x61taset\"D\n\x12GetDatasetResponse\x12.\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32\x14.datacatalog.DatasetR\x07\x64\x61taset\"\x96\x01\n\x12GetArtifactRequest\x12\x30\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x07\x64\x61taset\x12!\n\x0b\x61rtifact_id\x18\x02 \x01(\tH\x00R\nartifactId\x12\x1b\n\x08tag_name\x18\x03 \x01(\tH\x00R\x07tagNameB\x0e\n\x0cquery_handle\"H\n\x13GetArtifactResponse\x12\x31\n\x08\x61rtifact\x18\x01 \x01(\x0b\x32\x15.datacatalog.ArtifactR\x08\x61rtifact\"J\n\x15\x43reateArtifactRequest\x12\x31\n\x08\x61rtifact\x18\x01 \x01(\x0b\x32\x15.datacatalog.ArtifactR\x08\x61rtifact\"\x18\n\x16\x43reateArtifactResponse\"3\n\rAddTagRequest\x12\"\n\x03tag\x18\x01 \x01(\x0b\x32\x10.datacatalog.TagR\x03tag\"\x10\n\x0e\x41\x64\x64TagResponse\"\xbf\x01\n\x14ListArtifactsRequest\x12\x30\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x07\x64\x61taset\x12\x35\n\x06\x66ilter\x18\x02 \x01(\x0b\x32\x1d.datacatalog.FilterExpressionR\x06\x66ilter\x12>\n\npagination\x18\x03 \x01(\x0b\x32\x1e.datacatalog.PaginationOptionsR\npagination\"k\n\x15ListArtifactsResponse\x12\x33\n\tartifacts\x18\x01 \x03(\x0b\x32\x15.datacatalog.ArtifactR\tartifacts\x12\x1d\n\nnext_token\x18\x02 \x01(\tR\tnextToken\"\x8c\x01\n\x13ListDatasetsRequest\x12\x35\n\x06\x66ilter\x18\x01 \x01(\x0b\x32\x1d.datacatalog.FilterExpressionR\x06\x66ilter\x12>\n\npagination\x18\x02 \x01(\x0b\x32\x1e.datacatalog.PaginationOptionsR\npagination\"g\n\x14ListDatasetsResponse\x12\x30\n\x08\x64\x61tasets\x18\x01 \x03(\x0b\x32\x14.datacatalog.DatasetR\x08\x64\x61tasets\x12\x1d\n\nnext_token\x18\x02 \x01(\tR\tnextToken\"\xc8\x01\n\x15UpdateArtifactRequest\x12\x30\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x07\x64\x61taset\x12!\n\x0b\x61rtifact_id\x18\x02 \x01(\tH\x00R\nartifactId\x12\x1b\n\x08tag_name\x18\x03 \x01(\tH\x00R\x07tagName\x12-\n\x04\x64\x61ta\x18\x04 \x03(\x0b\x32\x19.datacatalog.ArtifactDataR\x04\x64\x61taB\x0e\n\x0cquery_handle\"9\n\x16UpdateArtifactResponse\x12\x1f\n\x0b\x61rtifact_id\x18\x01 \x01(\tR\nartifactId\"a\n\rReservationID\x12\x35\n\ndataset_id\x18\x01 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\tdatasetId\x12\x19\n\x08tag_name\x18\x02 \x01(\tR\x07tagName\"\xc7\x01\n\x1dGetOrExtendReservationRequest\x12\x41\n\x0ereservation_id\x18\x01 \x01(\x0b\x32\x1a.datacatalog.ReservationIDR\rreservationId\x12\x19\n\x08owner_id\x18\x02 \x01(\tR\x07ownerId\x12H\n\x12heartbeat_interval\x18\x03 \x01(\x0b\x32\x19.google.protobuf.DurationR\x11heartbeatInterval\"\xa3\x02\n\x0bReservation\x12\x41\n\x0ereservation_id\x18\x01 \x01(\x0b\x32\x1a.datacatalog.ReservationIDR\rreservationId\x12\x19\n\x08owner_id\x18\x02 \x01(\tR\x07ownerId\x12H\n\x12heartbeat_interval\x18\x03 \x01(\x0b\x32\x19.google.protobuf.DurationR\x11heartbeatInterval\x12\x39\n\nexpires_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\texpiresAt\x12\x31\n\x08metadata\x18\x06 \x01(\x0b\x32\x15.datacatalog.MetadataR\x08metadata\"\\\n\x1eGetOrExtendReservationResponse\x12:\n\x0breservation\x18\x01 \x01(\x0b\x32\x18.datacatalog.ReservationR\x0breservation\"y\n\x19ReleaseReservationRequest\x12\x41\n\x0ereservation_id\x18\x01 \x01(\x0b\x32\x1a.datacatalog.ReservationIDR\rreservationId\x12\x19\n\x08owner_id\x18\x02 \x01(\tR\x07ownerId\"\x1c\n\x1aReleaseReservationResponse\"\x8a\x01\n\x07\x44\x61taset\x12&\n\x02id\x18\x01 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x02id\x12\x31\n\x08metadata\x18\x02 \x01(\x0b\x32\x15.datacatalog.MetadataR\x08metadata\x12$\n\rpartitionKeys\x18\x03 \x03(\tR\rpartitionKeys\"3\n\tPartition\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"\x7f\n\tDatasetID\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x16\n\x06\x64omain\x18\x03 \x01(\tR\x06\x64omain\x12\x18\n\x07version\x18\x04 \x01(\tR\x07version\x12\x12\n\x04UUID\x18\x05 \x01(\tR\x04UUID\"\xc7\x02\n\x08\x41rtifact\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x30\n\x07\x64\x61taset\x18\x02 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x07\x64\x61taset\x12-\n\x04\x64\x61ta\x18\x03 \x03(\x0b\x32\x19.datacatalog.ArtifactDataR\x04\x64\x61ta\x12\x31\n\x08metadata\x18\x04 \x01(\x0b\x32\x15.datacatalog.MetadataR\x08metadata\x12\x36\n\npartitions\x18\x05 \x03(\x0b\x32\x16.datacatalog.PartitionR\npartitions\x12$\n\x04tags\x18\x06 \x03(\x0b\x32\x10.datacatalog.TagR\x04tags\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\"P\n\x0c\x41rtifactData\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05value\"l\n\x03Tag\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1f\n\x0b\x61rtifact_id\x18\x02 \x01(\tR\nartifactId\x12\x30\n\x07\x64\x61taset\x18\x03 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x07\x64\x61taset\"\x81\x01\n\x08Metadata\x12:\n\x07key_map\x18\x01 \x03(\x0b\x32!.datacatalog.Metadata.KeyMapEntryR\x06keyMap\x1a\x39\n\x0bKeyMapEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"O\n\x10\x46ilterExpression\x12;\n\x07\x66ilters\x18\x01 \x03(\x0b\x32!.datacatalog.SinglePropertyFilterR\x07\x66ilters\"\xce\x03\n\x14SinglePropertyFilter\x12?\n\ntag_filter\x18\x01 \x01(\x0b\x32\x1e.datacatalog.TagPropertyFilterH\x00R\ttagFilter\x12Q\n\x10partition_filter\x18\x02 \x01(\x0b\x32$.datacatalog.PartitionPropertyFilterH\x00R\x0fpartitionFilter\x12N\n\x0f\x61rtifact_filter\x18\x03 \x01(\x0b\x32#.datacatalog.ArtifactPropertyFilterH\x00R\x0e\x61rtifactFilter\x12K\n\x0e\x64\x61taset_filter\x18\x04 \x01(\x0b\x32\".datacatalog.DatasetPropertyFilterH\x00R\rdatasetFilter\x12P\n\x08operator\x18\n \x01(\x0e\x32\x34.datacatalog.SinglePropertyFilter.ComparisonOperatorR\x08operator\" \n\x12\x43omparisonOperator\x12\n\n\x06\x45QUALS\x10\x00\x42\x11\n\x0fproperty_filter\"G\n\x16\x41rtifactPropertyFilter\x12!\n\x0b\x61rtifact_id\x18\x01 \x01(\tH\x00R\nartifactIdB\n\n\x08property\"<\n\x11TagPropertyFilter\x12\x1b\n\x08tag_name\x18\x01 \x01(\tH\x00R\x07tagNameB\n\n\x08property\"[\n\x17PartitionPropertyFilter\x12\x34\n\x07key_val\x18\x01 \x01(\x0b\x32\x19.datacatalog.KeyValuePairH\x00R\x06keyValB\n\n\x08property\"6\n\x0cKeyValuePair\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"\x8b\x01\n\x15\x44\x61tasetPropertyFilter\x12\x1a\n\x07project\x18\x01 \x01(\tH\x00R\x07project\x12\x14\n\x04name\x18\x02 \x01(\tH\x00R\x04name\x12\x18\n\x06\x64omain\x18\x03 \x01(\tH\x00R\x06\x64omain\x12\x1a\n\x07version\x18\x04 \x01(\tH\x00R\x07versionB\n\n\x08property\"\x93\x02\n\x11PaginationOptions\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\x12@\n\x07sortKey\x18\x03 \x01(\x0e\x32&.datacatalog.PaginationOptions.SortKeyR\x07sortKey\x12\x46\n\tsortOrder\x18\x04 \x01(\x0e\x32(.datacatalog.PaginationOptions.SortOrderR\tsortOrder\"*\n\tSortOrder\x12\x0e\n\nDESCENDING\x10\x00\x12\r\n\tASCENDING\x10\x01\"\x1c\n\x07SortKey\x12\x11\n\rCREATION_TIME\x10\x00\x32\x86\x07\n\x0b\x44\x61taCatalog\x12V\n\rCreateDataset\x12!.datacatalog.CreateDatasetRequest\x1a\".datacatalog.CreateDatasetResponse\x12M\n\nGetDataset\x12\x1e.datacatalog.GetDatasetRequest\x1a\x1f.datacatalog.GetDatasetResponse\x12Y\n\x0e\x43reateArtifact\x12\".datacatalog.CreateArtifactRequest\x1a#.datacatalog.CreateArtifactResponse\x12P\n\x0bGetArtifact\x12\x1f.datacatalog.GetArtifactRequest\x1a .datacatalog.GetArtifactResponse\x12\x41\n\x06\x41\x64\x64Tag\x12\x1a.datacatalog.AddTagRequest\x1a\x1b.datacatalog.AddTagResponse\x12V\n\rListArtifacts\x12!.datacatalog.ListArtifactsRequest\x1a\".datacatalog.ListArtifactsResponse\x12S\n\x0cListDatasets\x12 .datacatalog.ListDatasetsRequest\x1a!.datacatalog.ListDatasetsResponse\x12Y\n\x0eUpdateArtifact\x12\".datacatalog.UpdateArtifactRequest\x1a#.datacatalog.UpdateArtifactResponse\x12q\n\x16GetOrExtendReservation\x12*.datacatalog.GetOrExtendReservationRequest\x1a+.datacatalog.GetOrExtendReservationResponse\x12\x65\n\x12ReleaseReservation\x12&.datacatalog.ReleaseReservationRequest\x1a\'.datacatalog.ReleaseReservationResponseB\xac\x01\n\x0f\x63om.datacatalogB\x10\x44\x61tacatalogProtoP\x01Z;github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog\xa2\x02\x03\x44XX\xaa\x02\x0b\x44\x61tacatalog\xca\x02\x0b\x44\x61tacatalog\xe2\x02\x17\x44\x61tacatalog\\GPBMetadata\xea\x02\x0b\x44\x61tacatalogb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n&flyteidl/datacatalog/datacatalog.proto\x12\x0b\x64\x61tacatalog\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"F\n\x14\x43reateDatasetRequest\x12.\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32\x14.datacatalog.DatasetR\x07\x64\x61taset\"\x17\n\x15\x43reateDatasetResponse\"E\n\x11GetDatasetRequest\x12\x30\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x07\x64\x61taset\"D\n\x12GetDatasetResponse\x12.\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32\x14.datacatalog.DatasetR\x07\x64\x61taset\"\x96\x01\n\x12GetArtifactRequest\x12\x30\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x07\x64\x61taset\x12!\n\x0b\x61rtifact_id\x18\x02 \x01(\tH\x00R\nartifactId\x12\x1b\n\x08tag_name\x18\x03 \x01(\tH\x00R\x07tagNameB\x0e\n\x0cquery_handle\"H\n\x13GetArtifactResponse\x12\x31\n\x08\x61rtifact\x18\x01 \x01(\x0b\x32\x15.datacatalog.ArtifactR\x08\x61rtifact\"J\n\x15\x43reateArtifactRequest\x12\x31\n\x08\x61rtifact\x18\x01 \x01(\x0b\x32\x15.datacatalog.ArtifactR\x08\x61rtifact\"\x18\n\x16\x43reateArtifactResponse\"3\n\rAddTagRequest\x12\"\n\x03tag\x18\x01 \x01(\x0b\x32\x10.datacatalog.TagR\x03tag\"\x10\n\x0e\x41\x64\x64TagResponse\"\xbf\x01\n\x14ListArtifactsRequest\x12\x30\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x07\x64\x61taset\x12\x35\n\x06\x66ilter\x18\x02 \x01(\x0b\x32\x1d.datacatalog.FilterExpressionR\x06\x66ilter\x12>\n\npagination\x18\x03 \x01(\x0b\x32\x1e.datacatalog.PaginationOptionsR\npagination\"k\n\x15ListArtifactsResponse\x12\x33\n\tartifacts\x18\x01 \x03(\x0b\x32\x15.datacatalog.ArtifactR\tartifacts\x12\x1d\n\nnext_token\x18\x02 \x01(\tR\tnextToken\"\x8c\x01\n\x13ListDatasetsRequest\x12\x35\n\x06\x66ilter\x18\x01 \x01(\x0b\x32\x1d.datacatalog.FilterExpressionR\x06\x66ilter\x12>\n\npagination\x18\x02 \x01(\x0b\x32\x1e.datacatalog.PaginationOptionsR\npagination\"g\n\x14ListDatasetsResponse\x12\x30\n\x08\x64\x61tasets\x18\x01 \x03(\x0b\x32\x14.datacatalog.DatasetR\x08\x64\x61tasets\x12\x1d\n\nnext_token\x18\x02 \x01(\tR\tnextToken\"\xc8\x01\n\x15UpdateArtifactRequest\x12\x30\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x07\x64\x61taset\x12!\n\x0b\x61rtifact_id\x18\x02 \x01(\tH\x00R\nartifactId\x12\x1b\n\x08tag_name\x18\x03 \x01(\tH\x00R\x07tagName\x12-\n\x04\x64\x61ta\x18\x04 \x03(\x0b\x32\x19.datacatalog.ArtifactDataR\x04\x64\x61taB\x0e\n\x0cquery_handle\"9\n\x16UpdateArtifactResponse\x12\x1f\n\x0b\x61rtifact_id\x18\x01 \x01(\tR\nartifactId\"a\n\rReservationID\x12\x35\n\ndataset_id\x18\x01 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\tdatasetId\x12\x19\n\x08tag_name\x18\x02 \x01(\tR\x07tagName\"\xc7\x01\n\x1dGetOrExtendReservationRequest\x12\x41\n\x0ereservation_id\x18\x01 \x01(\x0b\x32\x1a.datacatalog.ReservationIDR\rreservationId\x12\x19\n\x08owner_id\x18\x02 \x01(\tR\x07ownerId\x12H\n\x12heartbeat_interval\x18\x03 \x01(\x0b\x32\x19.google.protobuf.DurationR\x11heartbeatInterval\"\xa3\x02\n\x0bReservation\x12\x41\n\x0ereservation_id\x18\x01 \x01(\x0b\x32\x1a.datacatalog.ReservationIDR\rreservationId\x12\x19\n\x08owner_id\x18\x02 \x01(\tR\x07ownerId\x12H\n\x12heartbeat_interval\x18\x03 \x01(\x0b\x32\x19.google.protobuf.DurationR\x11heartbeatInterval\x12\x39\n\nexpires_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\texpiresAt\x12\x31\n\x08metadata\x18\x06 \x01(\x0b\x32\x15.datacatalog.MetadataR\x08metadata\"\\\n\x1eGetOrExtendReservationResponse\x12:\n\x0breservation\x18\x01 \x01(\x0b\x32\x18.datacatalog.ReservationR\x0breservation\"y\n\x19ReleaseReservationRequest\x12\x41\n\x0ereservation_id\x18\x01 \x01(\x0b\x32\x1a.datacatalog.ReservationIDR\rreservationId\x12\x19\n\x08owner_id\x18\x02 \x01(\tR\x07ownerId\"\x1c\n\x1aReleaseReservationResponse\"\x8a\x01\n\x07\x44\x61taset\x12&\n\x02id\x18\x01 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x02id\x12\x31\n\x08metadata\x18\x02 \x01(\x0b\x32\x15.datacatalog.MetadataR\x08metadata\x12$\n\rpartitionKeys\x18\x03 \x03(\tR\rpartitionKeys\"3\n\tPartition\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"\x7f\n\tDatasetID\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x16\n\x06\x64omain\x18\x03 \x01(\tR\x06\x64omain\x12\x18\n\x07version\x18\x04 \x01(\tR\x07version\x12\x12\n\x04UUID\x18\x05 \x01(\tR\x04UUID\"\xc7\x02\n\x08\x41rtifact\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x30\n\x07\x64\x61taset\x18\x02 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x07\x64\x61taset\x12-\n\x04\x64\x61ta\x18\x03 \x03(\x0b\x32\x19.datacatalog.ArtifactDataR\x04\x64\x61ta\x12\x31\n\x08metadata\x18\x04 \x01(\x0b\x32\x15.datacatalog.MetadataR\x08metadata\x12\x36\n\npartitions\x18\x05 \x03(\x0b\x32\x16.datacatalog.PartitionR\npartitions\x12$\n\x04tags\x18\x06 \x03(\x0b\x32\x10.datacatalog.TagR\x04tags\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\"P\n\x0c\x41rtifactData\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.flyteidl.core.LiteralR\x05value\"l\n\x03Tag\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1f\n\x0b\x61rtifact_id\x18\x02 \x01(\tR\nartifactId\x12\x30\n\x07\x64\x61taset\x18\x03 \x01(\x0b\x32\x16.datacatalog.DatasetIDR\x07\x64\x61taset\"\x81\x01\n\x08Metadata\x12:\n\x07key_map\x18\x01 \x03(\x0b\x32!.datacatalog.Metadata.KeyMapEntryR\x06keyMap\x1a\x39\n\x0bKeyMapEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"O\n\x10\x46ilterExpression\x12;\n\x07\x66ilters\x18\x01 \x03(\x0b\x32!.datacatalog.SinglePropertyFilterR\x07\x66ilters\"\xce\x03\n\x14SinglePropertyFilter\x12?\n\ntag_filter\x18\x01 \x01(\x0b\x32\x1e.datacatalog.TagPropertyFilterH\x00R\ttagFilter\x12Q\n\x10partition_filter\x18\x02 \x01(\x0b\x32$.datacatalog.PartitionPropertyFilterH\x00R\x0fpartitionFilter\x12N\n\x0f\x61rtifact_filter\x18\x03 \x01(\x0b\x32#.datacatalog.ArtifactPropertyFilterH\x00R\x0e\x61rtifactFilter\x12K\n\x0e\x64\x61taset_filter\x18\x04 \x01(\x0b\x32\".datacatalog.DatasetPropertyFilterH\x00R\rdatasetFilter\x12P\n\x08operator\x18\n \x01(\x0e\x32\x34.datacatalog.SinglePropertyFilter.ComparisonOperatorR\x08operator\" \n\x12\x43omparisonOperator\x12\n\n\x06\x45QUALS\x10\x00\x42\x11\n\x0fproperty_filter\"G\n\x16\x41rtifactPropertyFilter\x12!\n\x0b\x61rtifact_id\x18\x01 \x01(\tH\x00R\nartifactIdB\n\n\x08property\"<\n\x11TagPropertyFilter\x12\x1b\n\x08tag_name\x18\x01 \x01(\tH\x00R\x07tagNameB\n\n\x08property\"[\n\x17PartitionPropertyFilter\x12\x34\n\x07key_val\x18\x01 \x01(\x0b\x32\x19.datacatalog.KeyValuePairH\x00R\x06keyValB\n\n\x08property\"6\n\x0cKeyValuePair\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"\x8b\x01\n\x15\x44\x61tasetPropertyFilter\x12\x1a\n\x07project\x18\x01 \x01(\tH\x00R\x07project\x12\x14\n\x04name\x18\x02 \x01(\tH\x00R\x04name\x12\x18\n\x06\x64omain\x18\x03 \x01(\tH\x00R\x06\x64omain\x12\x1a\n\x07version\x18\x04 \x01(\tH\x00R\x07versionB\n\n\x08property\"\x93\x02\n\x11PaginationOptions\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\x12@\n\x07sortKey\x18\x03 \x01(\x0e\x32&.datacatalog.PaginationOptions.SortKeyR\x07sortKey\x12\x46\n\tsortOrder\x18\x04 \x01(\x0e\x32(.datacatalog.PaginationOptions.SortOrderR\tsortOrder\"*\n\tSortOrder\x12\x0e\n\nDESCENDING\x10\x00\x12\r\n\tASCENDING\x10\x01\"\x1c\n\x07SortKey\x12\x11\n\rCREATION_TIME\x10\x00\x32\x86\x07\n\x0b\x44\x61taCatalog\x12V\n\rCreateDataset\x12!.datacatalog.CreateDatasetRequest\x1a\".datacatalog.CreateDatasetResponse\x12M\n\nGetDataset\x12\x1e.datacatalog.GetDatasetRequest\x1a\x1f.datacatalog.GetDatasetResponse\x12Y\n\x0e\x43reateArtifact\x12\".datacatalog.CreateArtifactRequest\x1a#.datacatalog.CreateArtifactResponse\x12P\n\x0bGetArtifact\x12\x1f.datacatalog.GetArtifactRequest\x1a .datacatalog.GetArtifactResponse\x12\x41\n\x06\x41\x64\x64Tag\x12\x1a.datacatalog.AddTagRequest\x1a\x1b.datacatalog.AddTagResponse\x12V\n\rListArtifacts\x12!.datacatalog.ListArtifactsRequest\x1a\".datacatalog.ListArtifactsResponse\x12S\n\x0cListDatasets\x12 .datacatalog.ListDatasetsRequest\x1a!.datacatalog.ListDatasetsResponse\x12Y\n\x0eUpdateArtifact\x12\".datacatalog.UpdateArtifactRequest\x1a#.datacatalog.UpdateArtifactResponse\x12q\n\x16GetOrExtendReservation\x12*.datacatalog.GetOrExtendReservationRequest\x1a+.datacatalog.GetOrExtendReservationResponse\x12\x65\n\x12ReleaseReservation\x12&.datacatalog.ReleaseReservationRequest\x1a\'.datacatalog.ReleaseReservationResponseB\xb2\x01\n\x0f\x63om.datacatalogB\x10\x44\x61tacatalogProtoP\x01ZAgithub.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog\xa2\x02\x03\x44XX\xaa\x02\x0b\x44\x61tacatalog\xca\x02\x0b\x44\x61tacatalog\xe2\x02\x17\x44\x61tacatalog\\GPBMetadata\xea\x02\x0b\x44\x61tacatalogb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -24,7 +24,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\017com.datacatalogB\020DatacatalogProtoP\001Z;github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog\242\002\003DXX\252\002\013Datacatalog\312\002\013Datacatalog\342\002\027Datacatalog\\GPBMetadata\352\002\013Datacatalog'
+  DESCRIPTOR._serialized_options = b'\n\017com.datacatalogB\020DatacatalogProtoP\001ZAgithub.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog\242\002\003DXX\252\002\013Datacatalog\312\002\013Datacatalog\342\002\027Datacatalog\\GPBMetadata\352\002\013Datacatalog'
   _METADATA_KEYMAPENTRY._options = None
   _METADATA_KEYMAPENTRY._serialized_options = b'8\001'
   _globals['_CREATEDATASETREQUEST']._serialized_start=150
diff --git a/flyteidl/gen/pb_python/flyteidl/event/event_pb2.py b/flyteidl/gen/pb_python/flyteidl/event/event_pb2.py
index 318f71348c..f1fd8da613 100644
--- a/flyteidl/gen/pb_python/flyteidl/event/event_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/event/event_pb2.py
@@ -20,7 +20,7 @@
 from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/event/event.proto\x12\x0e\x66lyteidl.event\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1c\x66lyteidl/core/compiler.proto\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\"\xaa\x03\n\x16WorkflowExecutionEvent\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\x12\x1f\n\x0bproducer_id\x18\x02 \x01(\tR\nproducerId\x12<\n\x05phase\x18\x03 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x05phase\x12;\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1f\n\noutput_uri\x18\x05 \x01(\tH\x00R\toutputUri\x12\x35\n\x05\x65rror\x18\x06 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12<\n\x0boutput_data\x18\x07 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\noutputDataB\x0f\n\routput_result\"\x8f\t\n\x12NodeExecutionEvent\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\x12\x1f\n\x0bproducer_id\x18\x02 \x01(\tR\nproducerId\x12\x38\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.PhaseR\x05phase\x12;\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1d\n\tinput_uri\x18\x05 \x01(\tH\x00R\x08inputUri\x12:\n\ninput_data\x18\x14 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\tinputData\x12\x1f\n\noutput_uri\x18\x06 \x01(\tH\x01R\toutputUri\x12\x35\n\x05\x65rror\x18\x07 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x01R\x05\x65rror\x12<\n\x0boutput_data\x18\x0f \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x01R\noutputData\x12\\\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.event.WorkflowNodeMetadataH\x02R\x14workflowNodeMetadata\x12P\n\x12task_node_metadata\x18\x0e \x01(\x0b\x32 .flyteidl.event.TaskNodeMetadataH\x02R\x10taskNodeMetadata\x12]\n\x14parent_task_metadata\x18\t \x01(\x0b\x32+.flyteidl.event.ParentTaskExecutionMetadataR\x12parentTaskMetadata\x12]\n\x14parent_node_metadata\x18\n \x01(\x0b\x32+.flyteidl.event.ParentNodeExecutionMetadataR\x12parentNodeMetadata\x12\x1f\n\x0bretry_group\x18\x0b \x01(\tR\nretryGroup\x12 \n\x0cspec_node_id\x18\x0c \x01(\tR\nspecNodeId\x12\x1b\n\tnode_name\x18\r \x01(\tR\x08nodeName\x12#\n\revent_version\x18\x10 \x01(\x05R\x0c\x65ventVersion\x12\x1b\n\tis_parent\x18\x11 \x01(\x08R\x08isParent\x12\x1d\n\nis_dynamic\x18\x12 \x01(\x08R\tisDynamic\x12\x19\n\x08\x64\x65\x63k_uri\x18\x13 \x01(\tR\x07\x64\x65\x63kUri\x12;\n\x0breported_at\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nreportedAtB\r\n\x0binput_valueB\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"e\n\x14WorkflowNodeMetadata\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\"\xf1\x02\n\x10TaskNodeMetadata\x12\x44\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12?\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadataR\ncatalogKey\x12W\n\x12reservation_status\x18\x03 \x01(\x0e\x32(.flyteidl.core.CatalogReservation.StatusR\x11reservationStatus\x12%\n\x0e\x63heckpoint_uri\x18\x04 \x01(\tR\rcheckpointUri\x12V\n\x10\x64ynamic_workflow\x18\x10 \x01(\x0b\x32+.flyteidl.event.DynamicWorkflowNodeMetadataR\x0f\x64ynamicWorkflow\"\xce\x01\n\x1b\x44ynamicWorkflowNodeMetadata\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12S\n\x11\x63ompiled_workflow\x18\x02 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosureR\x10\x63ompiledWorkflow\x12/\n\x14\x64ynamic_job_spec_uri\x18\x03 \x01(\tR\x11\x64ynamicJobSpecUri\"U\n\x1bParentTaskExecutionMetadata\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x02id\"6\n\x1bParentNodeExecutionMetadata\x12\x17\n\x07node_id\x18\x01 \x01(\tR\x06nodeId\"b\n\x0b\x45ventReason\x12\x16\n\x06reason\x18\x01 \x01(\tR\x06reason\x12;\n\x0boccurred_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\"\x97\x08\n\x12TaskExecutionEvent\x12\x32\n\x07task_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x06taskId\x12_\n\x18parent_node_execution_id\x18\x02 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x15parentNodeExecutionId\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\x12\x38\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12\x1f\n\x0bproducer_id\x18\x05 \x01(\tR\nproducerId\x12*\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\x12;\n\x0boccurred_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1d\n\tinput_uri\x18\x08 \x01(\tH\x00R\x08inputUri\x12:\n\ninput_data\x18\x13 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\tinputData\x12\x1f\n\noutput_uri\x18\t \x01(\tH\x01R\toutputUri\x12\x35\n\x05\x65rror\x18\n \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x01R\x05\x65rror\x12<\n\x0boutput_data\x18\x11 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x01R\noutputData\x12\x38\n\x0b\x63ustom_info\x18\x0b \x01(\x0b\x32\x17.google.protobuf.StructR\ncustomInfo\x12#\n\rphase_version\x18\x0c \x01(\rR\x0cphaseVersion\x12\x1a\n\x06reason\x18\r \x01(\tB\x02\x18\x01R\x06reason\x12\x35\n\x07reasons\x18\x15 \x03(\x0b\x32\x1b.flyteidl.event.EventReasonR\x07reasons\x12\x1b\n\ttask_type\x18\x0e \x01(\tR\x08taskType\x12\x41\n\x08metadata\x18\x10 \x01(\x0b\x32%.flyteidl.event.TaskExecutionMetadataR\x08metadata\x12#\n\revent_version\x18\x12 \x01(\x05R\x0c\x65ventVersion\x12;\n\x0breported_at\x18\x14 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nreportedAtB\r\n\x0binput_valueB\x0f\n\routput_result\"\x9e\x02\n\x14\x45xternalResourceInfo\x12\x1f\n\x0b\x65xternal_id\x18\x01 \x01(\tR\nexternalId\x12\x14\n\x05index\x18\x02 \x01(\rR\x05index\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\x12\x38\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12\x44\n\x0c\x63\x61\x63he_status\x18\x05 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12*\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\"[\n\x10ResourcePoolInfo\x12)\n\x10\x61llocation_token\x18\x01 \x01(\tR\x0f\x61llocationToken\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\"\x9d\x03\n\x15TaskExecutionMetadata\x12%\n\x0egenerated_name\x18\x01 \x01(\tR\rgeneratedName\x12S\n\x12\x65xternal_resources\x18\x02 \x03(\x0b\x32$.flyteidl.event.ExternalResourceInfoR\x11\x65xternalResources\x12N\n\x12resource_pool_info\x18\x03 \x03(\x0b\x32 .flyteidl.event.ResourcePoolInfoR\x10resourcePoolInfo\x12+\n\x11plugin_identifier\x18\x04 \x01(\tR\x10pluginIdentifier\x12Z\n\x0einstance_class\x18\x10 \x01(\x0e\x32\x33.flyteidl.event.TaskExecutionMetadata.InstanceClassR\rinstanceClass\"/\n\rInstanceClass\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\x11\n\rINTERRUPTIBLE\x10\x01\x42\xb0\x01\n\x12\x63om.flyteidl.eventB\nEventProtoP\x01Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event\xa2\x02\x03\x46\x45X\xaa\x02\x0e\x46lyteidl.Event\xca\x02\x0e\x46lyteidl\\Event\xe2\x02\x1a\x46lyteidl\\Event\\GPBMetadata\xea\x02\x0f\x46lyteidl::Eventb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/event/event.proto\x12\x0e\x66lyteidl.event\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1c\x66lyteidl/core/compiler.proto\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\"\xaa\x03\n\x16WorkflowExecutionEvent\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\x12\x1f\n\x0bproducer_id\x18\x02 \x01(\tR\nproducerId\x12<\n\x05phase\x18\x03 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x05phase\x12;\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1f\n\noutput_uri\x18\x05 \x01(\tH\x00R\toutputUri\x12\x35\n\x05\x65rror\x18\x06 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12<\n\x0boutput_data\x18\x07 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\noutputDataB\x0f\n\routput_result\"\x8f\t\n\x12NodeExecutionEvent\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\x12\x1f\n\x0bproducer_id\x18\x02 \x01(\tR\nproducerId\x12\x38\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.PhaseR\x05phase\x12;\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1d\n\tinput_uri\x18\x05 \x01(\tH\x00R\x08inputUri\x12:\n\ninput_data\x18\x14 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\tinputData\x12\x1f\n\noutput_uri\x18\x06 \x01(\tH\x01R\toutputUri\x12\x35\n\x05\x65rror\x18\x07 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x01R\x05\x65rror\x12<\n\x0boutput_data\x18\x0f \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x01R\noutputData\x12\\\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.event.WorkflowNodeMetadataH\x02R\x14workflowNodeMetadata\x12P\n\x12task_node_metadata\x18\x0e \x01(\x0b\x32 .flyteidl.event.TaskNodeMetadataH\x02R\x10taskNodeMetadata\x12]\n\x14parent_task_metadata\x18\t \x01(\x0b\x32+.flyteidl.event.ParentTaskExecutionMetadataR\x12parentTaskMetadata\x12]\n\x14parent_node_metadata\x18\n \x01(\x0b\x32+.flyteidl.event.ParentNodeExecutionMetadataR\x12parentNodeMetadata\x12\x1f\n\x0bretry_group\x18\x0b \x01(\tR\nretryGroup\x12 \n\x0cspec_node_id\x18\x0c \x01(\tR\nspecNodeId\x12\x1b\n\tnode_name\x18\r \x01(\tR\x08nodeName\x12#\n\revent_version\x18\x10 \x01(\x05R\x0c\x65ventVersion\x12\x1b\n\tis_parent\x18\x11 \x01(\x08R\x08isParent\x12\x1d\n\nis_dynamic\x18\x12 \x01(\x08R\tisDynamic\x12\x19\n\x08\x64\x65\x63k_uri\x18\x13 \x01(\tR\x07\x64\x65\x63kUri\x12;\n\x0breported_at\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nreportedAtB\r\n\x0binput_valueB\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"e\n\x14WorkflowNodeMetadata\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\"\xf1\x02\n\x10TaskNodeMetadata\x12\x44\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12?\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadataR\ncatalogKey\x12W\n\x12reservation_status\x18\x03 \x01(\x0e\x32(.flyteidl.core.CatalogReservation.StatusR\x11reservationStatus\x12%\n\x0e\x63heckpoint_uri\x18\x04 \x01(\tR\rcheckpointUri\x12V\n\x10\x64ynamic_workflow\x18\x10 \x01(\x0b\x32+.flyteidl.event.DynamicWorkflowNodeMetadataR\x0f\x64ynamicWorkflow\"\xce\x01\n\x1b\x44ynamicWorkflowNodeMetadata\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12S\n\x11\x63ompiled_workflow\x18\x02 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosureR\x10\x63ompiledWorkflow\x12/\n\x14\x64ynamic_job_spec_uri\x18\x03 \x01(\tR\x11\x64ynamicJobSpecUri\"U\n\x1bParentTaskExecutionMetadata\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x02id\"6\n\x1bParentNodeExecutionMetadata\x12\x17\n\x07node_id\x18\x01 \x01(\tR\x06nodeId\"b\n\x0b\x45ventReason\x12\x16\n\x06reason\x18\x01 \x01(\tR\x06reason\x12;\n\x0boccurred_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\"\x97\x08\n\x12TaskExecutionEvent\x12\x32\n\x07task_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x06taskId\x12_\n\x18parent_node_execution_id\x18\x02 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x15parentNodeExecutionId\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\x12\x38\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12\x1f\n\x0bproducer_id\x18\x05 \x01(\tR\nproducerId\x12*\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\x12;\n\x0boccurred_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1d\n\tinput_uri\x18\x08 \x01(\tH\x00R\x08inputUri\x12:\n\ninput_data\x18\x13 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\tinputData\x12\x1f\n\noutput_uri\x18\t \x01(\tH\x01R\toutputUri\x12\x35\n\x05\x65rror\x18\n \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x01R\x05\x65rror\x12<\n\x0boutput_data\x18\x11 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x01R\noutputData\x12\x38\n\x0b\x63ustom_info\x18\x0b \x01(\x0b\x32\x17.google.protobuf.StructR\ncustomInfo\x12#\n\rphase_version\x18\x0c \x01(\rR\x0cphaseVersion\x12\x1a\n\x06reason\x18\r \x01(\tB\x02\x18\x01R\x06reason\x12\x35\n\x07reasons\x18\x15 \x03(\x0b\x32\x1b.flyteidl.event.EventReasonR\x07reasons\x12\x1b\n\ttask_type\x18\x0e \x01(\tR\x08taskType\x12\x41\n\x08metadata\x18\x10 \x01(\x0b\x32%.flyteidl.event.TaskExecutionMetadataR\x08metadata\x12#\n\revent_version\x18\x12 \x01(\x05R\x0c\x65ventVersion\x12;\n\x0breported_at\x18\x14 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nreportedAtB\r\n\x0binput_valueB\x0f\n\routput_result\"\x9e\x02\n\x14\x45xternalResourceInfo\x12\x1f\n\x0b\x65xternal_id\x18\x01 \x01(\tR\nexternalId\x12\x14\n\x05index\x18\x02 \x01(\rR\x05index\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\x12\x38\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12\x44\n\x0c\x63\x61\x63he_status\x18\x05 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12*\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\"[\n\x10ResourcePoolInfo\x12)\n\x10\x61llocation_token\x18\x01 \x01(\tR\x0f\x61llocationToken\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\"\x9d\x03\n\x15TaskExecutionMetadata\x12%\n\x0egenerated_name\x18\x01 \x01(\tR\rgeneratedName\x12S\n\x12\x65xternal_resources\x18\x02 \x03(\x0b\x32$.flyteidl.event.ExternalResourceInfoR\x11\x65xternalResources\x12N\n\x12resource_pool_info\x18\x03 \x03(\x0b\x32 .flyteidl.event.ResourcePoolInfoR\x10resourcePoolInfo\x12+\n\x11plugin_identifier\x18\x04 \x01(\tR\x10pluginIdentifier\x12Z\n\x0einstance_class\x18\x10 \x01(\x0e\x32\x33.flyteidl.event.TaskExecutionMetadata.InstanceClassR\rinstanceClass\"/\n\rInstanceClass\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\x11\n\rINTERRUPTIBLE\x10\x01\x42\xb6\x01\n\x12\x63om.flyteidl.eventB\nEventProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event\xa2\x02\x03\x46\x45X\xaa\x02\x0e\x46lyteidl.Event\xca\x02\x0e\x46lyteidl\\Event\xe2\x02\x1a\x46lyteidl\\Event\\GPBMetadata\xea\x02\x0f\x46lyteidl::Eventb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -28,7 +28,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.eventB\nEventProtoP\001Z5github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event\242\002\003FEX\252\002\016Flyteidl.Event\312\002\016Flyteidl\\Event\342\002\032Flyteidl\\Event\\GPBMetadata\352\002\017Flyteidl::Event'
+  DESCRIPTOR._serialized_options = b'\n\022com.flyteidl.eventB\nEventProtoP\001Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event\242\002\003FEX\252\002\016Flyteidl.Event\312\002\016Flyteidl\\Event\342\002\032Flyteidl\\Event\\GPBMetadata\352\002\017Flyteidl::Event'
   _TASKEXECUTIONEVENT.fields_by_name['reason']._options = None
   _TASKEXECUTIONEVENT.fields_by_name['reason']._serialized_options = b'\030\001'
   _globals['_WORKFLOWEXECUTIONEVENT']._serialized_start=262
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/array_job_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/array_job_pb2.py
index 3ba446caf0..7334e20277 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/array_job_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/array_job_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n flyteidl/plugins/array_job.proto\x12\x10\x66lyteidl.plugins\"\xa9\x01\n\x08\x41rrayJob\x12 \n\x0bparallelism\x18\x01 \x01(\x03R\x0bparallelism\x12\x12\n\x04size\x18\x02 \x01(\x03R\x04size\x12%\n\rmin_successes\x18\x03 \x01(\x03H\x00R\x0cminSuccesses\x12,\n\x11min_success_ratio\x18\x04 \x01(\x02H\x00R\x0fminSuccessRatioB\x12\n\x10success_criteriaB\xbf\x01\n\x14\x63om.flyteidl.pluginsB\rArrayJobProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n flyteidl/plugins/array_job.proto\x12\x10\x66lyteidl.plugins\"\xa9\x01\n\x08\x41rrayJob\x12 \n\x0bparallelism\x18\x01 \x01(\x03R\x0bparallelism\x12\x12\n\x04size\x18\x02 \x01(\x03R\x04size\x12%\n\rmin_successes\x18\x03 \x01(\x03H\x00R\x0cminSuccesses\x12,\n\x11min_success_ratio\x18\x04 \x01(\x02H\x00R\x0fminSuccessRatioB\x12\n\x10success_criteriaB\xc5\x01\n\x14\x63om.flyteidl.pluginsB\rArrayJobProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\rArrayJobProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\rArrayJobProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
   _globals['_ARRAYJOB']._serialized_start=55
   _globals['_ARRAYJOB']._serialized_end=224
 # @@protoc_insertion_point(module_scope)
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/dask_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/dask_pb2.py
index 65c5a8d691..931fd999ed 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/dask_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/dask_pb2.py
@@ -14,7 +14,7 @@
 from flyteidl.core import tasks_pb2 as flyteidl_dot_core_dot_tasks__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x66lyteidl/plugins/dask.proto\x12\x10\x66lyteidl.plugins\x1a\x19\x66lyteidl/core/tasks.proto\"\x85\x01\n\x07\x44\x61skJob\x12=\n\tscheduler\x18\x01 \x01(\x0b\x32\x1f.flyteidl.plugins.DaskSchedulerR\tscheduler\x12;\n\x07workers\x18\x02 \x01(\x0b\x32!.flyteidl.plugins.DaskWorkerGroupR\x07workers\"]\n\rDaskScheduler\x12\x14\n\x05image\x18\x01 \x01(\tR\x05image\x12\x36\n\tresources\x18\x02 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\"\x8b\x01\n\x0f\x44\x61skWorkerGroup\x12*\n\x11number_of_workers\x18\x01 \x01(\rR\x0fnumberOfWorkers\x12\x14\n\x05image\x18\x02 \x01(\tR\x05image\x12\x36\n\tresources\x18\x03 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresourcesB\xbb\x01\n\x14\x63om.flyteidl.pluginsB\tDaskProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x66lyteidl/plugins/dask.proto\x12\x10\x66lyteidl.plugins\x1a\x19\x66lyteidl/core/tasks.proto\"\x85\x01\n\x07\x44\x61skJob\x12=\n\tscheduler\x18\x01 \x01(\x0b\x32\x1f.flyteidl.plugins.DaskSchedulerR\tscheduler\x12;\n\x07workers\x18\x02 \x01(\x0b\x32!.flyteidl.plugins.DaskWorkerGroupR\x07workers\"]\n\rDaskScheduler\x12\x14\n\x05image\x18\x01 \x01(\tR\x05image\x12\x36\n\tresources\x18\x02 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\"\x8b\x01\n\x0f\x44\x61skWorkerGroup\x12*\n\x11number_of_workers\x18\x01 \x01(\rR\x0fnumberOfWorkers\x12\x14\n\x05image\x18\x02 \x01(\tR\x05image\x12\x36\n\tresources\x18\x03 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresourcesB\xc1\x01\n\x14\x63om.flyteidl.pluginsB\tDaskProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\tDaskProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\tDaskProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
   _globals['_DASKJOB']._serialized_start=77
   _globals['_DASKJOB']._serialized_end=210
   _globals['_DASKSCHEDULER']._serialized_start=212
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/common_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/common_pb2.py
index 62a159a4eb..d09a4aba41 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/common_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/common_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n&flyteidl/plugins/kubeflow/common.proto\x12\x19\x66lyteidl.plugins.kubeflow\"\xfa\x01\n\tRunPolicy\x12S\n\x10\x63lean_pod_policy\x18\x01 \x01(\x0e\x32).flyteidl.plugins.kubeflow.CleanPodPolicyR\x0e\x63leanPodPolicy\x12;\n\x1attl_seconds_after_finished\x18\x02 \x01(\x05R\x17ttlSecondsAfterFinished\x12\x36\n\x17\x61\x63tive_deadline_seconds\x18\x03 \x01(\x05R\x15\x61\x63tiveDeadlineSeconds\x12#\n\rbackoff_limit\x18\x04 \x01(\x05R\x0c\x62\x61\x63koffLimit*c\n\rRestartPolicy\x12\x18\n\x14RESTART_POLICY_NEVER\x10\x00\x12\x1d\n\x19RESTART_POLICY_ON_FAILURE\x10\x01\x12\x19\n\x15RESTART_POLICY_ALWAYS\x10\x02*`\n\x0e\x43leanPodPolicy\x12\x18\n\x14\x43LEANPOD_POLICY_NONE\x10\x00\x12\x1b\n\x17\x43LEANPOD_POLICY_RUNNING\x10\x01\x12\x17\n\x13\x43LEANPOD_POLICY_ALL\x10\x02\x42\xeb\x01\n\x1d\x63om.flyteidl.plugins.kubeflowB\x0b\x43ommonProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PK\xaa\x02\x19\x46lyteidl.Plugins.Kubeflow\xca\x02\x19\x46lyteidl\\Plugins\\Kubeflow\xe2\x02%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\xea\x02\x1b\x46lyteidl::Plugins::Kubeflowb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n&flyteidl/plugins/kubeflow/common.proto\x12\x19\x66lyteidl.plugins.kubeflow\"\xfa\x01\n\tRunPolicy\x12S\n\x10\x63lean_pod_policy\x18\x01 \x01(\x0e\x32).flyteidl.plugins.kubeflow.CleanPodPolicyR\x0e\x63leanPodPolicy\x12;\n\x1attl_seconds_after_finished\x18\x02 \x01(\x05R\x17ttlSecondsAfterFinished\x12\x36\n\x17\x61\x63tive_deadline_seconds\x18\x03 \x01(\x05R\x15\x61\x63tiveDeadlineSeconds\x12#\n\rbackoff_limit\x18\x04 \x01(\x05R\x0c\x62\x61\x63koffLimit*c\n\rRestartPolicy\x12\x18\n\x14RESTART_POLICY_NEVER\x10\x00\x12\x1d\n\x19RESTART_POLICY_ON_FAILURE\x10\x01\x12\x19\n\x15RESTART_POLICY_ALWAYS\x10\x02*`\n\x0e\x43leanPodPolicy\x12\x18\n\x14\x43LEANPOD_POLICY_NONE\x10\x00\x12\x1b\n\x17\x43LEANPOD_POLICY_RUNNING\x10\x01\x12\x17\n\x13\x43LEANPOD_POLICY_ALL\x10\x02\x42\xf1\x01\n\x1d\x63om.flyteidl.plugins.kubeflowB\x0b\x43ommonProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PK\xaa\x02\x19\x46lyteidl.Plugins.Kubeflow\xca\x02\x19\x46lyteidl\\Plugins\\Kubeflow\xe2\x02%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\xea\x02\x1b\x46lyteidl::Plugins::Kubeflowb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\035com.flyteidl.plugins.kubeflowB\013CommonProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPK\252\002\031Flyteidl.Plugins.Kubeflow\312\002\031Flyteidl\\Plugins\\Kubeflow\342\002%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\352\002\033Flyteidl::Plugins::Kubeflow'
+  DESCRIPTOR._serialized_options = b'\n\035com.flyteidl.plugins.kubeflowB\013CommonProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPK\252\002\031Flyteidl.Plugins.Kubeflow\312\002\031Flyteidl\\Plugins\\Kubeflow\342\002%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\352\002\033Flyteidl::Plugins::Kubeflow'
   _globals['_RESTARTPOLICY']._serialized_start=322
   _globals['_RESTARTPOLICY']._serialized_end=421
   _globals['_CLEANPODPOLICY']._serialized_start=423
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/mpi_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/mpi_pb2.py
index 539fcb59bb..4ed3f22be7 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/mpi_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/mpi_pb2.py
@@ -15,7 +15,7 @@
 from flyteidl.plugins.kubeflow import common_pb2 as flyteidl_dot_plugins_dot_kubeflow_dot_common__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#flyteidl/plugins/kubeflow/mpi.proto\x12\x19\x66lyteidl.plugins.kubeflow\x1a\x19\x66lyteidl/core/tasks.proto\x1a&flyteidl/plugins/kubeflow/common.proto\"\xc9\x02\n\x1a\x44istributedMPITrainingTask\x12\x65\n\x0fworker_replicas\x18\x01 \x01(\x0b\x32<.flyteidl.plugins.kubeflow.DistributedMPITrainingReplicaSpecR\x0eworkerReplicas\x12i\n\x11launcher_replicas\x18\x02 \x01(\x0b\x32<.flyteidl.plugins.kubeflow.DistributedMPITrainingReplicaSpecR\x10launcherReplicas\x12\x43\n\nrun_policy\x18\x03 \x01(\x0b\x32$.flyteidl.plugins.kubeflow.RunPolicyR\trunPolicy\x12\x14\n\x05slots\x18\x04 \x01(\x05R\x05slots\"\xf8\x01\n!DistributedMPITrainingReplicaSpec\x12\x1a\n\x08replicas\x18\x01 \x01(\x05R\x08replicas\x12\x14\n\x05image\x18\x02 \x01(\tR\x05image\x12\x36\n\tresources\x18\x03 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12O\n\x0erestart_policy\x18\x04 \x01(\x0e\x32(.flyteidl.plugins.kubeflow.RestartPolicyR\rrestartPolicy\x12\x18\n\x07\x63ommand\x18\x05 \x03(\tR\x07\x63ommandB\xe8\x01\n\x1d\x63om.flyteidl.plugins.kubeflowB\x08MpiProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PK\xaa\x02\x19\x46lyteidl.Plugins.Kubeflow\xca\x02\x19\x46lyteidl\\Plugins\\Kubeflow\xe2\x02%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\xea\x02\x1b\x46lyteidl::Plugins::Kubeflowb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#flyteidl/plugins/kubeflow/mpi.proto\x12\x19\x66lyteidl.plugins.kubeflow\x1a\x19\x66lyteidl/core/tasks.proto\x1a&flyteidl/plugins/kubeflow/common.proto\"\xc9\x02\n\x1a\x44istributedMPITrainingTask\x12\x65\n\x0fworker_replicas\x18\x01 \x01(\x0b\x32<.flyteidl.plugins.kubeflow.DistributedMPITrainingReplicaSpecR\x0eworkerReplicas\x12i\n\x11launcher_replicas\x18\x02 \x01(\x0b\x32<.flyteidl.plugins.kubeflow.DistributedMPITrainingReplicaSpecR\x10launcherReplicas\x12\x43\n\nrun_policy\x18\x03 \x01(\x0b\x32$.flyteidl.plugins.kubeflow.RunPolicyR\trunPolicy\x12\x14\n\x05slots\x18\x04 \x01(\x05R\x05slots\"\xf8\x01\n!DistributedMPITrainingReplicaSpec\x12\x1a\n\x08replicas\x18\x01 \x01(\x05R\x08replicas\x12\x14\n\x05image\x18\x02 \x01(\tR\x05image\x12\x36\n\tresources\x18\x03 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12O\n\x0erestart_policy\x18\x04 \x01(\x0e\x32(.flyteidl.plugins.kubeflow.RestartPolicyR\rrestartPolicy\x12\x18\n\x07\x63ommand\x18\x05 \x03(\tR\x07\x63ommandB\xee\x01\n\x1d\x63om.flyteidl.plugins.kubeflowB\x08MpiProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PK\xaa\x02\x19\x46lyteidl.Plugins.Kubeflow\xca\x02\x19\x46lyteidl\\Plugins\\Kubeflow\xe2\x02%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\xea\x02\x1b\x46lyteidl::Plugins::Kubeflowb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,7 +23,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\035com.flyteidl.plugins.kubeflowB\010MpiProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPK\252\002\031Flyteidl.Plugins.Kubeflow\312\002\031Flyteidl\\Plugins\\Kubeflow\342\002%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\352\002\033Flyteidl::Plugins::Kubeflow'
+  DESCRIPTOR._serialized_options = b'\n\035com.flyteidl.plugins.kubeflowB\010MpiProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPK\252\002\031Flyteidl.Plugins.Kubeflow\312\002\031Flyteidl\\Plugins\\Kubeflow\342\002%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\352\002\033Flyteidl::Plugins::Kubeflow'
   _globals['_DISTRIBUTEDMPITRAININGTASK']._serialized_start=134
   _globals['_DISTRIBUTEDMPITRAININGTASK']._serialized_end=463
   _globals['_DISTRIBUTEDMPITRAININGREPLICASPEC']._serialized_start=466
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/pytorch_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/pytorch_pb2.py
index 7d0d3f4542..46f574228a 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/pytorch_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/pytorch_pb2.py
@@ -15,7 +15,7 @@
 from flyteidl.plugins.kubeflow import common_pb2 as flyteidl_dot_plugins_dot_kubeflow_dot_common__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'flyteidl/plugins/kubeflow/pytorch.proto\x12\x19\x66lyteidl.plugins.kubeflow\x1a\x19\x66lyteidl/core/tasks.proto\x1a&flyteidl/plugins/kubeflow/common.proto\"\xc1\x01\n\rElasticConfig\x12!\n\x0crdzv_backend\x18\x01 \x01(\tR\x0brdzvBackend\x12!\n\x0cmin_replicas\x18\x02 \x01(\x05R\x0bminReplicas\x12!\n\x0cmax_replicas\x18\x03 \x01(\x05R\x0bmaxReplicas\x12$\n\x0enproc_per_node\x18\x04 \x01(\x05R\x0cnprocPerNode\x12!\n\x0cmax_restarts\x18\x05 \x01(\x05R\x0bmaxRestarts\"\x8c\x03\n\x1e\x44istributedPyTorchTrainingTask\x12i\n\x0fworker_replicas\x18\x01 \x01(\x0b\x32@.flyteidl.plugins.kubeflow.DistributedPyTorchTrainingReplicaSpecR\x0eworkerReplicas\x12i\n\x0fmaster_replicas\x18\x02 \x01(\x0b\x32@.flyteidl.plugins.kubeflow.DistributedPyTorchTrainingReplicaSpecR\x0emasterReplicas\x12\x43\n\nrun_policy\x18\x03 \x01(\x0b\x32$.flyteidl.plugins.kubeflow.RunPolicyR\trunPolicy\x12O\n\x0e\x65lastic_config\x18\x04 \x01(\x0b\x32(.flyteidl.plugins.kubeflow.ElasticConfigR\relasticConfig\"\xe2\x01\n%DistributedPyTorchTrainingReplicaSpec\x12\x1a\n\x08replicas\x18\x01 \x01(\x05R\x08replicas\x12\x14\n\x05image\x18\x02 \x01(\tR\x05image\x12\x36\n\tresources\x18\x03 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12O\n\x0erestart_policy\x18\x04 \x01(\x0e\x32(.flyteidl.plugins.kubeflow.RestartPolicyR\rrestartPolicyB\xec\x01\n\x1d\x63om.flyteidl.plugins.kubeflowB\x0cPytorchProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PK\xaa\x02\x19\x46lyteidl.Plugins.Kubeflow\xca\x02\x19\x46lyteidl\\Plugins\\Kubeflow\xe2\x02%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\xea\x02\x1b\x46lyteidl::Plugins::Kubeflowb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'flyteidl/plugins/kubeflow/pytorch.proto\x12\x19\x66lyteidl.plugins.kubeflow\x1a\x19\x66lyteidl/core/tasks.proto\x1a&flyteidl/plugins/kubeflow/common.proto\"\xc1\x01\n\rElasticConfig\x12!\n\x0crdzv_backend\x18\x01 \x01(\tR\x0brdzvBackend\x12!\n\x0cmin_replicas\x18\x02 \x01(\x05R\x0bminReplicas\x12!\n\x0cmax_replicas\x18\x03 \x01(\x05R\x0bmaxReplicas\x12$\n\x0enproc_per_node\x18\x04 \x01(\x05R\x0cnprocPerNode\x12!\n\x0cmax_restarts\x18\x05 \x01(\x05R\x0bmaxRestarts\"\x8c\x03\n\x1e\x44istributedPyTorchTrainingTask\x12i\n\x0fworker_replicas\x18\x01 \x01(\x0b\x32@.flyteidl.plugins.kubeflow.DistributedPyTorchTrainingReplicaSpecR\x0eworkerReplicas\x12i\n\x0fmaster_replicas\x18\x02 \x01(\x0b\x32@.flyteidl.plugins.kubeflow.DistributedPyTorchTrainingReplicaSpecR\x0emasterReplicas\x12\x43\n\nrun_policy\x18\x03 \x01(\x0b\x32$.flyteidl.plugins.kubeflow.RunPolicyR\trunPolicy\x12O\n\x0e\x65lastic_config\x18\x04 \x01(\x0b\x32(.flyteidl.plugins.kubeflow.ElasticConfigR\relasticConfig\"\xe2\x01\n%DistributedPyTorchTrainingReplicaSpec\x12\x1a\n\x08replicas\x18\x01 \x01(\x05R\x08replicas\x12\x14\n\x05image\x18\x02 \x01(\tR\x05image\x12\x36\n\tresources\x18\x03 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12O\n\x0erestart_policy\x18\x04 \x01(\x0e\x32(.flyteidl.plugins.kubeflow.RestartPolicyR\rrestartPolicyB\xf2\x01\n\x1d\x63om.flyteidl.plugins.kubeflowB\x0cPytorchProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PK\xaa\x02\x19\x46lyteidl.Plugins.Kubeflow\xca\x02\x19\x46lyteidl\\Plugins\\Kubeflow\xe2\x02%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\xea\x02\x1b\x46lyteidl::Plugins::Kubeflowb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,7 +23,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\035com.flyteidl.plugins.kubeflowB\014PytorchProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPK\252\002\031Flyteidl.Plugins.Kubeflow\312\002\031Flyteidl\\Plugins\\Kubeflow\342\002%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\352\002\033Flyteidl::Plugins::Kubeflow'
+  DESCRIPTOR._serialized_options = b'\n\035com.flyteidl.plugins.kubeflowB\014PytorchProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPK\252\002\031Flyteidl.Plugins.Kubeflow\312\002\031Flyteidl\\Plugins\\Kubeflow\342\002%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\352\002\033Flyteidl::Plugins::Kubeflow'
   _globals['_ELASTICCONFIG']._serialized_start=138
   _globals['_ELASTICCONFIG']._serialized_end=331
   _globals['_DISTRIBUTEDPYTORCHTRAININGTASK']._serialized_start=334
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/tensorflow_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/tensorflow_pb2.py
index f1c9eddb55..15f0d96558 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/tensorflow_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/kubeflow/tensorflow_pb2.py
@@ -15,7 +15,7 @@
 from flyteidl.plugins.kubeflow import common_pb2 as flyteidl_dot_plugins_dot_kubeflow_dot_common__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*flyteidl/plugins/kubeflow/tensorflow.proto\x12\x19\x66lyteidl.plugins.kubeflow\x1a\x19\x66lyteidl/core/tasks.proto\x1a&flyteidl/plugins/kubeflow/common.proto\"\xa8\x03\n!DistributedTensorflowTrainingTask\x12l\n\x0fworker_replicas\x18\x01 \x01(\x0b\x32\x43.flyteidl.plugins.kubeflow.DistributedTensorflowTrainingReplicaSpecR\x0eworkerReplicas\x12\x64\n\x0bps_replicas\x18\x02 \x01(\x0b\x32\x43.flyteidl.plugins.kubeflow.DistributedTensorflowTrainingReplicaSpecR\npsReplicas\x12j\n\x0e\x63hief_replicas\x18\x03 \x01(\x0b\x32\x43.flyteidl.plugins.kubeflow.DistributedTensorflowTrainingReplicaSpecR\rchiefReplicas\x12\x43\n\nrun_policy\x18\x04 \x01(\x0b\x32$.flyteidl.plugins.kubeflow.RunPolicyR\trunPolicy\"\xe5\x01\n(DistributedTensorflowTrainingReplicaSpec\x12\x1a\n\x08replicas\x18\x01 \x01(\x05R\x08replicas\x12\x14\n\x05image\x18\x02 \x01(\tR\x05image\x12\x36\n\tresources\x18\x03 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12O\n\x0erestart_policy\x18\x04 \x01(\x0e\x32(.flyteidl.plugins.kubeflow.RestartPolicyR\rrestartPolicyB\xef\x01\n\x1d\x63om.flyteidl.plugins.kubeflowB\x0fTensorflowProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PK\xaa\x02\x19\x46lyteidl.Plugins.Kubeflow\xca\x02\x19\x46lyteidl\\Plugins\\Kubeflow\xe2\x02%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\xea\x02\x1b\x46lyteidl::Plugins::Kubeflowb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*flyteidl/plugins/kubeflow/tensorflow.proto\x12\x19\x66lyteidl.plugins.kubeflow\x1a\x19\x66lyteidl/core/tasks.proto\x1a&flyteidl/plugins/kubeflow/common.proto\"\xa8\x03\n!DistributedTensorflowTrainingTask\x12l\n\x0fworker_replicas\x18\x01 \x01(\x0b\x32\x43.flyteidl.plugins.kubeflow.DistributedTensorflowTrainingReplicaSpecR\x0eworkerReplicas\x12\x64\n\x0bps_replicas\x18\x02 \x01(\x0b\x32\x43.flyteidl.plugins.kubeflow.DistributedTensorflowTrainingReplicaSpecR\npsReplicas\x12j\n\x0e\x63hief_replicas\x18\x03 \x01(\x0b\x32\x43.flyteidl.plugins.kubeflow.DistributedTensorflowTrainingReplicaSpecR\rchiefReplicas\x12\x43\n\nrun_policy\x18\x04 \x01(\x0b\x32$.flyteidl.plugins.kubeflow.RunPolicyR\trunPolicy\"\xe5\x01\n(DistributedTensorflowTrainingReplicaSpec\x12\x1a\n\x08replicas\x18\x01 \x01(\x05R\x08replicas\x12\x14\n\x05image\x18\x02 \x01(\tR\x05image\x12\x36\n\tresources\x18\x03 \x01(\x0b\x32\x18.flyteidl.core.ResourcesR\tresources\x12O\n\x0erestart_policy\x18\x04 \x01(\x0e\x32(.flyteidl.plugins.kubeflow.RestartPolicyR\rrestartPolicyB\xf5\x01\n\x1d\x63om.flyteidl.plugins.kubeflowB\x0fTensorflowProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PK\xaa\x02\x19\x46lyteidl.Plugins.Kubeflow\xca\x02\x19\x46lyteidl\\Plugins\\Kubeflow\xe2\x02%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\xea\x02\x1b\x46lyteidl::Plugins::Kubeflowb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,7 +23,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\035com.flyteidl.plugins.kubeflowB\017TensorflowProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPK\252\002\031Flyteidl.Plugins.Kubeflow\312\002\031Flyteidl\\Plugins\\Kubeflow\342\002%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\352\002\033Flyteidl::Plugins::Kubeflow'
+  DESCRIPTOR._serialized_options = b'\n\035com.flyteidl.plugins.kubeflowB\017TensorflowProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPK\252\002\031Flyteidl.Plugins.Kubeflow\312\002\031Flyteidl\\Plugins\\Kubeflow\342\002%Flyteidl\\Plugins\\Kubeflow\\GPBMetadata\352\002\033Flyteidl::Plugins::Kubeflow'
   _globals['_DISTRIBUTEDTENSORFLOWTRAININGTASK']._serialized_start=141
   _globals['_DISTRIBUTEDTENSORFLOWTRAININGTASK']._serialized_end=565
   _globals['_DISTRIBUTEDTENSORFLOWTRAININGREPLICASPEC']._serialized_start=568
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/mpi_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/mpi_pb2.py
index 228dd0629f..7552fe1010 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/mpi_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/mpi_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/plugins/mpi.proto\x12\x10\x66lyteidl.plugins\"\x87\x01\n\x1a\x44istributedMPITrainingTask\x12\x1f\n\x0bnum_workers\x18\x01 \x01(\x05R\nnumWorkers\x12\x32\n\x15num_launcher_replicas\x18\x02 \x01(\x05R\x13numLauncherReplicas\x12\x14\n\x05slots\x18\x03 \x01(\x05R\x05slotsB\xba\x01\n\x14\x63om.flyteidl.pluginsB\x08MpiProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/plugins/mpi.proto\x12\x10\x66lyteidl.plugins\"\x87\x01\n\x1a\x44istributedMPITrainingTask\x12\x1f\n\x0bnum_workers\x18\x01 \x01(\x05R\nnumWorkers\x12\x32\n\x15num_launcher_replicas\x18\x02 \x01(\x05R\x13numLauncherReplicas\x12\x14\n\x05slots\x18\x03 \x01(\x05R\x05slotsB\xc0\x01\n\x14\x63om.flyteidl.pluginsB\x08MpiProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\010MpiProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\010MpiProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
   _globals['_DISTRIBUTEDMPITRAININGTASK']._serialized_start=49
   _globals['_DISTRIBUTEDMPITRAININGTASK']._serialized_end=184
 # @@protoc_insertion_point(module_scope)
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/presto_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/presto_pb2.py
index af97a587d5..b70acbd2a5 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/presto_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/presto_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/plugins/presto.proto\x12\x10\x66lyteidl.plugins\"\x82\x01\n\x0bPrestoQuery\x12#\n\rrouting_group\x18\x01 \x01(\tR\x0croutingGroup\x12\x18\n\x07\x63\x61talog\x18\x02 \x01(\tR\x07\x63\x61talog\x12\x16\n\x06schema\x18\x03 \x01(\tR\x06schema\x12\x1c\n\tstatement\x18\x04 \x01(\tR\tstatementB\xbd\x01\n\x14\x63om.flyteidl.pluginsB\x0bPrestoProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/plugins/presto.proto\x12\x10\x66lyteidl.plugins\"\x82\x01\n\x0bPrestoQuery\x12#\n\rrouting_group\x18\x01 \x01(\tR\x0croutingGroup\x12\x18\n\x07\x63\x61talog\x18\x02 \x01(\tR\x07\x63\x61talog\x12\x16\n\x06schema\x18\x03 \x01(\tR\x06schema\x12\x1c\n\tstatement\x18\x04 \x01(\tR\tstatementB\xc3\x01\n\x14\x63om.flyteidl.pluginsB\x0bPrestoProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\013PrestoProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\013PrestoProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
   _globals['_PRESTOQUERY']._serialized_start=52
   _globals['_PRESTOQUERY']._serialized_end=182
 # @@protoc_insertion_point(module_scope)
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/pytorch_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/pytorch_pb2.py
index bc3cddc196..03333857ab 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/pytorch_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/pytorch_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x66lyteidl/plugins/pytorch.proto\x12\x10\x66lyteidl.plugins\"\xc1\x01\n\rElasticConfig\x12!\n\x0crdzv_backend\x18\x01 \x01(\tR\x0brdzvBackend\x12!\n\x0cmin_replicas\x18\x02 \x01(\x05R\x0bminReplicas\x12!\n\x0cmax_replicas\x18\x03 \x01(\x05R\x0bmaxReplicas\x12$\n\x0enproc_per_node\x18\x04 \x01(\x05R\x0cnprocPerNode\x12!\n\x0cmax_restarts\x18\x05 \x01(\x05R\x0bmaxRestarts\"\x82\x01\n\x1e\x44istributedPyTorchTrainingTask\x12\x18\n\x07workers\x18\x01 \x01(\x05R\x07workers\x12\x46\n\x0e\x65lastic_config\x18\x02 \x01(\x0b\x32\x1f.flyteidl.plugins.ElasticConfigR\relasticConfigB\xbe\x01\n\x14\x63om.flyteidl.pluginsB\x0cPytorchProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1e\x66lyteidl/plugins/pytorch.proto\x12\x10\x66lyteidl.plugins\"\xc1\x01\n\rElasticConfig\x12!\n\x0crdzv_backend\x18\x01 \x01(\tR\x0brdzvBackend\x12!\n\x0cmin_replicas\x18\x02 \x01(\x05R\x0bminReplicas\x12!\n\x0cmax_replicas\x18\x03 \x01(\x05R\x0bmaxReplicas\x12$\n\x0enproc_per_node\x18\x04 \x01(\x05R\x0cnprocPerNode\x12!\n\x0cmax_restarts\x18\x05 \x01(\x05R\x0bmaxRestarts\"\x82\x01\n\x1e\x44istributedPyTorchTrainingTask\x12\x18\n\x07workers\x18\x01 \x01(\x05R\x07workers\x12\x46\n\x0e\x65lastic_config\x18\x02 \x01(\x0b\x32\x1f.flyteidl.plugins.ElasticConfigR\relasticConfigB\xc4\x01\n\x14\x63om.flyteidl.pluginsB\x0cPytorchProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\014PytorchProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\014PytorchProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
   _globals['_ELASTICCONFIG']._serialized_start=53
   _globals['_ELASTICCONFIG']._serialized_end=246
   _globals['_DISTRIBUTEDPYTORCHTRAININGTASK']._serialized_start=249
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/qubole_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/qubole_pb2.py
index 0e270bb94f..d3f6cc135d 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/qubole_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/qubole_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/plugins/qubole.proto\x12\x10\x66lyteidl.plugins\"b\n\tHiveQuery\x12\x14\n\x05query\x18\x01 \x01(\tR\x05query\x12\x1f\n\x0btimeout_sec\x18\x02 \x01(\rR\ntimeoutSec\x12\x1e\n\nretryCount\x18\x03 \x01(\rR\nretryCount\"L\n\x13HiveQueryCollection\x12\x35\n\x07queries\x18\x02 \x03(\x0b\x32\x1b.flyteidl.plugins.HiveQueryR\x07queries\"\xd1\x01\n\rQuboleHiveJob\x12#\n\rcluster_label\x18\x01 \x01(\tR\x0c\x63lusterLabel\x12T\n\x10query_collection\x18\x02 \x01(\x0b\x32%.flyteidl.plugins.HiveQueryCollectionB\x02\x18\x01R\x0fqueryCollection\x12\x12\n\x04tags\x18\x03 \x03(\tR\x04tags\x12\x31\n\x05query\x18\x04 \x01(\x0b\x32\x1b.flyteidl.plugins.HiveQueryR\x05queryB\xbd\x01\n\x14\x63om.flyteidl.pluginsB\x0bQuboleProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/plugins/qubole.proto\x12\x10\x66lyteidl.plugins\"b\n\tHiveQuery\x12\x14\n\x05query\x18\x01 \x01(\tR\x05query\x12\x1f\n\x0btimeout_sec\x18\x02 \x01(\rR\ntimeoutSec\x12\x1e\n\nretryCount\x18\x03 \x01(\rR\nretryCount\"L\n\x13HiveQueryCollection\x12\x35\n\x07queries\x18\x02 \x03(\x0b\x32\x1b.flyteidl.plugins.HiveQueryR\x07queries\"\xd1\x01\n\rQuboleHiveJob\x12#\n\rcluster_label\x18\x01 \x01(\tR\x0c\x63lusterLabel\x12T\n\x10query_collection\x18\x02 \x01(\x0b\x32%.flyteidl.plugins.HiveQueryCollectionB\x02\x18\x01R\x0fqueryCollection\x12\x12\n\x04tags\x18\x03 \x03(\tR\x04tags\x12\x31\n\x05query\x18\x04 \x01(\x0b\x32\x1b.flyteidl.plugins.HiveQueryR\x05queryB\xc3\x01\n\x14\x63om.flyteidl.pluginsB\x0bQuboleProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\013QuboleProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\013QuboleProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
   _QUBOLEHIVEJOB.fields_by_name['query_collection']._options = None
   _QUBOLEHIVEJOB.fields_by_name['query_collection']._serialized_options = b'\030\001'
   _globals['_HIVEQUERY']._serialized_start=51
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/ray_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/ray_pb2.py
index 65fbc03521..08c33c782c 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/ray_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/ray_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/plugins/ray.proto\x12\x10\x66lyteidl.plugins\"h\n\x06RayJob\x12=\n\x0bray_cluster\x18\x01 \x01(\x0b\x32\x1c.flyteidl.plugins.RayClusterR\nrayCluster\x12\x1f\n\x0bruntime_env\x18\x02 \x01(\tR\nruntimeEnv\"\xa4\x01\n\nRayCluster\x12G\n\x0fhead_group_spec\x18\x01 \x01(\x0b\x32\x1f.flyteidl.plugins.HeadGroupSpecR\rheadGroupSpec\x12M\n\x11worker_group_spec\x18\x02 \x03(\x0b\x32!.flyteidl.plugins.WorkerGroupSpecR\x0fworkerGroupSpec\"\xb1\x01\n\rHeadGroupSpec\x12]\n\x10ray_start_params\x18\x01 \x03(\x0b\x32\x33.flyteidl.plugins.HeadGroupSpec.RayStartParamsEntryR\x0erayStartParams\x1a\x41\n\x13RayStartParamsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\xb6\x02\n\x0fWorkerGroupSpec\x12\x1d\n\ngroup_name\x18\x01 \x01(\tR\tgroupName\x12\x1a\n\x08replicas\x18\x02 \x01(\x05R\x08replicas\x12!\n\x0cmin_replicas\x18\x03 \x01(\x05R\x0bminReplicas\x12!\n\x0cmax_replicas\x18\x04 \x01(\x05R\x0bmaxReplicas\x12_\n\x10ray_start_params\x18\x05 \x03(\x0b\x32\x35.flyteidl.plugins.WorkerGroupSpec.RayStartParamsEntryR\x0erayStartParams\x1a\x41\n\x13RayStartParamsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\xba\x01\n\x14\x63om.flyteidl.pluginsB\x08RayProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/plugins/ray.proto\x12\x10\x66lyteidl.plugins\"h\n\x06RayJob\x12=\n\x0bray_cluster\x18\x01 \x01(\x0b\x32\x1c.flyteidl.plugins.RayClusterR\nrayCluster\x12\x1f\n\x0bruntime_env\x18\x02 \x01(\tR\nruntimeEnv\"\xa4\x01\n\nRayCluster\x12G\n\x0fhead_group_spec\x18\x01 \x01(\x0b\x32\x1f.flyteidl.plugins.HeadGroupSpecR\rheadGroupSpec\x12M\n\x11worker_group_spec\x18\x02 \x03(\x0b\x32!.flyteidl.plugins.WorkerGroupSpecR\x0fworkerGroupSpec\"\xb1\x01\n\rHeadGroupSpec\x12]\n\x10ray_start_params\x18\x01 \x03(\x0b\x32\x33.flyteidl.plugins.HeadGroupSpec.RayStartParamsEntryR\x0erayStartParams\x1a\x41\n\x13RayStartParamsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\xb6\x02\n\x0fWorkerGroupSpec\x12\x1d\n\ngroup_name\x18\x01 \x01(\tR\tgroupName\x12\x1a\n\x08replicas\x18\x02 \x01(\x05R\x08replicas\x12!\n\x0cmin_replicas\x18\x03 \x01(\x05R\x0bminReplicas\x12!\n\x0cmax_replicas\x18\x04 \x01(\x05R\x0bmaxReplicas\x12_\n\x10ray_start_params\x18\x05 \x03(\x0b\x32\x35.flyteidl.plugins.WorkerGroupSpec.RayStartParamsEntryR\x0erayStartParams\x1a\x41\n\x13RayStartParamsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\xc0\x01\n\x14\x63om.flyteidl.pluginsB\x08RayProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\010RayProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\010RayProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
   _HEADGROUPSPEC_RAYSTARTPARAMSENTRY._options = None
   _HEADGROUPSPEC_RAYSTARTPARAMSENTRY._serialized_options = b'8\001'
   _WORKERGROUPSPEC_RAYSTARTPARAMSENTRY._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/sagemaker/hyperparameter_tuning_job_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/sagemaker/hyperparameter_tuning_job_pb2.py
index a810df5ccd..88639ee5ab 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/sagemaker/hyperparameter_tuning_job_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/sagemaker/hyperparameter_tuning_job_pb2.py
@@ -15,7 +15,7 @@
 from flyteidl.plugins.sagemaker import training_job_pb2 as flyteidl_dot_plugins_dot_sagemaker_dot_training__job__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\"\xe0\x01\n\x17HyperparameterTuningJob\x12J\n\x0ctraining_job\x18\x01 \x01(\x0b\x32\'.flyteidl.plugins.sagemaker.TrainingJobR\x0btrainingJob\x12<\n\x1bmax_number_of_training_jobs\x18\x02 \x01(\x03R\x17maxNumberOfTrainingJobs\x12;\n\x1amax_parallel_training_jobs\x18\x03 \x01(\x03R\x17maxParallelTrainingJobs\"H\n!HyperparameterTuningObjectiveType\"#\n\x05Value\x12\x0c\n\x08MINIMIZE\x10\x00\x12\x0c\n\x08MAXIMIZE\x10\x01\"\xac\x01\n\x1dHyperparameterTuningObjective\x12j\n\x0eobjective_type\x18\x01 \x01(\x0e\x32\x43.flyteidl.plugins.sagemaker.HyperparameterTuningObjectiveType.ValueR\robjectiveType\x12\x1f\n\x0bmetric_name\x18\x02 \x01(\tR\nmetricName\"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\"\xd9\x03\n\x1dHyperparameterTuningJobConfig\x12`\n\x15hyperparameter_ranges\x18\x01 \x01(\x0b\x32+.flyteidl.plugins.sagemaker.ParameterRangesR\x14hyperparameterRanges\x12g\n\x0ftuning_strategy\x18\x02 \x01(\x0e\x32>.flyteidl.plugins.sagemaker.HyperparameterTuningStrategy.ValueR\x0etuningStrategy\x12\x64\n\x10tuning_objective\x18\x03 \x01(\x0b\x32\x39.flyteidl.plugins.sagemaker.HyperparameterTuningObjectiveR\x0ftuningObjective\x12\x86\x01\n training_job_early_stopping_type\x18\x04 \x01(\x0e\x32>.flyteidl.plugins.sagemaker.TrainingJobEarlyStoppingType.ValueR\x1ctrainingJobEarlyStoppingTypeB\x81\x02\n\x1e\x63om.flyteidl.plugins.sagemakerB\x1cHyperparameterTuningJobProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PS\xaa\x02\x1a\x46lyteidl.Plugins.Sagemaker\xca\x02\x1a\x46lyteidl\\Plugins\\Sagemaker\xe2\x02&Flyteidl\\Plugins\\Sagemaker\\GPBMetadata\xea\x02\x1c\x46lyteidl::Plugins::Sagemakerb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\"\xe0\x01\n\x17HyperparameterTuningJob\x12J\n\x0ctraining_job\x18\x01 \x01(\x0b\x32\'.flyteidl.plugins.sagemaker.TrainingJobR\x0btrainingJob\x12<\n\x1bmax_number_of_training_jobs\x18\x02 \x01(\x03R\x17maxNumberOfTrainingJobs\x12;\n\x1amax_parallel_training_jobs\x18\x03 \x01(\x03R\x17maxParallelTrainingJobs\"H\n!HyperparameterTuningObjectiveType\"#\n\x05Value\x12\x0c\n\x08MINIMIZE\x10\x00\x12\x0c\n\x08MAXIMIZE\x10\x01\"\xac\x01\n\x1dHyperparameterTuningObjective\x12j\n\x0eobjective_type\x18\x01 \x01(\x0e\x32\x43.flyteidl.plugins.sagemaker.HyperparameterTuningObjectiveType.ValueR\robjectiveType\x12\x1f\n\x0bmetric_name\x18\x02 \x01(\tR\nmetricName\"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\"\xd9\x03\n\x1dHyperparameterTuningJobConfig\x12`\n\x15hyperparameter_ranges\x18\x01 \x01(\x0b\x32+.flyteidl.plugins.sagemaker.ParameterRangesR\x14hyperparameterRanges\x12g\n\x0ftuning_strategy\x18\x02 \x01(\x0e\x32>.flyteidl.plugins.sagemaker.HyperparameterTuningStrategy.ValueR\x0etuningStrategy\x12\x64\n\x10tuning_objective\x18\x03 \x01(\x0b\x32\x39.flyteidl.plugins.sagemaker.HyperparameterTuningObjectiveR\x0ftuningObjective\x12\x86\x01\n training_job_early_stopping_type\x18\x04 \x01(\x0e\x32>.flyteidl.plugins.sagemaker.TrainingJobEarlyStoppingType.ValueR\x1ctrainingJobEarlyStoppingTypeB\x87\x02\n\x1e\x63om.flyteidl.plugins.sagemakerB\x1cHyperparameterTuningJobProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PS\xaa\x02\x1a\x46lyteidl.Plugins.Sagemaker\xca\x02\x1a\x46lyteidl\\Plugins\\Sagemaker\xe2\x02&Flyteidl\\Plugins\\Sagemaker\\GPBMetadata\xea\x02\x1c\x46lyteidl::Plugins::Sagemakerb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,7 +23,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\036com.flyteidl.plugins.sagemakerB\034HyperparameterTuningJobProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPS\252\002\032Flyteidl.Plugins.Sagemaker\312\002\032Flyteidl\\Plugins\\Sagemaker\342\002&Flyteidl\\Plugins\\Sagemaker\\GPBMetadata\352\002\034Flyteidl::Plugins::Sagemaker'
+  DESCRIPTOR._serialized_options = b'\n\036com.flyteidl.plugins.sagemakerB\034HyperparameterTuningJobProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPS\252\002\032Flyteidl.Plugins.Sagemaker\312\002\032Flyteidl\\Plugins\\Sagemaker\342\002&Flyteidl\\Plugins\\Sagemaker\\GPBMetadata\352\002\034Flyteidl::Plugins::Sagemaker'
   _globals['_HYPERPARAMETERTUNINGJOB']._serialized_start=189
   _globals['_HYPERPARAMETERTUNINGJOB']._serialized_end=413
   _globals['_HYPERPARAMETERTUNINGOBJECTIVETYPE']._serialized_start=415
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/sagemaker/parameter_ranges_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/sagemaker/parameter_ranges_pb2.py
index 7f19467e8d..44e8a00cd0 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/sagemaker/parameter_ranges_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/sagemaker/parameter_ranges_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\"\xb4\x01\n\x18\x43ontinuousParameterRange\x12\x1b\n\tmax_value\x18\x01 \x01(\x01R\x08maxValue\x12\x1b\n\tmin_value\x18\x02 \x01(\x01R\x08minValue\x12^\n\x0cscaling_type\x18\x03 \x01(\x0e\x32;.flyteidl.plugins.sagemaker.HyperparameterScalingType.ValueR\x0bscalingType\"\xb1\x01\n\x15IntegerParameterRange\x12\x1b\n\tmax_value\x18\x01 \x01(\x03R\x08maxValue\x12\x1b\n\tmin_value\x18\x02 \x01(\x03R\x08minValue\x12^\n\x0cscaling_type\x18\x03 \x01(\x0e\x32;.flyteidl.plugins.sagemaker.HyperparameterScalingType.ValueR\x0bscalingType\"3\n\x19\x43\x61tegoricalParameterRange\x12\x16\n\x06values\x18\x01 \x03(\tR\x06values\"\x89\x03\n\x13ParameterRangeOneOf\x12t\n\x1a\x63ontinuous_parameter_range\x18\x01 \x01(\x0b\x32\x34.flyteidl.plugins.sagemaker.ContinuousParameterRangeH\x00R\x18\x63ontinuousParameterRange\x12k\n\x17integer_parameter_range\x18\x02 \x01(\x0b\x32\x31.flyteidl.plugins.sagemaker.IntegerParameterRangeH\x00R\x15integerParameterRange\x12w\n\x1b\x63\x61tegorical_parameter_range\x18\x03 \x01(\x0b\x32\x35.flyteidl.plugins.sagemaker.CategoricalParameterRangeH\x00R\x19\x63\x61tegoricalParameterRangeB\x16\n\x14parameter_range_type\"\xfc\x01\n\x0fParameterRanges\x12r\n\x13parameter_range_map\x18\x01 \x03(\x0b\x32\x42.flyteidl.plugins.sagemaker.ParameterRanges.ParameterRangeMapEntryR\x11parameterRangeMap\x1au\n\x16ParameterRangeMapEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x45\n\x05value\x18\x02 \x01(\x0b\x32/.flyteidl.plugins.sagemaker.ParameterRangeOneOfR\x05value:\x02\x38\x01\x42\xf9\x01\n\x1e\x63om.flyteidl.plugins.sagemakerB\x14ParameterRangesProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PS\xaa\x02\x1a\x46lyteidl.Plugins.Sagemaker\xca\x02\x1a\x46lyteidl\\Plugins\\Sagemaker\xe2\x02&Flyteidl\\Plugins\\Sagemaker\\GPBMetadata\xea\x02\x1c\x46lyteidl::Plugins::Sagemakerb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\"\xb4\x01\n\x18\x43ontinuousParameterRange\x12\x1b\n\tmax_value\x18\x01 \x01(\x01R\x08maxValue\x12\x1b\n\tmin_value\x18\x02 \x01(\x01R\x08minValue\x12^\n\x0cscaling_type\x18\x03 \x01(\x0e\x32;.flyteidl.plugins.sagemaker.HyperparameterScalingType.ValueR\x0bscalingType\"\xb1\x01\n\x15IntegerParameterRange\x12\x1b\n\tmax_value\x18\x01 \x01(\x03R\x08maxValue\x12\x1b\n\tmin_value\x18\x02 \x01(\x03R\x08minValue\x12^\n\x0cscaling_type\x18\x03 \x01(\x0e\x32;.flyteidl.plugins.sagemaker.HyperparameterScalingType.ValueR\x0bscalingType\"3\n\x19\x43\x61tegoricalParameterRange\x12\x16\n\x06values\x18\x01 \x03(\tR\x06values\"\x89\x03\n\x13ParameterRangeOneOf\x12t\n\x1a\x63ontinuous_parameter_range\x18\x01 \x01(\x0b\x32\x34.flyteidl.plugins.sagemaker.ContinuousParameterRangeH\x00R\x18\x63ontinuousParameterRange\x12k\n\x17integer_parameter_range\x18\x02 \x01(\x0b\x32\x31.flyteidl.plugins.sagemaker.IntegerParameterRangeH\x00R\x15integerParameterRange\x12w\n\x1b\x63\x61tegorical_parameter_range\x18\x03 \x01(\x0b\x32\x35.flyteidl.plugins.sagemaker.CategoricalParameterRangeH\x00R\x19\x63\x61tegoricalParameterRangeB\x16\n\x14parameter_range_type\"\xfc\x01\n\x0fParameterRanges\x12r\n\x13parameter_range_map\x18\x01 \x03(\x0b\x32\x42.flyteidl.plugins.sagemaker.ParameterRanges.ParameterRangeMapEntryR\x11parameterRangeMap\x1au\n\x16ParameterRangeMapEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x45\n\x05value\x18\x02 \x01(\x0b\x32/.flyteidl.plugins.sagemaker.ParameterRangeOneOfR\x05value:\x02\x38\x01\x42\xff\x01\n\x1e\x63om.flyteidl.plugins.sagemakerB\x14ParameterRangesProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PS\xaa\x02\x1a\x46lyteidl.Plugins.Sagemaker\xca\x02\x1a\x46lyteidl\\Plugins\\Sagemaker\xe2\x02&Flyteidl\\Plugins\\Sagemaker\\GPBMetadata\xea\x02\x1c\x46lyteidl::Plugins::Sagemakerb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\036com.flyteidl.plugins.sagemakerB\024ParameterRangesProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPS\252\002\032Flyteidl.Plugins.Sagemaker\312\002\032Flyteidl\\Plugins\\Sagemaker\342\002&Flyteidl\\Plugins\\Sagemaker\\GPBMetadata\352\002\034Flyteidl::Plugins::Sagemaker'
+  DESCRIPTOR._serialized_options = b'\n\036com.flyteidl.plugins.sagemakerB\024ParameterRangesProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPS\252\002\032Flyteidl.Plugins.Sagemaker\312\002\032Flyteidl\\Plugins\\Sagemaker\342\002&Flyteidl\\Plugins\\Sagemaker\\GPBMetadata\352\002\034Flyteidl::Plugins::Sagemaker'
   _PARAMETERRANGES_PARAMETERRANGEMAPENTRY._options = None
   _PARAMETERRANGES_PARAMETERRANGEMAPENTRY._serialized_options = b'8\001'
   _globals['_HYPERPARAMETERSCALINGTYPE']._serialized_start=81
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/sagemaker/training_job_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/sagemaker/training_job_pb2.py
index b44deb43cd..4f19e58a68 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/sagemaker/training_job_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/sagemaker/training_job_pb2.py
@@ -14,7 +14,7 @@
 from google.protobuf import duration_pb2 as google_dot_protobuf_dot_duration__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n\x05regex\x18\x02 \x01(\tR\x05regex\"\xa8\x03\n\x16\x41lgorithmSpecification\x12J\n\ninput_mode\x18\x01 \x01(\x0e\x32+.flyteidl.plugins.sagemaker.InputMode.ValueR\tinputMode\x12V\n\x0e\x61lgorithm_name\x18\x02 \x01(\x0e\x32/.flyteidl.plugins.sagemaker.AlgorithmName.ValueR\ralgorithmName\x12+\n\x11\x61lgorithm_version\x18\x03 \x01(\tR\x10\x61lgorithmVersion\x12[\n\x12metric_definitions\x18\x04 \x03(\x0b\x32,.flyteidl.plugins.sagemaker.MetricDefinitionR\x11metricDefinitions\x12`\n\x12input_content_type\x18\x05 \x01(\x0e\x32\x32.flyteidl.plugins.sagemaker.InputContentType.ValueR\x10inputContentType\"8\n\x13\x44istributedProtocol\"!\n\x05Value\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x07\n\x03MPI\x10\x01\"\xfc\x01\n\x19TrainingJobResourceConfig\x12%\n\x0einstance_count\x18\x01 \x01(\x03R\rinstanceCount\x12#\n\rinstance_type\x18\x02 \x01(\tR\x0cinstanceType\x12)\n\x11volume_size_in_gb\x18\x03 \x01(\x03R\x0evolumeSizeInGb\x12h\n\x14\x64istributed_protocol\x18\x04 \x01(\x0e\x32\x35.flyteidl.plugins.sagemaker.DistributedProtocol.ValueR\x13\x64istributedProtocol\"\xf2\x01\n\x0bTrainingJob\x12k\n\x17\x61lgorithm_specification\x18\x01 \x01(\x0b\x32\x32.flyteidl.plugins.sagemaker.AlgorithmSpecificationR\x16\x61lgorithmSpecification\x12v\n\x1ctraining_job_resource_config\x18\x02 \x01(\x0b\x32\x35.flyteidl.plugins.sagemaker.TrainingJobResourceConfigR\x19trainingJobResourceConfigB\xf5\x01\n\x1e\x63om.flyteidl.plugins.sagemakerB\x10TrainingJobProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PS\xaa\x02\x1a\x46lyteidl.Plugins.Sagemaker\xca\x02\x1a\x46lyteidl\\Plugins\\Sagemaker\xe2\x02&Flyteidl\\Plugins\\Sagemaker\\GPBMetadata\xea\x02\x1c\x46lyteidl::Plugins::Sagemakerb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(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\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n\x05regex\x18\x02 \x01(\tR\x05regex\"\xa8\x03\n\x16\x41lgorithmSpecification\x12J\n\ninput_mode\x18\x01 \x01(\x0e\x32+.flyteidl.plugins.sagemaker.InputMode.ValueR\tinputMode\x12V\n\x0e\x61lgorithm_name\x18\x02 \x01(\x0e\x32/.flyteidl.plugins.sagemaker.AlgorithmName.ValueR\ralgorithmName\x12+\n\x11\x61lgorithm_version\x18\x03 \x01(\tR\x10\x61lgorithmVersion\x12[\n\x12metric_definitions\x18\x04 \x03(\x0b\x32,.flyteidl.plugins.sagemaker.MetricDefinitionR\x11metricDefinitions\x12`\n\x12input_content_type\x18\x05 \x01(\x0e\x32\x32.flyteidl.plugins.sagemaker.InputContentType.ValueR\x10inputContentType\"8\n\x13\x44istributedProtocol\"!\n\x05Value\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x07\n\x03MPI\x10\x01\"\xfc\x01\n\x19TrainingJobResourceConfig\x12%\n\x0einstance_count\x18\x01 \x01(\x03R\rinstanceCount\x12#\n\rinstance_type\x18\x02 \x01(\tR\x0cinstanceType\x12)\n\x11volume_size_in_gb\x18\x03 \x01(\x03R\x0evolumeSizeInGb\x12h\n\x14\x64istributed_protocol\x18\x04 \x01(\x0e\x32\x35.flyteidl.plugins.sagemaker.DistributedProtocol.ValueR\x13\x64istributedProtocol\"\xf2\x01\n\x0bTrainingJob\x12k\n\x17\x61lgorithm_specification\x18\x01 \x01(\x0b\x32\x32.flyteidl.plugins.sagemaker.AlgorithmSpecificationR\x16\x61lgorithmSpecification\x12v\n\x1ctraining_job_resource_config\x18\x02 \x01(\x0b\x32\x35.flyteidl.plugins.sagemaker.TrainingJobResourceConfigR\x19trainingJobResourceConfigB\xfb\x01\n\x1e\x63om.flyteidl.plugins.sagemakerB\x10TrainingJobProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PS\xaa\x02\x1a\x46lyteidl.Plugins.Sagemaker\xca\x02\x1a\x46lyteidl\\Plugins\\Sagemaker\xe2\x02&Flyteidl\\Plugins\\Sagemaker\\GPBMetadata\xea\x02\x1c\x46lyteidl::Plugins::Sagemakerb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\036com.flyteidl.plugins.sagemakerB\020TrainingJobProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPS\252\002\032Flyteidl.Plugins.Sagemaker\312\002\032Flyteidl\\Plugins\\Sagemaker\342\002&Flyteidl\\Plugins\\Sagemaker\\GPBMetadata\352\002\034Flyteidl::Plugins::Sagemaker'
+  DESCRIPTOR._serialized_options = b'\n\036com.flyteidl.plugins.sagemakerB\020TrainingJobProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPS\252\002\032Flyteidl.Plugins.Sagemaker\312\002\032Flyteidl\\Plugins\\Sagemaker\342\002&Flyteidl\\Plugins\\Sagemaker\\GPBMetadata\352\002\034Flyteidl::Plugins::Sagemaker'
   _globals['_INPUTMODE']._serialized_start=109
   _globals['_INPUTMODE']._serialized_end=149
   _globals['_INPUTMODE_VALUE']._serialized_start=122
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/spark_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/spark_pb2.py
index dc319cf624..8ee1759390 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/spark_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/spark_pb2.py
@@ -14,7 +14,7 @@
 from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/plugins/spark.proto\x12\x10\x66lyteidl.plugins\x1a\x1cgoogle/protobuf/struct.proto\"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\"\xfe\x04\n\x08SparkJob\x12Q\n\x0f\x61pplicationType\x18\x01 \x01(\x0e\x32\'.flyteidl.plugins.SparkApplication.TypeR\x0f\x61pplicationType\x12\x30\n\x13mainApplicationFile\x18\x02 \x01(\tR\x13mainApplicationFile\x12\x1c\n\tmainClass\x18\x03 \x01(\tR\tmainClass\x12G\n\tsparkConf\x18\x04 \x03(\x0b\x32).flyteidl.plugins.SparkJob.SparkConfEntryR\tsparkConf\x12J\n\nhadoopConf\x18\x05 \x03(\x0b\x32*.flyteidl.plugins.SparkJob.HadoopConfEntryR\nhadoopConf\x12\"\n\x0c\x65xecutorPath\x18\x06 \x01(\tR\x0c\x65xecutorPath\x12?\n\x0e\x64\x61tabricksConf\x18\x07 \x01(\x0b\x32\x17.google.protobuf.StructR\x0e\x64\x61tabricksConf\x12(\n\x0f\x64\x61tabricksToken\x18\x08 \x01(\tR\x0f\x64\x61tabricksToken\x12.\n\x12\x64\x61tabricksInstance\x18\t \x01(\tR\x12\x64\x61tabricksInstance\x1a<\n\x0eSparkConfEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a=\n\x0fHadoopConfEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\xbc\x01\n\x14\x63om.flyteidl.pluginsB\nSparkProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/plugins/spark.proto\x12\x10\x66lyteidl.plugins\x1a\x1cgoogle/protobuf/struct.proto\"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\"\xfe\x04\n\x08SparkJob\x12Q\n\x0f\x61pplicationType\x18\x01 \x01(\x0e\x32\'.flyteidl.plugins.SparkApplication.TypeR\x0f\x61pplicationType\x12\x30\n\x13mainApplicationFile\x18\x02 \x01(\tR\x13mainApplicationFile\x12\x1c\n\tmainClass\x18\x03 \x01(\tR\tmainClass\x12G\n\tsparkConf\x18\x04 \x03(\x0b\x32).flyteidl.plugins.SparkJob.SparkConfEntryR\tsparkConf\x12J\n\nhadoopConf\x18\x05 \x03(\x0b\x32*.flyteidl.plugins.SparkJob.HadoopConfEntryR\nhadoopConf\x12\"\n\x0c\x65xecutorPath\x18\x06 \x01(\tR\x0c\x65xecutorPath\x12?\n\x0e\x64\x61tabricksConf\x18\x07 \x01(\x0b\x32\x17.google.protobuf.StructR\x0e\x64\x61tabricksConf\x12(\n\x0f\x64\x61tabricksToken\x18\x08 \x01(\tR\x0f\x64\x61tabricksToken\x12.\n\x12\x64\x61tabricksInstance\x18\t \x01(\tR\x12\x64\x61tabricksInstance\x1a<\n\x0eSparkConfEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a=\n\x0fHadoopConfEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\xc2\x01\n\x14\x63om.flyteidl.pluginsB\nSparkProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\nSparkProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\nSparkProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
   _SPARKJOB_SPARKCONFENTRY._options = None
   _SPARKJOB_SPARKCONFENTRY._serialized_options = b'8\001'
   _SPARKJOB_HADOOPCONFENTRY._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/tensorflow_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/tensorflow_pb2.py
index 1bf42180c9..187526d6d5 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/tensorflow_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/tensorflow_pb2.py
@@ -13,7 +13,7 @@
 
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!flyteidl/plugins/tensorflow.proto\x12\x10\x66lyteidl.plugins\"\x85\x01\n!DistributedTensorflowTrainingTask\x12\x18\n\x07workers\x18\x01 \x01(\x05R\x07workers\x12\x1f\n\x0bps_replicas\x18\x02 \x01(\x05R\npsReplicas\x12%\n\x0e\x63hief_replicas\x18\x03 \x01(\x05R\rchiefReplicasB\xc1\x01\n\x14\x63om.flyteidl.pluginsB\x0fTensorflowProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!flyteidl/plugins/tensorflow.proto\x12\x10\x66lyteidl.plugins\"\x85\x01\n!DistributedTensorflowTrainingTask\x12\x18\n\x07workers\x18\x01 \x01(\x05R\x07workers\x12\x1f\n\x0bps_replicas\x18\x02 \x01(\x05R\npsReplicas\x12%\n\x0e\x63hief_replicas\x18\x03 \x01(\x05R\rchiefReplicasB\xc7\x01\n\x14\x63om.flyteidl.pluginsB\x0fTensorflowProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -21,7 +21,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\017TensorflowProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\017TensorflowProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
   _globals['_DISTRIBUTEDTENSORFLOWTRAININGTASK']._serialized_start=56
   _globals['_DISTRIBUTEDTENSORFLOWTRAININGTASK']._serialized_end=189
 # @@protoc_insertion_point(module_scope)
diff --git a/flyteidl/gen/pb_python/flyteidl/plugins/waitable_pb2.py b/flyteidl/gen/pb_python/flyteidl/plugins/waitable_pb2.py
index 7e0a1b1a88..fac91e450d 100644
--- a/flyteidl/gen/pb_python/flyteidl/plugins/waitable_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/plugins/waitable_pb2.py
@@ -15,7 +15,7 @@
 from flyteidl.core import identifier_pb2 as flyteidl_dot_core_dot_identifier__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x66lyteidl/plugins/waitable.proto\x12\x10\x66lyteidl.plugins\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\"\xb3\x01\n\x08Waitable\x12H\n\nwf_exec_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x08wfExecId\x12<\n\x05phase\x18\x02 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x05phase\x12\x1f\n\x0bworkflow_id\x18\x03 \x01(\tR\nworkflowIdB\xbf\x01\n\x14\x63om.flyteidl.pluginsB\rWaitableProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x66lyteidl/plugins/waitable.proto\x12\x10\x66lyteidl.plugins\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\"\xb3\x01\n\x08Waitable\x12H\n\nwf_exec_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x08wfExecId\x12<\n\x05phase\x18\x02 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x05phase\x12\x1f\n\x0bworkflow_id\x18\x03 \x01(\tR\nworkflowIdB\xc5\x01\n\x14\x63om.flyteidl.pluginsB\rWaitableProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\xa2\x02\x03\x46PX\xaa\x02\x10\x46lyteidl.Plugins\xca\x02\x10\x46lyteidl\\Plugins\xe2\x02\x1c\x46lyteidl\\Plugins\\GPBMetadata\xea\x02\x11\x46lyteidl::Pluginsb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,7 +23,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\rWaitableProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.pluginsB\rWaitableProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins\242\002\003FPX\252\002\020Flyteidl.Plugins\312\002\020Flyteidl\\Plugins\342\002\034Flyteidl\\Plugins\\GPBMetadata\352\002\021Flyteidl::Plugins'
   _globals['_WAITABLE']._serialized_start=117
   _globals['_WAITABLE']._serialized_end=296
 # @@protoc_insertion_point(module_scope)
diff --git a/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py b/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py
index 25d26599ac..d48148be62 100644
--- a/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/service/admin_pb2.py
@@ -29,7 +29,7 @@
 from flyteidl.admin import description_entity_pb2 as flyteidl_dot_admin_dot_description__entity__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/service/admin.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1c\x66lyteidl/admin/project.proto\x1a.flyteidl/admin/project_domain_attributes.proto\x1a\'flyteidl/admin/project_attributes.proto\x1a\x19\x66lyteidl/admin/task.proto\x1a\x1d\x66lyteidl/admin/workflow.proto\x1a(flyteidl/admin/workflow_attributes.proto\x1a flyteidl/admin/launch_plan.proto\x1a\x1a\x66lyteidl/admin/event.proto\x1a\x1e\x66lyteidl/admin/execution.proto\x1a\'flyteidl/admin/matchable_resource.proto\x1a#flyteidl/admin/node_execution.proto\x1a#flyteidl/admin/task_execution.proto\x1a\x1c\x66lyteidl/admin/version.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\'flyteidl/admin/description_entity.proto2\x84N\n\x0c\x41\x64minService\x12m\n\nCreateTask\x12!.flyteidl.admin.TaskCreateRequest\x1a\".flyteidl.admin.TaskCreateResponse\"\x18\x82\xd3\xe4\x93\x02\x12:\x01*\"\r/api/v1/tasks\x12\x88\x01\n\x07GetTask\x12 .flyteidl.admin.ObjectGetRequest\x1a\x14.flyteidl.admin.Task\"E\x82\xd3\xe4\x93\x02?\x12=/api/v1/tasks/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x97\x01\n\x0bListTaskIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"+\x82\xd3\xe4\x93\x02%\x12#/api/v1/task_ids/{project}/{domain}\x12\xae\x01\n\tListTasks\x12#.flyteidl.admin.ResourceListRequest\x1a\x18.flyteidl.admin.TaskList\"b\x82\xd3\xe4\x93\x02\\Z(\x12&/api/v1/tasks/{id.project}/{id.domain}\x12\x30/api/v1/tasks/{id.project}/{id.domain}/{id.name}\x12}\n\x0e\x43reateWorkflow\x12%.flyteidl.admin.WorkflowCreateRequest\x1a&.flyteidl.admin.WorkflowCreateResponse\"\x1c\x82\xd3\xe4\x93\x02\x16:\x01*\"\x11/api/v1/workflows\x12\x94\x01\n\x0bGetWorkflow\x12 .flyteidl.admin.ObjectGetRequest\x1a\x18.flyteidl.admin.Workflow\"I\x82\xd3\xe4\x93\x02\x43\x12\x41/api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x9f\x01\n\x0fListWorkflowIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"/\x82\xd3\xe4\x93\x02)\x12\'/api/v1/workflow_ids/{project}/{domain}\x12\xbe\x01\n\rListWorkflows\x12#.flyteidl.admin.ResourceListRequest\x1a\x1c.flyteidl.admin.WorkflowList\"j\x82\xd3\xe4\x93\x02\x64Z,\x12*/api/v1/workflows/{id.project}/{id.domain}\x12\x34/api/v1/workflows/{id.project}/{id.domain}/{id.name}\x12\x86\x01\n\x10\x43reateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanCreateRequest\x1a(.flyteidl.admin.LaunchPlanCreateResponse\"\x1f\x82\xd3\xe4\x93\x02\x19:\x01*\"\x14/api/v1/launch_plans\x12\x9b\x01\n\rGetLaunchPlan\x12 .flyteidl.admin.ObjectGetRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"L\x82\xd3\xe4\x93\x02\x46\x12\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xa2\x01\n\x13GetActiveLaunchPlan\x12\'.flyteidl.admin.ActiveLaunchPlanRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"F\x82\xd3\xe4\x93\x02@\x12>/api/v1/active_launch_plans/{id.project}/{id.domain}/{id.name}\x12\x9c\x01\n\x15ListActiveLaunchPlans\x12+.flyteidl.admin.ActiveLaunchPlanListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"6\x82\xd3\xe4\x93\x02\x30\x12./api/v1/active_launch_plans/{project}/{domain}\x12\xa4\x01\n\x11ListLaunchPlanIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"2\x82\xd3\xe4\x93\x02,\x12*/api/v1/launch_plan_ids/{project}/{domain}\x12\xc8\x01\n\x0fListLaunchPlans\x12#.flyteidl.admin.ResourceListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"p\x82\xd3\xe4\x93\x02jZ/\x12-/api/v1/launch_plans/{id.project}/{id.domain}\x12\x37/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}\x12\xb6\x01\n\x10UpdateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanUpdateRequest\x1a(.flyteidl.admin.LaunchPlanUpdateResponse\"O\x82\xd3\xe4\x93\x02I:\x01*\x1a\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x81\x01\n\x0f\x43reateExecution\x12&.flyteidl.admin.ExecutionCreateRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"\x1d\x82\xd3\xe4\x93\x02\x17:\x01*\"\x12/api/v1/executions\x12\x8e\x01\n\x11RelaunchExecution\x12(.flyteidl.admin.ExecutionRelaunchRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"&\x82\xd3\xe4\x93\x02 :\x01*\"\x1b/api/v1/executions/relaunch\x12\x8b\x01\n\x10RecoverExecution\x12\'.flyteidl.admin.ExecutionRecoverRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"%\x82\xd3\xe4\x93\x02\x1f:\x01*\"\x1a/api/v1/executions/recover\x12\x95\x01\n\x0cGetExecution\x12+.flyteidl.admin.WorkflowExecutionGetRequest\x1a\x19.flyteidl.admin.Execution\"=\x82\xd3\xe4\x93\x02\x37\x12\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xa4\x01\n\x0fUpdateExecution\x12&.flyteidl.admin.ExecutionUpdateRequest\x1a\'.flyteidl.admin.ExecutionUpdateResponse\"@\x82\xd3\xe4\x93\x02::\x01*\x1a\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xb9\x01\n\x10GetExecutionData\x12/.flyteidl.admin.WorkflowExecutionGetDataRequest\x1a\x30.flyteidl.admin.WorkflowExecutionGetDataResponse\"B\x82\xd3\xe4\x93\x02<\x12:/api/v1/data/executions/{id.project}/{id.domain}/{id.name}\x12\x89\x01\n\x0eListExecutions\x12#.flyteidl.admin.ResourceListRequest\x1a\x1d.flyteidl.admin.ExecutionList\"3\x82\xd3\xe4\x93\x02-\x12+/api/v1/executions/{id.project}/{id.domain}\x12\xad\x01\n\x12TerminateExecution\x12).flyteidl.admin.ExecutionTerminateRequest\x1a*.flyteidl.admin.ExecutionTerminateResponse\"@\x82\xd3\xe4\x93\x02::\x01**5/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xd2\x01\n\x10GetNodeExecution\x12\'.flyteidl.admin.NodeExecutionGetRequest\x1a\x1d.flyteidl.admin.NodeExecution\"v\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}\x12\xde\x01\n\x12ListNodeExecutions\x12(.flyteidl.admin.NodeExecutionListRequest\x1a!.flyteidl.admin.NodeExecutionList\"{\x82\xd3\xe4\x93\x02u\x12s/api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x12\xa5\x04\n\x19ListNodeExecutionsForTask\x12/.flyteidl.admin.NodeExecutionForTaskListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\xb3\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}\x12\xee\x01\n\x14GetNodeExecutionData\x12+.flyteidl.admin.NodeExecutionGetDataRequest\x1a,.flyteidl.admin.NodeExecutionGetDataResponse\"{\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}\x12\x7f\n\x0fRegisterProject\x12&.flyteidl.admin.ProjectRegisterRequest\x1a\'.flyteidl.admin.ProjectRegisterResponse\"\x1b\x82\xd3\xe4\x93\x02\x15:\x01*\"\x10/api/v1/projects\x12q\n\rUpdateProject\x12\x17.flyteidl.admin.Project\x1a%.flyteidl.admin.ProjectUpdateResponse\" \x82\xd3\xe4\x93\x02\x1a:\x01*\x1a\x15/api/v1/projects/{id}\x12\x66\n\x0cListProjects\x12\".flyteidl.admin.ProjectListRequest\x1a\x18.flyteidl.admin.Projects\"\x18\x82\xd3\xe4\x93\x02\x12\x12\x10/api/v1/projects\x12\x99\x01\n\x13\x43reateWorkflowEvent\x12-.flyteidl.admin.WorkflowExecutionEventRequest\x1a..flyteidl.admin.WorkflowExecutionEventResponse\"#\x82\xd3\xe4\x93\x02\x1d:\x01*\"\x18/api/v1/events/workflows\x12\x89\x01\n\x0f\x43reateNodeEvent\x12).flyteidl.admin.NodeExecutionEventRequest\x1a*.flyteidl.admin.NodeExecutionEventResponse\"\x1f\x82\xd3\xe4\x93\x02\x19:\x01*\"\x14/api/v1/events/nodes\x12\x89\x01\n\x0f\x43reateTaskEvent\x12).flyteidl.admin.TaskExecutionEventRequest\x1a*.flyteidl.admin.TaskExecutionEventResponse\"\x1f\x82\xd3\xe4\x93\x02\x19:\x01*\"\x14/api/v1/events/tasks\x12\x80\x03\n\x10GetTaskExecution\x12\'.flyteidl.admin.TaskExecutionGetRequest\x1a\x1d.flyteidl.admin.TaskExecution\"\xa3\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}\x12\x98\x02\n\x12ListTaskExecutions\x12(.flyteidl.admin.TaskExecutionListRequest\x1a!.flyteidl.admin.TaskExecutionList\"\xb4\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}\x12\x9c\x03\n\x14GetTaskExecutionData\x12+.flyteidl.admin.TaskExecutionGetDataRequest\x1a,.flyteidl.admin.TaskExecutionGetDataResponse\"\xa8\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}\x12\xe3\x01\n\x1dUpdateProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesUpdateRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesUpdateResponse\"U\x82\xd3\xe4\x93\x02O:\x01*\x1aJ/api/v1/project_domain_attributes/{attributes.project}/{attributes.domain}\x12\xc1\x01\n\x1aGetProjectDomainAttributes\x12\x31.flyteidl.admin.ProjectDomainAttributesGetRequest\x1a\x32.flyteidl.admin.ProjectDomainAttributesGetResponse\"<\x82\xd3\xe4\x93\x02\x36\x12\x34/api/v1/project_domain_attributes/{project}/{domain}\x12\xcd\x01\n\x1d\x44\x65leteProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesDeleteRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesDeleteResponse\"?\x82\xd3\xe4\x93\x02\x39:\x01**4/api/v1/project_domain_attributes/{project}/{domain}\x12\xb6\x01\n\x17UpdateProjectAttributes\x12..flyteidl.admin.ProjectAttributesUpdateRequest\x1a/.flyteidl.admin.ProjectAttributesUpdateResponse\":\x82\xd3\xe4\x93\x02\x34:\x01*\x1a//api/v1/project_attributes/{attributes.project}\x12\x9f\x01\n\x14GetProjectAttributes\x12+.flyteidl.admin.ProjectAttributesGetRequest\x1a,.flyteidl.admin.ProjectAttributesGetResponse\",\x82\xd3\xe4\x93\x02&\x12$/api/v1/project_attributes/{project}\x12\xab\x01\n\x17\x44\x65leteProjectAttributes\x12..flyteidl.admin.ProjectAttributesDeleteRequest\x1a/.flyteidl.admin.ProjectAttributesDeleteResponse\"/\x82\xd3\xe4\x93\x02):\x01**$/api/v1/project_attributes/{project}\x12\xe4\x01\n\x18UpdateWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesUpdateRequest\x1a\x30.flyteidl.admin.WorkflowAttributesUpdateResponse\"e\x82\xd3\xe4\x93\x02_:\x01*\x1aZ/api/v1/workflow_attributes/{attributes.project}/{attributes.domain}/{attributes.workflow}\x12\xb7\x01\n\x15GetWorkflowAttributes\x12,.flyteidl.admin.WorkflowAttributesGetRequest\x1a-.flyteidl.admin.WorkflowAttributesGetResponse\"A\x82\xd3\xe4\x93\x02;\x12\x39/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x12\xc3\x01\n\x18\x44\x65leteWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesDeleteRequest\x1a\x30.flyteidl.admin.WorkflowAttributesDeleteResponse\"D\x82\xd3\xe4\x93\x02>:\x01**9/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x12\xa0\x01\n\x17ListMatchableAttributes\x12..flyteidl.admin.ListMatchableAttributesRequest\x1a/.flyteidl.admin.ListMatchableAttributesResponse\"$\x82\xd3\xe4\x93\x02\x1e\x12\x1c/api/v1/matchable_attributes\x12\x9f\x01\n\x11ListNamedEntities\x12&.flyteidl.admin.NamedEntityListRequest\x1a\x1f.flyteidl.admin.NamedEntityList\"A\x82\xd3\xe4\x93\x02;\x12\x39/api/v1/named_entities/{resource_type}/{project}/{domain}\x12\xa7\x01\n\x0eGetNamedEntity\x12%.flyteidl.admin.NamedEntityGetRequest\x1a\x1b.flyteidl.admin.NamedEntity\"Q\x82\xd3\xe4\x93\x02K\x12I/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12\xbe\x01\n\x11UpdateNamedEntity\x12(.flyteidl.admin.NamedEntityUpdateRequest\x1a).flyteidl.admin.NamedEntityUpdateResponse\"T\x82\xd3\xe4\x93\x02N:\x01*\x1aI/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12l\n\nGetVersion\x12!.flyteidl.admin.GetVersionRequest\x1a\".flyteidl.admin.GetVersionResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/api/v1/version\x12\xc4\x01\n\x14GetDescriptionEntity\x12 .flyteidl.admin.ObjectGetRequest\x1a!.flyteidl.admin.DescriptionEntity\"g\x82\xd3\xe4\x93\x02\x61\x12_/api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x92\x02\n\x17ListDescriptionEntities\x12,.flyteidl.admin.DescriptionEntityListRequest\x1a%.flyteidl.admin.DescriptionEntityList\"\xa1\x01\x82\xd3\xe4\x93\x02\x9a\x01ZG\x12\x45/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}\x12O/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12\xc5\x01\n\x13GetExecutionMetrics\x12\x32.flyteidl.admin.WorkflowExecutionGetMetricsRequest\x1a\x33.flyteidl.admin.WorkflowExecutionGetMetricsResponse\"E\x82\xd3\xe4\x93\x02?\x12=/api/v1/metrics/executions/{id.project}/{id.domain}/{id.name}B\xbc\x01\n\x14\x63om.flyteidl.serviceB\nAdminProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/service/admin.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1c\x66lyteidl/admin/project.proto\x1a.flyteidl/admin/project_domain_attributes.proto\x1a\'flyteidl/admin/project_attributes.proto\x1a\x19\x66lyteidl/admin/task.proto\x1a\x1d\x66lyteidl/admin/workflow.proto\x1a(flyteidl/admin/workflow_attributes.proto\x1a flyteidl/admin/launch_plan.proto\x1a\x1a\x66lyteidl/admin/event.proto\x1a\x1e\x66lyteidl/admin/execution.proto\x1a\'flyteidl/admin/matchable_resource.proto\x1a#flyteidl/admin/node_execution.proto\x1a#flyteidl/admin/task_execution.proto\x1a\x1c\x66lyteidl/admin/version.proto\x1a\x1b\x66lyteidl/admin/common.proto\x1a\'flyteidl/admin/description_entity.proto2\x84N\n\x0c\x41\x64minService\x12m\n\nCreateTask\x12!.flyteidl.admin.TaskCreateRequest\x1a\".flyteidl.admin.TaskCreateResponse\"\x18\x82\xd3\xe4\x93\x02\x12:\x01*\"\r/api/v1/tasks\x12\x88\x01\n\x07GetTask\x12 .flyteidl.admin.ObjectGetRequest\x1a\x14.flyteidl.admin.Task\"E\x82\xd3\xe4\x93\x02?\x12=/api/v1/tasks/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x97\x01\n\x0bListTaskIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"+\x82\xd3\xe4\x93\x02%\x12#/api/v1/task_ids/{project}/{domain}\x12\xae\x01\n\tListTasks\x12#.flyteidl.admin.ResourceListRequest\x1a\x18.flyteidl.admin.TaskList\"b\x82\xd3\xe4\x93\x02\\Z(\x12&/api/v1/tasks/{id.project}/{id.domain}\x12\x30/api/v1/tasks/{id.project}/{id.domain}/{id.name}\x12}\n\x0e\x43reateWorkflow\x12%.flyteidl.admin.WorkflowCreateRequest\x1a&.flyteidl.admin.WorkflowCreateResponse\"\x1c\x82\xd3\xe4\x93\x02\x16:\x01*\"\x11/api/v1/workflows\x12\x94\x01\n\x0bGetWorkflow\x12 .flyteidl.admin.ObjectGetRequest\x1a\x18.flyteidl.admin.Workflow\"I\x82\xd3\xe4\x93\x02\x43\x12\x41/api/v1/workflows/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x9f\x01\n\x0fListWorkflowIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"/\x82\xd3\xe4\x93\x02)\x12\'/api/v1/workflow_ids/{project}/{domain}\x12\xbe\x01\n\rListWorkflows\x12#.flyteidl.admin.ResourceListRequest\x1a\x1c.flyteidl.admin.WorkflowList\"j\x82\xd3\xe4\x93\x02\x64Z,\x12*/api/v1/workflows/{id.project}/{id.domain}\x12\x34/api/v1/workflows/{id.project}/{id.domain}/{id.name}\x12\x86\x01\n\x10\x43reateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanCreateRequest\x1a(.flyteidl.admin.LaunchPlanCreateResponse\"\x1f\x82\xd3\xe4\x93\x02\x19:\x01*\"\x14/api/v1/launch_plans\x12\x9b\x01\n\rGetLaunchPlan\x12 .flyteidl.admin.ObjectGetRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"L\x82\xd3\xe4\x93\x02\x46\x12\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x12\xa2\x01\n\x13GetActiveLaunchPlan\x12\'.flyteidl.admin.ActiveLaunchPlanRequest\x1a\x1a.flyteidl.admin.LaunchPlan\"F\x82\xd3\xe4\x93\x02@\x12>/api/v1/active_launch_plans/{id.project}/{id.domain}/{id.name}\x12\x9c\x01\n\x15ListActiveLaunchPlans\x12+.flyteidl.admin.ActiveLaunchPlanListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"6\x82\xd3\xe4\x93\x02\x30\x12./api/v1/active_launch_plans/{project}/{domain}\x12\xa4\x01\n\x11ListLaunchPlanIds\x12\x30.flyteidl.admin.NamedEntityIdentifierListRequest\x1a).flyteidl.admin.NamedEntityIdentifierList\"2\x82\xd3\xe4\x93\x02,\x12*/api/v1/launch_plan_ids/{project}/{domain}\x12\xc8\x01\n\x0fListLaunchPlans\x12#.flyteidl.admin.ResourceListRequest\x1a\x1e.flyteidl.admin.LaunchPlanList\"p\x82\xd3\xe4\x93\x02jZ/\x12-/api/v1/launch_plans/{id.project}/{id.domain}\x12\x37/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}\x12\xb6\x01\n\x10UpdateLaunchPlan\x12\'.flyteidl.admin.LaunchPlanUpdateRequest\x1a(.flyteidl.admin.LaunchPlanUpdateResponse\"O\x82\xd3\xe4\x93\x02I:\x01*\x1a\x44/api/v1/launch_plans/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x81\x01\n\x0f\x43reateExecution\x12&.flyteidl.admin.ExecutionCreateRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"\x1d\x82\xd3\xe4\x93\x02\x17:\x01*\"\x12/api/v1/executions\x12\x8e\x01\n\x11RelaunchExecution\x12(.flyteidl.admin.ExecutionRelaunchRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"&\x82\xd3\xe4\x93\x02 :\x01*\"\x1b/api/v1/executions/relaunch\x12\x8b\x01\n\x10RecoverExecution\x12\'.flyteidl.admin.ExecutionRecoverRequest\x1a\'.flyteidl.admin.ExecutionCreateResponse\"%\x82\xd3\xe4\x93\x02\x1f:\x01*\"\x1a/api/v1/executions/recover\x12\x95\x01\n\x0cGetExecution\x12+.flyteidl.admin.WorkflowExecutionGetRequest\x1a\x19.flyteidl.admin.Execution\"=\x82\xd3\xe4\x93\x02\x37\x12\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xa4\x01\n\x0fUpdateExecution\x12&.flyteidl.admin.ExecutionUpdateRequest\x1a\'.flyteidl.admin.ExecutionUpdateResponse\"@\x82\xd3\xe4\x93\x02::\x01*\x1a\x35/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xb9\x01\n\x10GetExecutionData\x12/.flyteidl.admin.WorkflowExecutionGetDataRequest\x1a\x30.flyteidl.admin.WorkflowExecutionGetDataResponse\"B\x82\xd3\xe4\x93\x02<\x12:/api/v1/data/executions/{id.project}/{id.domain}/{id.name}\x12\x89\x01\n\x0eListExecutions\x12#.flyteidl.admin.ResourceListRequest\x1a\x1d.flyteidl.admin.ExecutionList\"3\x82\xd3\xe4\x93\x02-\x12+/api/v1/executions/{id.project}/{id.domain}\x12\xad\x01\n\x12TerminateExecution\x12).flyteidl.admin.ExecutionTerminateRequest\x1a*.flyteidl.admin.ExecutionTerminateResponse\"@\x82\xd3\xe4\x93\x02::\x01**5/api/v1/executions/{id.project}/{id.domain}/{id.name}\x12\xd2\x01\n\x10GetNodeExecution\x12\'.flyteidl.admin.NodeExecutionGetRequest\x1a\x1d.flyteidl.admin.NodeExecution\"v\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}\x12\xde\x01\n\x12ListNodeExecutions\x12(.flyteidl.admin.NodeExecutionListRequest\x1a!.flyteidl.admin.NodeExecutionList\"{\x82\xd3\xe4\x93\x02u\x12s/api/v1/node_executions/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x12\xa5\x04\n\x19ListNodeExecutionsForTask\x12/.flyteidl.admin.NodeExecutionForTaskListRequest\x1a!.flyteidl.admin.NodeExecutionList\"\xb3\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}\x12\xee\x01\n\x14GetNodeExecutionData\x12+.flyteidl.admin.NodeExecutionGetDataRequest\x1a,.flyteidl.admin.NodeExecutionGetDataResponse\"{\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}\x12\x7f\n\x0fRegisterProject\x12&.flyteidl.admin.ProjectRegisterRequest\x1a\'.flyteidl.admin.ProjectRegisterResponse\"\x1b\x82\xd3\xe4\x93\x02\x15:\x01*\"\x10/api/v1/projects\x12q\n\rUpdateProject\x12\x17.flyteidl.admin.Project\x1a%.flyteidl.admin.ProjectUpdateResponse\" \x82\xd3\xe4\x93\x02\x1a:\x01*\x1a\x15/api/v1/projects/{id}\x12\x66\n\x0cListProjects\x12\".flyteidl.admin.ProjectListRequest\x1a\x18.flyteidl.admin.Projects\"\x18\x82\xd3\xe4\x93\x02\x12\x12\x10/api/v1/projects\x12\x99\x01\n\x13\x43reateWorkflowEvent\x12-.flyteidl.admin.WorkflowExecutionEventRequest\x1a..flyteidl.admin.WorkflowExecutionEventResponse\"#\x82\xd3\xe4\x93\x02\x1d:\x01*\"\x18/api/v1/events/workflows\x12\x89\x01\n\x0f\x43reateNodeEvent\x12).flyteidl.admin.NodeExecutionEventRequest\x1a*.flyteidl.admin.NodeExecutionEventResponse\"\x1f\x82\xd3\xe4\x93\x02\x19:\x01*\"\x14/api/v1/events/nodes\x12\x89\x01\n\x0f\x43reateTaskEvent\x12).flyteidl.admin.TaskExecutionEventRequest\x1a*.flyteidl.admin.TaskExecutionEventResponse\"\x1f\x82\xd3\xe4\x93\x02\x19:\x01*\"\x14/api/v1/events/tasks\x12\x80\x03\n\x10GetTaskExecution\x12\'.flyteidl.admin.TaskExecutionGetRequest\x1a\x1d.flyteidl.admin.TaskExecution\"\xa3\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}\x12\x98\x02\n\x12ListTaskExecutions\x12(.flyteidl.admin.TaskExecutionListRequest\x1a!.flyteidl.admin.TaskExecutionList\"\xb4\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}\x12\x9c\x03\n\x14GetTaskExecutionData\x12+.flyteidl.admin.TaskExecutionGetDataRequest\x1a,.flyteidl.admin.TaskExecutionGetDataResponse\"\xa8\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}\x12\xe3\x01\n\x1dUpdateProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesUpdateRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesUpdateResponse\"U\x82\xd3\xe4\x93\x02O:\x01*\x1aJ/api/v1/project_domain_attributes/{attributes.project}/{attributes.domain}\x12\xc1\x01\n\x1aGetProjectDomainAttributes\x12\x31.flyteidl.admin.ProjectDomainAttributesGetRequest\x1a\x32.flyteidl.admin.ProjectDomainAttributesGetResponse\"<\x82\xd3\xe4\x93\x02\x36\x12\x34/api/v1/project_domain_attributes/{project}/{domain}\x12\xcd\x01\n\x1d\x44\x65leteProjectDomainAttributes\x12\x34.flyteidl.admin.ProjectDomainAttributesDeleteRequest\x1a\x35.flyteidl.admin.ProjectDomainAttributesDeleteResponse\"?\x82\xd3\xe4\x93\x02\x39:\x01**4/api/v1/project_domain_attributes/{project}/{domain}\x12\xb6\x01\n\x17UpdateProjectAttributes\x12..flyteidl.admin.ProjectAttributesUpdateRequest\x1a/.flyteidl.admin.ProjectAttributesUpdateResponse\":\x82\xd3\xe4\x93\x02\x34:\x01*\x1a//api/v1/project_attributes/{attributes.project}\x12\x9f\x01\n\x14GetProjectAttributes\x12+.flyteidl.admin.ProjectAttributesGetRequest\x1a,.flyteidl.admin.ProjectAttributesGetResponse\",\x82\xd3\xe4\x93\x02&\x12$/api/v1/project_attributes/{project}\x12\xab\x01\n\x17\x44\x65leteProjectAttributes\x12..flyteidl.admin.ProjectAttributesDeleteRequest\x1a/.flyteidl.admin.ProjectAttributesDeleteResponse\"/\x82\xd3\xe4\x93\x02):\x01**$/api/v1/project_attributes/{project}\x12\xe4\x01\n\x18UpdateWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesUpdateRequest\x1a\x30.flyteidl.admin.WorkflowAttributesUpdateResponse\"e\x82\xd3\xe4\x93\x02_:\x01*\x1aZ/api/v1/workflow_attributes/{attributes.project}/{attributes.domain}/{attributes.workflow}\x12\xb7\x01\n\x15GetWorkflowAttributes\x12,.flyteidl.admin.WorkflowAttributesGetRequest\x1a-.flyteidl.admin.WorkflowAttributesGetResponse\"A\x82\xd3\xe4\x93\x02;\x12\x39/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x12\xc3\x01\n\x18\x44\x65leteWorkflowAttributes\x12/.flyteidl.admin.WorkflowAttributesDeleteRequest\x1a\x30.flyteidl.admin.WorkflowAttributesDeleteResponse\"D\x82\xd3\xe4\x93\x02>:\x01**9/api/v1/workflow_attributes/{project}/{domain}/{workflow}\x12\xa0\x01\n\x17ListMatchableAttributes\x12..flyteidl.admin.ListMatchableAttributesRequest\x1a/.flyteidl.admin.ListMatchableAttributesResponse\"$\x82\xd3\xe4\x93\x02\x1e\x12\x1c/api/v1/matchable_attributes\x12\x9f\x01\n\x11ListNamedEntities\x12&.flyteidl.admin.NamedEntityListRequest\x1a\x1f.flyteidl.admin.NamedEntityList\"A\x82\xd3\xe4\x93\x02;\x12\x39/api/v1/named_entities/{resource_type}/{project}/{domain}\x12\xa7\x01\n\x0eGetNamedEntity\x12%.flyteidl.admin.NamedEntityGetRequest\x1a\x1b.flyteidl.admin.NamedEntity\"Q\x82\xd3\xe4\x93\x02K\x12I/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12\xbe\x01\n\x11UpdateNamedEntity\x12(.flyteidl.admin.NamedEntityUpdateRequest\x1a).flyteidl.admin.NamedEntityUpdateResponse\"T\x82\xd3\xe4\x93\x02N:\x01*\x1aI/api/v1/named_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12l\n\nGetVersion\x12!.flyteidl.admin.GetVersionRequest\x1a\".flyteidl.admin.GetVersionResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/api/v1/version\x12\xc4\x01\n\x14GetDescriptionEntity\x12 .flyteidl.admin.ObjectGetRequest\x1a!.flyteidl.admin.DescriptionEntity\"g\x82\xd3\xe4\x93\x02\x61\x12_/api/v1/description_entities/{id.resource_type}/{id.project}/{id.domain}/{id.name}/{id.version}\x12\x92\x02\n\x17ListDescriptionEntities\x12,.flyteidl.admin.DescriptionEntityListRequest\x1a%.flyteidl.admin.DescriptionEntityList\"\xa1\x01\x82\xd3\xe4\x93\x02\x9a\x01ZG\x12\x45/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}\x12O/api/v1/description_entities/{resource_type}/{id.project}/{id.domain}/{id.name}\x12\xc5\x01\n\x13GetExecutionMetrics\x12\x32.flyteidl.admin.WorkflowExecutionGetMetricsRequest\x1a\x33.flyteidl.admin.WorkflowExecutionGetMetricsResponse\"E\x82\xd3\xe4\x93\x02?\x12=/api/v1/metrics/executions/{id.project}/{id.domain}/{id.name}B\xc2\x01\n\x14\x63om.flyteidl.serviceB\nAdminProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -37,7 +37,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\nAdminProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\nAdminProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
   _ADMINSERVICE.methods_by_name['CreateTask']._options = None
   _ADMINSERVICE.methods_by_name['CreateTask']._serialized_options = b'\202\323\344\223\002\022:\001*\"\r/api/v1/tasks'
   _ADMINSERVICE.methods_by_name['GetTask']._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/service/agent_pb2.py b/flyteidl/gen/pb_python/flyteidl/service/agent_pb2.py
index f4510ca2f2..8227bdc438 100644
--- a/flyteidl/gen/pb_python/flyteidl/service/agent_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/service/agent_pb2.py
@@ -14,7 +14,7 @@
 from flyteidl.admin import agent_pb2 as flyteidl_dot_admin_dot_agent__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/service/agent.proto\x12\x10\x66lyteidl.service\x1a\x1a\x66lyteidl/admin/agent.proto2\x8f\x02\n\x11\x41syncAgentService\x12U\n\nCreateTask\x12!.flyteidl.admin.CreateTaskRequest\x1a\".flyteidl.admin.CreateTaskResponse\"\x00\x12L\n\x07GetTask\x12\x1e.flyteidl.admin.GetTaskRequest\x1a\x1f.flyteidl.admin.GetTaskResponse\"\x00\x12U\n\nDeleteTask\x12!.flyteidl.admin.DeleteTaskRequest\x1a\".flyteidl.admin.DeleteTaskResponse\"\x00\x42\xbc\x01\n\x14\x63om.flyteidl.serviceB\nAgentProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1c\x66lyteidl/service/agent.proto\x12\x10\x66lyteidl.service\x1a\x1a\x66lyteidl/admin/agent.proto2\x8f\x02\n\x11\x41syncAgentService\x12U\n\nCreateTask\x12!.flyteidl.admin.CreateTaskRequest\x1a\".flyteidl.admin.CreateTaskResponse\"\x00\x12L\n\x07GetTask\x12\x1e.flyteidl.admin.GetTaskRequest\x1a\x1f.flyteidl.admin.GetTaskResponse\"\x00\x12U\n\nDeleteTask\x12!.flyteidl.admin.DeleteTaskRequest\x1a\".flyteidl.admin.DeleteTaskResponse\"\x00\x42\xc2\x01\n\x14\x63om.flyteidl.serviceB\nAgentProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\nAgentProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\nAgentProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
   _globals['_ASYNCAGENTSERVICE']._serialized_start=79
   _globals['_ASYNCAGENTSERVICE']._serialized_end=350
 # @@protoc_insertion_point(module_scope)
diff --git a/flyteidl/gen/pb_python/flyteidl/service/auth_pb2.py b/flyteidl/gen/pb_python/flyteidl/service/auth_pb2.py
index 256f34655a..b479042f27 100644
--- a/flyteidl/gen/pb_python/flyteidl/service/auth_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/service/auth_pb2.py
@@ -14,7 +14,7 @@
 from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x66lyteidl/service/auth.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\"\x17\n\x15OAuth2MetadataRequest\"\xa1\x04\n\x16OAuth2MetadataResponse\x12\x16\n\x06issuer\x18\x01 \x01(\tR\x06issuer\x12\x35\n\x16\x61uthorization_endpoint\x18\x02 \x01(\tR\x15\x61uthorizationEndpoint\x12%\n\x0etoken_endpoint\x18\x03 \x01(\tR\rtokenEndpoint\x12\x38\n\x18response_types_supported\x18\x04 \x03(\tR\x16responseTypesSupported\x12)\n\x10scopes_supported\x18\x05 \x03(\tR\x0fscopesSupported\x12P\n%token_endpoint_auth_methods_supported\x18\x06 \x03(\tR!tokenEndpointAuthMethodsSupported\x12\x19\n\x08jwks_uri\x18\x07 \x01(\tR\x07jwksUri\x12G\n code_challenge_methods_supported\x18\x08 \x03(\tR\x1d\x63odeChallengeMethodsSupported\x12\x32\n\x15grant_types_supported\x18\t \x03(\tR\x13grantTypesSupported\x12\x42\n\x1d\x64\x65vice_authorization_endpoint\x18\n \x01(\tR\x1b\x64\x65viceAuthorizationEndpoint\"\x1f\n\x1dPublicClientAuthConfigRequest\"\x86\x02\n\x1ePublicClientAuthConfigResponse\x12\x1b\n\tclient_id\x18\x01 \x01(\tR\x08\x63lientId\x12!\n\x0credirect_uri\x18\x02 \x01(\tR\x0bredirectUri\x12\x16\n\x06scopes\x18\x03 \x03(\tR\x06scopes\x12<\n\x1a\x61uthorization_metadata_key\x18\x04 \x01(\tR\x18\x61uthorizationMetadataKey\x12\x32\n\x15service_http_endpoint\x18\x05 \x01(\tR\x13serviceHttpEndpoint\x12\x1a\n\x08\x61udience\x18\x06 \x01(\tR\x08\x61udience2\xcd\x02\n\x13\x41uthMetadataService\x12\x97\x01\n\x11GetOAuth2Metadata\x12\'.flyteidl.service.OAuth2MetadataRequest\x1a(.flyteidl.service.OAuth2MetadataResponse\"/\x82\xd3\xe4\x93\x02)\x12\'/.well-known/oauth-authorization-server\x12\x9b\x01\n\x15GetPublicClientConfig\x12/.flyteidl.service.PublicClientAuthConfigRequest\x1a\x30.flyteidl.service.PublicClientAuthConfigResponse\"\x1f\x82\xd3\xe4\x93\x02\x19\x12\x17/config/v1/flyte_clientB\xbb\x01\n\x14\x63om.flyteidl.serviceB\tAuthProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x66lyteidl/service/auth.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\"\x17\n\x15OAuth2MetadataRequest\"\xa1\x04\n\x16OAuth2MetadataResponse\x12\x16\n\x06issuer\x18\x01 \x01(\tR\x06issuer\x12\x35\n\x16\x61uthorization_endpoint\x18\x02 \x01(\tR\x15\x61uthorizationEndpoint\x12%\n\x0etoken_endpoint\x18\x03 \x01(\tR\rtokenEndpoint\x12\x38\n\x18response_types_supported\x18\x04 \x03(\tR\x16responseTypesSupported\x12)\n\x10scopes_supported\x18\x05 \x03(\tR\x0fscopesSupported\x12P\n%token_endpoint_auth_methods_supported\x18\x06 \x03(\tR!tokenEndpointAuthMethodsSupported\x12\x19\n\x08jwks_uri\x18\x07 \x01(\tR\x07jwksUri\x12G\n code_challenge_methods_supported\x18\x08 \x03(\tR\x1d\x63odeChallengeMethodsSupported\x12\x32\n\x15grant_types_supported\x18\t \x03(\tR\x13grantTypesSupported\x12\x42\n\x1d\x64\x65vice_authorization_endpoint\x18\n \x01(\tR\x1b\x64\x65viceAuthorizationEndpoint\"\x1f\n\x1dPublicClientAuthConfigRequest\"\x86\x02\n\x1ePublicClientAuthConfigResponse\x12\x1b\n\tclient_id\x18\x01 \x01(\tR\x08\x63lientId\x12!\n\x0credirect_uri\x18\x02 \x01(\tR\x0bredirectUri\x12\x16\n\x06scopes\x18\x03 \x03(\tR\x06scopes\x12<\n\x1a\x61uthorization_metadata_key\x18\x04 \x01(\tR\x18\x61uthorizationMetadataKey\x12\x32\n\x15service_http_endpoint\x18\x05 \x01(\tR\x13serviceHttpEndpoint\x12\x1a\n\x08\x61udience\x18\x06 \x01(\tR\x08\x61udience2\xcd\x02\n\x13\x41uthMetadataService\x12\x97\x01\n\x11GetOAuth2Metadata\x12\'.flyteidl.service.OAuth2MetadataRequest\x1a(.flyteidl.service.OAuth2MetadataResponse\"/\x82\xd3\xe4\x93\x02)\x12\'/.well-known/oauth-authorization-server\x12\x9b\x01\n\x15GetPublicClientConfig\x12/.flyteidl.service.PublicClientAuthConfigRequest\x1a\x30.flyteidl.service.PublicClientAuthConfigResponse\"\x1f\x82\xd3\xe4\x93\x02\x19\x12\x17/config/v1/flyte_clientB\xc1\x01\n\x14\x63om.flyteidl.serviceB\tAuthProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -22,7 +22,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\tAuthProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\tAuthProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
   _AUTHMETADATASERVICE.methods_by_name['GetOAuth2Metadata']._options = None
   _AUTHMETADATASERVICE.methods_by_name['GetOAuth2Metadata']._serialized_options = b'\202\323\344\223\002)\022\'/.well-known/oauth-authorization-server'
   _AUTHMETADATASERVICE.methods_by_name['GetPublicClientConfig']._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/service/dataproxy_pb2.py b/flyteidl/gen/pb_python/flyteidl/service/dataproxy_pb2.py
index a8f41072b7..6dcd26a0b7 100644
--- a/flyteidl/gen/pb_python/flyteidl/service/dataproxy_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/service/dataproxy_pb2.py
@@ -18,7 +18,7 @@
 from flyteidl.core import literals_pb2 as flyteidl_dot_core_dot_literals__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n flyteidl/service/dataproxy.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\"\x97\x01\n\x1c\x43reateUploadLocationResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\x12\x1d\n\nnative_url\x18\x02 \x01(\tR\tnativeUrl\x12\x39\n\nexpires_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\texpiresAt\"\xeb\x01\n\x1b\x43reateUploadLocationRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x1a\n\x08\x66ilename\x18\x03 \x01(\tR\x08\x66ilename\x12\x38\n\nexpires_in\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\texpiresIn\x12\x1f\n\x0b\x63ontent_md5\x18\x05 \x01(\x0cR\ncontentMd5\x12#\n\rfilename_root\x18\x06 \x01(\tR\x0c\x66ilenameRoot\"|\n\x1d\x43reateDownloadLocationRequest\x12\x1d\n\nnative_url\x18\x01 \x01(\tR\tnativeUrl\x12\x38\n\nexpires_in\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationR\texpiresIn:\x02\x18\x01\"~\n\x1e\x43reateDownloadLocationResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\x12\x39\n\nexpires_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\texpiresAt:\x02\x18\x01\"\xfa\x01\n\x19\x43reateDownloadLinkRequest\x12\x43\n\rartifact_type\x18\x01 \x01(\x0e\x32\x1e.flyteidl.service.ArtifactTypeR\x0c\x61rtifactType\x12\x38\n\nexpires_in\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationR\texpiresIn\x12T\n\x11node_execution_id\x18\x03 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierH\x00R\x0fnodeExecutionIdB\x08\n\x06source\"\xc7\x01\n\x1a\x43reateDownloadLinkResponse\x12!\n\nsigned_url\x18\x01 \x03(\tB\x02\x18\x01R\tsignedUrl\x12=\n\nexpires_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02\x18\x01R\texpiresAt\x12G\n\x0fpre_signed_urls\x18\x03 \x01(\x0b\x32\x1f.flyteidl.service.PreSignedURLsR\rpreSignedUrls\"i\n\rPreSignedURLs\x12\x1d\n\nsigned_url\x18\x01 \x03(\tR\tsignedUrl\x12\x39\n\nexpires_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\texpiresAt\"-\n\x0eGetDataRequest\x12\x1b\n\tflyte_url\x18\x01 \x01(\tR\x08\x66lyteUrl\"\xd6\x01\n\x0fGetDataResponse\x12<\n\x0bliteral_map\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\nliteralMap\x12I\n\x0fpre_signed_urls\x18\x02 \x01(\x0b\x32\x1f.flyteidl.service.PreSignedURLsH\x00R\rpreSignedUrls\x12\x32\n\x07literal\x18\x03 \x01(\x0b\x32\x16.flyteidl.core.LiteralH\x00R\x07literalB\x06\n\x04\x64\x61ta*C\n\x0c\x41rtifactType\x12\x1b\n\x17\x41RTIFACT_TYPE_UNDEFINED\x10\x00\x12\x16\n\x12\x41RTIFACT_TYPE_DECK\x10\x01\x32\xe2\x04\n\x10\x44\x61taProxyService\x12\xa0\x01\n\x14\x43reateUploadLocation\x12-.flyteidl.service.CreateUploadLocationRequest\x1a..flyteidl.service.CreateUploadLocationResponse\")\x82\xd3\xe4\x93\x02#:\x01*\"\x1e/api/v1/dataproxy/artifact_urn\x12\xa6\x01\n\x16\x43reateDownloadLocation\x12/.flyteidl.service.CreateDownloadLocationRequest\x1a\x30.flyteidl.service.CreateDownloadLocationResponse\")\x88\x02\x01\x82\xd3\xe4\x93\x02 \x12\x1e/api/v1/dataproxy/artifact_urn\x12\x9b\x01\n\x12\x43reateDownloadLink\x12+.flyteidl.service.CreateDownloadLinkRequest\x1a,.flyteidl.service.CreateDownloadLinkResponse\"*\x82\xd3\xe4\x93\x02$:\x01*\"\x1f/api/v1/dataproxy/artifact_link\x12\x64\n\x07GetData\x12 .flyteidl.service.GetDataRequest\x1a!.flyteidl.service.GetDataResponse\"\x14\x82\xd3\xe4\x93\x02\x0e\x12\x0c/api/v1/dataB\xc0\x01\n\x14\x63om.flyteidl.serviceB\x0e\x44\x61taproxyProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n flyteidl/service/dataproxy.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\"\x97\x01\n\x1c\x43reateUploadLocationResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\x12\x1d\n\nnative_url\x18\x02 \x01(\tR\tnativeUrl\x12\x39\n\nexpires_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\texpiresAt\"\xeb\x01\n\x1b\x43reateUploadLocationRequest\x12\x18\n\x07project\x18\x01 \x01(\tR\x07project\x12\x16\n\x06\x64omain\x18\x02 \x01(\tR\x06\x64omain\x12\x1a\n\x08\x66ilename\x18\x03 \x01(\tR\x08\x66ilename\x12\x38\n\nexpires_in\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationR\texpiresIn\x12\x1f\n\x0b\x63ontent_md5\x18\x05 \x01(\x0cR\ncontentMd5\x12#\n\rfilename_root\x18\x06 \x01(\tR\x0c\x66ilenameRoot\"|\n\x1d\x43reateDownloadLocationRequest\x12\x1d\n\nnative_url\x18\x01 \x01(\tR\tnativeUrl\x12\x38\n\nexpires_in\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationR\texpiresIn:\x02\x18\x01\"~\n\x1e\x43reateDownloadLocationResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\x12\x39\n\nexpires_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\texpiresAt:\x02\x18\x01\"\xfa\x01\n\x19\x43reateDownloadLinkRequest\x12\x43\n\rartifact_type\x18\x01 \x01(\x0e\x32\x1e.flyteidl.service.ArtifactTypeR\x0c\x61rtifactType\x12\x38\n\nexpires_in\x18\x02 \x01(\x0b\x32\x19.google.protobuf.DurationR\texpiresIn\x12T\n\x11node_execution_id\x18\x03 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierH\x00R\x0fnodeExecutionIdB\x08\n\x06source\"\xc7\x01\n\x1a\x43reateDownloadLinkResponse\x12!\n\nsigned_url\x18\x01 \x03(\tB\x02\x18\x01R\tsignedUrl\x12=\n\nexpires_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02\x18\x01R\texpiresAt\x12G\n\x0fpre_signed_urls\x18\x03 \x01(\x0b\x32\x1f.flyteidl.service.PreSignedURLsR\rpreSignedUrls\"i\n\rPreSignedURLs\x12\x1d\n\nsigned_url\x18\x01 \x03(\tR\tsignedUrl\x12\x39\n\nexpires_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\texpiresAt\"-\n\x0eGetDataRequest\x12\x1b\n\tflyte_url\x18\x01 \x01(\tR\x08\x66lyteUrl\"\xd6\x01\n\x0fGetDataResponse\x12<\n\x0bliteral_map\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\nliteralMap\x12I\n\x0fpre_signed_urls\x18\x02 \x01(\x0b\x32\x1f.flyteidl.service.PreSignedURLsH\x00R\rpreSignedUrls\x12\x32\n\x07literal\x18\x03 \x01(\x0b\x32\x16.flyteidl.core.LiteralH\x00R\x07literalB\x06\n\x04\x64\x61ta*C\n\x0c\x41rtifactType\x12\x1b\n\x17\x41RTIFACT_TYPE_UNDEFINED\x10\x00\x12\x16\n\x12\x41RTIFACT_TYPE_DECK\x10\x01\x32\xe2\x04\n\x10\x44\x61taProxyService\x12\xa0\x01\n\x14\x43reateUploadLocation\x12-.flyteidl.service.CreateUploadLocationRequest\x1a..flyteidl.service.CreateUploadLocationResponse\")\x82\xd3\xe4\x93\x02#:\x01*\"\x1e/api/v1/dataproxy/artifact_urn\x12\xa6\x01\n\x16\x43reateDownloadLocation\x12/.flyteidl.service.CreateDownloadLocationRequest\x1a\x30.flyteidl.service.CreateDownloadLocationResponse\")\x88\x02\x01\x82\xd3\xe4\x93\x02 \x12\x1e/api/v1/dataproxy/artifact_urn\x12\x9b\x01\n\x12\x43reateDownloadLink\x12+.flyteidl.service.CreateDownloadLinkRequest\x1a,.flyteidl.service.CreateDownloadLinkResponse\"*\x82\xd3\xe4\x93\x02$:\x01*\"\x1f/api/v1/dataproxy/artifact_link\x12\x64\n\x07GetData\x12 .flyteidl.service.GetDataRequest\x1a!.flyteidl.service.GetDataResponse\"\x14\x82\xd3\xe4\x93\x02\x0e\x12\x0c/api/v1/dataB\xc6\x01\n\x14\x63om.flyteidl.serviceB\x0e\x44\x61taproxyProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -26,7 +26,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\016DataproxyProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\016DataproxyProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
   _CREATEDOWNLOADLOCATIONREQUEST._options = None
   _CREATEDOWNLOADLOCATIONREQUEST._serialized_options = b'\030\001'
   _CREATEDOWNLOADLOCATIONRESPONSE._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/service/external_plugin_service_pb2.py b/flyteidl/gen/pb_python/flyteidl/service/external_plugin_service_pb2.py
index a6558228d5..4de8daabf8 100644
--- a/flyteidl/gen/pb_python/flyteidl/service/external_plugin_service_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/service/external_plugin_service_pb2.py
@@ -16,7 +16,7 @@
 from flyteidl.core import interface_pb2 as flyteidl_dot_core_dot_interface__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.flyteidl/service/external_plugin_service.proto\x12\x10\x66lyteidl.service\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x1d\x66lyteidl/core/interface.proto\"\xa8\x01\n\x11TaskCreateRequest\x12\x31\n\x06inputs\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x06inputs\x12\x37\n\x08template\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplateR\x08template\x12#\n\routput_prefix\x18\x03 \x01(\tR\x0coutputPrefix:\x02\x18\x01\"/\n\x12TaskCreateResponse\x12\x15\n\x06job_id\x18\x01 \x01(\tR\x05jobId:\x02\x18\x01\"H\n\x0eTaskGetRequest\x12\x1b\n\ttask_type\x18\x01 \x01(\tR\x08taskType\x12\x15\n\x06job_id\x18\x02 \x01(\tR\x05jobId:\x02\x18\x01\"y\n\x0fTaskGetResponse\x12-\n\x05state\x18\x01 \x01(\x0e\x32\x17.flyteidl.service.StateR\x05state\x12\x33\n\x07outputs\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x07outputs:\x02\x18\x01\"K\n\x11TaskDeleteRequest\x12\x1b\n\ttask_type\x18\x01 \x01(\tR\x08taskType\x12\x15\n\x06job_id\x18\x02 \x01(\tR\x05jobId:\x02\x18\x01\"\x18\n\x12TaskDeleteResponse:\x02\x18\x01*b\n\x05State\x12\x15\n\x11RETRYABLE_FAILURE\x10\x00\x12\x15\n\x11PERMANENT_FAILURE\x10\x01\x12\x0b\n\x07PENDING\x10\x02\x12\x0b\n\x07RUNNING\x10\x03\x12\r\n\tSUCCEEDED\x10\x04\x1a\x02\x18\x01\x32\xa8\x02\n\x15\x45xternalPluginService\x12\\\n\nCreateTask\x12#.flyteidl.service.TaskCreateRequest\x1a$.flyteidl.service.TaskCreateResponse\"\x03\x88\x02\x01\x12S\n\x07GetTask\x12 .flyteidl.service.TaskGetRequest\x1a!.flyteidl.service.TaskGetResponse\"\x03\x88\x02\x01\x12\\\n\nDeleteTask\x12#.flyteidl.service.TaskDeleteRequest\x1a$.flyteidl.service.TaskDeleteResponse\"\x03\x88\x02\x01\x42\xcc\x01\n\x14\x63om.flyteidl.serviceB\x1a\x45xternalPluginServiceProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.flyteidl/service/external_plugin_service.proto\x12\x10\x66lyteidl.service\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x19\x66lyteidl/core/tasks.proto\x1a\x1d\x66lyteidl/core/interface.proto\"\xa8\x01\n\x11TaskCreateRequest\x12\x31\n\x06inputs\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x06inputs\x12\x37\n\x08template\x18\x02 \x01(\x0b\x32\x1b.flyteidl.core.TaskTemplateR\x08template\x12#\n\routput_prefix\x18\x03 \x01(\tR\x0coutputPrefix:\x02\x18\x01\"/\n\x12TaskCreateResponse\x12\x15\n\x06job_id\x18\x01 \x01(\tR\x05jobId:\x02\x18\x01\"H\n\x0eTaskGetRequest\x12\x1b\n\ttask_type\x18\x01 \x01(\tR\x08taskType\x12\x15\n\x06job_id\x18\x02 \x01(\tR\x05jobId:\x02\x18\x01\"y\n\x0fTaskGetResponse\x12-\n\x05state\x18\x01 \x01(\x0e\x32\x17.flyteidl.service.StateR\x05state\x12\x33\n\x07outputs\x18\x02 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x07outputs:\x02\x18\x01\"K\n\x11TaskDeleteRequest\x12\x1b\n\ttask_type\x18\x01 \x01(\tR\x08taskType\x12\x15\n\x06job_id\x18\x02 \x01(\tR\x05jobId:\x02\x18\x01\"\x18\n\x12TaskDeleteResponse:\x02\x18\x01*b\n\x05State\x12\x15\n\x11RETRYABLE_FAILURE\x10\x00\x12\x15\n\x11PERMANENT_FAILURE\x10\x01\x12\x0b\n\x07PENDING\x10\x02\x12\x0b\n\x07RUNNING\x10\x03\x12\r\n\tSUCCEEDED\x10\x04\x1a\x02\x18\x01\x32\xa8\x02\n\x15\x45xternalPluginService\x12\\\n\nCreateTask\x12#.flyteidl.service.TaskCreateRequest\x1a$.flyteidl.service.TaskCreateResponse\"\x03\x88\x02\x01\x12S\n\x07GetTask\x12 .flyteidl.service.TaskGetRequest\x1a!.flyteidl.service.TaskGetResponse\"\x03\x88\x02\x01\x12\\\n\nDeleteTask\x12#.flyteidl.service.TaskDeleteRequest\x1a$.flyteidl.service.TaskDeleteResponse\"\x03\x88\x02\x01\x42\xd2\x01\n\x14\x63om.flyteidl.serviceB\x1a\x45xternalPluginServiceProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -24,7 +24,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\032ExternalPluginServiceProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\032ExternalPluginServiceProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
   _STATE._options = None
   _STATE._serialized_options = b'\030\001'
   _TASKCREATEREQUEST._options = None
diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_launch_plan_spec.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_launch_plan_spec.py
index 8eb1aed4fd..5fea5a8e2b 100644
--- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_launch_plan_spec.py
+++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_launch_plan_spec.py
@@ -181,7 +181,7 @@ def entity_metadata(self, entity_metadata):
     def default_inputs(self):
         """Gets the default_inputs of this AdminLaunchPlanSpec.  # noqa: E501
 
-        Input values to be passed for the execution. These can be overriden when an execution is created with this launch plan.  # noqa: E501
+        Input values to be passed for the execution. These can be overridden when an execution is created with this launch plan.  # noqa: E501
 
         :return: The default_inputs of this AdminLaunchPlanSpec.  # noqa: E501
         :rtype: CoreParameterMap
@@ -192,7 +192,7 @@ def default_inputs(self):
     def default_inputs(self, default_inputs):
         """Sets the default_inputs of this AdminLaunchPlanSpec.
 
-        Input values to be passed for the execution. These can be overriden when an execution is created with this launch plan.  # noqa: E501
+        Input values to be passed for the execution. These can be overridden when an execution is created with this launch plan.  # noqa: E501
 
         :param default_inputs: The default_inputs of this AdminLaunchPlanSpec.  # noqa: E501
         :type: CoreParameterMap
@@ -204,7 +204,7 @@ def default_inputs(self, default_inputs):
     def fixed_inputs(self):
         """Gets the fixed_inputs of this AdminLaunchPlanSpec.  # noqa: E501
 
-        Fixed, non-overridable inputs for the Launch Plan. These can not be overriden when an execution is created with this launch plan.  # noqa: E501
+        Fixed, non-overridable inputs for the Launch Plan. These can not be overridden when an execution is created with this launch plan.  # noqa: E501
 
         :return: The fixed_inputs of this AdminLaunchPlanSpec.  # noqa: E501
         :rtype: CoreLiteralMap
@@ -215,7 +215,7 @@ def fixed_inputs(self):
     def fixed_inputs(self, fixed_inputs):
         """Sets the fixed_inputs of this AdminLaunchPlanSpec.
 
-        Fixed, non-overridable inputs for the Launch Plan. These can not be overriden when an execution is created with this launch plan.  # noqa: E501
+        Fixed, non-overridable inputs for the Launch Plan. These can not be overridden when an execution is created with this launch plan.  # noqa: E501
 
         :param fixed_inputs: The fixed_inputs of this AdminLaunchPlanSpec.  # noqa: E501
         :type: CoreLiteralMap
diff --git a/flyteidl/gen/pb_python/flyteidl/service/identity_pb2.py b/flyteidl/gen/pb_python/flyteidl/service/identity_pb2.py
index a030b6ad66..238fd03d4d 100644
--- a/flyteidl/gen/pb_python/flyteidl/service/identity_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/service/identity_pb2.py
@@ -15,7 +15,7 @@
 from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x66lyteidl/service/identity.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x11\n\x0fUserInfoRequest\"\xa5\x02\n\x10UserInfoResponse\x12\x18\n\x07subject\x18\x01 \x01(\tR\x07subject\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12-\n\x12preferred_username\x18\x03 \x01(\tR\x11preferredUsername\x12\x1d\n\ngiven_name\x18\x04 \x01(\tR\tgivenName\x12\x1f\n\x0b\x66\x61mily_name\x18\x05 \x01(\tR\nfamilyName\x12\x14\n\x05\x65mail\x18\x06 \x01(\tR\x05\x65mail\x12\x18\n\x07picture\x18\x07 \x01(\tR\x07picture\x12\x44\n\x11\x61\x64\x64itional_claims\x18\x08 \x01(\x0b\x32\x17.google.protobuf.StructR\x10\x61\x64\x64itionalClaims2q\n\x0fIdentityService\x12^\n\x08UserInfo\x12!.flyteidl.service.UserInfoRequest\x1a\".flyteidl.service.UserInfoResponse\"\x0b\x82\xd3\xe4\x93\x02\x05\x12\x03/meB\xbf\x01\n\x14\x63om.flyteidl.serviceB\rIdentityProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x66lyteidl/service/identity.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x11\n\x0fUserInfoRequest\"\xa5\x02\n\x10UserInfoResponse\x12\x18\n\x07subject\x18\x01 \x01(\tR\x07subject\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12-\n\x12preferred_username\x18\x03 \x01(\tR\x11preferredUsername\x12\x1d\n\ngiven_name\x18\x04 \x01(\tR\tgivenName\x12\x1f\n\x0b\x66\x61mily_name\x18\x05 \x01(\tR\nfamilyName\x12\x14\n\x05\x65mail\x18\x06 \x01(\tR\x05\x65mail\x12\x18\n\x07picture\x18\x07 \x01(\tR\x07picture\x12\x44\n\x11\x61\x64\x64itional_claims\x18\x08 \x01(\x0b\x32\x17.google.protobuf.StructR\x10\x61\x64\x64itionalClaims2q\n\x0fIdentityService\x12^\n\x08UserInfo\x12!.flyteidl.service.UserInfoRequest\x1a\".flyteidl.service.UserInfoResponse\"\x0b\x82\xd3\xe4\x93\x02\x05\x12\x03/meB\xc5\x01\n\x14\x63om.flyteidl.serviceB\rIdentityProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,7 +23,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\rIdentityProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\rIdentityProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
   _IDENTITYSERVICE.methods_by_name['UserInfo']._options = None
   _IDENTITYSERVICE.methods_by_name['UserInfo']._serialized_options = b'\202\323\344\223\002\005\022\003/me'
   _globals['_USERINFOREQUEST']._serialized_start=113
diff --git a/flyteidl/gen/pb_python/flyteidl/service/signal_pb2.py b/flyteidl/gen/pb_python/flyteidl/service/signal_pb2.py
index 193e7d21db..20e9fe2071 100644
--- a/flyteidl/gen/pb_python/flyteidl/service/signal_pb2.py
+++ b/flyteidl/gen/pb_python/flyteidl/service/signal_pb2.py
@@ -15,7 +15,7 @@
 from flyteidl.admin import signal_pb2 as flyteidl_dot_admin_dot_signal__pb2
 
 
-DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/service/signal.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1b\x66lyteidl/admin/signal.proto2\x9a\x03\n\rSignalService\x12W\n\x11GetOrCreateSignal\x12(.flyteidl.admin.SignalGetOrCreateRequest\x1a\x16.flyteidl.admin.Signal\"\x00\x12\xc1\x01\n\x0bListSignals\x12!.flyteidl.admin.SignalListRequest\x1a\x1a.flyteidl.admin.SignalList\"s\x82\xd3\xe4\x93\x02m\x12k/api/v1/signals/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x12l\n\tSetSignal\x12 .flyteidl.admin.SignalSetRequest\x1a!.flyteidl.admin.SignalSetResponse\"\x1a\x82\xd3\xe4\x93\x02\x14:\x01*\"\x0f/api/v1/signalsB\xbd\x01\n\x14\x63om.flyteidl.serviceB\x0bSignalProtoP\x01Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
+DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x66lyteidl/service/signal.proto\x12\x10\x66lyteidl.service\x1a\x1cgoogle/api/annotations.proto\x1a\x1b\x66lyteidl/admin/signal.proto2\x9a\x03\n\rSignalService\x12W\n\x11GetOrCreateSignal\x12(.flyteidl.admin.SignalGetOrCreateRequest\x1a\x16.flyteidl.admin.Signal\"\x00\x12\xc1\x01\n\x0bListSignals\x12!.flyteidl.admin.SignalListRequest\x1a\x1a.flyteidl.admin.SignalList\"s\x82\xd3\xe4\x93\x02m\x12k/api/v1/signals/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}\x12l\n\tSetSignal\x12 .flyteidl.admin.SignalSetRequest\x1a!.flyteidl.admin.SignalSetResponse\"\x1a\x82\xd3\xe4\x93\x02\x14:\x01*\"\x0f/api/v1/signalsB\xc3\x01\n\x14\x63om.flyteidl.serviceB\x0bSignalProtoP\x01Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\xa2\x02\x03\x46SX\xaa\x02\x10\x46lyteidl.Service\xca\x02\x10\x46lyteidl\\Service\xe2\x02\x1c\x46lyteidl\\Service\\GPBMetadata\xea\x02\x11\x46lyteidl::Serviceb\x06proto3')
 
 _globals = globals()
 _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,7 +23,7 @@
 if _descriptor._USE_C_DESCRIPTORS == False:
 
   DESCRIPTOR._options = None
-  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\013SignalProtoP\001Z7github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
+  DESCRIPTOR._serialized_options = b'\n\024com.flyteidl.serviceB\013SignalProtoP\001Z=github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service\242\002\003FSX\252\002\020Flyteidl.Service\312\002\020Flyteidl\\Service\342\002\034Flyteidl\\Service\\GPBMetadata\352\002\021Flyteidl::Service'
   _SIGNALSERVICE.methods_by_name['ListSignals']._options = None
   _SIGNALSERVICE.methods_by_name['ListSignals']._serialized_options = b'\202\323\344\223\002m\022k/api/v1/signals/{workflow_execution_id.project}/{workflow_execution_id.domain}/{workflow_execution_id.name}'
   _SIGNALSERVICE.methods_by_name['SetSignal']._options = None
diff --git a/flyteidl/gen/pb_rust/datacatalog.rs b/flyteidl/gen/pb_rust/datacatalog.rs
index 01464d01c8..383db44fe3 100644
--- a/flyteidl/gen/pb_rust/datacatalog.rs
+++ b/flyteidl/gen/pb_rust/datacatalog.rs
@@ -187,7 +187,7 @@ pub struct ReservationId {
     #[prost(string, tag="2")]
     pub tag_name: ::prost::alloc::string::String,
 }
-/// Try to acquire or extend an artifact reservation. If an active reservation exists, retreive that instance.
+/// Try to acquire or extend an artifact reservation. If an active reservation exists, retrieve that instance.
 #[allow(clippy::derive_partial_eq_without_eq)]
 #[derive(Clone, PartialEq, ::prost::Message)]
 pub struct GetOrExtendReservationRequest {
diff --git a/flyteidl/gen/pb_rust/flyteidl.admin.rs b/flyteidl/gen/pb_rust/flyteidl.admin.rs
index a6acaa9277..b73776a730 100644
--- a/flyteidl/gen/pb_rust/flyteidl.admin.rs
+++ b/flyteidl/gen/pb_rust/flyteidl.admin.rs
@@ -1434,11 +1434,11 @@ pub struct LaunchPlanSpec {
     #[prost(message, optional, tag="2")]
     pub entity_metadata: ::core::option::Option,
     /// Input values to be passed for the execution.
-    /// These can be overriden when an execution is created with this launch plan.
+    /// These can be overridden when an execution is created with this launch plan.
     #[prost(message, optional, tag="3")]
     pub default_inputs: ::core::option::Option,
     /// Fixed, non-overridable inputs for the Launch Plan.
-    /// These can not be overriden when an execution is created with this launch plan.
+    /// These can not be overridden when an execution is created with this launch plan.
     #[prost(message, optional, tag="4")]
     pub fixed_inputs: ::core::option::Option,
     /// String to indicate the role to use to execute the workflow underneath
@@ -2412,7 +2412,7 @@ pub struct ProjectDomainAttributesDeleteRequest {
 #[derive(Clone, PartialEq, ::prost::Message)]
 pub struct ProjectDomainAttributesDeleteResponse {
 }
-/// SignalGetOrCreateRequest represents a request structure to retrive or create a signal.
+/// SignalGetOrCreateRequest represents a request structure to retrieve or create a signal.
 /// See :ref:`ref_flyteidl.admin.Signal` for more details
 #[allow(clippy::derive_partial_eq_without_eq)]
 #[derive(Clone, PartialEq, ::prost::Message)]
@@ -2871,7 +2871,7 @@ pub struct WorkflowErrorExistsIdenticalStructure {
     #[prost(message, optional, tag="1")]
     pub id: ::core::option::Option,
 }
-/// When a CreateWorkflowRequest failes due to matching id
+/// When a CreateWorkflowRequest fails due to matching id
 #[allow(clippy::derive_partial_eq_without_eq)]
 #[derive(Clone, PartialEq, ::prost::Message)]
 pub struct CreateWorkflowFailureReason {
diff --git a/flyteidl/gen/pb_rust/flyteidl.service.rs b/flyteidl/gen/pb_rust/flyteidl.service.rs
index 197e99055a..c427170333 100644
--- a/flyteidl/gen/pb_rust/flyteidl.service.rs
+++ b/flyteidl/gen/pb_rust/flyteidl.service.rs
@@ -204,7 +204,7 @@ pub struct PreSignedUrLs {
 #[derive(Clone, PartialEq, ::prost::Message)]
 pub struct GetDataRequest {
     /// A unique identifier in the form of flyte:// that uniquely, for a given Flyte
-    /// backend, identifies a Flyte artifact (\[i\]nput, \[o\]utput, flyte \[d\]eck, etc.).
+    /// backend, identifies a Flyte artifact (\[i\]nput, \[o\]output, flyte \[d\]eck, etc.).
     /// e.g. flyte://v1/proj/development/execid/n2/0/i (for 0th task execution attempt input)
     ///       flyte://v1/proj/development/execid/n2/i (for node execution input)
     ///       flyte://v1/proj/development/execid/n2/o/o3 (the o3 output of the second node)
diff --git a/flyteidl/generate_protos.sh b/flyteidl/generate_protos.sh
index 2cb240a0dd..02f75f1545 100755
--- a/flyteidl/generate_protos.sh
+++ b/flyteidl/generate_protos.sh
@@ -86,7 +86,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/flyteorg/flyteidl/gen/* gen/
+cp -r gen/pb-go/github.com/flyteorg/flyte/flyteidl/gen/* gen/
 rm -rf gen/pb-go/github.com
 
 # Copy the validate.py protos.
diff --git a/flyteidl/go.mod b/flyteidl/go.mod
index 49543699a9..cab3731451 100644
--- a/flyteidl/go.mod
+++ b/flyteidl/go.mod
@@ -1,4 +1,4 @@
-module github.com/flyteorg/flyteidl
+module github.com/flyteorg/flyte/flyteidl
 
 go 1.19
 
@@ -6,6 +6,7 @@ require (
 	github.com/antihax/optional v1.0.0
 	github.com/flyteorg/flyte/flytestdlib v0.0.0-00010101000000-000000000000
 	github.com/go-test/deep v1.0.7
+	github.com/golang/glog v1.1.0
 	github.com/golang/protobuf v1.5.3
 	github.com/grpc-ecosystem/go-grpc-middleware v1.1.0
 	github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
@@ -18,6 +19,7 @@ require (
 	github.com/stretchr/testify v1.8.4
 	golang.org/x/net v0.9.0
 	golang.org/x/oauth2 v0.7.0
+	google.golang.org/api v0.114.0
 	google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1
 	google.golang.org/grpc v1.56.1
 	k8s.io/apimachinery v0.20.2
@@ -58,6 +60,7 @@ require (
 	github.com/googleapis/gax-go/v2 v2.7.1 // indirect
 	github.com/inconshreveable/mousetrap v1.0.0 // indirect
 	github.com/jmespath/go-jmespath v0.4.0 // indirect
+	github.com/kr/pretty v0.2.1 // indirect
 	github.com/mattn/go-colorable v0.1.12 // indirect
 	github.com/mattn/go-isatty v0.0.14 // indirect
 	github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
@@ -76,10 +79,8 @@ require (
 	golang.org/x/text v0.9.0 // indirect
 	golang.org/x/time v0.1.0 // indirect
 	golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
-	google.golang.org/api v0.114.0 // indirect
 	google.golang.org/appengine v1.6.7 // indirect
 	google.golang.org/protobuf v1.30.0 // indirect
-	gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
 	gopkg.in/yaml.v2 v2.4.0 // indirect
 	gopkg.in/yaml.v3 v3.0.1 // indirect
 	k8s.io/client-go v0.0.0-20210217172142-7279fc64d847 // indirect
@@ -95,8 +96,8 @@ retract (
 replace (
 	github.com/flyteorg/flyte/datacatalog => ../datacatalog
 	github.com/flyteorg/flyte/flyteadmin => ../flyteadmin
+	github.com/flyteorg/flyte/flyteidl => ../flyteidl
 	github.com/flyteorg/flyte/flyteplugins => ../flyteplugins
 	github.com/flyteorg/flyte/flytepropeller => ../flytepropeller
 	github.com/flyteorg/flyte/flytestdlib => ../flytestdlib
-	github.com/flyteorg/flyteidl => ../flyteidl
 )
diff --git a/flyteidl/go.sum b/flyteidl/go.sum
index 27fadc80a3..46a0f9be44 100644
--- a/flyteidl/go.sum
+++ b/flyteidl/go.sum
@@ -167,6 +167,8 @@ github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzw
 github.com/golang-jwt/jwt/v4 v4.4.1 h1:pC5DB52sCeK48Wlb9oPcdhnjkz1TKt1D/P7WKJ0kUcQ=
 github.com/golang-jwt/jwt/v4 v4.4.1/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0=
 github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
+github.com/golang/glog v1.1.0 h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE=
+github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ=
 github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/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/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
@@ -700,9 +702,8 @@ google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw
 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/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
+gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo=
 gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
-gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
-gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
 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.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw=
diff --git a/flyteidl/protos/flyteidl/admin/agent.proto b/flyteidl/protos/flyteidl/admin/agent.proto
index e9a4849172..d85d4d9a9e 100644
--- a/flyteidl/protos/flyteidl/admin/agent.proto
+++ b/flyteidl/protos/flyteidl/admin/agent.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/core/literals.proto";
 import "flyteidl/core/tasks.proto";
diff --git a/flyteidl/protos/flyteidl/admin/cluster_assignment.proto b/flyteidl/protos/flyteidl/admin/cluster_assignment.proto
index 85a6a4ef8d..6a55798436 100644
--- a/flyteidl/protos/flyteidl/admin/cluster_assignment.proto
+++ b/flyteidl/protos/flyteidl/admin/cluster_assignment.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 
 // Encapsulates specifications for routing an execution onto a specific cluster.
diff --git a/flyteidl/protos/flyteidl/admin/common.proto b/flyteidl/protos/flyteidl/admin/common.proto
index dbfb412853..93bf9b0e03 100644
--- a/flyteidl/protos/flyteidl/admin/common.proto
+++ b/flyteidl/protos/flyteidl/admin/common.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/core/execution.proto";
 import "flyteidl/core/identifier.proto";
diff --git a/flyteidl/protos/flyteidl/admin/description_entity.proto b/flyteidl/protos/flyteidl/admin/description_entity.proto
index fcf4e1a466..055ca0f4b6 100644
--- a/flyteidl/protos/flyteidl/admin/description_entity.proto
+++ b/flyteidl/protos/flyteidl/admin/description_entity.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/core/identifier.proto";
 import "flyteidl/admin/common.proto";
diff --git a/flyteidl/protos/flyteidl/admin/event.proto b/flyteidl/protos/flyteidl/admin/event.proto
index 483454921e..c1eea1e045 100644
--- a/flyteidl/protos/flyteidl/admin/event.proto
+++ b/flyteidl/protos/flyteidl/admin/event.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/event/event.proto";
 
diff --git a/flyteidl/protos/flyteidl/admin/execution.proto b/flyteidl/protos/flyteidl/admin/execution.proto
index 55933d4709..ee33969a0c 100644
--- a/flyteidl/protos/flyteidl/admin/execution.proto
+++ b/flyteidl/protos/flyteidl/admin/execution.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/admin/cluster_assignment.proto";
 import "flyteidl/admin/common.proto";
diff --git a/flyteidl/protos/flyteidl/admin/launch_plan.proto b/flyteidl/protos/flyteidl/admin/launch_plan.proto
index fdba6c1b7b..c9bda4d252 100644
--- a/flyteidl/protos/flyteidl/admin/launch_plan.proto
+++ b/flyteidl/protos/flyteidl/admin/launch_plan.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/core/execution.proto";
 import "flyteidl/core/literals.proto";
diff --git a/flyteidl/protos/flyteidl/admin/matchable_resource.proto b/flyteidl/protos/flyteidl/admin/matchable_resource.proto
index 4ab6be6aa5..bf93d0bd7e 100644
--- a/flyteidl/protos/flyteidl/admin/matchable_resource.proto
+++ b/flyteidl/protos/flyteidl/admin/matchable_resource.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/admin/common.proto";
 import "flyteidl/admin/cluster_assignment.proto";
diff --git a/flyteidl/protos/flyteidl/admin/node_execution.proto b/flyteidl/protos/flyteidl/admin/node_execution.proto
index fe71699a8b..9fbf60ea9a 100644
--- a/flyteidl/protos/flyteidl/admin/node_execution.proto
+++ b/flyteidl/protos/flyteidl/admin/node_execution.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/admin/common.proto";
 import "flyteidl/core/execution.proto";
diff --git a/flyteidl/protos/flyteidl/admin/notification.proto b/flyteidl/protos/flyteidl/admin/notification.proto
index b7478d7e2e..9ef54c9794 100644
--- a/flyteidl/protos/flyteidl/admin/notification.proto
+++ b/flyteidl/protos/flyteidl/admin/notification.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.admin;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 // Represents the Email object that is sent to a publisher/subscriber
 // to forward the notification.
diff --git a/flyteidl/protos/flyteidl/admin/project.proto b/flyteidl/protos/flyteidl/admin/project.proto
index 8d1d02959b..761ae8da05 100644
--- a/flyteidl/protos/flyteidl/admin/project.proto
+++ b/flyteidl/protos/flyteidl/admin/project.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 
 import "flyteidl/admin/common.proto";
diff --git a/flyteidl/protos/flyteidl/admin/project_attributes.proto b/flyteidl/protos/flyteidl/admin/project_attributes.proto
index de6f7a17ef..e61515b0c7 100644
--- a/flyteidl/protos/flyteidl/admin/project_attributes.proto
+++ b/flyteidl/protos/flyteidl/admin/project_attributes.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/admin/matchable_resource.proto";
 
diff --git a/flyteidl/protos/flyteidl/admin/project_domain_attributes.proto b/flyteidl/protos/flyteidl/admin/project_domain_attributes.proto
index d45adaa69b..d25ea92324 100644
--- a/flyteidl/protos/flyteidl/admin/project_domain_attributes.proto
+++ b/flyteidl/protos/flyteidl/admin/project_domain_attributes.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/admin/matchable_resource.proto";
 
diff --git a/flyteidl/protos/flyteidl/admin/schedule.proto b/flyteidl/protos/flyteidl/admin/schedule.proto
index f8d8529e9e..6bcbd90140 100644
--- a/flyteidl/protos/flyteidl/admin/schedule.proto
+++ b/flyteidl/protos/flyteidl/admin/schedule.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 // Represents a frequency at which to run a schedule.
 enum FixedRateUnit {
diff --git a/flyteidl/protos/flyteidl/admin/signal.proto b/flyteidl/protos/flyteidl/admin/signal.proto
index 105ae80524..39ff5c09b9 100644
--- a/flyteidl/protos/flyteidl/admin/signal.proto
+++ b/flyteidl/protos/flyteidl/admin/signal.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/admin/common.proto";
 import "flyteidl/core/identifier.proto";
diff --git a/flyteidl/protos/flyteidl/admin/task.proto b/flyteidl/protos/flyteidl/admin/task.proto
index b768bc0102..78fbba39f8 100644
--- a/flyteidl/protos/flyteidl/admin/task.proto
+++ b/flyteidl/protos/flyteidl/admin/task.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/core/identifier.proto";
 import "flyteidl/core/tasks.proto";
diff --git a/flyteidl/protos/flyteidl/admin/task_execution.proto b/flyteidl/protos/flyteidl/admin/task_execution.proto
index 6706a12837..54d2ff1e61 100644
--- a/flyteidl/protos/flyteidl/admin/task_execution.proto
+++ b/flyteidl/protos/flyteidl/admin/task_execution.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/admin/common.proto";
 import "flyteidl/core/execution.proto";
diff --git a/flyteidl/protos/flyteidl/admin/version.proto b/flyteidl/protos/flyteidl/admin/version.proto
index 7632112e2e..e0e38bda1f 100644
--- a/flyteidl/protos/flyteidl/admin/version.proto
+++ b/flyteidl/protos/flyteidl/admin/version.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 // Response for the GetVersion API
 message GetVersionResponse {
diff --git a/flyteidl/protos/flyteidl/admin/workflow.proto b/flyteidl/protos/flyteidl/admin/workflow.proto
index a5e89f508e..d522d65b73 100644
--- a/flyteidl/protos/flyteidl/admin/workflow.proto
+++ b/flyteidl/protos/flyteidl/admin/workflow.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/core/compiler.proto";
 import "flyteidl/core/identifier.proto";
diff --git a/flyteidl/protos/flyteidl/admin/workflow_attributes.proto b/flyteidl/protos/flyteidl/admin/workflow_attributes.proto
index 379bc6ac0d..fed42205a7 100644
--- a/flyteidl/protos/flyteidl/admin/workflow_attributes.proto
+++ b/flyteidl/protos/flyteidl/admin/workflow_attributes.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package flyteidl.admin;
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin";
 
 import "flyteidl/admin/matchable_resource.proto";
 
diff --git a/flyteidl/protos/flyteidl/core/catalog.proto b/flyteidl/protos/flyteidl/core/catalog.proto
index 80cc044324..fc86f0b975 100644
--- a/flyteidl/protos/flyteidl/core/catalog.proto
+++ b/flyteidl/protos/flyteidl/core/catalog.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 import "flyteidl/core/identifier.proto";
 
diff --git a/flyteidl/protos/flyteidl/core/compiler.proto b/flyteidl/protos/flyteidl/core/compiler.proto
index b1e393640f..aaa5bff69e 100644
--- a/flyteidl/protos/flyteidl/core/compiler.proto
+++ b/flyteidl/protos/flyteidl/core/compiler.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 import "flyteidl/core/workflow.proto";
 import "flyteidl/core/tasks.proto";
diff --git a/flyteidl/protos/flyteidl/core/condition.proto b/flyteidl/protos/flyteidl/core/condition.proto
index 247618713d..84c7fb0314 100644
--- a/flyteidl/protos/flyteidl/core/condition.proto
+++ b/flyteidl/protos/flyteidl/core/condition.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 import "flyteidl/core/literals.proto";
 
diff --git a/flyteidl/protos/flyteidl/core/dynamic_job.proto b/flyteidl/protos/flyteidl/core/dynamic_job.proto
index 05d0731a18..1665f5fa29 100644
--- a/flyteidl/protos/flyteidl/core/dynamic_job.proto
+++ b/flyteidl/protos/flyteidl/core/dynamic_job.proto
@@ -6,7 +6,7 @@ import "flyteidl/core/literals.proto";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/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/flyteidl/protos/flyteidl/core/errors.proto b/flyteidl/protos/flyteidl/core/errors.proto
index d9a76d97dc..4d25389349 100644
--- a/flyteidl/protos/flyteidl/core/errors.proto
+++ b/flyteidl/protos/flyteidl/core/errors.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 import "flyteidl/core/execution.proto";
 
diff --git a/flyteidl/protos/flyteidl/core/execution.proto b/flyteidl/protos/flyteidl/core/execution.proto
index 0c3787b66b..d2eabdc577 100644
--- a/flyteidl/protos/flyteidl/core/execution.proto
+++ b/flyteidl/protos/flyteidl/core/execution.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 import "google/protobuf/duration.proto";
 
diff --git a/flyteidl/protos/flyteidl/core/identifier.proto b/flyteidl/protos/flyteidl/core/identifier.proto
index ef8ca4494c..d50e836099 100644
--- a/flyteidl/protos/flyteidl/core/identifier.proto
+++ b/flyteidl/protos/flyteidl/core/identifier.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 // Indicates a resource type within Flyte.
 enum ResourceType {
diff --git a/flyteidl/protos/flyteidl/core/interface.proto b/flyteidl/protos/flyteidl/core/interface.proto
index 2ee0c3f70a..cfd56fadf8 100644
--- a/flyteidl/protos/flyteidl/core/interface.proto
+++ b/flyteidl/protos/flyteidl/core/interface.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 import "flyteidl/core/types.proto";
 import "flyteidl/core/literals.proto";
diff --git a/flyteidl/protos/flyteidl/core/literals.proto b/flyteidl/protos/flyteidl/core/literals.proto
index 06af80335d..33ab9f45a2 100644
--- a/flyteidl/protos/flyteidl/core/literals.proto
+++ b/flyteidl/protos/flyteidl/core/literals.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 import "google/protobuf/timestamp.proto";
 import "google/protobuf/duration.proto";
diff --git a/flyteidl/protos/flyteidl/core/metrics.proto b/flyteidl/protos/flyteidl/core/metrics.proto
index c96a599886..13823545e4 100644
--- a/flyteidl/protos/flyteidl/core/metrics.proto
+++ b/flyteidl/protos/flyteidl/core/metrics.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 import "flyteidl/core/identifier.proto";
 import "google/protobuf/timestamp.proto";
diff --git a/flyteidl/protos/flyteidl/core/security.proto b/flyteidl/protos/flyteidl/core/security.proto
index f9830bf6bd..3aba017476 100644
--- a/flyteidl/protos/flyteidl/core/security.proto
+++ b/flyteidl/protos/flyteidl/core/security.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 // Secret encapsulates information about the secret a task needs to proceed. An environment variable
 // FLYTE_SECRETS_ENV_PREFIX will be passed to indicate the prefix of the environment variables that will be present if
diff --git a/flyteidl/protos/flyteidl/core/tasks.proto b/flyteidl/protos/flyteidl/core/tasks.proto
index 808c196d14..f648a2c93f 100644
--- a/flyteidl/protos/flyteidl/core/tasks.proto
+++ b/flyteidl/protos/flyteidl/core/tasks.proto
@@ -9,7 +9,7 @@ import "google/protobuf/struct.proto";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 // A customizable interface to convey resources requested for a container. This can be interpreted differently for different
 // container engines.
diff --git a/flyteidl/protos/flyteidl/core/types.proto b/flyteidl/protos/flyteidl/core/types.proto
index a05c93d38f..b0ea9c356c 100644
--- a/flyteidl/protos/flyteidl/core/types.proto
+++ b/flyteidl/protos/flyteidl/core/types.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 import "google/protobuf/struct.proto";
 
diff --git a/flyteidl/protos/flyteidl/core/workflow.proto b/flyteidl/protos/flyteidl/core/workflow.proto
index 37d39182e4..7f5a2fb15d 100644
--- a/flyteidl/protos/flyteidl/core/workflow.proto
+++ b/flyteidl/protos/flyteidl/core/workflow.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 import "flyteidl/core/condition.proto";
 import "flyteidl/core/execution.proto";
diff --git a/flyteidl/protos/flyteidl/core/workflow_closure.proto b/flyteidl/protos/flyteidl/core/workflow_closure.proto
index e00b2ccf68..c8ee990036 100644
--- a/flyteidl/protos/flyteidl/core/workflow_closure.proto
+++ b/flyteidl/protos/flyteidl/core/workflow_closure.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.core;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core";
 
 import "flyteidl/core/workflow.proto";
 import "flyteidl/core/tasks.proto";
diff --git a/flyteidl/protos/flyteidl/datacatalog/datacatalog.proto b/flyteidl/protos/flyteidl/datacatalog/datacatalog.proto
index 36e908c1e8..795e70ff80 100644
--- a/flyteidl/protos/flyteidl/datacatalog/datacatalog.proto
+++ b/flyteidl/protos/flyteidl/datacatalog/datacatalog.proto
@@ -6,7 +6,7 @@ import "flyteidl/core/literals.proto";
 import "google/protobuf/duration.proto";
 import "google/protobuf/timestamp.proto";
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog";
 
 /*
  * Data Catalog service definition
diff --git a/flyteidl/protos/flyteidl/event/event.proto b/flyteidl/protos/flyteidl/event/event.proto
index 934c9f944b..f5209f5614 100644
--- a/flyteidl/protos/flyteidl/event/event.proto
+++ b/flyteidl/protos/flyteidl/event/event.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.event;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event";
 
 import "flyteidl/core/literals.proto";
 import "flyteidl/core/compiler.proto";
diff --git a/flyteidl/protos/flyteidl/plugins/array_job.proto b/flyteidl/protos/flyteidl/plugins/array_job.proto
index b46fee1104..e202316ef5 100644
--- a/flyteidl/protos/flyteidl/plugins/array_job.proto
+++ b/flyteidl/protos/flyteidl/plugins/array_job.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/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/flyteidl/protos/flyteidl/plugins/dask.proto b/flyteidl/protos/flyteidl/plugins/dask.proto
index 32707b64a3..96e861049a 100644
--- a/flyteidl/protos/flyteidl/plugins/dask.proto
+++ b/flyteidl/protos/flyteidl/plugins/dask.proto
@@ -4,7 +4,7 @@ import "flyteidl/core/tasks.proto";
 
 package flyteidl.plugins;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
 
 
 // Custom Proto for Dask Plugin.
diff --git a/flyteidl/protos/flyteidl/plugins/kubeflow/common.proto b/flyteidl/protos/flyteidl/plugins/kubeflow/common.proto
index 99a3a8e8c2..6795dca11b 100644
--- a/flyteidl/protos/flyteidl/plugins/kubeflow/common.proto
+++ b/flyteidl/protos/flyteidl/plugins/kubeflow/common.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins.kubeflow;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
 
 
 enum RestartPolicy {
diff --git a/flyteidl/protos/flyteidl/plugins/kubeflow/mpi.proto b/flyteidl/protos/flyteidl/plugins/kubeflow/mpi.proto
index 0013ceeb0a..6eda161f92 100644
--- a/flyteidl/protos/flyteidl/plugins/kubeflow/mpi.proto
+++ b/flyteidl/protos/flyteidl/plugins/kubeflow/mpi.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins.kubeflow;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
 
 import "flyteidl/core/tasks.proto";
 import "flyteidl/plugins/kubeflow/common.proto";
diff --git a/flyteidl/protos/flyteidl/plugins/kubeflow/pytorch.proto b/flyteidl/protos/flyteidl/plugins/kubeflow/pytorch.proto
index 0e69d890b1..bd3ddbdf97 100644
--- a/flyteidl/protos/flyteidl/plugins/kubeflow/pytorch.proto
+++ b/flyteidl/protos/flyteidl/plugins/kubeflow/pytorch.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins.kubeflow;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
 
 import "flyteidl/core/tasks.proto";
 import "flyteidl/plugins/kubeflow/common.proto";
diff --git a/flyteidl/protos/flyteidl/plugins/kubeflow/tensorflow.proto b/flyteidl/protos/flyteidl/plugins/kubeflow/tensorflow.proto
index ae44ac6a2e..4cf3153548 100644
--- a/flyteidl/protos/flyteidl/plugins/kubeflow/tensorflow.proto
+++ b/flyteidl/protos/flyteidl/plugins/kubeflow/tensorflow.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins.kubeflow;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
 
 import "flyteidl/core/tasks.proto";
 import "flyteidl/plugins/kubeflow/common.proto";
diff --git a/flyteidl/protos/flyteidl/plugins/mpi.proto b/flyteidl/protos/flyteidl/plugins/mpi.proto
index 8467d3de01..9e657279d8 100644
--- a/flyteidl/protos/flyteidl/plugins/mpi.proto
+++ b/flyteidl/protos/flyteidl/plugins/mpi.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
 
 // MPI operator proposal https://github.com/kubeflow/community/blob/master/proposals/mpi-operator-proposal.md
 // Custom proto for plugin that enables distributed training using https://github.com/kubeflow/mpi-operator
diff --git a/flyteidl/protos/flyteidl/plugins/presto.proto b/flyteidl/protos/flyteidl/plugins/presto.proto
index e9a7a14b05..5ff3a8a2e0 100644
--- a/flyteidl/protos/flyteidl/plugins/presto.proto
+++ b/flyteidl/protos/flyteidl/plugins/presto.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/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/flyteidl/protos/flyteidl/plugins/pytorch.proto b/flyteidl/protos/flyteidl/plugins/pytorch.proto
index 2e219d82bc..02e748ab8e 100644
--- a/flyteidl/protos/flyteidl/plugins/pytorch.proto
+++ b/flyteidl/protos/flyteidl/plugins/pytorch.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
 
 // Custom proto for torch elastic config for distributed training using 
 // https://github.com/kubeflow/training-operator/blob/master/pkg/apis/kubeflow.org/v1/pytorch_types.go
diff --git a/flyteidl/protos/flyteidl/plugins/qubole.proto b/flyteidl/protos/flyteidl/plugins/qubole.proto
index 5196e823e7..b1faada9f3 100644
--- a/flyteidl/protos/flyteidl/plugins/qubole.proto
+++ b/flyteidl/protos/flyteidl/plugins/qubole.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
 
 // Defines a query to execute on a hive cluster.
 message HiveQuery {
diff --git a/flyteidl/protos/flyteidl/plugins/ray.proto b/flyteidl/protos/flyteidl/plugins/ray.proto
index a0a06b4e98..1f80a4b4f3 100644
--- a/flyteidl/protos/flyteidl/plugins/ray.proto
+++ b/flyteidl/protos/flyteidl/plugins/ray.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
 
 // RayJobSpec defines the desired state of RayJob
 message RayJob {
diff --git a/flyteidl/protos/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto b/flyteidl/protos/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto
index d12ca832ca..1643b9a2dc 100644
--- a/flyteidl/protos/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto
+++ b/flyteidl/protos/flyteidl/plugins/sagemaker/hyperparameter_tuning_job.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins.sagemaker;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
 
 import "flyteidl/plugins/sagemaker/parameter_ranges.proto";
 import "flyteidl/plugins/sagemaker/training_job.proto";
diff --git a/flyteidl/protos/flyteidl/plugins/sagemaker/parameter_ranges.proto b/flyteidl/protos/flyteidl/plugins/sagemaker/parameter_ranges.proto
index 39f758eded..b237e6deb8 100644
--- a/flyteidl/protos/flyteidl/plugins/sagemaker/parameter_ranges.proto
+++ b/flyteidl/protos/flyteidl/plugins/sagemaker/parameter_ranges.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins.sagemaker;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/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/flyteidl/protos/flyteidl/plugins/sagemaker/training_job.proto b/flyteidl/protos/flyteidl/plugins/sagemaker/training_job.proto
index 9c6545c1e7..dedbaf24fb 100644
--- a/flyteidl/protos/flyteidl/plugins/sagemaker/training_job.proto
+++ b/flyteidl/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/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/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/flyteidl/protos/flyteidl/plugins/spark.proto b/flyteidl/protos/flyteidl/plugins/spark.proto
index 6ba00fe051..666ea311b2 100644
--- a/flyteidl/protos/flyteidl/plugins/spark.proto
+++ b/flyteidl/protos/flyteidl/plugins/spark.proto
@@ -3,7 +3,7 @@ syntax = "proto3";
 package flyteidl.plugins;
 import "google/protobuf/struct.proto";
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
 
 message SparkApplication {
     enum Type {
diff --git a/flyteidl/protos/flyteidl/plugins/tensorflow.proto b/flyteidl/protos/flyteidl/plugins/tensorflow.proto
index a24f871def..e768ad65ad 100644
--- a/flyteidl/protos/flyteidl/plugins/tensorflow.proto
+++ b/flyteidl/protos/flyteidl/plugins/tensorflow.proto
@@ -2,7 +2,7 @@ syntax = "proto3";
 
 package flyteidl.plugins;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/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/flyteidl/protos/flyteidl/plugins/waitable.proto b/flyteidl/protos/flyteidl/plugins/waitable.proto
index 83f5f46b69..dd2138d535 100644
--- a/flyteidl/protos/flyteidl/plugins/waitable.proto
+++ b/flyteidl/protos/flyteidl/plugins/waitable.proto
@@ -5,7 +5,7 @@ import "flyteidl/core/identifier.proto";
 
 package flyteidl.plugins;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
 
 // Represents an Execution that was launched and could be waited on.
 message Waitable {
diff --git a/flyteidl/protos/flyteidl/service/admin.proto b/flyteidl/protos/flyteidl/service/admin.proto
index a99a9818b9..95ad07686f 100644
--- a/flyteidl/protos/flyteidl/service/admin.proto
+++ b/flyteidl/protos/flyteidl/service/admin.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 package flyteidl.service;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service";
 
 import "google/api/annotations.proto";
 import "flyteidl/admin/project.proto";
diff --git a/flyteidl/protos/flyteidl/service/agent.proto b/flyteidl/protos/flyteidl/service/agent.proto
index 2a1a143705..6d89bb532e 100644
--- a/flyteidl/protos/flyteidl/service/agent.proto
+++ b/flyteidl/protos/flyteidl/service/agent.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 package flyteidl.service;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service";
 import "flyteidl/admin/agent.proto";
 
 // AgentService defines an RPC Service that allows propeller to send the request to the agent server.
diff --git a/flyteidl/protos/flyteidl/service/auth.proto b/flyteidl/protos/flyteidl/service/auth.proto
index 2d11e7fa35..9acf95c570 100644
--- a/flyteidl/protos/flyteidl/service/auth.proto
+++ b/flyteidl/protos/flyteidl/service/auth.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 package flyteidl.service;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service";
 
 import "google/api/annotations.proto";
 // import "protoc-gen-swagger/options/annotations.proto";
diff --git a/flyteidl/protos/flyteidl/service/dataproxy.proto b/flyteidl/protos/flyteidl/service/dataproxy.proto
index 5d533a414a..8858e92db0 100644
--- a/flyteidl/protos/flyteidl/service/dataproxy.proto
+++ b/flyteidl/protos/flyteidl/service/dataproxy.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 package flyteidl.service;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service";
 
 import "google/api/annotations.proto";
 // import "protoc-gen-swagger/options/annotations.proto";
diff --git a/flyteidl/protos/flyteidl/service/external_plugin_service.proto b/flyteidl/protos/flyteidl/service/external_plugin_service.proto
index 18f60a7d93..ce890cf8f2 100644
--- a/flyteidl/protos/flyteidl/service/external_plugin_service.proto
+++ b/flyteidl/protos/flyteidl/service/external_plugin_service.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 package flyteidl.service;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service";
 import "flyteidl/core/literals.proto";
 import "flyteidl/core/tasks.proto";
 import "flyteidl/core/interface.proto";
diff --git a/flyteidl/protos/flyteidl/service/identity.proto b/flyteidl/protos/flyteidl/service/identity.proto
index e4bc5dcb0a..c03616542e 100644
--- a/flyteidl/protos/flyteidl/service/identity.proto
+++ b/flyteidl/protos/flyteidl/service/identity.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 package flyteidl.service;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service";
 
 import "google/api/annotations.proto";
 import "google/protobuf/struct.proto";
diff --git a/flyteidl/protos/flyteidl/service/signal.proto b/flyteidl/protos/flyteidl/service/signal.proto
index 6344407157..91030d226c 100644
--- a/flyteidl/protos/flyteidl/service/signal.proto
+++ b/flyteidl/protos/flyteidl/service/signal.proto
@@ -1,7 +1,7 @@
 syntax = "proto3";
 package flyteidl.service;
 
-option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service";
+option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service";
 
 import "google/api/annotations.proto";
 import "flyteidl/admin/signal.proto";
diff --git a/flyteplugins/go.mod b/flyteplugins/go.mod
index 14aba6796f..72af6857e1 100644
--- a/flyteplugins/go.mod
+++ b/flyteplugins/go.mod
@@ -12,8 +12,8 @@ require (
 	github.com/aws/aws-sdk-go-v2/service/athena v1.0.0
 	github.com/coocood/freecache v1.1.1
 	github.com/dask/dask-kubernetes/v2023 v2023.0.0-20230626103304-abd02cd17b26
+	github.com/flyteorg/flyte/flyteidl v0.0.0-00010101000000-000000000000
 	github.com/flyteorg/flyte/flytestdlib v0.0.0-00010101000000-000000000000
-	github.com/flyteorg/flyteidl v0.0.0-00010101000000-000000000000
 	github.com/go-test/deep v1.0.7
 	github.com/golang/protobuf v1.5.3
 	github.com/hashicorp/golang-lru v0.5.4
@@ -139,8 +139,8 @@ replace (
 	github.com/aws/amazon-sagemaker-operator-for-k8s => github.com/aws/amazon-sagemaker-operator-for-k8s v1.0.1-0.20210303003444-0fb33b1fd49d
 	github.com/flyteorg/flyte/datacatalog => ../datacatalog
 	github.com/flyteorg/flyte/flyteadmin => ../flyteadmin
+	github.com/flyteorg/flyte/flyteidl => ../flyteidl
 	github.com/flyteorg/flyte/flyteplugins => ../flyteplugins
 	github.com/flyteorg/flyte/flytepropeller => ../flytepropeller
 	github.com/flyteorg/flyte/flytestdlib => ../flytestdlib
-	github.com/flyteorg/flyteidl => ../flyteidl
 )
diff --git a/flyteplugins/go/tasks/logs/config.go b/flyteplugins/go/tasks/logs/config.go
index 205aa08f76..69ef17ed89 100644
--- a/flyteplugins/go/tasks/logs/config.go
+++ b/flyteplugins/go/tasks/logs/config.go
@@ -1,9 +1,9 @@
 package logs
 
 import (
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/config"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/tasklog"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 //go:generate pflags LogConfig --default-var=DefaultConfig
diff --git a/flyteplugins/go/tasks/logs/logging_utils.go b/flyteplugins/go/tasks/logs/logging_utils.go
index 394ccb31b1..5fc636e7e0 100644
--- a/flyteplugins/go/tasks/logs/logging_utils.go
+++ b/flyteplugins/go/tasks/logs/logging_utils.go
@@ -7,8 +7,8 @@ import (
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/tasklog"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	v1 "k8s.io/api/core/v1"
 )
 
diff --git a/flyteplugins/go/tasks/logs/logging_utils_test.go b/flyteplugins/go/tasks/logs/logging_utils_test.go
index ebd8cec5bb..42e6fdd83b 100644
--- a/flyteplugins/go/tasks/logs/logging_utils_test.go
+++ b/flyteplugins/go/tasks/logs/logging_utils_test.go
@@ -4,8 +4,8 @@ import (
 	"context"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/tasklog"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/go-test/deep"
 	v12 "k8s.io/apimachinery/pkg/apis/meta/v1"
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/bundle/fail_fast_test.go b/flyteplugins/go/tasks/pluginmachinery/bundle/fail_fast_test.go
index 52f1d76d80..956e38a922 100644
--- a/flyteplugins/go/tasks/pluginmachinery/bundle/fail_fast_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/bundle/fail_fast_test.go
@@ -6,8 +6,8 @@ import (
 
 	"github.com/stretchr/testify/mock"
 
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/stretchr/testify/assert"
diff --git a/flyteplugins/go/tasks/pluginmachinery/catalog/async_client_impl.go b/flyteplugins/go/tasks/pluginmachinery/catalog/async_client_impl.go
index abddeb0fac..d9e886d0eb 100644
--- a/flyteplugins/go/tasks/pluginmachinery/catalog/async_client_impl.go
+++ b/flyteplugins/go/tasks/pluginmachinery/catalog/async_client_impl.go
@@ -7,11 +7,11 @@ import (
 	"hash/fnv"
 	"reflect"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/workqueue"
 	"github.com/flyteorg/flyte/flytestdlib/bitarray"
 	"github.com/flyteorg/flyte/flytestdlib/errors"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 const specialEncoderKey = "abcdefghijklmnopqrstuvwxyz123456"
diff --git a/flyteplugins/go/tasks/pluginmachinery/catalog/async_client_impl_test.go b/flyteplugins/go/tasks/pluginmachinery/catalog/async_client_impl_test.go
index 73ff306037..b1acc2c953 100644
--- a/flyteplugins/go/tasks/pluginmachinery/catalog/async_client_impl_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/catalog/async_client_impl_test.go
@@ -5,11 +5,11 @@ import (
 	"reflect"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mocks2 "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/workqueue"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/workqueue/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/bitarray"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/mock"
 )
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/catalog/client.go b/flyteplugins/go/tasks/pluginmachinery/catalog/client.go
index 7dba7fb920..4a9b804492 100644
--- a/flyteplugins/go/tasks/pluginmachinery/catalog/client.go
+++ b/flyteplugins/go/tasks/pluginmachinery/catalog/client.go
@@ -8,8 +8,8 @@ import (
 	"google.golang.org/grpc/codes"
 	grpcStatus "google.golang.org/grpc/status"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 )
diff --git a/flyteplugins/go/tasks/pluginmachinery/catalog/client_test.go b/flyteplugins/go/tasks/pluginmachinery/catalog/client_test.go
index 58fe8d5be4..196b5374de 100644
--- a/flyteplugins/go/tasks/pluginmachinery/catalog/client_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/catalog/client_test.go
@@ -6,8 +6,8 @@ import (
 
 	"github.com/stretchr/testify/assert"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 var (
diff --git a/flyteplugins/go/tasks/pluginmachinery/catalog/hashing.go b/flyteplugins/go/tasks/pluginmachinery/catalog/hashing.go
index 05693257d0..3c73710eac 100644
--- a/flyteplugins/go/tasks/pluginmachinery/catalog/hashing.go
+++ b/flyteplugins/go/tasks/pluginmachinery/catalog/hashing.go
@@ -4,8 +4,8 @@ import (
 	"context"
 	"encoding/base64"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/pbhash"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 var emptyLiteralMap = core.LiteralMap{Literals: map[string]*core.Literal{}}
diff --git a/flyteplugins/go/tasks/pluginmachinery/catalog/hashing_test.go b/flyteplugins/go/tasks/pluginmachinery/catalog/hashing_test.go
index c9b2a78595..070e023e94 100644
--- a/flyteplugins/go/tasks/pluginmachinery/catalog/hashing_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/catalog/hashing_test.go
@@ -4,8 +4,8 @@ import (
 	"context"
 	"testing"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/catalog/mocks/client.go b/flyteplugins/go/tasks/pluginmachinery/catalog/mocks/client.go
index 30c296013d..584a936ae4 100644
--- a/flyteplugins/go/tasks/pluginmachinery/catalog/mocks/client.go
+++ b/flyteplugins/go/tasks/pluginmachinery/catalog/mocks/client.go
@@ -7,7 +7,7 @@ import (
 
 	catalog "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
 
-	datacatalog "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog"
+	datacatalog "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog"
 
 	io "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/catalog/reader_processor.go b/flyteplugins/go/tasks/pluginmachinery/catalog/reader_processor.go
index 07e1c15028..29ee207487 100644
--- a/flyteplugins/go/tasks/pluginmachinery/catalog/reader_processor.go
+++ b/flyteplugins/go/tasks/pluginmachinery/catalog/reader_processor.go
@@ -5,7 +5,7 @@ import (
 	"fmt"
 	"reflect"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/catalog/writer_processor.go b/flyteplugins/go/tasks/pluginmachinery/catalog/writer_processor.go
index c0037b333b..835e5a4f0d 100644
--- a/flyteplugins/go/tasks/pluginmachinery/catalog/writer_processor.go
+++ b/flyteplugins/go/tasks/pluginmachinery/catalog/writer_processor.go
@@ -5,8 +5,8 @@ import (
 	"fmt"
 	"reflect"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
diff --git a/flyteplugins/go/tasks/pluginmachinery/core/exec_context.go b/flyteplugins/go/tasks/pluginmachinery/core/exec_context.go
index 86f3d7aad1..11f48a33b2 100644
--- a/flyteplugins/go/tasks/pluginmachinery/core/exec_context.go
+++ b/flyteplugins/go/tasks/pluginmachinery/core/exec_context.go
@@ -3,10 +3,10 @@ package core
 import (
 	"context"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 // An interface to access a remote/sharable location that contains the serialized TaskTemplate
diff --git a/flyteplugins/go/tasks/pluginmachinery/core/exec_metadata.go b/flyteplugins/go/tasks/pluginmachinery/core/exec_metadata.go
index b3115a7a20..d5b8b81b5a 100644
--- a/flyteplugins/go/tasks/pluginmachinery/core/exec_metadata.go
+++ b/flyteplugins/go/tasks/pluginmachinery/core/exec_metadata.go
@@ -1,7 +1,7 @@
 package core
 
 import (
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	v1 "k8s.io/api/core/v1"
 	v12 "k8s.io/apimachinery/pkg/apis/meta/v1"
 	"k8s.io/apimachinery/pkg/types"
diff --git a/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_execution_id.go b/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_execution_id.go
index ef75d6bacf..7db5590170 100644
--- a/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_execution_id.go
+++ b/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_execution_id.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	flyteidlcore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	flyteidlcore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 )
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_execution_metadata.go b/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_execution_metadata.go
index 15ae31791a..0e6651a2a7 100644
--- a/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_execution_metadata.go
+++ b/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_execution_metadata.go
@@ -6,7 +6,7 @@ import (
 	core "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	corev1 "k8s.io/api/core/v1"
 
-	flyteidlcore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	flyteidlcore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_reader.go b/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_reader.go
index 7ec2cd2089..d9d48062ec 100644
--- a/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_reader.go
+++ b/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_reader.go
@@ -5,7 +5,7 @@ package mocks
 import (
 	context "context"
 
-	flyteidlcore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	flyteidlcore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/core/phase.go b/flyteplugins/go/tasks/pluginmachinery/core/phase.go
index dbd1f699bd..4f3836a8b1 100644
--- a/flyteplugins/go/tasks/pluginmachinery/core/phase.go
+++ b/flyteplugins/go/tasks/pluginmachinery/core/phase.go
@@ -6,7 +6,7 @@ import (
 
 	structpb "github.com/golang/protobuf/ptypes/struct"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 const DefaultPhaseVersion = uint32(0)
diff --git a/flyteplugins/go/tasks/pluginmachinery/core/template/template.go b/flyteplugins/go/tasks/pluginmachinery/core/template/template.go
index b9706bb3a8..567c8ab68a 100644
--- a/flyteplugins/go/tasks/pluginmachinery/core/template/template.go
+++ b/flyteplugins/go/tasks/pluginmachinery/core/template/template.go
@@ -25,10 +25,10 @@ import (
 	"regexp"
 	"strings"
 
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/ptypes"
 	"github.com/pkg/errors"
 )
diff --git a/flyteplugins/go/tasks/pluginmachinery/core/template/template_test.go b/flyteplugins/go/tasks/pluginmachinery/core/template/template_test.go
index 0c390617d5..a7f6c97477 100644
--- a/flyteplugins/go/tasks/pluginmachinery/core/template/template_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/core/template/template_test.go
@@ -9,9 +9,9 @@ import (
 
 	pluginsCoreMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/stretchr/testify/assert"
 )
diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/container_helper_test.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/container_helper_test.go
index ddc916acb0..d4a04ec1c5 100644
--- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/container_helper_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/container_helper_test.go
@@ -4,12 +4,12 @@ import (
 	"context"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/template"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s/config"
 	mocks2 "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/copilot.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/copilot.go
index d8c3e24657..bec39010be 100644
--- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/copilot.go
+++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/copilot.go
@@ -6,9 +6,9 @@ import (
 	"fmt"
 	"time"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/proto"
 	"github.com/pkg/errors"
 	v1 "k8s.io/api/core/v1"
diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/copilot_test.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/copilot_test.go
index bc25668dd1..f41262771f 100644
--- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/copilot_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/copilot_test.go
@@ -7,9 +7,9 @@ import (
 	"testing"
 	"time"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	config2 "github.com/flyteorg/flyte/flytestdlib/config"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/proto"
 	"github.com/stretchr/testify/assert"
 	v1 "k8s.io/api/core/v1"
diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/k8s_resource_adds_test.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/k8s_resource_adds_test.go
index 11dc5a00c9..db2cece649 100644
--- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/k8s_resource_adds_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/k8s_resource_adds_test.go
@@ -8,7 +8,7 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	v12 "k8s.io/api/core/v1"
 	"k8s.io/apimachinery/pkg/api/resource"
diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper.go
index 268d33e02c..6ee8e41722 100644
--- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper.go
+++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper.go
@@ -7,7 +7,7 @@ import (
 	"strings"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginserrors "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go
index 50c9d0eb49..63d3b76787 100644
--- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/pod_helper_test.go
@@ -9,7 +9,7 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	pluginsCoreMock "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils.go
index e9acef14fb..d8a2a08664 100644
--- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils.go
+++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils.go
@@ -1,8 +1,8 @@
 package flytek8s
 
 import (
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginmachinery_core "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/pkg/errors"
 	v1 "k8s.io/api/core/v1"
 	"k8s.io/apimachinery/pkg/api/resource"
diff --git a/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils_test.go b/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils_test.go
index 54d30ad2d2..661d24b14c 100644
--- a/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/flytek8s/utils_test.go
@@ -3,8 +3,8 @@ package flytek8s
 import (
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	v1 "k8s.io/api/core/v1"
 	"k8s.io/apimachinery/pkg/api/resource"
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/internal/webapi/monitor_test.go b/flyteplugins/go/tasks/pluginmachinery/internal/webapi/monitor_test.go
index 96a5a15e0d..f916a93800 100644
--- a/flyteplugins/go/tasks/pluginmachinery/internal/webapi/monitor_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/internal/webapi/monitor_test.go
@@ -15,7 +15,7 @@ import (
 
 	"github.com/stretchr/testify/mock"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/stretchr/testify/assert"
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/io/iface.go b/flyteplugins/go/tasks/pluginmachinery/io/iface.go
index 4e5cd87116..f876defe5a 100644
--- a/flyteplugins/go/tasks/pluginmachinery/io/iface.go
+++ b/flyteplugins/go/tasks/pluginmachinery/io/iface.go
@@ -3,8 +3,8 @@ package io
 import (
 	"context"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 //go:generate mockery -all -case=underscore
diff --git a/flyteplugins/go/tasks/pluginmachinery/io/mocks/input_reader.go b/flyteplugins/go/tasks/pluginmachinery/io/mocks/input_reader.go
index b2079f9da1..ee8ae11bc6 100644
--- a/flyteplugins/go/tasks/pluginmachinery/io/mocks/input_reader.go
+++ b/flyteplugins/go/tasks/pluginmachinery/io/mocks/input_reader.go
@@ -5,7 +5,7 @@ package mocks
 import (
 	context "context"
 
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/io/mocks/output_reader.go b/flyteplugins/go/tasks/pluginmachinery/io/mocks/output_reader.go
index 285a79dad9..c7f2e1958b 100644
--- a/flyteplugins/go/tasks/pluginmachinery/io/mocks/output_reader.go
+++ b/flyteplugins/go/tasks/pluginmachinery/io/mocks/output_reader.go
@@ -5,7 +5,7 @@ package mocks
 import (
 	context "context"
 
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	io "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 
 	mock "github.com/stretchr/testify/mock"
diff --git a/flyteplugins/go/tasks/pluginmachinery/ioutils/cached_input_reader.go b/flyteplugins/go/tasks/pluginmachinery/ioutils/cached_input_reader.go
index f9f5430733..ae64646e8a 100644
--- a/flyteplugins/go/tasks/pluginmachinery/ioutils/cached_input_reader.go
+++ b/flyteplugins/go/tasks/pluginmachinery/ioutils/cached_input_reader.go
@@ -3,7 +3,7 @@ package ioutils
 import (
 	"context"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 )
diff --git a/flyteplugins/go/tasks/pluginmachinery/ioutils/in_memory_output_reader.go b/flyteplugins/go/tasks/pluginmachinery/ioutils/in_memory_output_reader.go
index 67243b317e..bd0c7b2c24 100644
--- a/flyteplugins/go/tasks/pluginmachinery/ioutils/in_memory_output_reader.go
+++ b/flyteplugins/go/tasks/pluginmachinery/ioutils/in_memory_output_reader.go
@@ -6,8 +6,8 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/storage"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 type InMemoryOutputReader struct {
diff --git a/flyteplugins/go/tasks/pluginmachinery/ioutils/in_memory_output_reader_test.go b/flyteplugins/go/tasks/pluginmachinery/ioutils/in_memory_output_reader_test.go
index 04c530d12f..e786365a3b 100644
--- a/flyteplugins/go/tasks/pluginmachinery/ioutils/in_memory_output_reader_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/ioutils/in_memory_output_reader_test.go
@@ -4,8 +4,8 @@ import (
 	"context"
 	"testing"
 
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/ioutils/raw_output_path.go b/flyteplugins/go/tasks/pluginmachinery/ioutils/raw_output_path.go
index 6246ed65dd..1a4a818bda 100644
--- a/flyteplugins/go/tasks/pluginmachinery/ioutils/raw_output_path.go
+++ b/flyteplugins/go/tasks/pluginmachinery/ioutils/raw_output_path.go
@@ -6,8 +6,8 @@ import (
 	"encoding/hex"
 	"strconv"
 
+	core2 "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	core2 "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 )
diff --git a/flyteplugins/go/tasks/pluginmachinery/ioutils/raw_output_path_test.go b/flyteplugins/go/tasks/pluginmachinery/ioutils/raw_output_path_test.go
index 1e11642506..c7bb704da8 100644
--- a/flyteplugins/go/tasks/pluginmachinery/ioutils/raw_output_path_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/ioutils/raw_output_path_test.go
@@ -4,8 +4,8 @@ import (
 	"context"
 	"testing"
 
+	core2 "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	core2 "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_input_reader.go b/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_input_reader.go
index bbaf032f24..241f2e553d 100644
--- a/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_input_reader.go
+++ b/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_input_reader.go
@@ -5,8 +5,8 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/errors"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 )
diff --git a/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_output_reader.go b/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_output_reader.go
index 3c546029cc..49b499e114 100644
--- a/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_output_reader.go
+++ b/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_output_reader.go
@@ -6,8 +6,8 @@ import (
 
 	"github.com/pkg/errors"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 )
diff --git a/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_output_reader_test.go b/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_output_reader_test.go
index 7391a518ee..8865e75783 100644
--- a/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_output_reader_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_output_reader_test.go
@@ -6,9 +6,9 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/storage"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginsIOMock "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	storageMocks "github.com/flyteorg/flyte/flytestdlib/storage/mocks"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 )
diff --git a/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_output_writer.go b/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_output_writer.go
index bbb1021268..80cb54ce43 100644
--- a/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_output_writer.go
+++ b/flyteplugins/go/tasks/pluginmachinery/ioutils/remote_file_output_writer.go
@@ -4,7 +4,7 @@ import (
 	"context"
 	"fmt"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
diff --git a/flyteplugins/go/tasks/pluginmachinery/ioutils/task_reader.go b/flyteplugins/go/tasks/pluginmachinery/ioutils/task_reader.go
index bd77ca56ff..a7eb38c8eb 100644
--- a/flyteplugins/go/tasks/pluginmachinery/ioutils/task_reader.go
+++ b/flyteplugins/go/tasks/pluginmachinery/ioutils/task_reader.go
@@ -3,7 +3,7 @@ package ioutils
 import (
 	"context"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flytestdlib/atomic"
diff --git a/flyteplugins/go/tasks/pluginmachinery/ioutils/task_reader_test.go b/flyteplugins/go/tasks/pluginmachinery/ioutils/task_reader_test.go
index 234a870c0f..3e15231e00 100644
--- a/flyteplugins/go/tasks/pluginmachinery/ioutils/task_reader_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/ioutils/task_reader_test.go
@@ -5,12 +5,12 @@ import (
 	"fmt"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/proto"
 	"github.com/stretchr/testify/assert"
 )
diff --git a/flyteplugins/go/tasks/pluginmachinery/tasklog/plugin.go b/flyteplugins/go/tasks/pluginmachinery/tasklog/plugin.go
index 730e5b424b..0ca91c3370 100644
--- a/flyteplugins/go/tasks/pluginmachinery/tasklog/plugin.go
+++ b/flyteplugins/go/tasks/pluginmachinery/tasklog/plugin.go
@@ -3,7 +3,7 @@ package tasklog
 import (
 	"regexp"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 //go:generate enumer --type=TemplateScheme --trimprefix=TemplateScheme -json -yaml
diff --git a/flyteplugins/go/tasks/pluginmachinery/tasklog/template.go b/flyteplugins/go/tasks/pluginmachinery/tasklog/template.go
index 13f2984890..2a68f42cff 100644
--- a/flyteplugins/go/tasks/pluginmachinery/tasklog/template.go
+++ b/flyteplugins/go/tasks/pluginmachinery/tasklog/template.go
@@ -6,7 +6,7 @@ import (
 	"strconv"
 	"strings"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 func MustCreateRegex(varName string) *regexp.Regexp {
diff --git a/flyteplugins/go/tasks/pluginmachinery/tasklog/template_test.go b/flyteplugins/go/tasks/pluginmachinery/tasklog/template_test.go
index 72d12c4bea..50c9213afb 100644
--- a/flyteplugins/go/tasks/pluginmachinery/tasklog/template_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/tasklog/template_test.go
@@ -6,7 +6,7 @@ import (
 
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/go-test/deep"
 	"github.com/stretchr/testify/assert"
 )
diff --git a/flyteplugins/go/tasks/pluginmachinery/utils/secrets/marshaler.go b/flyteplugins/go/tasks/pluginmachinery/utils/secrets/marshaler.go
index 197bc27ed4..9b51db0b82 100644
--- a/flyteplugins/go/tasks/pluginmachinery/utils/secrets/marshaler.go
+++ b/flyteplugins/go/tasks/pluginmachinery/utils/secrets/marshaler.go
@@ -9,7 +9,7 @@ import (
 
 	"github.com/golang/protobuf/proto"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 const (
diff --git a/flyteplugins/go/tasks/pluginmachinery/utils/secrets/marshaler_test.go b/flyteplugins/go/tasks/pluginmachinery/utils/secrets/marshaler_test.go
index 86f5104590..c2a3f17e80 100644
--- a/flyteplugins/go/tasks/pluginmachinery/utils/secrets/marshaler_test.go
+++ b/flyteplugins/go/tasks/pluginmachinery/utils/secrets/marshaler_test.go
@@ -4,7 +4,7 @@ import (
 	"reflect"
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/stretchr/testify/assert"
 )
diff --git a/flyteplugins/go/tasks/pluginmachinery/webapi/example/plugin.go b/flyteplugins/go/tasks/pluginmachinery/webapi/example/plugin.go
index 5062696145..bcb34eace7 100644
--- a/flyteplugins/go/tasks/pluginmachinery/webapi/example/plugin.go
+++ b/flyteplugins/go/tasks/pluginmachinery/webapi/example/plugin.go
@@ -4,7 +4,7 @@ import (
 	"context"
 	"time"
 
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytestdlib/errors"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
diff --git a/flyteplugins/go/tasks/plugins/array/array_tests_base.go b/flyteplugins/go/tasks/plugins/array/array_tests_base.go
index b8e5c561ed..6d6bd897d0 100644
--- a/flyteplugins/go/tasks/plugins/array/array_tests_base.go
+++ b/flyteplugins/go/tasks/plugins/array/array_tests_base.go
@@ -5,10 +5,10 @@ import (
 
 	"github.com/flyteorg/flyte/flyteplugins/tests"
 
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/flyteorg/flyte/flytestdlib/utils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 
@@ -16,7 +16,7 @@ import (
 
 	"github.com/stretchr/testify/assert"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
 )
 
 type AdvanceIteration func(ctx context.Context, tCtx core.TaskExecutionContext) error
diff --git a/flyteplugins/go/tasks/plugins/array/awsbatch/executor.go b/flyteplugins/go/tasks/plugins/array/awsbatch/executor.go
index a1ca632b27..5187ed7086 100644
--- a/flyteplugins/go/tasks/plugins/array/awsbatch/executor.go
+++ b/flyteplugins/go/tasks/plugins/array/awsbatch/executor.go
@@ -21,7 +21,7 @@ import (
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 const (
diff --git a/flyteplugins/go/tasks/plugins/array/awsbatch/executor_test.go b/flyteplugins/go/tasks/plugins/array/awsbatch/executor_test.go
index 9b481a83d6..120fe40d2d 100644
--- a/flyteplugins/go/tasks/plugins/array/awsbatch/executor_test.go
+++ b/flyteplugins/go/tasks/plugins/array/awsbatch/executor_test.go
@@ -20,7 +20,7 @@ import (
 
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 	queueMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/workqueue/mocks"
diff --git a/flyteplugins/go/tasks/plugins/array/awsbatch/job_config.go b/flyteplugins/go/tasks/plugins/array/awsbatch/job_config.go
index 40ba3de705..9629b3d771 100644
--- a/flyteplugins/go/tasks/plugins/array/awsbatch/job_config.go
+++ b/flyteplugins/go/tasks/plugins/array/awsbatch/job_config.go
@@ -5,7 +5,7 @@
 package awsbatch
 
 import (
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	v1 "k8s.io/api/core/v1"
 )
 
diff --git a/flyteplugins/go/tasks/plugins/array/awsbatch/job_definition.go b/flyteplugins/go/tasks/plugins/array/awsbatch/job_definition.go
index 897ebbcb95..22f39c200d 100644
--- a/flyteplugins/go/tasks/plugins/array/awsbatch/job_definition.go
+++ b/flyteplugins/go/tasks/plugins/array/awsbatch/job_definition.go
@@ -4,13 +4,13 @@ import (
 	"context"
 	"regexp"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginErrors "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/array/awsbatch/config"
 	arrayCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/array/core"
 	awsUtils "github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/awsutils"
 	"github.com/flyteorg/flyte/flytestdlib/errors"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/array/awsbatch/definition"
diff --git a/flyteplugins/go/tasks/plugins/array/awsbatch/job_definition_test.go b/flyteplugins/go/tasks/plugins/array/awsbatch/job_definition_test.go
index e373a1c70a..6568fecee3 100644
--- a/flyteplugins/go/tasks/plugins/array/awsbatch/job_definition_test.go
+++ b/flyteplugins/go/tasks/plugins/array/awsbatch/job_definition_test.go
@@ -5,7 +5,7 @@ import (
 
 	v1 "k8s.io/api/core/v1"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/mock"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
diff --git a/flyteplugins/go/tasks/plugins/array/awsbatch/launcher_test.go b/flyteplugins/go/tasks/plugins/array/awsbatch/launcher_test.go
index 09fa16bcad..4b23c6dabb 100644
--- a/flyteplugins/go/tasks/plugins/array/awsbatch/launcher_test.go
+++ b/flyteplugins/go/tasks/plugins/array/awsbatch/launcher_test.go
@@ -22,7 +22,7 @@ import (
 
 	core2 "github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/array/core"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/stretchr/testify/assert"
 
diff --git a/flyteplugins/go/tasks/plugins/array/awsbatch/monitor.go b/flyteplugins/go/tasks/plugins/array/awsbatch/monitor.go
index 0c575339f0..967639e6ed 100644
--- a/flyteplugins/go/tasks/plugins/array/awsbatch/monitor.go
+++ b/flyteplugins/go/tasks/plugins/array/awsbatch/monitor.go
@@ -3,7 +3,7 @@ package awsbatch
 import (
 	"context"
 
-	core2 "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core2 "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
diff --git a/flyteplugins/go/tasks/plugins/array/awsbatch/monitor_test.go b/flyteplugins/go/tasks/plugins/array/awsbatch/monitor_test.go
index 4c490d2a00..9188ce0237 100644
--- a/flyteplugins/go/tasks/plugins/array/awsbatch/monitor_test.go
+++ b/flyteplugins/go/tasks/plugins/array/awsbatch/monitor_test.go
@@ -13,8 +13,8 @@ import (
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/array/arraystatus"
 
+	flyteIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
-	flyteIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/aws/aws-sdk-go/aws/request"
 	"github.com/aws/aws-sdk-go/service/batch"
diff --git a/flyteplugins/go/tasks/plugins/array/awsbatch/task_links.go b/flyteplugins/go/tasks/plugins/array/awsbatch/task_links.go
index 5b585006ed..c3a05b0fcc 100644
--- a/flyteplugins/go/tasks/plugins/array/awsbatch/task_links.go
+++ b/flyteplugins/go/tasks/plugins/array/awsbatch/task_links.go
@@ -10,8 +10,8 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"golang.org/x/net/context"
 )
 
diff --git a/flyteplugins/go/tasks/plugins/array/awsbatch/transformer.go b/flyteplugins/go/tasks/plugins/array/awsbatch/transformer.go
index 886803fe35..521189cb67 100644
--- a/flyteplugins/go/tasks/plugins/array/awsbatch/transformer.go
+++ b/flyteplugins/go/tasks/plugins/array/awsbatch/transformer.go
@@ -10,13 +10,13 @@ import (
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/array"
 
 	"github.com/aws/aws-sdk-go/service/batch"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/template"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s"
 	config2 "github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/array/awsbatch/config"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/ptypes/duration"
 	v1 "k8s.io/api/core/v1"
 	"k8s.io/apimachinery/pkg/api/resource"
diff --git a/flyteplugins/go/tasks/plugins/array/awsbatch/transformer_test.go b/flyteplugins/go/tasks/plugins/array/awsbatch/transformer_test.go
index ad8450395d..27beea588e 100644
--- a/flyteplugins/go/tasks/plugins/array/awsbatch/transformer_test.go
+++ b/flyteplugins/go/tasks/plugins/array/awsbatch/transformer_test.go
@@ -29,8 +29,8 @@ import (
 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 
 	"github.com/aws/aws-sdk-go/service/batch"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flyteplugins/go/tasks/plugins/array/catalog.go b/flyteplugins/go/tasks/plugins/array/catalog.go
index e8ad56573e..0efbdc4088 100644
--- a/flyteplugins/go/tasks/plugins/array/catalog.go
+++ b/flyteplugins/go/tasks/plugins/array/catalog.go
@@ -6,8 +6,8 @@ import (
 	"math"
 	"strconv"
 
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	idlPlugins "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	idlPlugins "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 
 	arrayCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/array/core"
 
diff --git a/flyteplugins/go/tasks/plugins/array/catalog_test.go b/flyteplugins/go/tasks/plugins/array/catalog_test.go
index 44fe10219b..fe52dc2ff6 100644
--- a/flyteplugins/go/tasks/plugins/array/catalog_test.go
+++ b/flyteplugins/go/tasks/plugins/array/catalog_test.go
@@ -5,8 +5,8 @@ import (
 	"errors"
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 
 	pluginErrors "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
diff --git a/flyteplugins/go/tasks/plugins/array/core/metadata.go b/flyteplugins/go/tasks/plugins/array/core/metadata.go
index ed3bc52a3e..f7330d3b6f 100644
--- a/flyteplugins/go/tasks/plugins/array/core/metadata.go
+++ b/flyteplugins/go/tasks/plugins/array/core/metadata.go
@@ -3,7 +3,7 @@ package core
 import (
 	"context"
 
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
diff --git a/flyteplugins/go/tasks/plugins/array/core/metadata_test.go b/flyteplugins/go/tasks/plugins/array/core/metadata_test.go
index c10ef9d134..90275fb844 100644
--- a/flyteplugins/go/tasks/plugins/array/core/metadata_test.go
+++ b/flyteplugins/go/tasks/plugins/array/core/metadata_test.go
@@ -4,7 +4,7 @@ import (
 	"context"
 	"testing"
 
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
diff --git a/flyteplugins/go/tasks/plugins/array/core/state.go b/flyteplugins/go/tasks/plugins/array/core/state.go
index f5aecee577..80cfb1f742 100644
--- a/flyteplugins/go/tasks/plugins/array/core/state.go
+++ b/flyteplugins/go/tasks/plugins/array/core/state.go
@@ -10,11 +10,11 @@ import (
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/array/arraystatus"
 	"github.com/flyteorg/flyte/flytestdlib/bitarray"
 
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	idlPlugins "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	idlPlugins "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 )
 
diff --git a/flyteplugins/go/tasks/plugins/array/core/state_test.go b/flyteplugins/go/tasks/plugins/array/core/state_test.go
index c6876d4f13..51fe731de0 100644
--- a/flyteplugins/go/tasks/plugins/array/core/state_test.go
+++ b/flyteplugins/go/tasks/plugins/array/core/state_test.go
@@ -4,7 +4,7 @@ import (
 	"context"
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/golang/protobuf/proto"
 
 	"github.com/flyteorg/flyte/flytestdlib/bitarray"
diff --git a/flyteplugins/go/tasks/plugins/array/inputs.go b/flyteplugins/go/tasks/plugins/array/inputs.go
index 1322f8562b..e0a7035181 100644
--- a/flyteplugins/go/tasks/plugins/array/inputs.go
+++ b/flyteplugins/go/tasks/plugins/array/inputs.go
@@ -3,10 +3,10 @@ package array
 import (
 	"context"
 
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 // arrayJobInputReader is a proxy inputreader that overrides the inputpath to be the inputpathprefix for array jobs
diff --git a/flyteplugins/go/tasks/plugins/array/inputs_test.go b/flyteplugins/go/tasks/plugins/array/inputs_test.go
index e502b6559b..1424731848 100644
--- a/flyteplugins/go/tasks/plugins/array/inputs_test.go
+++ b/flyteplugins/go/tasks/plugins/array/inputs_test.go
@@ -3,9 +3,9 @@ package array
 import (
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginsCoreMock "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 	pluginsIOMock "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 
diff --git a/flyteplugins/go/tasks/plugins/array/k8s/integration_test.go b/flyteplugins/go/tasks/plugins/array/k8s/integration_test.go
index 0e6f20b308..1b8a8224a2 100644
--- a/flyteplugins/go/tasks/plugins/array/k8s/integration_test.go
+++ b/flyteplugins/go/tasks/plugins/array/k8s/integration_test.go
@@ -5,7 +5,7 @@ import (
 	"strconv"
 	"testing"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
diff --git a/flyteplugins/go/tasks/plugins/array/k8s/management.go b/flyteplugins/go/tasks/plugins/array/k8s/management.go
index a46778c1f8..89996226e6 100644
--- a/flyteplugins/go/tasks/plugins/array/k8s/management.go
+++ b/flyteplugins/go/tasks/plugins/array/k8s/management.go
@@ -5,7 +5,7 @@ import (
 	"fmt"
 	"time"
 
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/logs"
diff --git a/flyteplugins/go/tasks/plugins/array/k8s/management_test.go b/flyteplugins/go/tasks/plugins/array/k8s/management_test.go
index 0a69186c3c..6eafc26bbe 100644
--- a/flyteplugins/go/tasks/plugins/array/k8s/management_test.go
+++ b/flyteplugins/go/tasks/plugins/array/k8s/management_test.go
@@ -4,7 +4,7 @@ import (
 	"fmt"
 	"testing"
 
-	core2 "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core2 "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/logs"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
diff --git a/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context.go b/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context.go
index 5b606eadd7..059e10b540 100644
--- a/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context.go
+++ b/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context.go
@@ -6,7 +6,7 @@ import (
 	"regexp"
 	"strconv"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
diff --git a/flyteplugins/go/tasks/plugins/array/outputs.go b/flyteplugins/go/tasks/plugins/array/outputs.go
index 964dcec3a6..1f59f2a7e3 100644
--- a/flyteplugins/go/tasks/plugins/array/outputs.go
+++ b/flyteplugins/go/tasks/plugins/array/outputs.go
@@ -18,8 +18,8 @@ import (
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 var (
diff --git a/flyteplugins/go/tasks/plugins/array/outputs_test.go b/flyteplugins/go/tasks/plugins/array/outputs_test.go
index d33fbd04ff..7ddf06a1dc 100644
--- a/flyteplugins/go/tasks/plugins/array/outputs_test.go
+++ b/flyteplugins/go/tasks/plugins/array/outputs_test.go
@@ -17,7 +17,7 @@ import (
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
 
 	"github.com/flyteorg/flyte/flytestdlib/bitarray"
 
@@ -30,10 +30,10 @@ import (
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/workqueue/mocks"
 	"github.com/stretchr/testify/mock"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/workqueue"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 func TestOutputAssembler_Queue(t *testing.T) {
diff --git a/flyteplugins/go/tasks/plugins/hive/execution_state.go b/flyteplugins/go/tasks/plugins/hive/execution_state.go
index 6718d83563..f245279df4 100644
--- a/flyteplugins/go/tasks/plugins/hive/execution_state.go
+++ b/flyteplugins/go/tasks/plugins/hive/execution_state.go
@@ -13,8 +13,8 @@ import (
 	"github.com/flyteorg/flyte/flytestdlib/cache"
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/hive/config"
diff --git a/flyteplugins/go/tasks/plugins/hive/execution_state_test.go b/flyteplugins/go/tasks/plugins/hive/execution_state_test.go
index 8e0600bb28..b265c31bfb 100644
--- a/flyteplugins/go/tasks/plugins/hive/execution_state_test.go
+++ b/flyteplugins/go/tasks/plugins/hive/execution_state_test.go
@@ -15,8 +15,8 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 
 	mocks2 "github.com/flyteorg/flyte/flytestdlib/cache/mocks"
 
diff --git a/flyteplugins/go/tasks/plugins/hive/test_helpers.go b/flyteplugins/go/tasks/plugins/hive/test_helpers.go
index 771fecb75e..9635526aaf 100644
--- a/flyteplugins/go/tasks/plugins/hive/test_helpers.go
+++ b/flyteplugins/go/tasks/plugins/hive/test_helpers.go
@@ -1,13 +1,13 @@
 package hive
 
 import (
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	coreMock "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 	ioMock "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 	"github.com/stretchr/testify/mock"
 	v1 "k8s.io/api/core/v1"
diff --git a/flyteplugins/go/tasks/plugins/k8s/dask/dask.go b/flyteplugins/go/tasks/plugins/k8s/dask/dask.go
index 967b812656..f8272b919a 100644
--- a/flyteplugins/go/tasks/plugins/k8s/dask/dask.go
+++ b/flyteplugins/go/tasks/plugins/k8s/dask/dask.go
@@ -6,6 +6,7 @@ import (
 	"time"
 
 	daskAPI "github.com/dask/dask-kubernetes/v2023/dask_kubernetes/operator/go_client/pkg/apis/kubernetes.dask.org/v1"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/logs"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
@@ -14,7 +15,6 @@ import (
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/k8s"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/tasklog"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
 	v1 "k8s.io/api/core/v1"
 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 	"k8s.io/apimachinery/pkg/util/intstr"
diff --git a/flyteplugins/go/tasks/plugins/k8s/dask/dask_test.go b/flyteplugins/go/tasks/plugins/k8s/dask/dask_test.go
index aa87f91f8d..4eff02279a 100644
--- a/flyteplugins/go/tasks/plugins/k8s/dask/dask_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/dask/dask_test.go
@@ -6,11 +6,11 @@ import (
 	"time"
 
 	daskAPI "github.com/dask/dask-kubernetes/v2023/dask_kubernetes/operator/go_client/pkg/apis/kubernetes.dask.org/v1"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s/config"
 	pluginIOMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 	v1 "k8s.io/api/core/v1"
diff --git a/flyteplugins/go/tasks/plugins/k8s/kfoperators/common/common_operator.go b/flyteplugins/go/tasks/plugins/k8s/kfoperators/common/common_operator.go
index e14ae3ccc7..4e38d791c4 100644
--- a/flyteplugins/go/tasks/plugins/k8s/kfoperators/common/common_operator.go
+++ b/flyteplugins/go/tasks/plugins/k8s/kfoperators/common/common_operator.go
@@ -9,11 +9,11 @@ import (
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/k8s"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/tasklog"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	kfplugins "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
 	flyteerr "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/logs"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	kfplugins "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
 	commonOp "github.com/kubeflow/common/pkg/apis/common/v1"
 	v1 "k8s.io/api/core/v1"
 	meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
diff --git a/flyteplugins/go/tasks/plugins/k8s/kfoperators/common/common_operator_test.go b/flyteplugins/go/tasks/plugins/k8s/kfoperators/common/common_operator_test.go
index 0883c0e37f..4f5d70dc5c 100644
--- a/flyteplugins/go/tasks/plugins/k8s/kfoperators/common/common_operator_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/kfoperators/common/common_operator_test.go
@@ -5,8 +5,8 @@ import (
 	"testing"
 	"time"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/logs"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
diff --git a/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi/mpi.go b/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi/mpi.go
index 701a5a00c3..492dd32235 100644
--- a/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi/mpi.go
+++ b/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi/mpi.go
@@ -6,8 +6,8 @@ import (
 	"strings"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
-	kfplugins "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
+	kfplugins "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
 
 	flyteerr "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
diff --git a/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi/mpi_test.go b/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi/mpi_test.go
index 4c788b6bc1..96d8efdcb8 100644
--- a/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi/mpi_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/kfoperators/mpi/mpi_test.go
@@ -6,9 +6,9 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
-	kfplugins "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
+	kfplugins "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/logs"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
diff --git a/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch.go b/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch.go
index 392c330d52..07f3df0ef5 100644
--- a/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch.go
+++ b/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch.go
@@ -5,8 +5,8 @@ import (
 	"fmt"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
-	kfplugins "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
+	kfplugins "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
 
 	flyteerr "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
diff --git a/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch_test.go b/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch_test.go
index 07297e48eb..a1e37f5124 100644
--- a/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/kfoperators/pytorch/pytorch_test.go
@@ -24,9 +24,9 @@ import (
 
 	pluginIOMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
-	kfplugins "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
+	kfplugins "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
 	"github.com/golang/protobuf/jsonpb"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 	"github.com/stretchr/testify/assert"
diff --git a/flyteplugins/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow.go b/flyteplugins/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow.go
index 69ad4390ea..c8beacc950 100644
--- a/flyteplugins/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow.go
+++ b/flyteplugins/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow.go
@@ -5,8 +5,8 @@ import (
 	"fmt"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
-	kfplugins "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
+	kfplugins "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
 
 	flyteerr "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
diff --git a/flyteplugins/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow_test.go b/flyteplugins/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow_test.go
index dc21710410..7ec1983bea 100644
--- a/flyteplugins/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/kfoperators/tensorflow/tensorflow_test.go
@@ -24,9 +24,9 @@ import (
 
 	pluginIOMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
-	kfplugins "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
+	kfplugins "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/kubeflow"
 	"github.com/golang/protobuf/jsonpb"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 	kubeflowv1 "github.com/kubeflow/training-operator/pkg/apis/kubeflow.org/v1"
diff --git a/flyteplugins/go/tasks/plugins/k8s/pod/container_test.go b/flyteplugins/go/tasks/plugins/k8s/pod/container_test.go
index ddc75fa858..0e1a2876da 100644
--- a/flyteplugins/go/tasks/plugins/k8s/pod/container_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/pod/container_test.go
@@ -5,7 +5,7 @@ import (
 	"fmt"
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	pluginsCoreMock "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
diff --git a/flyteplugins/go/tasks/plugins/k8s/pod/sidecar_test.go b/flyteplugins/go/tasks/plugins/k8s/pod/sidecar_test.go
index 850cc76383..bf389de09a 100644
--- a/flyteplugins/go/tasks/plugins/k8s/pod/sidecar_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/pod/sidecar_test.go
@@ -9,7 +9,7 @@ import (
 	"path"
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	errors2 "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
diff --git a/flyteplugins/go/tasks/plugins/k8s/ray/ray.go b/flyteplugins/go/tasks/plugins/k8s/ray/ray.go
index 31a86b44df..9b205beee6 100644
--- a/flyteplugins/go/tasks/plugins/k8s/ray/ray.go
+++ b/flyteplugins/go/tasks/plugins/k8s/ray/ray.go
@@ -6,8 +6,8 @@ import (
 	"strconv"
 	"strings"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/tasklog"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/logs"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
diff --git a/flyteplugins/go/tasks/plugins/k8s/ray/ray_test.go b/flyteplugins/go/tasks/plugins/k8s/ray/ray_test.go
index 5e7b82d55c..9556b0242c 100644
--- a/flyteplugins/go/tasks/plugins/k8s/ray/ray_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/ray/ray_test.go
@@ -16,13 +16,13 @@ import (
 	"github.com/golang/protobuf/jsonpb"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s"
 	pluginIOMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/k8s"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
 	rayv1alpha1 "github.com/ray-project/kuberay/ray-operator/apis/ray/v1alpha1"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
diff --git a/flyteplugins/go/tasks/plugins/k8s/sagemaker/builtin_training.go b/flyteplugins/go/tasks/plugins/k8s/sagemaker/builtin_training.go
index de69f6a88a..326eadfb8c 100644
--- a/flyteplugins/go/tasks/plugins/k8s/sagemaker/builtin_training.go
+++ b/flyteplugins/go/tasks/plugins/k8s/sagemaker/builtin_training.go
@@ -16,7 +16,7 @@ import (
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
 
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/k8s"
@@ -27,7 +27,7 @@ import (
 
 	taskError "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 
-	flyteSageMakerIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
+	flyteSageMakerIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/k8s/sagemaker/config"
 )
diff --git a/flyteplugins/go/tasks/plugins/k8s/sagemaker/builtin_training_test.go b/flyteplugins/go/tasks/plugins/k8s/sagemaker/builtin_training_test.go
index e2568de425..26b0efddad 100644
--- a/flyteplugins/go/tasks/plugins/k8s/sagemaker/builtin_training_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/sagemaker/builtin_training_test.go
@@ -7,10 +7,10 @@ import (
 
 	"github.com/go-test/deep"
 
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	taskError "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	commonv1 "github.com/aws/amazon-sagemaker-operator-for-k8s/api/v1/common"
 
@@ -21,7 +21,7 @@ import (
 
 	trainingjobv1 "github.com/aws/amazon-sagemaker-operator-for-k8s/api/v1/trainingjob"
 	"github.com/aws/aws-sdk-go/service/sagemaker"
-	sagemakerIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
+	sagemakerIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flyteplugins/go/tasks/plugins/k8s/sagemaker/custom_training.go b/flyteplugins/go/tasks/plugins/k8s/sagemaker/custom_training.go
index 829c651ef1..a7364c96ca 100644
--- a/flyteplugins/go/tasks/plugins/k8s/sagemaker/custom_training.go
+++ b/flyteplugins/go/tasks/plugins/k8s/sagemaker/custom_training.go
@@ -10,13 +10,13 @@ import (
 	"sigs.k8s.io/controller-runtime/pkg/client"
 
 	"github.com/aws/aws-sdk-go/service/sagemaker"
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	taskError "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/k8s"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginErrors "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 
@@ -25,7 +25,7 @@ import (
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/k8s/sagemaker/config"
 
 	trainingjobv1 "github.com/aws/amazon-sagemaker-operator-for-k8s/api/v1/trainingjob"
-	flyteSageMakerIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
+	flyteSageMakerIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 )
 
 func (m awsSagemakerPlugin) buildResourceForCustomTrainingJob(
diff --git a/flyteplugins/go/tasks/plugins/k8s/sagemaker/custom_training_test.go b/flyteplugins/go/tasks/plugins/k8s/sagemaker/custom_training_test.go
index 35697b893a..eac4d696ec 100644
--- a/flyteplugins/go/tasks/plugins/k8s/sagemaker/custom_training_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/sagemaker/custom_training_test.go
@@ -8,12 +8,12 @@ import (
 
 	"github.com/go-test/deep"
 
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	commonv1 "github.com/aws/amazon-sagemaker-operator-for-k8s/api/v1/common"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/k8s/sagemaker/config"
 
-	sagemakerIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
+	sagemakerIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 	"github.com/stretchr/testify/assert"
 
 	trainingjobv1 "github.com/aws/amazon-sagemaker-operator-for-k8s/api/v1/trainingjob"
diff --git a/flyteplugins/go/tasks/plugins/k8s/sagemaker/hyperparameter_tuning.go b/flyteplugins/go/tasks/plugins/k8s/sagemaker/hyperparameter_tuning.go
index fd77c6817b..c4fb453acb 100644
--- a/flyteplugins/go/tasks/plugins/k8s/sagemaker/hyperparameter_tuning.go
+++ b/flyteplugins/go/tasks/plugins/k8s/sagemaker/hyperparameter_tuning.go
@@ -14,7 +14,7 @@ import (
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
 
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/k8s"
@@ -26,7 +26,7 @@ import (
 
 	taskError "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 
-	flyteSageMakerIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
+	flyteSageMakerIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/k8s/sagemaker/config"
 )
diff --git a/flyteplugins/go/tasks/plugins/k8s/sagemaker/hyperparameter_tuning_test.go b/flyteplugins/go/tasks/plugins/k8s/sagemaker/hyperparameter_tuning_test.go
index f746c6ee77..4f3caef8d7 100644
--- a/flyteplugins/go/tasks/plugins/k8s/sagemaker/hyperparameter_tuning_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/sagemaker/hyperparameter_tuning_test.go
@@ -7,15 +7,15 @@ import (
 
 	"github.com/go-test/deep"
 
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	stdConfig "github.com/flyteorg/flyte/flytestdlib/config"
 	"github.com/flyteorg/flyte/flytestdlib/config/viper"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/k8s/sagemaker/config"
 
 	hpojobv1 "github.com/aws/amazon-sagemaker-operator-for-k8s/api/v1/hyperparametertuningjob"
-	sagemakerIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
+	sagemakerIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flyteplugins/go/tasks/plugins/k8s/sagemaker/outputs.go b/flyteplugins/go/tasks/plugins/k8s/sagemaker/outputs.go
index fb166a1459..062fbda449 100644
--- a/flyteplugins/go/tasks/plugins/k8s/sagemaker/outputs.go
+++ b/flyteplugins/go/tasks/plugins/k8s/sagemaker/outputs.go
@@ -6,13 +6,13 @@ import (
 
 	"sigs.k8s.io/controller-runtime/pkg/client"
 
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	hpojobv1 "github.com/aws/amazon-sagemaker-operator-for-k8s/api/v1/hyperparametertuningjob"
 	trainingjobv1 "github.com/aws/amazon-sagemaker-operator-for-k8s/api/v1/trainingjob"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 func createOutputLiteralMap(tk *core.TaskTemplate, outputPath string) *core.LiteralMap {
diff --git a/flyteplugins/go/tasks/plugins/k8s/sagemaker/plugin_test_utils.go b/flyteplugins/go/tasks/plugins/k8s/sagemaker/plugin_test_utils.go
index b7178f3b81..437945fe1e 100644
--- a/flyteplugins/go/tasks/plugins/k8s/sagemaker/plugin_test_utils.go
+++ b/flyteplugins/go/tasks/plugins/k8s/sagemaker/plugin_test_utils.go
@@ -1,20 +1,20 @@
 package sagemaker
 
 import (
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
 	"github.com/pkg/errors"
 
 	"github.com/golang/protobuf/proto"
 
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	sagemakerIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s"
 	pluginIOMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	sagemakerIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 	"github.com/golang/protobuf/jsonpb"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 	"github.com/stretchr/testify/mock"
diff --git a/flyteplugins/go/tasks/plugins/k8s/sagemaker/utils.go b/flyteplugins/go/tasks/plugins/k8s/sagemaker/utils.go
index e27b068b5a..95616c249b 100644
--- a/flyteplugins/go/tasks/plugins/k8s/sagemaker/utils.go
+++ b/flyteplugins/go/tasks/plugins/k8s/sagemaker/utils.go
@@ -18,11 +18,11 @@ import (
 	"github.com/Masterminds/semver"
 	commonv1 "github.com/aws/amazon-sagemaker-operator-for-k8s/api/v1/common"
 	awsSdk "github.com/aws/aws-sdk-go-v2/aws"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	flyteSagemakerIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/k8s/sagemaker/config"
 	"github.com/flyteorg/flyte/flytestdlib/errors"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	flyteSagemakerIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 	"github.com/golang/protobuf/proto"
 )
 
diff --git a/flyteplugins/go/tasks/plugins/k8s/sagemaker/utils_test.go b/flyteplugins/go/tasks/plugins/k8s/sagemaker/utils_test.go
index fe0fd8ca1c..e4266e1fd0 100644
--- a/flyteplugins/go/tasks/plugins/k8s/sagemaker/utils_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/sagemaker/utils_test.go
@@ -7,21 +7,21 @@ import (
 	"strconv"
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
 
 	commonv1 "github.com/aws/amazon-sagemaker-operator-for-k8s/api/v1/common"
+	sagemakerSpec "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 	"github.com/flyteorg/flyte/flytestdlib/config/viper"
-	sagemakerSpec "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 	"github.com/stretchr/testify/assert"
 
 	stdConfig "github.com/flyteorg/flyte/flytestdlib/config"
 
+	flyteSagemakerIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/k8s/sagemaker/config"
 	sagemakerConfig "github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/k8s/sagemaker/config"
-	flyteSagemakerIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins/sagemaker"
 )
 
 func makeGenericLiteral(st *structpb.Struct) *core.Literal {
diff --git a/flyteplugins/go/tasks/plugins/k8s/spark/spark.go b/flyteplugins/go/tasks/plugins/k8s/spark/spark.go
index 1c7692aea2..7c7ba34f9a 100644
--- a/flyteplugins/go/tasks/plugins/k8s/spark/spark.go
+++ b/flyteplugins/go/tasks/plugins/k8s/spark/spark.go
@@ -25,8 +25,8 @@ import (
 	"k8s.io/client-go/kubernetes/scheme"
 
 	sparkOp "github.com/GoogleCloudPlatform/spark-on-k8s-operator/pkg/apis/sparkoperator.k8s.io/v1beta2"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 
 	"regexp"
diff --git a/flyteplugins/go/tasks/plugins/k8s/spark/spark_test.go b/flyteplugins/go/tasks/plugins/k8s/spark/spark_test.go
index ebbbeb433b..e981c0dce1 100644
--- a/flyteplugins/go/tasks/plugins/k8s/spark/spark_test.go
+++ b/flyteplugins/go/tasks/plugins/k8s/spark/spark_test.go
@@ -21,8 +21,8 @@ import (
 	pluginIOMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 
 	sj "github.com/GoogleCloudPlatform/spark-on-k8s-operator/pkg/apis/sparkoperator.k8s.io/v1beta2"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/golang/protobuf/jsonpb"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 	"github.com/stretchr/testify/assert"
diff --git a/flyteplugins/go/tasks/plugins/presto/execution_state.go b/flyteplugins/go/tasks/plugins/presto/execution_state.go
index 46db3ae2f1..6b8b735548 100644
--- a/flyteplugins/go/tasks/plugins/presto/execution_state.go
+++ b/flyteplugins/go/tasks/plugins/presto/execution_state.go
@@ -17,8 +17,8 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/cache"
 
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/plugins/presto/config"
@@ -27,7 +27,7 @@ import (
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 
-	pb "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	pb "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 type ExecutionPhase int
diff --git a/flyteplugins/go/tasks/plugins/presto/execution_state_test.go b/flyteplugins/go/tasks/plugins/presto/execution_state_test.go
index 897adcc9d5..ae0741a914 100644
--- a/flyteplugins/go/tasks/plugins/presto/execution_state_test.go
+++ b/flyteplugins/go/tasks/plugins/presto/execution_state_test.go
@@ -16,7 +16,7 @@ import (
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
diff --git a/flyteplugins/go/tasks/plugins/presto/helpers_test.go b/flyteplugins/go/tasks/plugins/presto/helpers_test.go
index 27ee20df90..69cc3d4d38 100644
--- a/flyteplugins/go/tasks/plugins/presto/helpers_test.go
+++ b/flyteplugins/go/tasks/plugins/presto/helpers_test.go
@@ -1,13 +1,13 @@
 package presto
 
 import (
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	coreMock "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 	ioMock "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 	"github.com/stretchr/testify/mock"
 	v1 "k8s.io/api/core/v1"
diff --git a/flyteplugins/go/tasks/plugins/webapi/agent/integration_test.go b/flyteplugins/go/tasks/plugins/webapi/agent/integration_test.go
index ce1c6b6841..d820fe978c 100644
--- a/flyteplugins/go/tasks/plugins/webapi/agent/integration_test.go
+++ b/flyteplugins/go/tasks/plugins/webapi/agent/integration_test.go
@@ -8,11 +8,15 @@ import (
 	"testing"
 	"time"
 
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	pluginCoreMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 	ioMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/webapi"
@@ -22,10 +26,6 @@ import (
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
 	"github.com/flyteorg/flyte/flytestdlib/utils"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 	"google.golang.org/grpc"
diff --git a/flyteplugins/go/tasks/plugins/webapi/agent/plugin.go b/flyteplugins/go/tasks/plugins/webapi/agent/plugin.go
index 9713ba90f3..4fddde2e9e 100644
--- a/flyteplugins/go/tasks/plugins/webapi/agent/plugin.go
+++ b/flyteplugins/go/tasks/plugins/webapi/agent/plugin.go
@@ -6,13 +6,15 @@ import (
 	"encoding/gob"
 	"fmt"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
 	"github.com/flyteorg/flyte/flytestdlib/config"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
 	"google.golang.org/grpc/credentials"
 	"google.golang.org/grpc/credentials/insecure"
 
 	"google.golang.org/grpc/grpclog"
 
+	flyteIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service"
 	pluginErrors "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
@@ -22,8 +24,6 @@ import (
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/webapi"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
-	flyteIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service"
 	"google.golang.org/grpc"
 )
 
diff --git a/flyteplugins/go/tasks/plugins/webapi/athena/plugin.go b/flyteplugins/go/tasks/plugins/webapi/athena/plugin.go
index 983cc66d97..ec1c641c0e 100644
--- a/flyteplugins/go/tasks/plugins/webapi/athena/plugin.go
+++ b/flyteplugins/go/tasks/plugins/webapi/athena/plugin.go
@@ -12,7 +12,7 @@ import (
 	athenaTypes "github.com/aws/aws-sdk-go-v2/service/athena/types"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/aws"
 
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytestdlib/errors"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
diff --git a/flyteplugins/go/tasks/plugins/webapi/athena/plugin_test.go b/flyteplugins/go/tasks/plugins/webapi/athena/plugin_test.go
index 5f821bb679..0ef2ddf3c7 100644
--- a/flyteplugins/go/tasks/plugins/webapi/athena/plugin_test.go
+++ b/flyteplugins/go/tasks/plugins/webapi/athena/plugin_test.go
@@ -4,7 +4,7 @@ import (
 	"testing"
 
 	awsSdk "github.com/aws/aws-sdk-go-v2/aws"
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flyteplugins/go/tasks/plugins/webapi/athena/utils.go b/flyteplugins/go/tasks/plugins/webapi/athena/utils.go
index e229dc2979..bdee75c282 100644
--- a/flyteplugins/go/tasks/plugins/webapi/athena/utils.go
+++ b/flyteplugins/go/tasks/plugins/webapi/athena/utils.go
@@ -7,13 +7,13 @@ import (
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 
+	pluginsIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/flyteorg/flyte/flytestdlib/utils"
-	pluginsIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
 
+	pb "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/webapi"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	pb "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 func writeOutput(ctx context.Context, tCtx webapi.StatusContext, externalLocation string) error {
diff --git a/flyteplugins/go/tasks/plugins/webapi/athena/utils_test.go b/flyteplugins/go/tasks/plugins/webapi/athena/utils_test.go
index 2897c3da47..40106c6b93 100644
--- a/flyteplugins/go/tasks/plugins/webapi/athena/utils_test.go
+++ b/flyteplugins/go/tasks/plugins/webapi/athena/utils_test.go
@@ -12,11 +12,11 @@ import (
 	mocks3 "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	pb "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	mocks2 "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/utils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	pb "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
 
 	"github.com/stretchr/testify/assert"
 
diff --git a/flyteplugins/go/tasks/plugins/webapi/bigquery/integration_test.go b/flyteplugins/go/tasks/plugins/webapi/bigquery/integration_test.go
index 7aa83bdf03..8db32ad6fa 100644
--- a/flyteplugins/go/tasks/plugins/webapi/bigquery/integration_test.go
+++ b/flyteplugins/go/tasks/plugins/webapi/bigquery/integration_test.go
@@ -9,8 +9,9 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
 
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	pluginCoreMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
@@ -19,7 +20,6 @@ import (
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 	"google.golang.org/api/bigquery/v2"
diff --git a/flyteplugins/go/tasks/plugins/webapi/bigquery/plugin.go b/flyteplugins/go/tasks/plugins/webapi/bigquery/plugin.go
index d423d13380..698eeeb5dc 100644
--- a/flyteplugins/go/tasks/plugins/webapi/bigquery/plugin.go
+++ b/flyteplugins/go/tasks/plugins/webapi/bigquery/plugin.go
@@ -18,9 +18,9 @@ import (
 	"google.golang.org/api/bigquery/v2"
 	"google.golang.org/api/googleapi"
 
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginErrors "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"google.golang.org/api/option"
 
 	"github.com/flyteorg/flyte/flytestdlib/logger"
diff --git a/flyteplugins/go/tasks/plugins/webapi/bigquery/plugin_test.go b/flyteplugins/go/tasks/plugins/webapi/bigquery/plugin_test.go
index 4cb25fa8a8..499e6c5792 100644
--- a/flyteplugins/go/tasks/plugins/webapi/bigquery/plugin_test.go
+++ b/flyteplugins/go/tasks/plugins/webapi/bigquery/plugin_test.go
@@ -16,9 +16,9 @@ import (
 	"github.com/stretchr/testify/mock"
 	"k8s.io/apimachinery/pkg/util/rand"
 
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"google.golang.org/api/bigquery/v2"
 	"google.golang.org/api/googleapi"
diff --git a/flyteplugins/go/tasks/plugins/webapi/bigquery/query_job.go b/flyteplugins/go/tasks/plugins/webapi/bigquery/query_job.go
index 096f162b6f..8a9190d8e5 100644
--- a/flyteplugins/go/tasks/plugins/webapi/bigquery/query_job.go
+++ b/flyteplugins/go/tasks/plugins/webapi/bigquery/query_job.go
@@ -5,9 +5,9 @@ import (
 
 	"github.com/pkg/errors"
 
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginErrors "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	pluginUtils "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 	"google.golang.org/api/bigquery/v2"
 )
diff --git a/flyteplugins/go/tasks/plugins/webapi/bigquery/query_job_test.go b/flyteplugins/go/tasks/plugins/webapi/bigquery/query_job_test.go
index b53c838400..665808830d 100644
--- a/flyteplugins/go/tasks/plugins/webapi/bigquery/query_job_test.go
+++ b/flyteplugins/go/tasks/plugins/webapi/bigquery/query_job_test.go
@@ -3,7 +3,7 @@ package bigquery
 import (
 	"testing"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
 
 	"github.com/stretchr/testify/assert"
 	"google.golang.org/api/bigquery/v2"
diff --git a/flyteplugins/go/tasks/plugins/webapi/databricks/integration_test.go b/flyteplugins/go/tasks/plugins/webapi/databricks/integration_test.go
index 7ef1a98e2c..7fba0f9828 100644
--- a/flyteplugins/go/tasks/plugins/webapi/databricks/integration_test.go
+++ b/flyteplugins/go/tasks/plugins/webapi/databricks/integration_test.go
@@ -8,9 +8,12 @@ import (
 	"testing"
 	"time"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	"github.com/flyteorg/flyte/flytestdlib/utils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	coreIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	pluginCoreMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
@@ -18,9 +21,6 @@ import (
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	coreIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 )
diff --git a/flyteplugins/go/tasks/plugins/webapi/databricks/plugin.go b/flyteplugins/go/tasks/plugins/webapi/databricks/plugin.go
index 7626cb9c6b..510c551eeb 100644
--- a/flyteplugins/go/tasks/plugins/webapi/databricks/plugin.go
+++ b/flyteplugins/go/tasks/plugins/webapi/databricks/plugin.go
@@ -12,14 +12,14 @@ import (
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
 
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins"
 	pluginErrors "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/template"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
 	"github.com/flyteorg/flyte/flytestdlib/errors"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins"
 
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 
diff --git a/flyteplugins/go/tasks/plugins/webapi/snowflake/integration_test.go b/flyteplugins/go/tasks/plugins/webapi/snowflake/integration_test.go
index 20641d76cd..92053099e7 100644
--- a/flyteplugins/go/tasks/plugins/webapi/snowflake/integration_test.go
+++ b/flyteplugins/go/tasks/plugins/webapi/snowflake/integration_test.go
@@ -8,6 +8,9 @@ import (
 	"testing"
 	"time"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	coreIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	pluginCoreMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
@@ -15,9 +18,6 @@ import (
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	coreIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 )
diff --git a/flyteplugins/go/tasks/plugins/webapi/snowflake/plugin.go b/flyteplugins/go/tasks/plugins/webapi/snowflake/plugin.go
index 88bb8f50f5..7f2609f9cf 100644
--- a/flyteplugins/go/tasks/plugins/webapi/snowflake/plugin.go
+++ b/flyteplugins/go/tasks/plugins/webapi/snowflake/plugin.go
@@ -10,13 +10,13 @@ import (
 	"net/http"
 	"time"
 
+	flyteIdlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	errors2 "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	pluginErrors "github.com/flyteorg/flyte/flyteplugins/go/tasks/errors"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/template"
 	"github.com/flyteorg/flyte/flytestdlib/errors"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	flyteIdlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 
diff --git a/flyteplugins/tests/end_to_end.go b/flyteplugins/tests/end_to_end.go
index a8f708e2f1..6043ec88fd 100644
--- a/flyteplugins/tests/end_to_end.go
+++ b/flyteplugins/tests/end_to_end.go
@@ -38,7 +38,7 @@ import (
 	"github.com/flyteorg/flyte/flytestdlib/storage"
 	"github.com/stretchr/testify/assert"
 
-	idlCore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	idlCore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 func createSampleContainerTask() *idlCore.Container {
diff --git a/flytepropeller/cmd/kubectl-flyte/cmd/compile.go b/flytepropeller/cmd/kubectl-flyte/cmd/compile.go
index ea5fc7d41e..eec5efaf30 100644
--- a/flytepropeller/cmd/kubectl-flyte/cmd/compile.go
+++ b/flytepropeller/cmd/kubectl-flyte/cmd/compile.go
@@ -5,10 +5,10 @@ import (
 	"io/ioutil"
 	"os"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	compilerErrors "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/pkg/errors"
 	"github.com/spf13/cobra"
 )
diff --git a/flytepropeller/cmd/kubectl-flyte/cmd/create.go b/flytepropeller/cmd/kubectl-flyte/cmd/create.go
index bf202e6687..4fcdbec620 100644
--- a/flytepropeller/cmd/kubectl-flyte/cmd/create.go
+++ b/flytepropeller/cmd/kubectl-flyte/cmd/create.go
@@ -13,12 +13,12 @@ import (
 	"github.com/golang/protobuf/jsonpb"
 	"github.com/golang/protobuf/proto"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	compilerErrors "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/transformers/k8s"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/pkg/errors"
 	"github.com/spf13/cobra"
diff --git a/flytepropeller/cmd/kubectl-flyte/cmd/create_test.go b/flytepropeller/cmd/kubectl-flyte/cmd/create_test.go
index a2a24fe76c..e506a272cd 100644
--- a/flytepropeller/cmd/kubectl-flyte/cmd/create_test.go
+++ b/flytepropeller/cmd/kubectl-flyte/cmd/create_test.go
@@ -10,11 +10,11 @@ import (
 
 	"github.com/ghodss/yaml"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/transformers/k8s"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/jsonpb"
 	"github.com/golang/protobuf/proto"
 	"github.com/stretchr/testify/assert"
diff --git a/flytepropeller/events/admin_eventsink.go b/flytepropeller/events/admin_eventsink.go
index 9f1006620a..c3ea312a37 100644
--- a/flytepropeller/events/admin_eventsink.go
+++ b/flytepropeller/events/admin_eventsink.go
@@ -4,15 +4,15 @@ import (
 	"context"
 	"fmt"
 
-	admin2 "github.com/flyteorg/flyteidl/clients/go/admin"
+	admin2 "github.com/flyteorg/flyte/flyteidl/clients/go/admin"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service"
 	"github.com/flyteorg/flyte/flytepropeller/events/errors"
 	"github.com/flyteorg/flyte/flytestdlib/fastcheck"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
-	"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/golang/protobuf/proto"
 	"golang.org/x/time/rate"
 )
diff --git a/flytepropeller/events/admin_eventsink_integration_test.go b/flytepropeller/events/admin_eventsink_integration_test.go
index a2add91ac1..adcdabad57 100644
--- a/flytepropeller/events/admin_eventsink_integration_test.go
+++ b/flytepropeller/events/admin_eventsink_integration_test.go
@@ -14,9 +14,9 @@ import (
 
 	"github.com/stretchr/testify/assert"
 
-	"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/flyteorg/flyte/flyteidl/clients/go/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flytestdlib/config"
 	"github.com/golang/protobuf/ptypes"
 )
diff --git a/flytepropeller/events/admin_eventsink_test.go b/flytepropeller/events/admin_eventsink_test.go
index 46af5a5dd9..fa8b56b39b 100644
--- a/flytepropeller/events/admin_eventsink_test.go
+++ b/flytepropeller/events/admin_eventsink_test.go
@@ -5,12 +5,12 @@ import (
 	"reflect"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/admin/mocks"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flytepropeller/events/errors"
 	fastcheckMocks "github.com/flyteorg/flyte/flytestdlib/fastcheck/mocks"
-	"github.com/flyteorg/flyteidl/clients/go/admin/mocks"
-	"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/proto"
 	"github.com/golang/protobuf/ptypes"
 	"github.com/stretchr/testify/assert"
diff --git a/flytepropeller/events/errors/errors.go b/flytepropeller/events/errors/errors.go
index 1a12fa3f63..a956b8ecce 100644
--- a/flytepropeller/events/errors/errors.go
+++ b/flytepropeller/events/errors/errors.go
@@ -6,8 +6,8 @@ import (
 	"fmt"
 	"strings"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
 	"google.golang.org/grpc/codes"
 	"google.golang.org/grpc/status"
 )
diff --git a/flytepropeller/events/errors/errors_test.go b/flytepropeller/events/errors/errors_test.go
index 7286b3a6d7..e8df4c2bf1 100644
--- a/flytepropeller/events/errors/errors_test.go
+++ b/flytepropeller/events/errors/errors_test.go
@@ -4,7 +4,7 @@ import (
 	"fmt"
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
 	"github.com/stretchr/testify/assert"
 	"google.golang.org/grpc/codes"
 	"google.golang.org/grpc/status"
diff --git a/flytepropeller/events/event_recorder.go b/flytepropeller/events/event_recorder.go
index dbe0a1dbdb..da2dc61013 100644
--- a/flytepropeller/events/event_recorder.go
+++ b/flytepropeller/events/event_recorder.go
@@ -5,11 +5,11 @@ import (
 	"fmt"
 	"time"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flytepropeller/events/errors"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/golang/protobuf/proto"
 )
 
diff --git a/flytepropeller/events/event_recorder_test.go b/flytepropeller/events/event_recorder_test.go
index 8b2b6f32a1..b5f7aa8d4e 100644
--- a/flytepropeller/events/event_recorder_test.go
+++ b/flytepropeller/events/event_recorder_test.go
@@ -5,12 +5,12 @@ import (
 	"math/rand"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flytepropeller/events/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 
 	"github.com/stretchr/testify/assert"
 )
diff --git a/flytepropeller/events/eventsink_test.go b/flytepropeller/events/eventsink_test.go
index 7c4a13e70f..497605fe85 100644
--- a/flytepropeller/events/eventsink_test.go
+++ b/flytepropeller/events/eventsink_test.go
@@ -9,8 +9,8 @@ import (
 	"strings"
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/golang/protobuf/ptypes"
 	"github.com/stretchr/testify/assert"
 )
diff --git a/flytepropeller/events/local_eventsink.go b/flytepropeller/events/local_eventsink.go
index fb3fcdc676..3dc4cfe897 100644
--- a/flytepropeller/events/local_eventsink.go
+++ b/flytepropeller/events/local_eventsink.go
@@ -7,7 +7,7 @@ import (
 	"os"
 	"sync"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/golang/protobuf/proto"
 	"github.com/golang/protobuf/ptypes"
 )
diff --git a/flytepropeller/events/mocks/event_recorder.go b/flytepropeller/events/mocks/event_recorder.go
index ff73b1f3ac..f7fb67bf03 100644
--- a/flytepropeller/events/mocks/event_recorder.go
+++ b/flytepropeller/events/mocks/event_recorder.go
@@ -5,7 +5,7 @@ package mocks
 import (
 	context "context"
 
-	event "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	event "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	mock "github.com/stretchr/testify/mock"
 )
diff --git a/flytepropeller/events/mocks/node_event_recorder.go b/flytepropeller/events/mocks/node_event_recorder.go
index 6ae1f8833a..bf8ae7f07a 100644
--- a/flytepropeller/events/mocks/node_event_recorder.go
+++ b/flytepropeller/events/mocks/node_event_recorder.go
@@ -7,7 +7,7 @@ import (
 
 	config "github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
 
-	event "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	event "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	mock "github.com/stretchr/testify/mock"
 )
diff --git a/flytepropeller/events/mocks/task_event_recorder.go b/flytepropeller/events/mocks/task_event_recorder.go
index 18727d80fe..91d59412ed 100644
--- a/flytepropeller/events/mocks/task_event_recorder.go
+++ b/flytepropeller/events/mocks/task_event_recorder.go
@@ -7,7 +7,7 @@ import (
 
 	config "github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
 
-	event "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	event "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	mock "github.com/stretchr/testify/mock"
 )
diff --git a/flytepropeller/events/mocks/workflow_event_recorder.go b/flytepropeller/events/mocks/workflow_event_recorder.go
index 957f97780c..f772e6ba7e 100644
--- a/flytepropeller/events/mocks/workflow_event_recorder.go
+++ b/flytepropeller/events/mocks/workflow_event_recorder.go
@@ -7,7 +7,7 @@ import (
 
 	config "github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
 
-	event "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	event "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	mock "github.com/stretchr/testify/mock"
 )
diff --git a/flytepropeller/events/node_event_recorder.go b/flytepropeller/events/node_event_recorder.go
index b0e16d7a5a..cb856fcbac 100644
--- a/flytepropeller/events/node_event_recorder.go
+++ b/flytepropeller/events/node_event_recorder.go
@@ -6,11 +6,11 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/golang/protobuf/proto"
 	"google.golang.org/grpc/codes"
 	"google.golang.org/grpc/status"
diff --git a/flytepropeller/events/node_event_recorder_test.go b/flytepropeller/events/node_event_recorder_test.go
index 3878578fb7..4234108d62 100644
--- a/flytepropeller/events/node_event_recorder_test.go
+++ b/flytepropeller/events/node_event_recorder_test.go
@@ -4,11 +4,11 @@ import (
 	"context"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flytepropeller/events/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
 	storageMocks "github.com/flyteorg/flyte/flytestdlib/storage/mocks"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/golang/protobuf/proto"
 	"github.com/pkg/errors"
 	"github.com/stretchr/testify/assert"
diff --git a/flytepropeller/events/task_event_recorder.go b/flytepropeller/events/task_event_recorder.go
index ba2e6dc938..f2ca2dc666 100644
--- a/flytepropeller/events/task_event_recorder.go
+++ b/flytepropeller/events/task_event_recorder.go
@@ -6,11 +6,11 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/golang/protobuf/proto"
 	"google.golang.org/grpc/codes"
 	"google.golang.org/grpc/status"
diff --git a/flytepropeller/events/task_event_recorder_test.go b/flytepropeller/events/task_event_recorder_test.go
index d2e67801fd..3e622efdc9 100644
--- a/flytepropeller/events/task_event_recorder_test.go
+++ b/flytepropeller/events/task_event_recorder_test.go
@@ -4,11 +4,11 @@ import (
 	"context"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flytepropeller/events/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
 	storageMocks "github.com/flyteorg/flyte/flytestdlib/storage/mocks"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/golang/protobuf/proto"
 	"github.com/pkg/errors"
 	"github.com/stretchr/testify/assert"
diff --git a/flytepropeller/events/test_utils.go b/flytepropeller/events/test_utils.go
index 98a9fe7f56..2065f06746 100644
--- a/flytepropeller/events/test_utils.go
+++ b/flytepropeller/events/test_utils.go
@@ -1,8 +1,8 @@
 package events
 
 import (
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 var inlineEventConfig = &config.EventConfig{
diff --git a/flytepropeller/events/workflow_event_recorder.go b/flytepropeller/events/workflow_event_recorder.go
index 5e70431516..b898dc9b98 100644
--- a/flytepropeller/events/workflow_event_recorder.go
+++ b/flytepropeller/events/workflow_event_recorder.go
@@ -6,11 +6,11 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/golang/protobuf/proto"
 	"google.golang.org/grpc/codes"
 	"google.golang.org/grpc/status"
diff --git a/flytepropeller/events/workflow_event_recorder_test.go b/flytepropeller/events/workflow_event_recorder_test.go
index 9a4e2d6d0a..83de680cdf 100644
--- a/flytepropeller/events/workflow_event_recorder_test.go
+++ b/flytepropeller/events/workflow_event_recorder_test.go
@@ -4,11 +4,11 @@ import (
 	"context"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flytepropeller/events/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
 	storageMocks "github.com/flyteorg/flyte/flytestdlib/storage/mocks"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/golang/protobuf/proto"
 	"github.com/pkg/errors"
 	"github.com/stretchr/testify/assert"
diff --git a/flytepropeller/go.mod b/flytepropeller/go.mod
index 6511bfe14c..c7174792ec 100644
--- a/flytepropeller/go.mod
+++ b/flytepropeller/go.mod
@@ -6,9 +6,9 @@ require (
 	github.com/DiSiqueira/GoTree v1.0.1-0.20180907134536-53a8e837f295
 	github.com/benlaurie/objecthash v0.0.0-20180202135721-d1e3d6079fc1
 	github.com/fatih/color v1.13.0
+	github.com/flyteorg/flyte/flyteidl v0.0.0-00010101000000-000000000000
 	github.com/flyteorg/flyte/flyteplugins v0.0.0-00010101000000-000000000000
 	github.com/flyteorg/flyte/flytestdlib v0.0.0-00010101000000-000000000000
-	github.com/flyteorg/flyteidl v0.0.0-00010101000000-000000000000
 	github.com/ghodss/yaml v1.0.0
 	github.com/go-redis/redis v6.15.7+incompatible
 	github.com/go-test/deep v1.0.7
@@ -149,8 +149,8 @@ replace (
 	github.com/aws/amazon-sagemaker-operator-for-k8s => github.com/aws/amazon-sagemaker-operator-for-k8s v1.0.1-0.20210303003444-0fb33b1fd49d
 	github.com/flyteorg/flyte/datacatalog => ../datacatalog
 	github.com/flyteorg/flyte/flyteadmin => ../flyteadmin
+	github.com/flyteorg/flyte/flyteidl => ../flyteidl
 	github.com/flyteorg/flyte/flyteplugins => ../flyteplugins
 	github.com/flyteorg/flyte/flytepropeller => ../flytepropeller
 	github.com/flyteorg/flyte/flytestdlib => ../flytestdlib
-	github.com/flyteorg/flyteidl => ../flyteidl
 )
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/branch.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/branch.go
index a8657805a5..65c794335c 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/branch.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/branch.go
@@ -3,7 +3,7 @@ package v1alpha1
 import (
 	"bytes"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/jsonpb"
 )
 
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/branch_test.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/branch_test.go
index 5047ecdef3..6defc55bf1 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/branch_test.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/branch_test.go
@@ -5,8 +5,8 @@ import (
 	"io/ioutil"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/error.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/error.go
index 68ce9be133..e505ac56e9 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/error.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/error.go
@@ -3,7 +3,7 @@ package v1alpha1
 import (
 	"bytes"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/jsonpb"
 )
 
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/execution_config.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/execution_config.go
index 12e5191b23..9250de9db8 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/execution_config.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/execution_config.go
@@ -1,7 +1,7 @@
 package v1alpha1
 
 import (
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
 	"k8s.io/apimachinery/pkg/api/resource"
 )
 
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/execution_config_test.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/execution_config_test.go
index 01859f1705..ab0633742f 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/execution_config_test.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/execution_config_test.go
@@ -1,7 +1,7 @@
 package v1alpha1
 
 import (
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
 	"github.com/stretchr/testify/assert"
 
 	"testing"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/gate.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/gate.go
index 621cf94aed..3610fadce2 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/gate.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/gate.go
@@ -3,7 +3,7 @@ package v1alpha1
 import (
 	"bytes"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/jsonpb"
 )
 
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/identifier.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/identifier.go
index 48c092f2cd..1f07927804 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/identifier.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/identifier.go
@@ -3,7 +3,7 @@ package v1alpha1
 import (
 	"bytes"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/jsonpb"
 )
 
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/iface.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/iface.go
index e3f19a8edb..19fa0ec5ed 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/iface.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/iface.go
@@ -12,9 +12,9 @@ import (
 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 	"k8s.io/apimachinery/pkg/types"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/bitarray"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 // The intention of these interfaces is to decouple the algorithm and usage from the actual CRD definition.
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableArrayNodeStatus.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableArrayNodeStatus.go
index a59a3d575d..f4cce3e643 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableArrayNodeStatus.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableArrayNodeStatus.go
@@ -3,8 +3,8 @@
 package mocks
 
 import (
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	bitarray "github.com/flyteorg/flyte/flytestdlib/bitarray"
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableBranchNode.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableBranchNode.go
index 267c69e9af..4537d0e3bc 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableBranchNode.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableBranchNode.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 
 	v1alpha1 "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableDynamicNodeStatus.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableDynamicNodeStatus.go
index 25f63f5375..5cfefa095d 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableDynamicNodeStatus.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableDynamicNodeStatus.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 
 	v1alpha1 "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableGateNode.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableGateNode.go
index fa9ec9178b..561d7f7171 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableGateNode.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableGateNode.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 
 	v1alpha1 "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableIfBlock.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableIfBlock.go
index 80c48b814c..a5c8704be7 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableIfBlock.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableIfBlock.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 )
 
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableNodeStatus.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableNodeStatus.go
index 040f90601f..cb447e06fc 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableNodeStatus.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableNodeStatus.go
@@ -5,7 +5,7 @@ package mocks
 import (
 	context "context"
 
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 
 	storage "github.com/flyteorg/flyte/flytestdlib/storage"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableTask.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableTask.go
index 146c4117a4..4422949731 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableTask.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableTask.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 )
 
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflow.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflow.go
index 9e8061c583..b417e2f892 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflow.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflow.go
@@ -5,7 +5,7 @@ package mocks
 import (
 	context "context"
 
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 
 	types "k8s.io/apimachinery/pkg/types"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowNodeStatus.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowNodeStatus.go
index 54c4689a55..9bbdbc5fce 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowNodeStatus.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowNodeStatus.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 
 	v1alpha1 "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowStatus.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowStatus.go
index 9c10493a69..1290e4f358 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowStatus.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/ExecutableWorkflowStatus.go
@@ -5,7 +5,7 @@ package mocks
 import (
 	context "context"
 
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 
 	storage "github.com/flyteorg/flyte/flytestdlib/storage"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/Meta.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/Meta.go
index 590cda9618..e99227b099 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/Meta.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/Meta.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 
 	types "k8s.io/apimachinery/pkg/types"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MetaExtended.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MetaExtended.go
index 995c457443..50e478b6d4 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MetaExtended.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MetaExtended.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 
 	types "k8s.io/apimachinery/pkg/types"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableArrayNodeStatus.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableArrayNodeStatus.go
index 838cf7af64..c20f80e349 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableArrayNodeStatus.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableArrayNodeStatus.go
@@ -3,8 +3,8 @@
 package mocks
 
 import (
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	bitarray "github.com/flyteorg/flyte/flytestdlib/bitarray"
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableDynamicNodeStatus.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableDynamicNodeStatus.go
index 72e0b3defa..97516ea916 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableDynamicNodeStatus.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableDynamicNodeStatus.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 
 	v1alpha1 "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableNodeStatus.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableNodeStatus.go
index 25ab6044c1..b8c97f6be7 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableNodeStatus.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableNodeStatus.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 
 	storage "github.com/flyteorg/flyte/flytestdlib/storage"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableWorkflowNodeStatus.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableWorkflowNodeStatus.go
index 7a1f28493c..4a1c6090b9 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableWorkflowNodeStatus.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks/MutableWorkflowNodeStatus.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 
 	v1alpha1 "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/node_status.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/node_status.go
index 61553547e2..6332762742 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/node_status.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/node_status.go
@@ -9,10 +9,10 @@ import (
 	"strconv"
 	"time"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/bitarray"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 )
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/node_status_test.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/node_status_test.go
index 56c5498d3c..5618d8ffb6 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/node_status_test.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/node_status_test.go
@@ -10,7 +10,7 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/storage"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/nodes.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/nodes.go
index 3ff76f3d53..4f6df3f87b 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/nodes.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/nodes.go
@@ -4,7 +4,7 @@ import (
 	"bytes"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/jsonpb"
 	typesv1 "k8s.io/api/core/v1"
 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/tasks.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/tasks.go
index e2bef531c9..f480ee3b2e 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/tasks.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/tasks.go
@@ -3,7 +3,7 @@ package v1alpha1
 import (
 	"bytes"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/jsonpb"
 )
 
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/workflow.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/workflow.go
index 0995d9da3c..8144c8619b 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/workflow.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/workflow.go
@@ -9,7 +9,7 @@ import (
 
 	"k8s.io/apimachinery/pkg/types"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/jsonpb"
 	"github.com/pkg/errors"
 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/workflow_status.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/workflow_status.go
index 28ec6bdf70..1c69721ffd 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/workflow_status.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/workflow_status.go
@@ -4,8 +4,8 @@ import (
 	"context"
 	"strconv"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytestdlib/storage"
 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/zz_generated.deepcopy.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/zz_generated.deepcopy.go
index dca712c32b..80d1f04427 100644
--- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/zz_generated.deepcopy.go
+++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/zz_generated.deepcopy.go
@@ -6,7 +6,7 @@
 package v1alpha1
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	v1 "k8s.io/api/core/v1"
 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 	runtime "k8s.io/apimachinery/pkg/runtime"
diff --git a/flytepropeller/pkg/compiler/admin.go b/flytepropeller/pkg/compiler/admin.go
index ce408f4c61..b2f32498a6 100644
--- a/flytepropeller/pkg/compiler/admin.go
+++ b/flytepropeller/pkg/compiler/admin.go
@@ -1,8 +1,8 @@
 package compiler
 
 import (
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 // This object is meant to satisfy github.com/flyteorg/flytepropeller/pkg/compiler/common.InterfaceProvider
diff --git a/flytepropeller/pkg/compiler/admin_test.go b/flytepropeller/pkg/compiler/admin_test.go
index b6bdfedf67..484a75ebff 100644
--- a/flytepropeller/pkg/compiler/admin_test.go
+++ b/flytepropeller/pkg/compiler/admin_test.go
@@ -3,9 +3,9 @@ package compiler
 import (
 	"testing"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/compiler/builders.go b/flytepropeller/pkg/compiler/builders.go
index fd50129827..5ab802b31d 100644
--- a/flytepropeller/pkg/compiler/builders.go
+++ b/flytepropeller/pkg/compiler/builders.go
@@ -3,8 +3,8 @@ package compiler
 import (
 	"fmt"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	c "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 type flyteTask = core.TaskTemplate //nolint:unused
diff --git a/flytepropeller/pkg/compiler/common/builder.go b/flytepropeller/pkg/compiler/common/builder.go
index 7a72d444cc..d985204075 100644
--- a/flytepropeller/pkg/compiler/common/builder.go
+++ b/flytepropeller/pkg/compiler/common/builder.go
@@ -2,8 +2,8 @@
 package common
 
 import (
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 const (
diff --git a/flytepropeller/pkg/compiler/common/id_set.go b/flytepropeller/pkg/compiler/common/id_set.go
index b508c4b1af..1877a96159 100644
--- a/flytepropeller/pkg/compiler/common/id_set.go
+++ b/flytepropeller/pkg/compiler/common/id_set.go
@@ -3,7 +3,7 @@ package common
 import (
 	"sort"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 type Empty struct{}
diff --git a/flytepropeller/pkg/compiler/common/index.go b/flytepropeller/pkg/compiler/common/index.go
index 4faeb85d2f..b6f4c7c023 100644
--- a/flytepropeller/pkg/compiler/common/index.go
+++ b/flytepropeller/pkg/compiler/common/index.go
@@ -1,8 +1,8 @@
 package common
 
 import (
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"k8s.io/apimachinery/pkg/util/sets"
 )
 
diff --git a/flytepropeller/pkg/compiler/common/mocks/interface_provider.go b/flytepropeller/pkg/compiler/common/mocks/interface_provider.go
index e98de3b18d..2d1f1862b2 100644
--- a/flytepropeller/pkg/compiler/common/mocks/interface_provider.go
+++ b/flytepropeller/pkg/compiler/common/mocks/interface_provider.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 )
 
diff --git a/flytepropeller/pkg/compiler/common/mocks/node.go b/flytepropeller/pkg/compiler/common/mocks/node.go
index e254845d0b..763635339b 100644
--- a/flytepropeller/pkg/compiler/common/mocks/node.go
+++ b/flytepropeller/pkg/compiler/common/mocks/node.go
@@ -3,8 +3,8 @@
 package mocks
 
 import (
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	common "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 )
diff --git a/flytepropeller/pkg/compiler/common/mocks/node_builder.go b/flytepropeller/pkg/compiler/common/mocks/node_builder.go
index 34adac251f..595b4b53f8 100644
--- a/flytepropeller/pkg/compiler/common/mocks/node_builder.go
+++ b/flytepropeller/pkg/compiler/common/mocks/node_builder.go
@@ -3,8 +3,8 @@
 package mocks
 
 import (
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	common "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 )
diff --git a/flytepropeller/pkg/compiler/common/mocks/task.go b/flytepropeller/pkg/compiler/common/mocks/task.go
index 28a2f15dc1..5f38bcf321 100644
--- a/flytepropeller/pkg/compiler/common/mocks/task.go
+++ b/flytepropeller/pkg/compiler/common/mocks/task.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 )
 
diff --git a/flytepropeller/pkg/compiler/common/mocks/workflow.go b/flytepropeller/pkg/compiler/common/mocks/workflow.go
index c6a5846507..9ad2559915 100644
--- a/flytepropeller/pkg/compiler/common/mocks/workflow.go
+++ b/flytepropeller/pkg/compiler/common/mocks/workflow.go
@@ -3,8 +3,8 @@
 package mocks
 
 import (
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	common "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 )
diff --git a/flytepropeller/pkg/compiler/common/mocks/workflow_builder.go b/flytepropeller/pkg/compiler/common/mocks/workflow_builder.go
index 52d3f7803a..5f46bd4610 100644
--- a/flytepropeller/pkg/compiler/common/mocks/workflow_builder.go
+++ b/flytepropeller/pkg/compiler/common/mocks/workflow_builder.go
@@ -3,8 +3,8 @@
 package mocks
 
 import (
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	common "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	errors "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
 
diff --git a/flytepropeller/pkg/compiler/common/reader.go b/flytepropeller/pkg/compiler/common/reader.go
index 74ee17d40b..8d2a774b57 100644
--- a/flytepropeller/pkg/compiler/common/reader.go
+++ b/flytepropeller/pkg/compiler/common/reader.go
@@ -1,7 +1,7 @@
 package common
 
 import (
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 type NodeID = string
diff --git a/flytepropeller/pkg/compiler/requirements.go b/flytepropeller/pkg/compiler/requirements.go
index 389b10f909..59243554d3 100644
--- a/flytepropeller/pkg/compiler/requirements.go
+++ b/flytepropeller/pkg/compiler/requirements.go
@@ -1,9 +1,9 @@
 package compiler
 
 import (
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 type TaskIdentifier = common.Identifier
diff --git a/flytepropeller/pkg/compiler/requirements_test.go b/flytepropeller/pkg/compiler/requirements_test.go
old mode 100755
new mode 100644
index 1910baa930..1a2681d724
--- a/flytepropeller/pkg/compiler/requirements_test.go
+++ b/flytepropeller/pkg/compiler/requirements_test.go
@@ -3,7 +3,7 @@ package compiler
 import (
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/compiler/task_compiler.go b/flytepropeller/pkg/compiler/task_compiler.go
index 437a2148a7..b6bea171f8 100644
--- a/flytepropeller/pkg/compiler/task_compiler.go
+++ b/flytepropeller/pkg/compiler/task_compiler.go
@@ -7,9 +7,9 @@ import (
 	v1 "k8s.io/api/core/v1"
 	"k8s.io/apimachinery/pkg/util/validation"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"k8s.io/apimachinery/pkg/api/resource"
 )
 
diff --git a/flytepropeller/pkg/compiler/task_compiler_test.go b/flytepropeller/pkg/compiler/task_compiler_test.go
index 1d79a8f3f0..b16d71d94c 100644
--- a/flytepropeller/pkg/compiler/task_compiler_test.go
+++ b/flytepropeller/pkg/compiler/task_compiler_test.go
@@ -8,7 +8,7 @@ import (
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/compiler/test/compiler_test.go b/flytepropeller/pkg/compiler/test/compiler_test.go
index afd6b80f9a..b06a367c79 100644
--- a/flytepropeller/pkg/compiler/test/compiler_test.go
+++ b/flytepropeller/pkg/compiler/test/compiler_test.go
@@ -13,7 +13,7 @@ import (
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/visualize"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
 
 	"k8s.io/apimachinery/pkg/util/sets"
 
@@ -21,12 +21,12 @@ import (
 
 	"github.com/ghodss/yaml"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/transformers/k8s"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/jsonpb"
 	"github.com/golang/protobuf/proto"
 	"github.com/stretchr/testify/assert"
diff --git a/flytepropeller/pkg/compiler/transformers/k8s/builder_mock_test.go b/flytepropeller/pkg/compiler/transformers/k8s/builder_mock_test.go
index ca30090072..083cdd9764 100644
--- a/flytepropeller/pkg/compiler/transformers/k8s/builder_mock_test.go
+++ b/flytepropeller/pkg/compiler/transformers/k8s/builder_mock_test.go
@@ -1,8 +1,8 @@
 package k8s
 
 import (
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 type mockWorkflow struct {
diff --git a/flytepropeller/pkg/compiler/transformers/k8s/inputs.go b/flytepropeller/pkg/compiler/transformers/k8s/inputs.go
index 81d8d65463..8ec20ef840 100644
--- a/flytepropeller/pkg/compiler/transformers/k8s/inputs.go
+++ b/flytepropeller/pkg/compiler/transformers/k8s/inputs.go
@@ -1,10 +1,10 @@
 package k8s
 
 import (
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/validators"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"k8s.io/apimachinery/pkg/util/sets"
 )
 
diff --git a/flytepropeller/pkg/compiler/transformers/k8s/node.go b/flytepropeller/pkg/compiler/transformers/k8s/node.go
index 2af4b9626f..55f45c8a9b 100644
--- a/flytepropeller/pkg/compiler/transformers/k8s/node.go
+++ b/flytepropeller/pkg/compiler/transformers/k8s/node.go
@@ -3,11 +3,11 @@ package k8s
 import (
 	"strings"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/go-test/deep"
 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 )
diff --git a/flytepropeller/pkg/compiler/transformers/k8s/node_test.go b/flytepropeller/pkg/compiler/transformers/k8s/node_test.go
index 16f7008c16..8e312756ee 100644
--- a/flytepropeller/pkg/compiler/transformers/k8s/node_test.go
+++ b/flytepropeller/pkg/compiler/transformers/k8s/node_test.go
@@ -4,7 +4,7 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
diff --git a/flytepropeller/pkg/compiler/transformers/k8s/utils.go b/flytepropeller/pkg/compiler/transformers/k8s/utils.go
index c2aa02b855..7669fe6cd1 100644
--- a/flytepropeller/pkg/compiler/transformers/k8s/utils.go
+++ b/flytepropeller/pkg/compiler/transformers/k8s/utils.go
@@ -5,8 +5,8 @@ import (
 
 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/ptypes"
 )
 
diff --git a/flytepropeller/pkg/compiler/transformers/k8s/utils_test.go b/flytepropeller/pkg/compiler/transformers/k8s/utils_test.go
index b301461059..46e092a29e 100644
--- a/flytepropeller/pkg/compiler/transformers/k8s/utils_test.go
+++ b/flytepropeller/pkg/compiler/transformers/k8s/utils_test.go
@@ -6,7 +6,7 @@ import (
 	"github.com/go-test/deep"
 	_struct "github.com/golang/protobuf/ptypes/struct"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/compiler/transformers/k8s/workflow.go b/flytepropeller/pkg/compiler/transformers/k8s/workflow.go
index b33837499d..3817cb7762 100644
--- a/flytepropeller/pkg/compiler/transformers/k8s/workflow.go
+++ b/flytepropeller/pkg/compiler/transformers/k8s/workflow.go
@@ -6,11 +6,11 @@ import (
 	"hash/fnv"
 	"strings"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/utils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 )
 
diff --git a/flytepropeller/pkg/compiler/transformers/k8s/workflow_test.go b/flytepropeller/pkg/compiler/transformers/k8s/workflow_test.go
index f650c7972a..362fee8990 100644
--- a/flytepropeller/pkg/compiler/transformers/k8s/workflow_test.go
+++ b/flytepropeller/pkg/compiler/transformers/k8s/workflow_test.go
@@ -5,10 +5,10 @@ import (
 	"io/ioutil"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/jsonpb"
 	"github.com/stretchr/testify/assert"
 	"k8s.io/apimachinery/pkg/util/sets"
diff --git a/flytepropeller/pkg/compiler/utils.go b/flytepropeller/pkg/compiler/utils.go
index ce26c97196..19da73a92c 100644
--- a/flytepropeller/pkg/compiler/utils.go
+++ b/flytepropeller/pkg/compiler/utils.go
@@ -1,8 +1,8 @@
 package compiler
 
 import (
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"k8s.io/apimachinery/pkg/util/sets"
 )
 
diff --git a/flytepropeller/pkg/compiler/validators/bindings.go b/flytepropeller/pkg/compiler/validators/bindings.go
index c5b918c964..7c6f0e60e6 100644
--- a/flytepropeller/pkg/compiler/validators/bindings.go
+++ b/flytepropeller/pkg/compiler/validators/bindings.go
@@ -5,9 +5,9 @@ import (
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/typing"
 
+	flyte "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	c "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	flyte "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"k8s.io/apimachinery/pkg/util/sets"
 )
 
diff --git a/flytepropeller/pkg/compiler/validators/bindings_test.go b/flytepropeller/pkg/compiler/validators/bindings_test.go
index c30ebbae60..9d90e1c843 100644
--- a/flytepropeller/pkg/compiler/validators/bindings_test.go
+++ b/flytepropeller/pkg/compiler/validators/bindings_test.go
@@ -5,10 +5,10 @@ import (
 
 	c "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common/mocks"
 	compilerErrors "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
diff --git a/flytepropeller/pkg/compiler/validators/branch.go b/flytepropeller/pkg/compiler/validators/branch.go
index 072d626a6f..c7aabc19cf 100644
--- a/flytepropeller/pkg/compiler/validators/branch.go
+++ b/flytepropeller/pkg/compiler/validators/branch.go
@@ -1,9 +1,9 @@
 package validators
 
 import (
+	flyte "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	c "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	flyte "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"k8s.io/apimachinery/pkg/util/sets"
 )
 
diff --git a/flytepropeller/pkg/compiler/validators/branch_test.go b/flytepropeller/pkg/compiler/validators/branch_test.go
index 2cdd23da52..537f0d9b4f 100644
--- a/flytepropeller/pkg/compiler/validators/branch_test.go
+++ b/flytepropeller/pkg/compiler/validators/branch_test.go
@@ -5,9 +5,9 @@ import (
 
 	"github.com/stretchr/testify/mock"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common/mocks"
 	compilerErrors "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/compiler/validators/condition.go b/flytepropeller/pkg/compiler/validators/condition.go
index 70d7a96f4c..8e202b6423 100644
--- a/flytepropeller/pkg/compiler/validators/condition.go
+++ b/flytepropeller/pkg/compiler/validators/condition.go
@@ -3,9 +3,9 @@ package validators
 import (
 	"fmt"
 
+	flyte "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	c "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	flyte "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 func validateOperand(node c.NodeBuilder, paramName string, operand *flyte.Operand,
diff --git a/flytepropeller/pkg/compiler/validators/interface.go b/flytepropeller/pkg/compiler/validators/interface.go
index 5359926080..a9c909b60b 100644
--- a/flytepropeller/pkg/compiler/validators/interface.go
+++ b/flytepropeller/pkg/compiler/validators/interface.go
@@ -3,9 +3,9 @@ package validators
 import (
 	"fmt"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	c "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 // ValidateInterface validates interface has its required attributes set
diff --git a/flytepropeller/pkg/compiler/validators/interface_test.go b/flytepropeller/pkg/compiler/validators/interface_test.go
index ef0e77239e..9a2147d9b1 100644
--- a/flytepropeller/pkg/compiler/validators/interface_test.go
+++ b/flytepropeller/pkg/compiler/validators/interface_test.go
@@ -5,8 +5,8 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	c "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common/mocks"
diff --git a/flytepropeller/pkg/compiler/validators/node.go b/flytepropeller/pkg/compiler/validators/node.go
index 495a1420ed..a1eb708332 100644
--- a/flytepropeller/pkg/compiler/validators/node.go
+++ b/flytepropeller/pkg/compiler/validators/node.go
@@ -5,9 +5,9 @@ import (
 	"fmt"
 	"sort"
 
+	flyte "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	c "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	flyte "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 // Computes output parameters after applying all aliases -if any-.
diff --git a/flytepropeller/pkg/compiler/validators/node_test.go b/flytepropeller/pkg/compiler/validators/node_test.go
index f4167298f4..d2368ac850 100644
--- a/flytepropeller/pkg/compiler/validators/node_test.go
+++ b/flytepropeller/pkg/compiler/validators/node_test.go
@@ -5,7 +5,7 @@ import (
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common/mocks"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
diff --git a/flytepropeller/pkg/compiler/validators/typing.go b/flytepropeller/pkg/compiler/validators/typing.go
index fc5cd368a6..c88c062430 100644
--- a/flytepropeller/pkg/compiler/validators/typing.go
+++ b/flytepropeller/pkg/compiler/validators/typing.go
@@ -3,7 +3,7 @@ package validators
 import (
 	"strings"
 
-	flyte "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	flyte "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 )
 
diff --git a/flytepropeller/pkg/compiler/validators/typing_test.go b/flytepropeller/pkg/compiler/validators/typing_test.go
index 146d314de2..e920e39774 100644
--- a/flytepropeller/pkg/compiler/validators/typing_test.go
+++ b/flytepropeller/pkg/compiler/validators/typing_test.go
@@ -3,7 +3,7 @@ package validators
 import (
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 	"github.com/stretchr/testify/assert"
 )
diff --git a/flytepropeller/pkg/compiler/validators/utils.go b/flytepropeller/pkg/compiler/validators/utils.go
index 03e4636ce1..e160a8eb84 100644
--- a/flytepropeller/pkg/compiler/validators/utils.go
+++ b/flytepropeller/pkg/compiler/validators/utils.go
@@ -5,7 +5,7 @@ import (
 
 	"golang.org/x/exp/slices"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/proto"
 	"golang.org/x/exp/maps"
 	"k8s.io/apimachinery/pkg/util/sets"
diff --git a/flytepropeller/pkg/compiler/validators/utils_test.go b/flytepropeller/pkg/compiler/validators/utils_test.go
index 646b35d9e8..ae320e7855 100644
--- a/flytepropeller/pkg/compiler/validators/utils_test.go
+++ b/flytepropeller/pkg/compiler/validators/utils_test.go
@@ -3,8 +3,8 @@ package validators
 import (
 	"testing"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/compiler/validators/vars.go b/flytepropeller/pkg/compiler/validators/vars.go
index 2d1a7ba25e..53ca67e4ee 100644
--- a/flytepropeller/pkg/compiler/validators/vars.go
+++ b/flytepropeller/pkg/compiler/validators/vars.go
@@ -1,9 +1,9 @@
 package validators
 
 import (
+	flyte "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	c "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
-	flyte "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 func validateOutputVar(n c.NodeBuilder, paramName string, errs errors.CompileErrors) (
diff --git a/flytepropeller/pkg/compiler/workflow_compiler.go b/flytepropeller/pkg/compiler/workflow_compiler.go
index c54f9d1366..200997aedb 100644
--- a/flytepropeller/pkg/compiler/workflow_compiler.go
+++ b/flytepropeller/pkg/compiler/workflow_compiler.go
@@ -34,10 +34,10 @@ package compiler
 import (
 	"strings"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	c "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
 	v "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/validators"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	// #noSA1019
 	"github.com/golang/protobuf/proto"
diff --git a/flytepropeller/pkg/compiler/workflow_compiler_test.go b/flytepropeller/pkg/compiler/workflow_compiler_test.go
index 2d932b5662..08ab6f3ad7 100644
--- a/flytepropeller/pkg/compiler/workflow_compiler_test.go
+++ b/flytepropeller/pkg/compiler/workflow_compiler_test.go
@@ -7,12 +7,12 @@ import (
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common/mocks"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/errors"
 	v "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/validators"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/visualize"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"k8s.io/apimachinery/pkg/util/sets"
 )
diff --git a/flytepropeller/pkg/controller/controller.go b/flytepropeller/pkg/controller/controller.go
index 0c4b4d643f..1ff81ef28c 100644
--- a/flytepropeller/pkg/controller/controller.go
+++ b/flytepropeller/pkg/controller/controller.go
@@ -9,8 +9,8 @@ import (
 	"runtime/pprof"
 	"time"
 
-	"github.com/flyteorg/flyteidl/clients/go/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s"
 	flyteK8sConfig "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s/config"
diff --git a/flytepropeller/pkg/controller/controller_test.go b/flytepropeller/pkg/controller/controller_test.go
index f7405db4d8..5f67668dcc 100644
--- a/flytepropeller/pkg/controller/controller_test.go
+++ b/flytepropeller/pkg/controller/controller_test.go
@@ -10,10 +10,10 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	listers "github.com/flyteorg/flyte/flytepropeller/pkg/client/listers/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/prometheus/client_golang/prometheus/testutil"
 	"github.com/stretchr/testify/assert"
 	"k8s.io/apimachinery/pkg/labels"
diff --git a/flytepropeller/pkg/controller/executors/mocks/execution_context.go b/flytepropeller/pkg/controller/executors/mocks/execution_context.go
index d32d6b8320..1f551a7be1 100644
--- a/flytepropeller/pkg/controller/executors/mocks/execution_context.go
+++ b/flytepropeller/pkg/controller/executors/mocks/execution_context.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	executors "github.com/flyteorg/flyte/flytepropeller/pkg/controller/executors"
 
 	mock "github.com/stretchr/testify/mock"
diff --git a/flytepropeller/pkg/controller/executors/mocks/immutable_execution_context.go b/flytepropeller/pkg/controller/executors/mocks/immutable_execution_context.go
index 0fc619d204..516df9d933 100644
--- a/flytepropeller/pkg/controller/executors/mocks/immutable_execution_context.go
+++ b/flytepropeller/pkg/controller/executors/mocks/immutable_execution_context.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 
diff --git a/flytepropeller/pkg/controller/handler.go b/flytepropeller/pkg/controller/handler.go
index 35202a9dfd..9f3f8d67c6 100644
--- a/flytepropeller/pkg/controller/handler.go
+++ b/flytepropeller/pkg/controller/handler.go
@@ -7,8 +7,8 @@ import (
 	"runtime/debug"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	eventsErr "github.com/flyteorg/flyte/flytepropeller/events/errors"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
diff --git a/flytepropeller/pkg/controller/handler_test.go b/flytepropeller/pkg/controller/handler_test.go
index 6f30e3d133..96ceb34350 100644
--- a/flytepropeller/pkg/controller/handler_test.go
+++ b/flytepropeller/pkg/controller/handler_test.go
@@ -6,8 +6,8 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	eventErrors "github.com/flyteorg/flyte/flytepropeller/events/errors"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
diff --git a/flytepropeller/pkg/controller/nodes/array/handler.go b/flytepropeller/pkg/controller/nodes/array/handler.go
index a13c1c7da5..2e4982927c 100644
--- a/flytepropeller/pkg/controller/nodes/array/handler.go
+++ b/flytepropeller/pkg/controller/nodes/array/handler.go
@@ -6,8 +6,8 @@ import (
 	"math"
 	"strconv"
 
-	idlcore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	idlcore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
diff --git a/flytepropeller/pkg/controller/nodes/array/handler_test.go b/flytepropeller/pkg/controller/nodes/array/handler_test.go
index 7072c0269b..24ea611fbb 100644
--- a/flytepropeller/pkg/controller/nodes/array/handler_test.go
+++ b/flytepropeller/pkg/controller/nodes/array/handler_test.go
@@ -5,8 +5,8 @@ import (
 	"fmt"
 	"testing"
 
-	idlcore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	idlcore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	eventmocks "github.com/flyteorg/flyte/flytepropeller/events/mocks"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
diff --git a/flytepropeller/pkg/controller/nodes/array/node_execution_context.go b/flytepropeller/pkg/controller/nodes/array/node_execution_context.go
index 1c14ea685f..31c91e5316 100644
--- a/flytepropeller/pkg/controller/nodes/array/node_execution_context.go
+++ b/flytepropeller/pkg/controller/nodes/array/node_execution_context.go
@@ -3,8 +3,8 @@ package array
 import (
 	"context"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 
diff --git a/flytepropeller/pkg/controller/nodes/array/utils.go b/flytepropeller/pkg/controller/nodes/array/utils.go
index 935667b548..cbc12bfb8b 100644
--- a/flytepropeller/pkg/controller/nodes/array/utils.go
+++ b/flytepropeller/pkg/controller/nodes/array/utils.go
@@ -6,8 +6,8 @@ import (
 	"fmt"
 	"time"
 
-	idlcore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	idlcore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/common"
diff --git a/flytepropeller/pkg/controller/nodes/array/utils_test.go b/flytepropeller/pkg/controller/nodes/array/utils_test.go
index 2e3eaf6e66..eed23b248b 100644
--- a/flytepropeller/pkg/controller/nodes/array/utils_test.go
+++ b/flytepropeller/pkg/controller/nodes/array/utils_test.go
@@ -3,7 +3,7 @@ package array
 import (
 	"testing"
 
-	idlcore "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	idlcore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/stretchr/testify/assert"
 )
diff --git a/flytepropeller/pkg/controller/nodes/branch/comparator.go b/flytepropeller/pkg/controller/nodes/branch/comparator.go
index c659eeac36..cfac3be0af 100644
--- a/flytepropeller/pkg/controller/nodes/branch/comparator.go
+++ b/flytepropeller/pkg/controller/nodes/branch/comparator.go
@@ -3,8 +3,8 @@ package branch
 import (
 	"reflect"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/errors"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 type comparator func(lValue *core.Primitive, rValue *core.Primitive) bool
diff --git a/flytepropeller/pkg/controller/nodes/branch/comparator_test.go b/flytepropeller/pkg/controller/nodes/branch/comparator_test.go
index d1c120ef4c..5aaa5a105d 100644
--- a/flytepropeller/pkg/controller/nodes/branch/comparator_test.go
+++ b/flytepropeller/pkg/controller/nodes/branch/comparator_test.go
@@ -5,8 +5,8 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/controller/nodes/branch/evaluator.go b/flytepropeller/pkg/controller/nodes/branch/evaluator.go
index 77fd16070c..b3f887617b 100644
--- a/flytepropeller/pkg/controller/nodes/branch/evaluator.go
+++ b/flytepropeller/pkg/controller/nodes/branch/evaluator.go
@@ -3,9 +3,9 @@ package branch
 import (
 	"context"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/errors"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
diff --git a/flytepropeller/pkg/controller/nodes/branch/evaluator_test.go b/flytepropeller/pkg/controller/nodes/branch/evaluator_test.go
index b9114f211e..ca3d8203c1 100644
--- a/flytepropeller/pkg/controller/nodes/branch/evaluator_test.go
+++ b/flytepropeller/pkg/controller/nodes/branch/evaluator_test.go
@@ -5,12 +5,12 @@ import (
 	"fmt"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
 	"github.com/flyteorg/flyte/flytestdlib/errors"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
diff --git a/flytepropeller/pkg/controller/nodes/branch/handler.go b/flytepropeller/pkg/controller/nodes/branch/handler.go
index f052f070ce..31efae470c 100644
--- a/flytepropeller/pkg/controller/nodes/branch/handler.go
+++ b/flytepropeller/pkg/controller/nodes/branch/handler.go
@@ -4,7 +4,7 @@ import (
 	"context"
 	"fmt"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
diff --git a/flytepropeller/pkg/controller/nodes/branch/handler_test.go b/flytepropeller/pkg/controller/nodes/branch/handler_test.go
index 7fc64ca2f6..a783c0a1bb 100644
--- a/flytepropeller/pkg/controller/nodes/branch/handler_test.go
+++ b/flytepropeller/pkg/controller/nodes/branch/handler_test.go
@@ -9,12 +9,12 @@ import (
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/common"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mocks3 "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 	v12 "k8s.io/api/core/v1"
diff --git a/flytepropeller/pkg/controller/nodes/cache.go b/flytepropeller/pkg/controller/nodes/cache.go
index 57a5a70718..9145d4eb95 100644
--- a/flytepropeller/pkg/controller/nodes/cache.go
+++ b/flytepropeller/pkg/controller/nodes/cache.go
@@ -5,8 +5,8 @@ import (
 	"strconv"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/encoding"
diff --git a/flytepropeller/pkg/controller/nodes/cache_test.go b/flytepropeller/pkg/controller/nodes/cache_test.go
index 2a20c86428..75145a2e60 100644
--- a/flytepropeller/pkg/controller/nodes/cache_test.go
+++ b/flytepropeller/pkg/controller/nodes/cache_test.go
@@ -7,8 +7,8 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks"
diff --git a/flytepropeller/pkg/controller/nodes/catalog/datacatalog/datacatalog.go b/flytepropeller/pkg/controller/nodes/catalog/datacatalog/datacatalog.go
index 2e3f9fdf6b..e27e1a1103 100644
--- a/flytepropeller/pkg/controller/nodes/catalog/datacatalog/datacatalog.go
+++ b/flytepropeller/pkg/controller/nodes/catalog/datacatalog/datacatalog.go
@@ -6,11 +6,11 @@ import (
 	"fmt"
 	"time"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog"
 	grpcRetry "github.com/grpc-ecosystem/go-grpc-middleware/retry"
 	grpcPrometheus "github.com/grpc-ecosystem/go-grpc-prometheus"
 	"github.com/pkg/errors"
diff --git a/flytepropeller/pkg/controller/nodes/catalog/datacatalog/datacatalog_test.go b/flytepropeller/pkg/controller/nodes/catalog/datacatalog/datacatalog_test.go
index a1b82643e1..bce6f4e974 100644
--- a/flytepropeller/pkg/controller/nodes/catalog/datacatalog/datacatalog_test.go
+++ b/flytepropeller/pkg/controller/nodes/catalog/datacatalog/datacatalog_test.go
@@ -6,13 +6,13 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/clients/go/datacatalog/mocks"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/datacatalog/mocks"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
 	mocks2 "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog"
 	"github.com/golang/protobuf/proto"
 	"github.com/google/uuid"
 	"github.com/pkg/errors"
diff --git a/flytepropeller/pkg/controller/nodes/catalog/datacatalog/transformer.go b/flytepropeller/pkg/controller/nodes/catalog/datacatalog/transformer.go
index 81ae8aa4e6..d9f48c9dce 100644
--- a/flytepropeller/pkg/controller/nodes/catalog/datacatalog/transformer.go
+++ b/flytepropeller/pkg/controller/nodes/catalog/datacatalog/transformer.go
@@ -8,11 +8,11 @@ import (
 	"strconv"
 	"strings"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/validators"
 	"github.com/flyteorg/flyte/flytestdlib/pbhash"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog"
 )
 
 const cachedTaskTag = "flyte_cached"
diff --git a/flytepropeller/pkg/controller/nodes/catalog/datacatalog/transformer_test.go b/flytepropeller/pkg/controller/nodes/catalog/datacatalog/transformer_test.go
index 7415721b73..7bca94e5f4 100644
--- a/flytepropeller/pkg/controller/nodes/catalog/datacatalog/transformer_test.go
+++ b/flytepropeller/pkg/controller/nodes/catalog/datacatalog/transformer_test.go
@@ -6,10 +6,10 @@ import (
 	"strconv"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/controller/nodes/catalog/noop_catalog.go b/flytepropeller/pkg/controller/nodes/catalog/noop_catalog.go
index 6a0752f9a9..eb93026242 100644
--- a/flytepropeller/pkg/controller/nodes/catalog/noop_catalog.go
+++ b/flytepropeller/pkg/controller/nodes/catalog/noop_catalog.go
@@ -4,10 +4,10 @@ import (
 	"context"
 	"time"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog"
 )
 
 var (
diff --git a/flytepropeller/pkg/controller/nodes/core_phase.go b/flytepropeller/pkg/controller/nodes/core_phase.go
index 7521f90ff8..bf42e16b04 100644
--- a/flytepropeller/pkg/controller/nodes/core_phase.go
+++ b/flytepropeller/pkg/controller/nodes/core_phase.go
@@ -1,6 +1,6 @@
 package nodes
 
-import "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+import "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 // IsTerminalNodePhase returns true if node phase is one of the terminal phases, else false
 func IsTerminalNodePhase(p core.NodeExecution_Phase) bool {
diff --git a/flytepropeller/pkg/controller/nodes/core_phase_test.go b/flytepropeller/pkg/controller/nodes/core_phase_test.go
index 3f2598629c..13aea59314 100644
--- a/flytepropeller/pkg/controller/nodes/core_phase_test.go
+++ b/flytepropeller/pkg/controller/nodes/core_phase_test.go
@@ -3,7 +3,7 @@ package nodes
 import (
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 func TestIsTerminalNodePhase(t *testing.T) {
diff --git a/flytepropeller/pkg/controller/nodes/dynamic/dynamic_workflow.go b/flytepropeller/pkg/controller/nodes/dynamic/dynamic_workflow.go
index d4972f433c..cd804faf22 100644
--- a/flytepropeller/pkg/controller/nodes/dynamic/dynamic_workflow.go
+++ b/flytepropeller/pkg/controller/nodes/dynamic/dynamic_workflow.go
@@ -5,6 +5,7 @@ import (
 	"fmt"
 	"strconv"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
@@ -19,7 +20,6 @@ import (
 	"github.com/flyteorg/flyte/flytestdlib/errors"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"k8s.io/apimachinery/pkg/util/rand"
 )
diff --git a/flytepropeller/pkg/controller/nodes/dynamic/dynamic_workflow_test.go b/flytepropeller/pkg/controller/nodes/dynamic/dynamic_workflow_test.go
index f6f0b4a1b1..56a72fa446 100644
--- a/flytepropeller/pkg/controller/nodes/dynamic/dynamic_workflow_test.go
+++ b/flytepropeller/pkg/controller/nodes/dynamic/dynamic_workflow_test.go
@@ -8,13 +8,13 @@ import (
 
 	"github.com/pkg/errors"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/encoding"
 	mocks3 "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
 	storageMocks "github.com/flyteorg/flyte/flytestdlib/storage/mocks"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
diff --git a/flytepropeller/pkg/controller/nodes/dynamic/handler.go b/flytepropeller/pkg/controller/nodes/dynamic/handler.go
index f26c417d78..42a4c416d6 100644
--- a/flytepropeller/pkg/controller/nodes/dynamic/handler.go
+++ b/flytepropeller/pkg/controller/nodes/dynamic/handler.go
@@ -4,8 +4,8 @@ import (
 	"context"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
diff --git a/flytepropeller/pkg/controller/nodes/dynamic/handler_test.go b/flytepropeller/pkg/controller/nodes/dynamic/handler_test.go
index 5c3b1f0210..7e02534f24 100644
--- a/flytepropeller/pkg/controller/nodes/dynamic/handler_test.go
+++ b/flytepropeller/pkg/controller/nodes/dynamic/handler_test.go
@@ -10,10 +10,10 @@ import (
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 	v12 "k8s.io/api/core/v1"
diff --git a/flytepropeller/pkg/controller/nodes/dynamic/utils.go b/flytepropeller/pkg/controller/nodes/dynamic/utils.go
index d4fb9dfd1d..710d7b4ff6 100644
--- a/flytepropeller/pkg/controller/nodes/dynamic/utils.go
+++ b/flytepropeller/pkg/controller/nodes/dynamic/utils.go
@@ -5,7 +5,7 @@ import (
 
 	"k8s.io/apimachinery/pkg/util/sets"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/encoding"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler"
diff --git a/flytepropeller/pkg/controller/nodes/dynamic/utils_test.go b/flytepropeller/pkg/controller/nodes/dynamic/utils_test.go
index 72c65178a6..f0907b626a 100644
--- a/flytepropeller/pkg/controller/nodes/dynamic/utils_test.go
+++ b/flytepropeller/pkg/controller/nodes/dynamic/utils_test.go
@@ -6,7 +6,7 @@ import (
 
 	mocks2 "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/interfaces/mocks"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/stretchr/testify/mock"
 
diff --git a/flytepropeller/pkg/controller/nodes/end/handler_test.go b/flytepropeller/pkg/controller/nodes/end/handler_test.go
index ad1c802ec1..502265585a 100644
--- a/flytepropeller/pkg/controller/nodes/end/handler_test.go
+++ b/flytepropeller/pkg/controller/nodes/end/handler_test.go
@@ -5,13 +5,13 @@ import (
 	"fmt"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mocks2 "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/proto"
 	regErrors "github.com/pkg/errors"
 	"github.com/stretchr/testify/assert"
diff --git a/flytepropeller/pkg/controller/nodes/executor.go b/flytepropeller/pkg/controller/nodes/executor.go
index d3c872d7a1..69869934d0 100644
--- a/flytepropeller/pkg/controller/nodes/executor.go
+++ b/flytepropeller/pkg/controller/nodes/executor.go
@@ -21,10 +21,10 @@ import (
 	"fmt"
 	"time"
 
-	"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/flyteorg/flyteidl/gen/pb-go/flyteidl/service"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service"
 
 	"github.com/flyteorg/flyte/flytepropeller/events"
 	eventsErr "github.com/flyteorg/flyte/flytepropeller/events/errors"
diff --git a/flytepropeller/pkg/controller/nodes/executor_test.go b/flytepropeller/pkg/controller/nodes/executor_test.go
index 71410da34e..670f975716 100644
--- a/flytepropeller/pkg/controller/nodes/executor_test.go
+++ b/flytepropeller/pkg/controller/nodes/executor_test.go
@@ -8,11 +8,11 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"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/datacatalog"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	pluginscatalog "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
 	catalogmocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog/mocks"
diff --git a/flytepropeller/pkg/controller/nodes/factory/handler_factory.go b/flytepropeller/pkg/controller/nodes/factory/handler_factory.go
index 256abd208e..594b810916 100644
--- a/flytepropeller/pkg/controller/nodes/factory/handler_factory.go
+++ b/flytepropeller/pkg/controller/nodes/factory/handler_factory.go
@@ -5,7 +5,7 @@ import (
 
 	"k8s.io/client-go/kubernetes"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
 
diff --git a/flytepropeller/pkg/controller/nodes/gate/handler.go b/flytepropeller/pkg/controller/nodes/gate/handler.go
index 05e1e3e090..d9bd02dcf5 100644
--- a/flytepropeller/pkg/controller/nodes/gate/handler.go
+++ b/flytepropeller/pkg/controller/nodes/gate/handler.go
@@ -5,9 +5,9 @@ import (
 	"fmt"
 	"time"
 
-	"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/service"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
diff --git a/flytepropeller/pkg/controller/nodes/gate/handler_test.go b/flytepropeller/pkg/controller/nodes/gate/handler_test.go
index 6680f0105c..b3e7991714 100644
--- a/flytepropeller/pkg/controller/nodes/gate/handler_test.go
+++ b/flytepropeller/pkg/controller/nodes/gate/handler_test.go
@@ -6,8 +6,8 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	ioMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 
diff --git a/flytepropeller/pkg/controller/nodes/gate/mocks/signal_service_client.go b/flytepropeller/pkg/controller/nodes/gate/mocks/signal_service_client.go
index d0a819e2b0..5bd6ecfd51 100644
--- a/flytepropeller/pkg/controller/nodes/gate/mocks/signal_service_client.go
+++ b/flytepropeller/pkg/controller/nodes/gate/mocks/signal_service_client.go
@@ -5,7 +5,7 @@ package mocks
 import (
 	context "context"
 
-	admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
+	admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
 
 	grpc "google.golang.org/grpc"
 
diff --git a/flytepropeller/pkg/controller/nodes/handler/state.go b/flytepropeller/pkg/controller/nodes/handler/state.go
index 1553e4f63e..07fdb8fef3 100644
--- a/flytepropeller/pkg/controller/nodes/handler/state.go
+++ b/flytepropeller/pkg/controller/nodes/handler/state.go
@@ -3,7 +3,7 @@ package handler
 import (
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 
diff --git a/flytepropeller/pkg/controller/nodes/handler/transition_info.go b/flytepropeller/pkg/controller/nodes/handler/transition_info.go
index 1ab8636628..c9af525cca 100644
--- a/flytepropeller/pkg/controller/nodes/handler/transition_info.go
+++ b/flytepropeller/pkg/controller/nodes/handler/transition_info.go
@@ -3,9 +3,9 @@ package handler
 import (
 	"time"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 )
 
 //go:generate enumer --type=EPhase --trimprefix=EPhase
diff --git a/flytepropeller/pkg/controller/nodes/handler/transition_info_test.go b/flytepropeller/pkg/controller/nodes/handler/transition_info_test.go
index 9f85f0628b..a04c93dc93 100644
--- a/flytepropeller/pkg/controller/nodes/handler/transition_info_test.go
+++ b/flytepropeller/pkg/controller/nodes/handler/transition_info_test.go
@@ -3,8 +3,8 @@ package handler
 import (
 	"testing"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/golang/protobuf/proto"
 
diff --git a/flytepropeller/pkg/controller/nodes/handler/transition_test.go b/flytepropeller/pkg/controller/nodes/handler/transition_test.go
index 76b689acf3..d6b92fc257 100644
--- a/flytepropeller/pkg/controller/nodes/handler/transition_test.go
+++ b/flytepropeller/pkg/controller/nodes/handler/transition_test.go
@@ -3,7 +3,7 @@ package handler
 import (
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytestdlib/storage"
 
diff --git a/flytepropeller/pkg/controller/nodes/interfaces/mocks/event_recorder.go b/flytepropeller/pkg/controller/nodes/interfaces/mocks/event_recorder.go
index ea3dbf0535..18ba24dda7 100644
--- a/flytepropeller/pkg/controller/nodes/interfaces/mocks/event_recorder.go
+++ b/flytepropeller/pkg/controller/nodes/interfaces/mocks/event_recorder.go
@@ -7,7 +7,7 @@ import (
 
 	config "github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
 
-	event "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	event "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	mock "github.com/stretchr/testify/mock"
 )
diff --git a/flytepropeller/pkg/controller/nodes/interfaces/mocks/node.go b/flytepropeller/pkg/controller/nodes/interfaces/mocks/node.go
index 8552938f02..789427f8b0 100644
--- a/flytepropeller/pkg/controller/nodes/interfaces/mocks/node.go
+++ b/flytepropeller/pkg/controller/nodes/interfaces/mocks/node.go
@@ -5,8 +5,8 @@ package mocks
 import (
 	context "context"
 
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	executors "github.com/flyteorg/flyte/flytepropeller/pkg/controller/executors"
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	interfaces "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/interfaces"
 
diff --git a/flytepropeller/pkg/controller/nodes/interfaces/mocks/node_execution_metadata.go b/flytepropeller/pkg/controller/nodes/interfaces/mocks/node_execution_metadata.go
index a8b6ab4a4a..5f96520b55 100644
--- a/flytepropeller/pkg/controller/nodes/interfaces/mocks/node_execution_metadata.go
+++ b/flytepropeller/pkg/controller/nodes/interfaces/mocks/node_execution_metadata.go
@@ -3,7 +3,7 @@
 package mocks
 
 import (
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 
diff --git a/flytepropeller/pkg/controller/nodes/interfaces/mocks/task_reader.go b/flytepropeller/pkg/controller/nodes/interfaces/mocks/task_reader.go
index deb5d52777..406b4b55cb 100644
--- a/flytepropeller/pkg/controller/nodes/interfaces/mocks/task_reader.go
+++ b/flytepropeller/pkg/controller/nodes/interfaces/mocks/task_reader.go
@@ -5,7 +5,7 @@ package mocks
 import (
 	context "context"
 
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 )
diff --git a/flytepropeller/pkg/controller/nodes/interfaces/node.go b/flytepropeller/pkg/controller/nodes/interfaces/node.go
index b5145bcafc..c2f30a2aa1 100644
--- a/flytepropeller/pkg/controller/nodes/interfaces/node.go
+++ b/flytepropeller/pkg/controller/nodes/interfaces/node.go
@@ -4,7 +4,7 @@ import (
 	"context"
 	"fmt"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/executors"
diff --git a/flytepropeller/pkg/controller/nodes/interfaces/node_exec_context.go b/flytepropeller/pkg/controller/nodes/interfaces/node_exec_context.go
index 3e7b93d2d2..dc7f3397bc 100644
--- a/flytepropeller/pkg/controller/nodes/interfaces/node_exec_context.go
+++ b/flytepropeller/pkg/controller/nodes/interfaces/node_exec_context.go
@@ -3,7 +3,7 @@ package interfaces
 import (
 	"context"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
diff --git a/flytepropeller/pkg/controller/nodes/mocks/output_resolver.go b/flytepropeller/pkg/controller/nodes/mocks/output_resolver.go
index 66a8ec588f..4627165e70 100644
--- a/flytepropeller/pkg/controller/nodes/mocks/output_resolver.go
+++ b/flytepropeller/pkg/controller/nodes/mocks/output_resolver.go
@@ -5,8 +5,8 @@ package mocks
 import (
 	context "context"
 
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	executors "github.com/flyteorg/flyte/flytepropeller/pkg/controller/executors"
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 
diff --git a/flytepropeller/pkg/controller/nodes/node_exec_context.go b/flytepropeller/pkg/controller/nodes/node_exec_context.go
index fff6c77f67..6a93678b75 100644
--- a/flytepropeller/pkg/controller/nodes/node_exec_context.go
+++ b/flytepropeller/pkg/controller/nodes/node_exec_context.go
@@ -5,8 +5,8 @@ import (
 	"fmt"
 	"strconv"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
diff --git a/flytepropeller/pkg/controller/nodes/node_exec_context_test.go b/flytepropeller/pkg/controller/nodes/node_exec_context_test.go
index c42328be56..8948fc7a24 100644
--- a/flytepropeller/pkg/controller/nodes/node_exec_context_test.go
+++ b/flytepropeller/pkg/controller/nodes/node_exec_context_test.go
@@ -6,9 +6,9 @@ import (
 	"strconv"
 	"testing"
 
-	"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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	"github.com/flyteorg/flyte/flytepropeller/events"
 	eventsErr "github.com/flyteorg/flyte/flytepropeller/events/errors"
diff --git a/flytepropeller/pkg/controller/nodes/output_resolver.go b/flytepropeller/pkg/controller/nodes/output_resolver.go
index 6fc7b0032b..4a771c3172 100644
--- a/flytepropeller/pkg/controller/nodes/output_resolver.go
+++ b/flytepropeller/pkg/controller/nodes/output_resolver.go
@@ -10,7 +10,7 @@ import (
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/executors"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/errors"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 )
diff --git a/flytepropeller/pkg/controller/nodes/output_resolver_test.go b/flytepropeller/pkg/controller/nodes/output_resolver_test.go
index dc949fb3ce..692406c724 100644
--- a/flytepropeller/pkg/controller/nodes/output_resolver_test.go
+++ b/flytepropeller/pkg/controller/nodes/output_resolver_test.go
@@ -3,8 +3,8 @@ package nodes
 import (
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/controller/nodes/recovery/client.go b/flytepropeller/pkg/controller/nodes/recovery/client.go
index f1cdd52ca1..6cd66068f0 100644
--- a/flytepropeller/pkg/controller/nodes/recovery/client.go
+++ b/flytepropeller/pkg/controller/nodes/recovery/client.go
@@ -3,9 +3,9 @@ package recovery
 import (
 	"context"
 
-	"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/service"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service"
 )
 
 //go:generate mockery -name Client -output=mocks -case=underscore
diff --git a/flytepropeller/pkg/controller/nodes/recovery/mocks/client.go b/flytepropeller/pkg/controller/nodes/recovery/mocks/client.go
index 23a4770140..a334e56280 100644
--- a/flytepropeller/pkg/controller/nodes/recovery/mocks/client.go
+++ b/flytepropeller/pkg/controller/nodes/recovery/mocks/client.go
@@ -5,9 +5,9 @@ package mocks
 import (
 	context "context"
 
-	admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
+	admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
 
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 )
diff --git a/flytepropeller/pkg/controller/nodes/resolve.go b/flytepropeller/pkg/controller/nodes/resolve.go
index 7f967b4fba..4893522698 100644
--- a/flytepropeller/pkg/controller/nodes/resolve.go
+++ b/flytepropeller/pkg/controller/nodes/resolve.go
@@ -3,11 +3,11 @@ package nodes
 import (
 	"context"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/executors"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/errors"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 func ResolveBindingData(ctx context.Context, outputResolver OutputResolver, nl executors.NodeLookup, bindingData *core.BindingData) (*core.Literal, error) {
diff --git a/flytepropeller/pkg/controller/nodes/resolve_test.go b/flytepropeller/pkg/controller/nodes/resolve_test.go
index d8d0ad8add..9734f0fdee 100644
--- a/flytepropeller/pkg/controller/nodes/resolve_test.go
+++ b/flytepropeller/pkg/controller/nodes/resolve_test.go
@@ -4,15 +4,15 @@ import (
 	"context"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/executors"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
 
 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 	"k8s.io/apimachinery/pkg/types"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/handler.go b/flytepropeller/pkg/controller/nodes/subworkflow/handler.go
index be99894c84..09ecb83fc8 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/handler.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/handler.go
@@ -7,8 +7,8 @@ import (
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/recovery"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/handler_test.go b/flytepropeller/pkg/controller/nodes/subworkflow/handler_test.go
index 44108361ef..58907b505d 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/handler_test.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/handler_test.go
@@ -10,13 +10,13 @@ import (
 
 	mocks5 "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/recovery/mocks"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mocks4 "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan.go b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan.go
index 7d4fbb9ab0..24c3933064 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan.go
@@ -4,7 +4,7 @@ import (
 	"context"
 	"fmt"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/admin.go b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/admin.go
index babc49f163..e66e630fe3 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/admin.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/admin.go
@@ -5,9 +5,9 @@ import (
 	"fmt"
 	"time"
 
-	"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/service"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/service"
 
 	"github.com/flyteorg/flyte/flytestdlib/cache"
 	stdErr "github.com/flyteorg/flyte/flytestdlib/errors"
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/admin_test.go b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/admin_test.go
index f53072a163..fe072b1607 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/admin_test.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/admin_test.go
@@ -12,9 +12,9 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 
-	"github.com/flyteorg/flyteidl/clients/go/admin/mocks"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/admin/mocks"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 	"google.golang.org/grpc/codes"
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/launchplan.go b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/launchplan.go
index 30a75c74de..f2262ce7b2 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/launchplan.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/launchplan.go
@@ -3,8 +3,8 @@ package launchplan
 import (
 	"context"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 //go:generate mockery -all -case=underscore
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/mocks/executor.go b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/mocks/executor.go
index be0baaa49d..aa3a1bdb25 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/mocks/executor.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/mocks/executor.go
@@ -5,9 +5,9 @@ package mocks
 import (
 	context "context"
 
-	admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
+	admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
 
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	launchplan "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/subworkflow/launchplan"
 
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/mocks/flyte_admin.go b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/mocks/flyte_admin.go
index f754707ad8..3fa881ecfe 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/mocks/flyte_admin.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/mocks/flyte_admin.go
@@ -5,9 +5,9 @@ package mocks
 import (
 	context "context"
 
-	admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
+	admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
 
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	launchplan "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/subworkflow/launchplan"
 
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/mocks/reader.go b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/mocks/reader.go
index 985d599e87..b85b02825f 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/mocks/reader.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/mocks/reader.go
@@ -5,9 +5,9 @@ package mocks
 import (
 	context "context"
 
-	admin "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
+	admin "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
 
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 )
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/noop.go b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/noop.go
index 51bf8e6423..21dd6b7b3d 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/noop.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/noop.go
@@ -6,9 +6,9 @@ import (
 
 	"github.com/flyteorg/flyte/flytestdlib/errors"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 type failFastWorkflowLauncher struct {
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/noop_test.go b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/noop_test.go
index 72a65cfd38..b82ec0d81b 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/noop_test.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan/noop_test.go
@@ -4,7 +4,7 @@ import (
 	"context"
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan_test.go b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan_test.go
index f6042dcb57..a5c4fdfc83 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/launchplan_test.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/launchplan_test.go
@@ -11,13 +11,13 @@ import (
 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 	"k8s.io/apimachinery/pkg/types"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
 	"github.com/flyteorg/flyte/flytestdlib/errors"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	"github.com/stretchr/testify/mock"
 
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/subworkflow.go b/flytepropeller/pkg/controller/nodes/subworkflow/subworkflow.go
index 9c088b10c3..c79f559c5b 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/subworkflow.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/subworkflow.go
@@ -4,7 +4,7 @@ import (
 	"context"
 	"fmt"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/util.go b/flytepropeller/pkg/controller/nodes/subworkflow/util.go
index 1bc690f15d..831aa67bae 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/util.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/util.go
@@ -3,7 +3,7 @@ package subworkflow
 import (
 	"strconv"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/encoding"
 )
diff --git a/flytepropeller/pkg/controller/nodes/subworkflow/util_test.go b/flytepropeller/pkg/controller/nodes/subworkflow/util_test.go
index 31f7415aa5..6f3010913a 100644
--- a/flytepropeller/pkg/controller/nodes/subworkflow/util_test.go
+++ b/flytepropeller/pkg/controller/nodes/subworkflow/util_test.go
@@ -3,7 +3,7 @@ package subworkflow
 import (
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/controller/nodes/task/future_file_reader.go b/flytepropeller/pkg/controller/nodes/task/future_file_reader.go
index 04dbef90ae..5b2023155d 100644
--- a/flytepropeller/pkg/controller/nodes/task/future_file_reader.go
+++ b/flytepropeller/pkg/controller/nodes/task/future_file_reader.go
@@ -3,10 +3,10 @@ package task
 import (
 	"context"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/errors"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/utils"
diff --git a/flytepropeller/pkg/controller/nodes/task/handler.go b/flytepropeller/pkg/controller/nodes/task/handler.go
index 3415ebfd2e..936cf3fa9d 100644
--- a/flytepropeller/pkg/controller/nodes/task/handler.go
+++ b/flytepropeller/pkg/controller/nodes/task/handler.go
@@ -8,9 +8,9 @@ import (
 
 	"k8s.io/client-go/kubernetes"
 
-	"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/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	pluginMachinery "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
diff --git a/flytepropeller/pkg/controller/nodes/task/handler_test.go b/flytepropeller/pkg/controller/nodes/task/handler_test.go
index bc92cee0e3..70d8887a2e 100644
--- a/flytepropeller/pkg/controller/nodes/task/handler_test.go
+++ b/flytepropeller/pkg/controller/nodes/task/handler_test.go
@@ -15,10 +15,10 @@ import (
 	"k8s.io/apimachinery/pkg/types"
 	k8sfake "k8s.io/client-go/kubernetes/fake"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"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/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
 	pluginCatalogMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog/mocks"
diff --git a/flytepropeller/pkg/controller/nodes/task/k8s/plugin_manager_test.go b/flytepropeller/pkg/controller/nodes/task/k8s/plugin_manager_test.go
index 2c8aedd360..6b8f990c8d 100644
--- a/flytepropeller/pkg/controller/nodes/task/k8s/plugin_manager_test.go
+++ b/flytepropeller/pkg/controller/nodes/task/k8s/plugin_manager_test.go
@@ -20,6 +20,7 @@ import (
 	"sigs.k8s.io/controller-runtime/pkg/client"
 	"sigs.k8s.io/controller-runtime/pkg/client/fake"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	pluginsCoreMock "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s"
@@ -32,7 +33,6 @@ import (
 	"github.com/flyteorg/flyte/flytestdlib/contextutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 type extendedFakeClient struct {
diff --git a/flytepropeller/pkg/controller/nodes/task/k8s/task_exec_context.go b/flytepropeller/pkg/controller/nodes/task/k8s/task_exec_context.go
index fa5c25edf1..14984e3f97 100644
--- a/flytepropeller/pkg/controller/nodes/task/k8s/task_exec_context.go
+++ b/flytepropeller/pkg/controller/nodes/task/k8s/task_exec_context.go
@@ -1,10 +1,10 @@
 package k8s
 
 import (
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils/secrets"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 // TaskExecutionContext provides a layer on top of core TaskExecutionContext with a custom TaskExecutionMetadata.
diff --git a/flytepropeller/pkg/controller/nodes/task/k8s/task_exec_context_test.go b/flytepropeller/pkg/controller/nodes/task/k8s/task_exec_context_test.go
index 79a04fea5c..9fef4557d7 100644
--- a/flytepropeller/pkg/controller/nodes/task/k8s/task_exec_context_test.go
+++ b/flytepropeller/pkg/controller/nodes/task/k8s/task_exec_context_test.go
@@ -3,8 +3,8 @@ package k8s
 import (
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/controller/nodes/task/remote_workflow_store.go b/flytepropeller/pkg/controller/nodes/task/remote_workflow_store.go
index b62a3a922d..acbb2e98e2 100644
--- a/flytepropeller/pkg/controller/nodes/task/remote_workflow_store.go
+++ b/flytepropeller/pkg/controller/nodes/task/remote_workflow_store.go
@@ -5,7 +5,7 @@ import (
 	"context"
 	"encoding/json"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
diff --git a/flytepropeller/pkg/controller/nodes/task/remote_workflow_store_test.go b/flytepropeller/pkg/controller/nodes/task/remote_workflow_store_test.go
index fb0a76a3c1..c8050de3e7 100644
--- a/flytepropeller/pkg/controller/nodes/task/remote_workflow_store_test.go
+++ b/flytepropeller/pkg/controller/nodes/task/remote_workflow_store_test.go
@@ -10,7 +10,7 @@ import (
 
 	"github.com/golang/protobuf/proto"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
diff --git a/flytepropeller/pkg/controller/nodes/task/resourcemanager/resourceconstraints.go b/flytepropeller/pkg/controller/nodes/task/resourcemanager/resourceconstraints.go
index 550da01f84..93035f98e1 100644
--- a/flytepropeller/pkg/controller/nodes/task/resourcemanager/resourceconstraints.go
+++ b/flytepropeller/pkg/controller/nodes/task/resourcemanager/resourceconstraints.go
@@ -1,8 +1,8 @@
 package resourcemanager
 
 import (
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 type ResourceConstraint interface {
diff --git a/flytepropeller/pkg/controller/nodes/task/resourcemanager/resourcemanager.go b/flytepropeller/pkg/controller/nodes/task/resourcemanager/resourcemanager.go
index dfd7f58ade..fa7ebd5b4b 100644
--- a/flytepropeller/pkg/controller/nodes/task/resourcemanager/resourcemanager.go
+++ b/flytepropeller/pkg/controller/nodes/task/resourcemanager/resourcemanager.go
@@ -5,9 +5,9 @@ import (
 	"fmt"
 	"sync"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
diff --git a/flytepropeller/pkg/controller/nodes/task/resourcemanager/resourcemanager_test.go b/flytepropeller/pkg/controller/nodes/task/resourcemanager/resourcemanager_test.go
index 06edb3c12d..c2ca5388cc 100644
--- a/flytepropeller/pkg/controller/nodes/task/resourcemanager/resourcemanager_test.go
+++ b/flytepropeller/pkg/controller/nodes/task/resourcemanager/resourcemanager_test.go
@@ -4,13 +4,13 @@ import (
 	"context"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	core2 "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	rmConfig "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/task/resourcemanager/config"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/stretchr/testify/assert"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 func TestComposeTokenPrefix(t *testing.T) {
diff --git a/flytepropeller/pkg/controller/nodes/task/secretmanager/secrets.go b/flytepropeller/pkg/controller/nodes/task/secretmanager/secrets.go
index f70a9ec915..21dcd3c521 100644
--- a/flytepropeller/pkg/controller/nodes/task/secretmanager/secrets.go
+++ b/flytepropeller/pkg/controller/nodes/task/secretmanager/secrets.go
@@ -8,7 +8,7 @@ import (
 	"path/filepath"
 	"strings"
 
-	coreIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	coreIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 )
diff --git a/flytepropeller/pkg/controller/nodes/task/taskexec_context.go b/flytepropeller/pkg/controller/nodes/task/taskexec_context.go
index 68965e2bf3..45a981577f 100644
--- a/flytepropeller/pkg/controller/nodes/task/taskexec_context.go
+++ b/flytepropeller/pkg/controller/nodes/task/taskexec_context.go
@@ -6,6 +6,7 @@ import (
 	"strconv"
 	"strings"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginCatalog "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/encoding"
@@ -19,7 +20,6 @@ import (
 	"github.com/flyteorg/flyte/flytepropeller/pkg/utils"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	v1 "k8s.io/api/core/v1"
 	"k8s.io/apimachinery/pkg/api/resource"
 )
diff --git a/flytepropeller/pkg/controller/nodes/task/taskexec_context_test.go b/flytepropeller/pkg/controller/nodes/task/taskexec_context_test.go
index b6630dc315..22506e649e 100644
--- a/flytepropeller/pkg/controller/nodes/task/taskexec_context_test.go
+++ b/flytepropeller/pkg/controller/nodes/task/taskexec_context_test.go
@@ -11,18 +11,18 @@ import (
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/task/resourcemanager"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 
 	mocks2 "github.com/flyteorg/flyte/flytepropeller/pkg/controller/executors/mocks"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/catalog/mocks"
 	pluginCoreMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/mocks"
 	ioMocks "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	corev1 "k8s.io/api/core/v1"
 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
diff --git a/flytepropeller/pkg/controller/nodes/task/transformer.go b/flytepropeller/pkg/controller/nodes/task/transformer.go
index 9c3c784315..e026419dc0 100644
--- a/flytepropeller/pkg/controller/nodes/task/transformer.go
+++ b/flytepropeller/pkg/controller/nodes/task/transformer.go
@@ -5,6 +5,8 @@ import (
 
 	"google.golang.org/protobuf/types/known/timestamppb"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	flytek8sConfig "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s/config"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
@@ -14,8 +16,6 @@ import (
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/common"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/handler"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/interfaces"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 )
 
 // This is used by flyteadmin to indicate that map tasks now report subtask metadata individually.
diff --git a/flytepropeller/pkg/controller/nodes/task/transformer_test.go b/flytepropeller/pkg/controller/nodes/task/transformer_test.go
index b12342ddf3..1c58bdf561 100644
--- a/flytepropeller/pkg/controller/nodes/task/transformer_test.go
+++ b/flytepropeller/pkg/controller/nodes/task/transformer_test.go
@@ -4,7 +4,7 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
 	"github.com/golang/protobuf/proto"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
@@ -12,12 +12,12 @@ import (
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	mocks2 "github.com/flyteorg/flyte/flytepropeller/pkg/controller/executors/mocks"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io/mocks"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/ptypes"
 	structpb "github.com/golang/protobuf/ptypes/struct"
 	"github.com/stretchr/testify/assert"
diff --git a/flytepropeller/pkg/controller/nodes/task_reader.go b/flytepropeller/pkg/controller/nodes/task_reader.go
index b2cbba7371..588f861984 100644
--- a/flytepropeller/pkg/controller/nodes/task_reader.go
+++ b/flytepropeller/pkg/controller/nodes/task_reader.go
@@ -3,7 +3,7 @@ package nodes
 import (
 	"context"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 )
diff --git a/flytepropeller/pkg/controller/nodes/transformers.go b/flytepropeller/pkg/controller/nodes/transformers.go
index 8cb5ad5022..b364ae02f8 100644
--- a/flytepropeller/pkg/controller/nodes/transformers.go
+++ b/flytepropeller/pkg/controller/nodes/transformers.go
@@ -6,8 +6,8 @@ import (
 	"strconv"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
diff --git a/flytepropeller/pkg/controller/nodes/transformers_test.go b/flytepropeller/pkg/controller/nodes/transformers_test.go
index ebd3e44679..823096b68d 100644
--- a/flytepropeller/pkg/controller/nodes/transformers_test.go
+++ b/flytepropeller/pkg/controller/nodes/transformers_test.go
@@ -3,18 +3,18 @@ package nodes
 import (
 	"testing"
 
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
 	"github.com/golang/protobuf/proto"
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/mocks"
 	mocks2 "github.com/flyteorg/flyte/flytepropeller/pkg/controller/executors/mocks"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/handler"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/controller/workflow/executor.go b/flytepropeller/pkg/controller/workflow/executor.go
index 4b15b25111..5e06f333f9 100644
--- a/flytepropeller/pkg/controller/workflow/executor.go
+++ b/flytepropeller/pkg/controller/workflow/executor.go
@@ -5,8 +5,8 @@ import (
 	"fmt"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 
 	"github.com/flyteorg/flyte/flytepropeller/events"
 	eventsErr "github.com/flyteorg/flyte/flytepropeller/events/errors"
diff --git a/flytepropeller/pkg/controller/workflow/executor_test.go b/flytepropeller/pkg/controller/workflow/executor_test.go
index c19aa6d88d..bded6f4126 100644
--- a/flytepropeller/pkg/controller/workflow/executor_test.go
+++ b/flytepropeller/pkg/controller/workflow/executor_test.go
@@ -19,6 +19,10 @@ import (
 	k8sfake "k8s.io/client-go/kubernetes/fake"
 	"k8s.io/client-go/tools/record"
 
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery"
 	pluginCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
@@ -44,10 +48,6 @@ import (
 	"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
 	"github.com/flyteorg/flyte/flytestdlib/storage"
 	"github.com/flyteorg/flyte/flytestdlib/yamlutils"
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"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"
 )
 
 var (
diff --git a/flytepropeller/pkg/controller/workflowstore/passthrough_test.go b/flytepropeller/pkg/controller/workflowstore/passthrough_test.go
index 54f7343e73..322f1d21cd 100644
--- a/flytepropeller/pkg/controller/workflowstore/passthrough_test.go
+++ b/flytepropeller/pkg/controller/workflowstore/passthrough_test.go
@@ -5,8 +5,8 @@ import (
 	"fmt"
 	"testing"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/promutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 
diff --git a/flytepropeller/pkg/utils/assert/literals.go b/flytepropeller/pkg/utils/assert/literals.go
index 5247da4e72..c0a8ca497f 100644
--- a/flytepropeller/pkg/utils/assert/literals.go
+++ b/flytepropeller/pkg/utils/assert/literals.go
@@ -4,7 +4,7 @@ import (
 	"reflect"
 	"testing"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 )
 
diff --git a/flytepropeller/pkg/utils/bindings.go b/flytepropeller/pkg/utils/bindings.go
index b66de8c7d7..f9fecc6dbd 100644
--- a/flytepropeller/pkg/utils/bindings.go
+++ b/flytepropeller/pkg/utils/bindings.go
@@ -1,8 +1,8 @@
 package utils
 
 import (
-	"github.com/flyteorg/flyteidl/clients/go/coreutils"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/clients/go/coreutils"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 )
 
 func MakeBindingDataPromise(fromNode, fromVar string) *core.BindingData {
diff --git a/flytepropeller/pkg/utils/k8s.go b/flytepropeller/pkg/utils/k8s.go
index 0bbdf93f87..a56ef84ab5 100644
--- a/flytepropeller/pkg/utils/k8s.go
+++ b/flytepropeller/pkg/utils/k8s.go
@@ -7,11 +7,11 @@ import (
 	"regexp"
 	"strings"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	flyteScheme "github.com/flyteorg/flyte/flytepropeller/pkg/client/clientset/versioned/scheme"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/controller/config"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/ptypes"
 	"github.com/golang/protobuf/ptypes/timestamp"
 	"github.com/pkg/errors"
diff --git a/flytepropeller/pkg/utils/k8s_test.go b/flytepropeller/pkg/utils/k8s_test.go
index b14c2dffa9..0ea0d8e654 100644
--- a/flytepropeller/pkg/utils/k8s_test.go
+++ b/flytepropeller/pkg/utils/k8s_test.go
@@ -4,7 +4,7 @@ import (
 	"testing"
 	"time"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/golang/protobuf/ptypes"
 	"github.com/stretchr/testify/assert"
 	v1 "k8s.io/api/core/v1"
diff --git a/flytepropeller/pkg/visualize/visualize.go b/flytepropeller/pkg/visualize/visualize.go
index e325312b43..911cfb7944 100644
--- a/flytepropeller/pkg/visualize/visualize.go
+++ b/flytepropeller/pkg/visualize/visualize.go
@@ -5,9 +5,9 @@ import (
 	"reflect"
 	"strings"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/compiler/common"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"k8s.io/apimachinery/pkg/util/sets"
 )
 
diff --git a/flytepropeller/pkg/webhook/aws_secret_manager.go b/flytepropeller/pkg/webhook/aws_secret_manager.go
index 866f7f0f81..696a02f8ab 100644
--- a/flytepropeller/pkg/webhook/aws_secret_manager.go
+++ b/flytepropeller/pkg/webhook/aws_secret_manager.go
@@ -7,9 +7,9 @@ import (
 	"path/filepath"
 	"strings"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/webhook/config"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	corev1 "k8s.io/api/core/v1"
 )
 
diff --git a/flytepropeller/pkg/webhook/aws_secret_manager_test.go b/flytepropeller/pkg/webhook/aws_secret_manager_test.go
index 849f69113e..9596efb664 100644
--- a/flytepropeller/pkg/webhook/aws_secret_manager_test.go
+++ b/flytepropeller/pkg/webhook/aws_secret_manager_test.go
@@ -8,7 +8,7 @@ import (
 
 	"github.com/go-test/deep"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	corev1 "k8s.io/api/core/v1"
 )
diff --git a/flytepropeller/pkg/webhook/gcp_secret_manager.go b/flytepropeller/pkg/webhook/gcp_secret_manager.go
index 518ec87a4e..75226a1f9a 100644
--- a/flytepropeller/pkg/webhook/gcp_secret_manager.go
+++ b/flytepropeller/pkg/webhook/gcp_secret_manager.go
@@ -7,9 +7,9 @@ import (
 	"path/filepath"
 	"strings"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/webhook/config"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	corev1 "k8s.io/api/core/v1"
 )
 
diff --git a/flytepropeller/pkg/webhook/gcp_secret_manager_test.go b/flytepropeller/pkg/webhook/gcp_secret_manager_test.go
index 09ce340d2e..fb66006523 100644
--- a/flytepropeller/pkg/webhook/gcp_secret_manager_test.go
+++ b/flytepropeller/pkg/webhook/gcp_secret_manager_test.go
@@ -8,7 +8,7 @@ import (
 
 	"github.com/go-test/deep"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/assert"
 	corev1 "k8s.io/api/core/v1"
 )
diff --git a/flytepropeller/pkg/webhook/global_secrets.go b/flytepropeller/pkg/webhook/global_secrets.go
index d0a4aa2d8d..989bb77d9c 100644
--- a/flytepropeller/pkg/webhook/global_secrets.go
+++ b/flytepropeller/pkg/webhook/global_secrets.go
@@ -7,8 +7,8 @@ import (
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/webhook/config"
 
+	coreIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	coreIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	corev1 "k8s.io/api/core/v1"
 )
 
diff --git a/flytepropeller/pkg/webhook/global_secrets_test.go b/flytepropeller/pkg/webhook/global_secrets_test.go
index c05cd3ec42..f8e8b591b3 100644
--- a/flytepropeller/pkg/webhook/global_secrets_test.go
+++ b/flytepropeller/pkg/webhook/global_secrets_test.go
@@ -11,8 +11,8 @@ import (
 
 	"github.com/go-test/deep"
 
+	coreIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/webhook/mocks"
-	coreIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/stretchr/testify/mock"
 	corev1 "k8s.io/api/core/v1"
 )
diff --git a/flytepropeller/pkg/webhook/k8s_secrets.go b/flytepropeller/pkg/webhook/k8s_secrets.go
index bc01fa1ba8..70ab77354c 100644
--- a/flytepropeller/pkg/webhook/k8s_secrets.go
+++ b/flytepropeller/pkg/webhook/k8s_secrets.go
@@ -8,8 +8,8 @@ import (
 
 	"github.com/flyteorg/flyte/flytepropeller/pkg/webhook/config"
 
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	corev1 "k8s.io/api/core/v1"
 )
 
diff --git a/flytepropeller/pkg/webhook/k8s_secrets_test.go b/flytepropeller/pkg/webhook/k8s_secrets_test.go
index 500da6f44a..3b422fc911 100644
--- a/flytepropeller/pkg/webhook/k8s_secrets_test.go
+++ b/flytepropeller/pkg/webhook/k8s_secrets_test.go
@@ -6,7 +6,7 @@ import (
 
 	"github.com/go-test/deep"
 
-	coreIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	coreIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	corev1 "k8s.io/api/core/v1"
 )
 
diff --git a/flytepropeller/pkg/webhook/mocks/global_secret_provider.go b/flytepropeller/pkg/webhook/mocks/global_secret_provider.go
index 34c22c54d6..22bdd4cfef 100644
--- a/flytepropeller/pkg/webhook/mocks/global_secret_provider.go
+++ b/flytepropeller/pkg/webhook/mocks/global_secret_provider.go
@@ -5,7 +5,7 @@ package mocks
 import (
 	context "context"
 
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	mock "github.com/stretchr/testify/mock"
 )
 
diff --git a/flytepropeller/pkg/webhook/mocks/secrets_injector.go b/flytepropeller/pkg/webhook/mocks/secrets_injector.go
index 54beb45e7d..d6a49ae5bd 100644
--- a/flytepropeller/pkg/webhook/mocks/secrets_injector.go
+++ b/flytepropeller/pkg/webhook/mocks/secrets_injector.go
@@ -7,7 +7,7 @@ import (
 
 	config "github.com/flyteorg/flyte/flytepropeller/pkg/webhook/config"
 
-	core "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	mock "github.com/stretchr/testify/mock"
 
diff --git a/flytepropeller/pkg/webhook/secrets.go b/flytepropeller/pkg/webhook/secrets.go
index 727befa05c..812290dd30 100644
--- a/flytepropeller/pkg/webhook/secrets.go
+++ b/flytepropeller/pkg/webhook/secrets.go
@@ -3,7 +3,7 @@ package webhook
 import (
 	"context"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	secretUtils "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils/secrets"
 
diff --git a/flytepropeller/pkg/webhook/utils.go b/flytepropeller/pkg/webhook/utils.go
index 3be7c57355..7d7e7e3673 100644
--- a/flytepropeller/pkg/webhook/utils.go
+++ b/flytepropeller/pkg/webhook/utils.go
@@ -8,7 +8,7 @@ import (
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/encoding"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/webhook/config"
 
-	"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
+	"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 
 	corev1 "k8s.io/api/core/v1"
 	"k8s.io/apimachinery/pkg/util/uuid"
diff --git a/flytepropeller/pkg/webhook/vault_secret_manager.go b/flytepropeller/pkg/webhook/vault_secret_manager.go
index 6e44459417..d149cd4e6f 100644
--- a/flytepropeller/pkg/webhook/vault_secret_manager.go
+++ b/flytepropeller/pkg/webhook/vault_secret_manager.go
@@ -6,10 +6,10 @@ import (
 	"os"
 	"path/filepath"
 
+	coreIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/webhook/config"
 	"github.com/flyteorg/flyte/flytestdlib/logger"
-	coreIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	corev1 "k8s.io/api/core/v1"
 )
 
diff --git a/flytepropeller/pkg/webhook/vault_secret_manager_test.go b/flytepropeller/pkg/webhook/vault_secret_manager_test.go
index 5faee86ca1..19941a431f 100644
--- a/flytepropeller/pkg/webhook/vault_secret_manager_test.go
+++ b/flytepropeller/pkg/webhook/vault_secret_manager_test.go
@@ -5,8 +5,8 @@ import (
 	"fmt"
 	"testing"
 
+	coreIdl "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/flyteorg/flyte/flytepropeller/pkg/webhook/config"
-	coreIdl "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core"
 	"github.com/go-test/deep"
 	corev1 "k8s.io/api/core/v1"
 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
diff --git a/go.mod b/go.mod
index eb287c2cb4..989c419b80 100644
--- a/go.mod
+++ b/go.mod
@@ -71,8 +71,8 @@ require (
 	github.com/evanphx/json-patch v4.12.0+incompatible // indirect
 	github.com/fatih/color v1.13.0 // indirect
 	github.com/felixge/httpsnoop v1.0.1 // indirect
+	github.com/flyteorg/flyte/flyteidl v0.0.0-00010101000000-000000000000 // indirect
 	github.com/flyteorg/flyte/flyteplugins v0.0.0-00010101000000-000000000000 // indirect
-	github.com/flyteorg/flyteidl v0.0.0-00010101000000-000000000000 // indirect
 	github.com/flyteorg/stow v0.3.7 // indirect
 	github.com/fsnotify/fsnotify v1.5.1 // indirect
 	github.com/ghodss/yaml v1.0.0 // indirect
@@ -220,9 +220,9 @@ replace (
 	github.com/flyteorg/flyte/datacatalog => ./datacatalog
 	github.com/flyteorg/flyte/flyteadmin => ./flyteadmin
 	github.com/flyteorg/flyte/flytecopilot => ./flytecopilot
+	github.com/flyteorg/flyte/flyteidl => ./flyteidl
 	github.com/flyteorg/flyte/flyteplugins => ./flyteplugins
 	github.com/flyteorg/flyte/flytepropeller => ./flytepropeller
 	github.com/flyteorg/flyte/flytestdlib => ./flytestdlib
-	github.com/flyteorg/flyteidl => ./flyteidl
 	github.com/robfig/cron/v3 => github.com/unionai/cron/v3 v3.0.2-0.20220915080349-5790c370e63a
 )