@flyteorg/flyteidl 1.11.1-b0 → 1.11.1-b1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13928,6 +13928,9 @@ export namespace flyteidl {
13928
13928
 
13929
13929
  /** ExecutionSpec tags */
13930
13930
  tags?: (string[]|null);
13931
+
13932
+ /** ExecutionSpec executionClusterLabel */
13933
+ executionClusterLabel?: (flyteidl.admin.IExecutionClusterLabel|null);
13931
13934
  }
13932
13935
 
13933
13936
  /** Represents an ExecutionSpec. */
@@ -13990,6 +13993,9 @@ export namespace flyteidl {
13990
13993
  /** ExecutionSpec tags. */
13991
13994
  public tags: string[];
13992
13995
 
13996
+ /** ExecutionSpec executionClusterLabel. */
13997
+ public executionClusterLabel?: (flyteidl.admin.IExecutionClusterLabel|null);
13998
+
13993
13999
  /** ExecutionSpec notificationOverrides. */
13994
14000
  public notificationOverrides?: ("notifications"|"disableAll");
13995
14001
 
@@ -14536,1816 +14542,1816 @@ export namespace flyteidl {
14536
14542
  public static verify(message: { [k: string]: any }): (string|null);
14537
14543
  }
14538
14544
 
14539
- /** Properties of a LaunchPlanCreateRequest. */
14540
- interface ILaunchPlanCreateRequest {
14545
+ /** MatchableResource enum. */
14546
+ enum MatchableResource {
14547
+ TASK_RESOURCE = 0,
14548
+ CLUSTER_RESOURCE = 1,
14549
+ EXECUTION_QUEUE = 2,
14550
+ EXECUTION_CLUSTER_LABEL = 3,
14551
+ QUALITY_OF_SERVICE_SPECIFICATION = 4,
14552
+ PLUGIN_OVERRIDE = 5,
14553
+ WORKFLOW_EXECUTION_CONFIG = 6,
14554
+ CLUSTER_ASSIGNMENT = 7
14555
+ }
14541
14556
 
14542
- /** LaunchPlanCreateRequest id */
14543
- id?: (flyteidl.core.IIdentifier|null);
14557
+ /** Properties of a TaskResourceSpec. */
14558
+ interface ITaskResourceSpec {
14544
14559
 
14545
- /** LaunchPlanCreateRequest spec */
14546
- spec?: (flyteidl.admin.ILaunchPlanSpec|null);
14560
+ /** TaskResourceSpec cpu */
14561
+ cpu?: (string|null);
14562
+
14563
+ /** TaskResourceSpec gpu */
14564
+ gpu?: (string|null);
14565
+
14566
+ /** TaskResourceSpec memory */
14567
+ memory?: (string|null);
14568
+
14569
+ /** TaskResourceSpec storage */
14570
+ storage?: (string|null);
14571
+
14572
+ /** TaskResourceSpec ephemeralStorage */
14573
+ ephemeralStorage?: (string|null);
14547
14574
  }
14548
14575
 
14549
- /** Represents a LaunchPlanCreateRequest. */
14550
- class LaunchPlanCreateRequest implements ILaunchPlanCreateRequest {
14576
+ /** Represents a TaskResourceSpec. */
14577
+ class TaskResourceSpec implements ITaskResourceSpec {
14551
14578
 
14552
14579
  /**
14553
- * Constructs a new LaunchPlanCreateRequest.
14580
+ * Constructs a new TaskResourceSpec.
14554
14581
  * @param [properties] Properties to set
14555
14582
  */
14556
- constructor(properties?: flyteidl.admin.ILaunchPlanCreateRequest);
14583
+ constructor(properties?: flyteidl.admin.ITaskResourceSpec);
14557
14584
 
14558
- /** LaunchPlanCreateRequest id. */
14559
- public id?: (flyteidl.core.IIdentifier|null);
14585
+ /** TaskResourceSpec cpu. */
14586
+ public cpu: string;
14560
14587
 
14561
- /** LaunchPlanCreateRequest spec. */
14562
- public spec?: (flyteidl.admin.ILaunchPlanSpec|null);
14588
+ /** TaskResourceSpec gpu. */
14589
+ public gpu: string;
14590
+
14591
+ /** TaskResourceSpec memory. */
14592
+ public memory: string;
14593
+
14594
+ /** TaskResourceSpec storage. */
14595
+ public storage: string;
14596
+
14597
+ /** TaskResourceSpec ephemeralStorage. */
14598
+ public ephemeralStorage: string;
14563
14599
 
14564
14600
  /**
14565
- * Creates a new LaunchPlanCreateRequest instance using the specified properties.
14601
+ * Creates a new TaskResourceSpec instance using the specified properties.
14566
14602
  * @param [properties] Properties to set
14567
- * @returns LaunchPlanCreateRequest instance
14603
+ * @returns TaskResourceSpec instance
14568
14604
  */
14569
- public static create(properties?: flyteidl.admin.ILaunchPlanCreateRequest): flyteidl.admin.LaunchPlanCreateRequest;
14605
+ public static create(properties?: flyteidl.admin.ITaskResourceSpec): flyteidl.admin.TaskResourceSpec;
14570
14606
 
14571
14607
  /**
14572
- * Encodes the specified LaunchPlanCreateRequest message. Does not implicitly {@link flyteidl.admin.LaunchPlanCreateRequest.verify|verify} messages.
14573
- * @param message LaunchPlanCreateRequest message or plain object to encode
14608
+ * Encodes the specified TaskResourceSpec message. Does not implicitly {@link flyteidl.admin.TaskResourceSpec.verify|verify} messages.
14609
+ * @param message TaskResourceSpec message or plain object to encode
14574
14610
  * @param [writer] Writer to encode to
14575
14611
  * @returns Writer
14576
14612
  */
14577
- public static encode(message: flyteidl.admin.ILaunchPlanCreateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
14613
+ public static encode(message: flyteidl.admin.ITaskResourceSpec, writer?: $protobuf.Writer): $protobuf.Writer;
14578
14614
 
14579
14615
  /**
14580
- * Decodes a LaunchPlanCreateRequest message from the specified reader or buffer.
14616
+ * Decodes a TaskResourceSpec message from the specified reader or buffer.
14581
14617
  * @param reader Reader or buffer to decode from
14582
14618
  * @param [length] Message length if known beforehand
14583
- * @returns LaunchPlanCreateRequest
14619
+ * @returns TaskResourceSpec
14584
14620
  * @throws {Error} If the payload is not a reader or valid buffer
14585
14621
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
14586
14622
  */
14587
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanCreateRequest;
14623
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskResourceSpec;
14588
14624
 
14589
14625
  /**
14590
- * Verifies a LaunchPlanCreateRequest message.
14626
+ * Verifies a TaskResourceSpec message.
14591
14627
  * @param message Plain object to verify
14592
14628
  * @returns `null` if valid, otherwise the reason why it is not
14593
14629
  */
14594
14630
  public static verify(message: { [k: string]: any }): (string|null);
14595
14631
  }
14596
14632
 
14597
- /** Properties of a LaunchPlanCreateResponse. */
14598
- interface ILaunchPlanCreateResponse {
14633
+ /** Properties of a TaskResourceAttributes. */
14634
+ interface ITaskResourceAttributes {
14635
+
14636
+ /** TaskResourceAttributes defaults */
14637
+ defaults?: (flyteidl.admin.ITaskResourceSpec|null);
14638
+
14639
+ /** TaskResourceAttributes limits */
14640
+ limits?: (flyteidl.admin.ITaskResourceSpec|null);
14599
14641
  }
14600
14642
 
14601
- /** Represents a LaunchPlanCreateResponse. */
14602
- class LaunchPlanCreateResponse implements ILaunchPlanCreateResponse {
14643
+ /** Represents a TaskResourceAttributes. */
14644
+ class TaskResourceAttributes implements ITaskResourceAttributes {
14603
14645
 
14604
14646
  /**
14605
- * Constructs a new LaunchPlanCreateResponse.
14647
+ * Constructs a new TaskResourceAttributes.
14606
14648
  * @param [properties] Properties to set
14607
14649
  */
14608
- constructor(properties?: flyteidl.admin.ILaunchPlanCreateResponse);
14650
+ constructor(properties?: flyteidl.admin.ITaskResourceAttributes);
14651
+
14652
+ /** TaskResourceAttributes defaults. */
14653
+ public defaults?: (flyteidl.admin.ITaskResourceSpec|null);
14654
+
14655
+ /** TaskResourceAttributes limits. */
14656
+ public limits?: (flyteidl.admin.ITaskResourceSpec|null);
14609
14657
 
14610
14658
  /**
14611
- * Creates a new LaunchPlanCreateResponse instance using the specified properties.
14659
+ * Creates a new TaskResourceAttributes instance using the specified properties.
14612
14660
  * @param [properties] Properties to set
14613
- * @returns LaunchPlanCreateResponse instance
14661
+ * @returns TaskResourceAttributes instance
14614
14662
  */
14615
- public static create(properties?: flyteidl.admin.ILaunchPlanCreateResponse): flyteidl.admin.LaunchPlanCreateResponse;
14663
+ public static create(properties?: flyteidl.admin.ITaskResourceAttributes): flyteidl.admin.TaskResourceAttributes;
14616
14664
 
14617
14665
  /**
14618
- * Encodes the specified LaunchPlanCreateResponse message. Does not implicitly {@link flyteidl.admin.LaunchPlanCreateResponse.verify|verify} messages.
14619
- * @param message LaunchPlanCreateResponse message or plain object to encode
14666
+ * Encodes the specified TaskResourceAttributes message. Does not implicitly {@link flyteidl.admin.TaskResourceAttributes.verify|verify} messages.
14667
+ * @param message TaskResourceAttributes message or plain object to encode
14620
14668
  * @param [writer] Writer to encode to
14621
14669
  * @returns Writer
14622
14670
  */
14623
- public static encode(message: flyteidl.admin.ILaunchPlanCreateResponse, writer?: $protobuf.Writer): $protobuf.Writer;
14671
+ public static encode(message: flyteidl.admin.ITaskResourceAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
14624
14672
 
14625
14673
  /**
14626
- * Decodes a LaunchPlanCreateResponse message from the specified reader or buffer.
14674
+ * Decodes a TaskResourceAttributes message from the specified reader or buffer.
14627
14675
  * @param reader Reader or buffer to decode from
14628
14676
  * @param [length] Message length if known beforehand
14629
- * @returns LaunchPlanCreateResponse
14677
+ * @returns TaskResourceAttributes
14630
14678
  * @throws {Error} If the payload is not a reader or valid buffer
14631
14679
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
14632
14680
  */
14633
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanCreateResponse;
14681
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskResourceAttributes;
14634
14682
 
14635
14683
  /**
14636
- * Verifies a LaunchPlanCreateResponse message.
14684
+ * Verifies a TaskResourceAttributes message.
14637
14685
  * @param message Plain object to verify
14638
14686
  * @returns `null` if valid, otherwise the reason why it is not
14639
14687
  */
14640
14688
  public static verify(message: { [k: string]: any }): (string|null);
14641
14689
  }
14642
14690
 
14643
- /** LaunchPlanState enum. */
14644
- enum LaunchPlanState {
14645
- INACTIVE = 0,
14646
- ACTIVE = 1
14647
- }
14648
-
14649
- /** Properties of a LaunchPlan. */
14650
- interface ILaunchPlan {
14651
-
14652
- /** LaunchPlan id */
14653
- id?: (flyteidl.core.IIdentifier|null);
14654
-
14655
- /** LaunchPlan spec */
14656
- spec?: (flyteidl.admin.ILaunchPlanSpec|null);
14691
+ /** Properties of a ClusterResourceAttributes. */
14692
+ interface IClusterResourceAttributes {
14657
14693
 
14658
- /** LaunchPlan closure */
14659
- closure?: (flyteidl.admin.ILaunchPlanClosure|null);
14694
+ /** ClusterResourceAttributes attributes */
14695
+ attributes?: ({ [k: string]: string }|null);
14660
14696
  }
14661
14697
 
14662
- /** Represents a LaunchPlan. */
14663
- class LaunchPlan implements ILaunchPlan {
14698
+ /** Represents a ClusterResourceAttributes. */
14699
+ class ClusterResourceAttributes implements IClusterResourceAttributes {
14664
14700
 
14665
14701
  /**
14666
- * Constructs a new LaunchPlan.
14702
+ * Constructs a new ClusterResourceAttributes.
14667
14703
  * @param [properties] Properties to set
14668
14704
  */
14669
- constructor(properties?: flyteidl.admin.ILaunchPlan);
14670
-
14671
- /** LaunchPlan id. */
14672
- public id?: (flyteidl.core.IIdentifier|null);
14673
-
14674
- /** LaunchPlan spec. */
14675
- public spec?: (flyteidl.admin.ILaunchPlanSpec|null);
14705
+ constructor(properties?: flyteidl.admin.IClusterResourceAttributes);
14676
14706
 
14677
- /** LaunchPlan closure. */
14678
- public closure?: (flyteidl.admin.ILaunchPlanClosure|null);
14707
+ /** ClusterResourceAttributes attributes. */
14708
+ public attributes: { [k: string]: string };
14679
14709
 
14680
14710
  /**
14681
- * Creates a new LaunchPlan instance using the specified properties.
14711
+ * Creates a new ClusterResourceAttributes instance using the specified properties.
14682
14712
  * @param [properties] Properties to set
14683
- * @returns LaunchPlan instance
14713
+ * @returns ClusterResourceAttributes instance
14684
14714
  */
14685
- public static create(properties?: flyteidl.admin.ILaunchPlan): flyteidl.admin.LaunchPlan;
14715
+ public static create(properties?: flyteidl.admin.IClusterResourceAttributes): flyteidl.admin.ClusterResourceAttributes;
14686
14716
 
14687
14717
  /**
14688
- * Encodes the specified LaunchPlan message. Does not implicitly {@link flyteidl.admin.LaunchPlan.verify|verify} messages.
14689
- * @param message LaunchPlan message or plain object to encode
14718
+ * Encodes the specified ClusterResourceAttributes message. Does not implicitly {@link flyteidl.admin.ClusterResourceAttributes.verify|verify} messages.
14719
+ * @param message ClusterResourceAttributes message or plain object to encode
14690
14720
  * @param [writer] Writer to encode to
14691
14721
  * @returns Writer
14692
14722
  */
14693
- public static encode(message: flyteidl.admin.ILaunchPlan, writer?: $protobuf.Writer): $protobuf.Writer;
14723
+ public static encode(message: flyteidl.admin.IClusterResourceAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
14694
14724
 
14695
14725
  /**
14696
- * Decodes a LaunchPlan message from the specified reader or buffer.
14726
+ * Decodes a ClusterResourceAttributes message from the specified reader or buffer.
14697
14727
  * @param reader Reader or buffer to decode from
14698
14728
  * @param [length] Message length if known beforehand
14699
- * @returns LaunchPlan
14729
+ * @returns ClusterResourceAttributes
14700
14730
  * @throws {Error} If the payload is not a reader or valid buffer
14701
14731
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
14702
14732
  */
14703
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlan;
14733
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ClusterResourceAttributes;
14704
14734
 
14705
14735
  /**
14706
- * Verifies a LaunchPlan message.
14736
+ * Verifies a ClusterResourceAttributes message.
14707
14737
  * @param message Plain object to verify
14708
14738
  * @returns `null` if valid, otherwise the reason why it is not
14709
14739
  */
14710
14740
  public static verify(message: { [k: string]: any }): (string|null);
14711
14741
  }
14712
14742
 
14713
- /** Properties of a LaunchPlanList. */
14714
- interface ILaunchPlanList {
14715
-
14716
- /** LaunchPlanList launchPlans */
14717
- launchPlans?: (flyteidl.admin.ILaunchPlan[]|null);
14743
+ /** Properties of an ExecutionQueueAttributes. */
14744
+ interface IExecutionQueueAttributes {
14718
14745
 
14719
- /** LaunchPlanList token */
14720
- token?: (string|null);
14746
+ /** ExecutionQueueAttributes tags */
14747
+ tags?: (string[]|null);
14721
14748
  }
14722
14749
 
14723
- /** Represents a LaunchPlanList. */
14724
- class LaunchPlanList implements ILaunchPlanList {
14750
+ /** Represents an ExecutionQueueAttributes. */
14751
+ class ExecutionQueueAttributes implements IExecutionQueueAttributes {
14725
14752
 
14726
14753
  /**
14727
- * Constructs a new LaunchPlanList.
14754
+ * Constructs a new ExecutionQueueAttributes.
14728
14755
  * @param [properties] Properties to set
14729
14756
  */
14730
- constructor(properties?: flyteidl.admin.ILaunchPlanList);
14731
-
14732
- /** LaunchPlanList launchPlans. */
14733
- public launchPlans: flyteidl.admin.ILaunchPlan[];
14757
+ constructor(properties?: flyteidl.admin.IExecutionQueueAttributes);
14734
14758
 
14735
- /** LaunchPlanList token. */
14736
- public token: string;
14759
+ /** ExecutionQueueAttributes tags. */
14760
+ public tags: string[];
14737
14761
 
14738
14762
  /**
14739
- * Creates a new LaunchPlanList instance using the specified properties.
14763
+ * Creates a new ExecutionQueueAttributes instance using the specified properties.
14740
14764
  * @param [properties] Properties to set
14741
- * @returns LaunchPlanList instance
14765
+ * @returns ExecutionQueueAttributes instance
14742
14766
  */
14743
- public static create(properties?: flyteidl.admin.ILaunchPlanList): flyteidl.admin.LaunchPlanList;
14767
+ public static create(properties?: flyteidl.admin.IExecutionQueueAttributes): flyteidl.admin.ExecutionQueueAttributes;
14744
14768
 
14745
14769
  /**
14746
- * Encodes the specified LaunchPlanList message. Does not implicitly {@link flyteidl.admin.LaunchPlanList.verify|verify} messages.
14747
- * @param message LaunchPlanList message or plain object to encode
14770
+ * Encodes the specified ExecutionQueueAttributes message. Does not implicitly {@link flyteidl.admin.ExecutionQueueAttributes.verify|verify} messages.
14771
+ * @param message ExecutionQueueAttributes message or plain object to encode
14748
14772
  * @param [writer] Writer to encode to
14749
14773
  * @returns Writer
14750
14774
  */
14751
- public static encode(message: flyteidl.admin.ILaunchPlanList, writer?: $protobuf.Writer): $protobuf.Writer;
14775
+ public static encode(message: flyteidl.admin.IExecutionQueueAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
14752
14776
 
14753
14777
  /**
14754
- * Decodes a LaunchPlanList message from the specified reader or buffer.
14778
+ * Decodes an ExecutionQueueAttributes message from the specified reader or buffer.
14755
14779
  * @param reader Reader or buffer to decode from
14756
14780
  * @param [length] Message length if known beforehand
14757
- * @returns LaunchPlanList
14781
+ * @returns ExecutionQueueAttributes
14758
14782
  * @throws {Error} If the payload is not a reader or valid buffer
14759
14783
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
14760
14784
  */
14761
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanList;
14785
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionQueueAttributes;
14762
14786
 
14763
14787
  /**
14764
- * Verifies a LaunchPlanList message.
14788
+ * Verifies an ExecutionQueueAttributes message.
14765
14789
  * @param message Plain object to verify
14766
14790
  * @returns `null` if valid, otherwise the reason why it is not
14767
14791
  */
14768
14792
  public static verify(message: { [k: string]: any }): (string|null);
14769
14793
  }
14770
14794
 
14771
- /** Properties of an Auth. */
14772
- interface IAuth {
14773
-
14774
- /** Auth assumableIamRole */
14775
- assumableIamRole?: (string|null);
14795
+ /** Properties of an ExecutionClusterLabel. */
14796
+ interface IExecutionClusterLabel {
14776
14797
 
14777
- /** Auth kubernetesServiceAccount */
14778
- kubernetesServiceAccount?: (string|null);
14798
+ /** ExecutionClusterLabel value */
14799
+ value?: (string|null);
14779
14800
  }
14780
14801
 
14781
- /** Represents an Auth. */
14782
- class Auth implements IAuth {
14802
+ /** Represents an ExecutionClusterLabel. */
14803
+ class ExecutionClusterLabel implements IExecutionClusterLabel {
14783
14804
 
14784
14805
  /**
14785
- * Constructs a new Auth.
14806
+ * Constructs a new ExecutionClusterLabel.
14786
14807
  * @param [properties] Properties to set
14787
14808
  */
14788
- constructor(properties?: flyteidl.admin.IAuth);
14789
-
14790
- /** Auth assumableIamRole. */
14791
- public assumableIamRole: string;
14809
+ constructor(properties?: flyteidl.admin.IExecutionClusterLabel);
14792
14810
 
14793
- /** Auth kubernetesServiceAccount. */
14794
- public kubernetesServiceAccount: string;
14811
+ /** ExecutionClusterLabel value. */
14812
+ public value: string;
14795
14813
 
14796
14814
  /**
14797
- * Creates a new Auth instance using the specified properties.
14815
+ * Creates a new ExecutionClusterLabel instance using the specified properties.
14798
14816
  * @param [properties] Properties to set
14799
- * @returns Auth instance
14817
+ * @returns ExecutionClusterLabel instance
14800
14818
  */
14801
- public static create(properties?: flyteidl.admin.IAuth): flyteidl.admin.Auth;
14819
+ public static create(properties?: flyteidl.admin.IExecutionClusterLabel): flyteidl.admin.ExecutionClusterLabel;
14802
14820
 
14803
14821
  /**
14804
- * Encodes the specified Auth message. Does not implicitly {@link flyteidl.admin.Auth.verify|verify} messages.
14805
- * @param message Auth message or plain object to encode
14822
+ * Encodes the specified ExecutionClusterLabel message. Does not implicitly {@link flyteidl.admin.ExecutionClusterLabel.verify|verify} messages.
14823
+ * @param message ExecutionClusterLabel message or plain object to encode
14806
14824
  * @param [writer] Writer to encode to
14807
14825
  * @returns Writer
14808
14826
  */
14809
- public static encode(message: flyteidl.admin.IAuth, writer?: $protobuf.Writer): $protobuf.Writer;
14827
+ public static encode(message: flyteidl.admin.IExecutionClusterLabel, writer?: $protobuf.Writer): $protobuf.Writer;
14810
14828
 
14811
14829
  /**
14812
- * Decodes an Auth message from the specified reader or buffer.
14830
+ * Decodes an ExecutionClusterLabel message from the specified reader or buffer.
14813
14831
  * @param reader Reader or buffer to decode from
14814
14832
  * @param [length] Message length if known beforehand
14815
- * @returns Auth
14833
+ * @returns ExecutionClusterLabel
14816
14834
  * @throws {Error} If the payload is not a reader or valid buffer
14817
14835
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
14818
14836
  */
14819
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Auth;
14837
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionClusterLabel;
14820
14838
 
14821
14839
  /**
14822
- * Verifies an Auth message.
14840
+ * Verifies an ExecutionClusterLabel message.
14823
14841
  * @param message Plain object to verify
14824
14842
  * @returns `null` if valid, otherwise the reason why it is not
14825
14843
  */
14826
14844
  public static verify(message: { [k: string]: any }): (string|null);
14827
14845
  }
14828
14846
 
14829
- /** Properties of a LaunchPlanSpec. */
14830
- interface ILaunchPlanSpec {
14831
-
14832
- /** LaunchPlanSpec workflowId */
14833
- workflowId?: (flyteidl.core.IIdentifier|null);
14834
-
14835
- /** LaunchPlanSpec entityMetadata */
14836
- entityMetadata?: (flyteidl.admin.ILaunchPlanMetadata|null);
14837
-
14838
- /** LaunchPlanSpec defaultInputs */
14839
- defaultInputs?: (flyteidl.core.IParameterMap|null);
14840
-
14841
- /** LaunchPlanSpec fixedInputs */
14842
- fixedInputs?: (flyteidl.core.ILiteralMap|null);
14843
-
14844
- /** LaunchPlanSpec role */
14845
- role?: (string|null);
14846
-
14847
- /** LaunchPlanSpec labels */
14848
- labels?: (flyteidl.admin.ILabels|null);
14849
-
14850
- /** LaunchPlanSpec annotations */
14851
- annotations?: (flyteidl.admin.IAnnotations|null);
14852
-
14853
- /** LaunchPlanSpec auth */
14854
- auth?: (flyteidl.admin.IAuth|null);
14855
-
14856
- /** LaunchPlanSpec authRole */
14857
- authRole?: (flyteidl.admin.IAuthRole|null);
14858
-
14859
- /** LaunchPlanSpec securityContext */
14860
- securityContext?: (flyteidl.core.ISecurityContext|null);
14861
-
14862
- /** LaunchPlanSpec qualityOfService */
14863
- qualityOfService?: (flyteidl.core.IQualityOfService|null);
14864
-
14865
- /** LaunchPlanSpec rawOutputDataConfig */
14866
- rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null);
14867
-
14868
- /** LaunchPlanSpec maxParallelism */
14869
- maxParallelism?: (number|null);
14847
+ /** Properties of a PluginOverride. */
14848
+ interface IPluginOverride {
14870
14849
 
14871
- /** LaunchPlanSpec interruptible */
14872
- interruptible?: (google.protobuf.IBoolValue|null);
14850
+ /** PluginOverride taskType */
14851
+ taskType?: (string|null);
14873
14852
 
14874
- /** LaunchPlanSpec overwriteCache */
14875
- overwriteCache?: (boolean|null);
14853
+ /** PluginOverride pluginId */
14854
+ pluginId?: (string[]|null);
14876
14855
 
14877
- /** LaunchPlanSpec envs */
14878
- envs?: (flyteidl.admin.IEnvs|null);
14856
+ /** PluginOverride missingPluginBehavior */
14857
+ missingPluginBehavior?: (flyteidl.admin.PluginOverride.MissingPluginBehavior|null);
14879
14858
  }
14880
14859
 
14881
- /** Represents a LaunchPlanSpec. */
14882
- class LaunchPlanSpec implements ILaunchPlanSpec {
14860
+ /** Represents a PluginOverride. */
14861
+ class PluginOverride implements IPluginOverride {
14883
14862
 
14884
14863
  /**
14885
- * Constructs a new LaunchPlanSpec.
14864
+ * Constructs a new PluginOverride.
14886
14865
  * @param [properties] Properties to set
14887
14866
  */
14888
- constructor(properties?: flyteidl.admin.ILaunchPlanSpec);
14889
-
14890
- /** LaunchPlanSpec workflowId. */
14891
- public workflowId?: (flyteidl.core.IIdentifier|null);
14892
-
14893
- /** LaunchPlanSpec entityMetadata. */
14894
- public entityMetadata?: (flyteidl.admin.ILaunchPlanMetadata|null);
14895
-
14896
- /** LaunchPlanSpec defaultInputs. */
14897
- public defaultInputs?: (flyteidl.core.IParameterMap|null);
14898
-
14899
- /** LaunchPlanSpec fixedInputs. */
14900
- public fixedInputs?: (flyteidl.core.ILiteralMap|null);
14901
-
14902
- /** LaunchPlanSpec role. */
14903
- public role: string;
14904
-
14905
- /** LaunchPlanSpec labels. */
14906
- public labels?: (flyteidl.admin.ILabels|null);
14907
-
14908
- /** LaunchPlanSpec annotations. */
14909
- public annotations?: (flyteidl.admin.IAnnotations|null);
14910
-
14911
- /** LaunchPlanSpec auth. */
14912
- public auth?: (flyteidl.admin.IAuth|null);
14913
-
14914
- /** LaunchPlanSpec authRole. */
14915
- public authRole?: (flyteidl.admin.IAuthRole|null);
14916
-
14917
- /** LaunchPlanSpec securityContext. */
14918
- public securityContext?: (flyteidl.core.ISecurityContext|null);
14919
-
14920
- /** LaunchPlanSpec qualityOfService. */
14921
- public qualityOfService?: (flyteidl.core.IQualityOfService|null);
14922
-
14923
- /** LaunchPlanSpec rawOutputDataConfig. */
14924
- public rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null);
14925
-
14926
- /** LaunchPlanSpec maxParallelism. */
14927
- public maxParallelism: number;
14867
+ constructor(properties?: flyteidl.admin.IPluginOverride);
14928
14868
 
14929
- /** LaunchPlanSpec interruptible. */
14930
- public interruptible?: (google.protobuf.IBoolValue|null);
14869
+ /** PluginOverride taskType. */
14870
+ public taskType: string;
14931
14871
 
14932
- /** LaunchPlanSpec overwriteCache. */
14933
- public overwriteCache: boolean;
14872
+ /** PluginOverride pluginId. */
14873
+ public pluginId: string[];
14934
14874
 
14935
- /** LaunchPlanSpec envs. */
14936
- public envs?: (flyteidl.admin.IEnvs|null);
14875
+ /** PluginOverride missingPluginBehavior. */
14876
+ public missingPluginBehavior: flyteidl.admin.PluginOverride.MissingPluginBehavior;
14937
14877
 
14938
14878
  /**
14939
- * Creates a new LaunchPlanSpec instance using the specified properties.
14879
+ * Creates a new PluginOverride instance using the specified properties.
14940
14880
  * @param [properties] Properties to set
14941
- * @returns LaunchPlanSpec instance
14881
+ * @returns PluginOverride instance
14942
14882
  */
14943
- public static create(properties?: flyteidl.admin.ILaunchPlanSpec): flyteidl.admin.LaunchPlanSpec;
14883
+ public static create(properties?: flyteidl.admin.IPluginOverride): flyteidl.admin.PluginOverride;
14944
14884
 
14945
14885
  /**
14946
- * Encodes the specified LaunchPlanSpec message. Does not implicitly {@link flyteidl.admin.LaunchPlanSpec.verify|verify} messages.
14947
- * @param message LaunchPlanSpec message or plain object to encode
14886
+ * Encodes the specified PluginOverride message. Does not implicitly {@link flyteidl.admin.PluginOverride.verify|verify} messages.
14887
+ * @param message PluginOverride message or plain object to encode
14948
14888
  * @param [writer] Writer to encode to
14949
14889
  * @returns Writer
14950
14890
  */
14951
- public static encode(message: flyteidl.admin.ILaunchPlanSpec, writer?: $protobuf.Writer): $protobuf.Writer;
14891
+ public static encode(message: flyteidl.admin.IPluginOverride, writer?: $protobuf.Writer): $protobuf.Writer;
14952
14892
 
14953
14893
  /**
14954
- * Decodes a LaunchPlanSpec message from the specified reader or buffer.
14894
+ * Decodes a PluginOverride message from the specified reader or buffer.
14955
14895
  * @param reader Reader or buffer to decode from
14956
14896
  * @param [length] Message length if known beforehand
14957
- * @returns LaunchPlanSpec
14897
+ * @returns PluginOverride
14958
14898
  * @throws {Error} If the payload is not a reader or valid buffer
14959
14899
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
14960
14900
  */
14961
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanSpec;
14901
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.PluginOverride;
14962
14902
 
14963
14903
  /**
14964
- * Verifies a LaunchPlanSpec message.
14904
+ * Verifies a PluginOverride message.
14965
14905
  * @param message Plain object to verify
14966
14906
  * @returns `null` if valid, otherwise the reason why it is not
14967
14907
  */
14968
14908
  public static verify(message: { [k: string]: any }): (string|null);
14969
14909
  }
14970
14910
 
14971
- /** Properties of a LaunchPlanClosure. */
14972
- interface ILaunchPlanClosure {
14973
-
14974
- /** LaunchPlanClosure state */
14975
- state?: (flyteidl.admin.LaunchPlanState|null);
14976
-
14977
- /** LaunchPlanClosure expectedInputs */
14978
- expectedInputs?: (flyteidl.core.IParameterMap|null);
14911
+ namespace PluginOverride {
14979
14912
 
14980
- /** LaunchPlanClosure expectedOutputs */
14981
- expectedOutputs?: (flyteidl.core.IVariableMap|null);
14913
+ /** MissingPluginBehavior enum. */
14914
+ enum MissingPluginBehavior {
14915
+ FAIL = 0,
14916
+ USE_DEFAULT = 1
14917
+ }
14918
+ }
14982
14919
 
14983
- /** LaunchPlanClosure createdAt */
14984
- createdAt?: (google.protobuf.ITimestamp|null);
14920
+ /** Properties of a PluginOverrides. */
14921
+ interface IPluginOverrides {
14985
14922
 
14986
- /** LaunchPlanClosure updatedAt */
14987
- updatedAt?: (google.protobuf.ITimestamp|null);
14923
+ /** PluginOverrides overrides */
14924
+ overrides?: (flyteidl.admin.IPluginOverride[]|null);
14988
14925
  }
14989
14926
 
14990
- /** Represents a LaunchPlanClosure. */
14991
- class LaunchPlanClosure implements ILaunchPlanClosure {
14927
+ /** Represents a PluginOverrides. */
14928
+ class PluginOverrides implements IPluginOverrides {
14992
14929
 
14993
14930
  /**
14994
- * Constructs a new LaunchPlanClosure.
14931
+ * Constructs a new PluginOverrides.
14995
14932
  * @param [properties] Properties to set
14996
14933
  */
14997
- constructor(properties?: flyteidl.admin.ILaunchPlanClosure);
14998
-
14999
- /** LaunchPlanClosure state. */
15000
- public state: flyteidl.admin.LaunchPlanState;
15001
-
15002
- /** LaunchPlanClosure expectedInputs. */
15003
- public expectedInputs?: (flyteidl.core.IParameterMap|null);
15004
-
15005
- /** LaunchPlanClosure expectedOutputs. */
15006
- public expectedOutputs?: (flyteidl.core.IVariableMap|null);
15007
-
15008
- /** LaunchPlanClosure createdAt. */
15009
- public createdAt?: (google.protobuf.ITimestamp|null);
14934
+ constructor(properties?: flyteidl.admin.IPluginOverrides);
15010
14935
 
15011
- /** LaunchPlanClosure updatedAt. */
15012
- public updatedAt?: (google.protobuf.ITimestamp|null);
14936
+ /** PluginOverrides overrides. */
14937
+ public overrides: flyteidl.admin.IPluginOverride[];
15013
14938
 
15014
14939
  /**
15015
- * Creates a new LaunchPlanClosure instance using the specified properties.
14940
+ * Creates a new PluginOverrides instance using the specified properties.
15016
14941
  * @param [properties] Properties to set
15017
- * @returns LaunchPlanClosure instance
14942
+ * @returns PluginOverrides instance
15018
14943
  */
15019
- public static create(properties?: flyteidl.admin.ILaunchPlanClosure): flyteidl.admin.LaunchPlanClosure;
14944
+ public static create(properties?: flyteidl.admin.IPluginOverrides): flyteidl.admin.PluginOverrides;
15020
14945
 
15021
14946
  /**
15022
- * Encodes the specified LaunchPlanClosure message. Does not implicitly {@link flyteidl.admin.LaunchPlanClosure.verify|verify} messages.
15023
- * @param message LaunchPlanClosure message or plain object to encode
14947
+ * Encodes the specified PluginOverrides message. Does not implicitly {@link flyteidl.admin.PluginOverrides.verify|verify} messages.
14948
+ * @param message PluginOverrides message or plain object to encode
15024
14949
  * @param [writer] Writer to encode to
15025
14950
  * @returns Writer
15026
14951
  */
15027
- public static encode(message: flyteidl.admin.ILaunchPlanClosure, writer?: $protobuf.Writer): $protobuf.Writer;
14952
+ public static encode(message: flyteidl.admin.IPluginOverrides, writer?: $protobuf.Writer): $protobuf.Writer;
15028
14953
 
15029
14954
  /**
15030
- * Decodes a LaunchPlanClosure message from the specified reader or buffer.
14955
+ * Decodes a PluginOverrides message from the specified reader or buffer.
15031
14956
  * @param reader Reader or buffer to decode from
15032
14957
  * @param [length] Message length if known beforehand
15033
- * @returns LaunchPlanClosure
14958
+ * @returns PluginOverrides
15034
14959
  * @throws {Error} If the payload is not a reader or valid buffer
15035
14960
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15036
14961
  */
15037
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanClosure;
14962
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.PluginOverrides;
15038
14963
 
15039
14964
  /**
15040
- * Verifies a LaunchPlanClosure message.
14965
+ * Verifies a PluginOverrides message.
15041
14966
  * @param message Plain object to verify
15042
14967
  * @returns `null` if valid, otherwise the reason why it is not
15043
14968
  */
15044
14969
  public static verify(message: { [k: string]: any }): (string|null);
15045
14970
  }
15046
14971
 
15047
- /** Properties of a LaunchPlanMetadata. */
15048
- interface ILaunchPlanMetadata {
14972
+ /** Properties of a WorkflowExecutionConfig. */
14973
+ interface IWorkflowExecutionConfig {
15049
14974
 
15050
- /** LaunchPlanMetadata schedule */
15051
- schedule?: (flyteidl.admin.ISchedule|null);
14975
+ /** WorkflowExecutionConfig maxParallelism */
14976
+ maxParallelism?: (number|null);
15052
14977
 
15053
- /** LaunchPlanMetadata notifications */
15054
- notifications?: (flyteidl.admin.INotification[]|null);
14978
+ /** WorkflowExecutionConfig securityContext */
14979
+ securityContext?: (flyteidl.core.ISecurityContext|null);
15055
14980
 
15056
- /** LaunchPlanMetadata launchConditions */
15057
- launchConditions?: (google.protobuf.IAny|null);
14981
+ /** WorkflowExecutionConfig rawOutputDataConfig */
14982
+ rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null);
14983
+
14984
+ /** WorkflowExecutionConfig labels */
14985
+ labels?: (flyteidl.admin.ILabels|null);
14986
+
14987
+ /** WorkflowExecutionConfig annotations */
14988
+ annotations?: (flyteidl.admin.IAnnotations|null);
14989
+
14990
+ /** WorkflowExecutionConfig interruptible */
14991
+ interruptible?: (google.protobuf.IBoolValue|null);
14992
+
14993
+ /** WorkflowExecutionConfig overwriteCache */
14994
+ overwriteCache?: (boolean|null);
14995
+
14996
+ /** WorkflowExecutionConfig envs */
14997
+ envs?: (flyteidl.admin.IEnvs|null);
15058
14998
  }
15059
14999
 
15060
- /** Represents a LaunchPlanMetadata. */
15061
- class LaunchPlanMetadata implements ILaunchPlanMetadata {
15000
+ /** Represents a WorkflowExecutionConfig. */
15001
+ class WorkflowExecutionConfig implements IWorkflowExecutionConfig {
15062
15002
 
15063
15003
  /**
15064
- * Constructs a new LaunchPlanMetadata.
15004
+ * Constructs a new WorkflowExecutionConfig.
15065
15005
  * @param [properties] Properties to set
15066
15006
  */
15067
- constructor(properties?: flyteidl.admin.ILaunchPlanMetadata);
15007
+ constructor(properties?: flyteidl.admin.IWorkflowExecutionConfig);
15068
15008
 
15069
- /** LaunchPlanMetadata schedule. */
15070
- public schedule?: (flyteidl.admin.ISchedule|null);
15009
+ /** WorkflowExecutionConfig maxParallelism. */
15010
+ public maxParallelism: number;
15071
15011
 
15072
- /** LaunchPlanMetadata notifications. */
15073
- public notifications: flyteidl.admin.INotification[];
15012
+ /** WorkflowExecutionConfig securityContext. */
15013
+ public securityContext?: (flyteidl.core.ISecurityContext|null);
15074
15014
 
15075
- /** LaunchPlanMetadata launchConditions. */
15076
- public launchConditions?: (google.protobuf.IAny|null);
15015
+ /** WorkflowExecutionConfig rawOutputDataConfig. */
15016
+ public rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null);
15017
+
15018
+ /** WorkflowExecutionConfig labels. */
15019
+ public labels?: (flyteidl.admin.ILabels|null);
15020
+
15021
+ /** WorkflowExecutionConfig annotations. */
15022
+ public annotations?: (flyteidl.admin.IAnnotations|null);
15023
+
15024
+ /** WorkflowExecutionConfig interruptible. */
15025
+ public interruptible?: (google.protobuf.IBoolValue|null);
15026
+
15027
+ /** WorkflowExecutionConfig overwriteCache. */
15028
+ public overwriteCache: boolean;
15029
+
15030
+ /** WorkflowExecutionConfig envs. */
15031
+ public envs?: (flyteidl.admin.IEnvs|null);
15077
15032
 
15078
15033
  /**
15079
- * Creates a new LaunchPlanMetadata instance using the specified properties.
15034
+ * Creates a new WorkflowExecutionConfig instance using the specified properties.
15080
15035
  * @param [properties] Properties to set
15081
- * @returns LaunchPlanMetadata instance
15036
+ * @returns WorkflowExecutionConfig instance
15082
15037
  */
15083
- public static create(properties?: flyteidl.admin.ILaunchPlanMetadata): flyteidl.admin.LaunchPlanMetadata;
15038
+ public static create(properties?: flyteidl.admin.IWorkflowExecutionConfig): flyteidl.admin.WorkflowExecutionConfig;
15084
15039
 
15085
15040
  /**
15086
- * Encodes the specified LaunchPlanMetadata message. Does not implicitly {@link flyteidl.admin.LaunchPlanMetadata.verify|verify} messages.
15087
- * @param message LaunchPlanMetadata message or plain object to encode
15041
+ * Encodes the specified WorkflowExecutionConfig message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionConfig.verify|verify} messages.
15042
+ * @param message WorkflowExecutionConfig message or plain object to encode
15088
15043
  * @param [writer] Writer to encode to
15089
15044
  * @returns Writer
15090
15045
  */
15091
- public static encode(message: flyteidl.admin.ILaunchPlanMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
15046
+ public static encode(message: flyteidl.admin.IWorkflowExecutionConfig, writer?: $protobuf.Writer): $protobuf.Writer;
15092
15047
 
15093
15048
  /**
15094
- * Decodes a LaunchPlanMetadata message from the specified reader or buffer.
15049
+ * Decodes a WorkflowExecutionConfig message from the specified reader or buffer.
15095
15050
  * @param reader Reader or buffer to decode from
15096
15051
  * @param [length] Message length if known beforehand
15097
- * @returns LaunchPlanMetadata
15052
+ * @returns WorkflowExecutionConfig
15098
15053
  * @throws {Error} If the payload is not a reader or valid buffer
15099
15054
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15100
15055
  */
15101
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanMetadata;
15056
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionConfig;
15102
15057
 
15103
15058
  /**
15104
- * Verifies a LaunchPlanMetadata message.
15059
+ * Verifies a WorkflowExecutionConfig message.
15105
15060
  * @param message Plain object to verify
15106
15061
  * @returns `null` if valid, otherwise the reason why it is not
15107
15062
  */
15108
15063
  public static verify(message: { [k: string]: any }): (string|null);
15109
15064
  }
15110
15065
 
15111
- /** Properties of a LaunchPlanUpdateRequest. */
15112
- interface ILaunchPlanUpdateRequest {
15066
+ /** Properties of a MatchingAttributes. */
15067
+ interface IMatchingAttributes {
15113
15068
 
15114
- /** LaunchPlanUpdateRequest id */
15115
- id?: (flyteidl.core.IIdentifier|null);
15069
+ /** MatchingAttributes taskResourceAttributes */
15070
+ taskResourceAttributes?: (flyteidl.admin.ITaskResourceAttributes|null);
15116
15071
 
15117
- /** LaunchPlanUpdateRequest state */
15118
- state?: (flyteidl.admin.LaunchPlanState|null);
15072
+ /** MatchingAttributes clusterResourceAttributes */
15073
+ clusterResourceAttributes?: (flyteidl.admin.IClusterResourceAttributes|null);
15074
+
15075
+ /** MatchingAttributes executionQueueAttributes */
15076
+ executionQueueAttributes?: (flyteidl.admin.IExecutionQueueAttributes|null);
15077
+
15078
+ /** MatchingAttributes executionClusterLabel */
15079
+ executionClusterLabel?: (flyteidl.admin.IExecutionClusterLabel|null);
15080
+
15081
+ /** MatchingAttributes qualityOfService */
15082
+ qualityOfService?: (flyteidl.core.IQualityOfService|null);
15083
+
15084
+ /** MatchingAttributes pluginOverrides */
15085
+ pluginOverrides?: (flyteidl.admin.IPluginOverrides|null);
15086
+
15087
+ /** MatchingAttributes workflowExecutionConfig */
15088
+ workflowExecutionConfig?: (flyteidl.admin.IWorkflowExecutionConfig|null);
15089
+
15090
+ /** MatchingAttributes clusterAssignment */
15091
+ clusterAssignment?: (flyteidl.admin.IClusterAssignment|null);
15119
15092
  }
15120
15093
 
15121
- /** Represents a LaunchPlanUpdateRequest. */
15122
- class LaunchPlanUpdateRequest implements ILaunchPlanUpdateRequest {
15094
+ /** Represents a MatchingAttributes. */
15095
+ class MatchingAttributes implements IMatchingAttributes {
15123
15096
 
15124
15097
  /**
15125
- * Constructs a new LaunchPlanUpdateRequest.
15098
+ * Constructs a new MatchingAttributes.
15126
15099
  * @param [properties] Properties to set
15127
15100
  */
15128
- constructor(properties?: flyteidl.admin.ILaunchPlanUpdateRequest);
15101
+ constructor(properties?: flyteidl.admin.IMatchingAttributes);
15129
15102
 
15130
- /** LaunchPlanUpdateRequest id. */
15131
- public id?: (flyteidl.core.IIdentifier|null);
15103
+ /** MatchingAttributes taskResourceAttributes. */
15104
+ public taskResourceAttributes?: (flyteidl.admin.ITaskResourceAttributes|null);
15132
15105
 
15133
- /** LaunchPlanUpdateRequest state. */
15134
- public state: flyteidl.admin.LaunchPlanState;
15106
+ /** MatchingAttributes clusterResourceAttributes. */
15107
+ public clusterResourceAttributes?: (flyteidl.admin.IClusterResourceAttributes|null);
15108
+
15109
+ /** MatchingAttributes executionQueueAttributes. */
15110
+ public executionQueueAttributes?: (flyteidl.admin.IExecutionQueueAttributes|null);
15111
+
15112
+ /** MatchingAttributes executionClusterLabel. */
15113
+ public executionClusterLabel?: (flyteidl.admin.IExecutionClusterLabel|null);
15114
+
15115
+ /** MatchingAttributes qualityOfService. */
15116
+ public qualityOfService?: (flyteidl.core.IQualityOfService|null);
15117
+
15118
+ /** MatchingAttributes pluginOverrides. */
15119
+ public pluginOverrides?: (flyteidl.admin.IPluginOverrides|null);
15120
+
15121
+ /** MatchingAttributes workflowExecutionConfig. */
15122
+ public workflowExecutionConfig?: (flyteidl.admin.IWorkflowExecutionConfig|null);
15123
+
15124
+ /** MatchingAttributes clusterAssignment. */
15125
+ public clusterAssignment?: (flyteidl.admin.IClusterAssignment|null);
15126
+
15127
+ /** MatchingAttributes target. */
15128
+ public target?: ("taskResourceAttributes"|"clusterResourceAttributes"|"executionQueueAttributes"|"executionClusterLabel"|"qualityOfService"|"pluginOverrides"|"workflowExecutionConfig"|"clusterAssignment");
15135
15129
 
15136
15130
  /**
15137
- * Creates a new LaunchPlanUpdateRequest instance using the specified properties.
15131
+ * Creates a new MatchingAttributes instance using the specified properties.
15138
15132
  * @param [properties] Properties to set
15139
- * @returns LaunchPlanUpdateRequest instance
15133
+ * @returns MatchingAttributes instance
15140
15134
  */
15141
- public static create(properties?: flyteidl.admin.ILaunchPlanUpdateRequest): flyteidl.admin.LaunchPlanUpdateRequest;
15135
+ public static create(properties?: flyteidl.admin.IMatchingAttributes): flyteidl.admin.MatchingAttributes;
15142
15136
 
15143
15137
  /**
15144
- * Encodes the specified LaunchPlanUpdateRequest message. Does not implicitly {@link flyteidl.admin.LaunchPlanUpdateRequest.verify|verify} messages.
15145
- * @param message LaunchPlanUpdateRequest message or plain object to encode
15138
+ * Encodes the specified MatchingAttributes message. Does not implicitly {@link flyteidl.admin.MatchingAttributes.verify|verify} messages.
15139
+ * @param message MatchingAttributes message or plain object to encode
15146
15140
  * @param [writer] Writer to encode to
15147
15141
  * @returns Writer
15148
15142
  */
15149
- public static encode(message: flyteidl.admin.ILaunchPlanUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
15143
+ public static encode(message: flyteidl.admin.IMatchingAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
15150
15144
 
15151
15145
  /**
15152
- * Decodes a LaunchPlanUpdateRequest message from the specified reader or buffer.
15146
+ * Decodes a MatchingAttributes message from the specified reader or buffer.
15153
15147
  * @param reader Reader or buffer to decode from
15154
15148
  * @param [length] Message length if known beforehand
15155
- * @returns LaunchPlanUpdateRequest
15149
+ * @returns MatchingAttributes
15156
15150
  * @throws {Error} If the payload is not a reader or valid buffer
15157
15151
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15158
15152
  */
15159
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanUpdateRequest;
15153
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.MatchingAttributes;
15160
15154
 
15161
15155
  /**
15162
- * Verifies a LaunchPlanUpdateRequest message.
15156
+ * Verifies a MatchingAttributes message.
15163
15157
  * @param message Plain object to verify
15164
15158
  * @returns `null` if valid, otherwise the reason why it is not
15165
15159
  */
15166
15160
  public static verify(message: { [k: string]: any }): (string|null);
15167
15161
  }
15168
15162
 
15169
- /** Properties of a LaunchPlanUpdateResponse. */
15170
- interface ILaunchPlanUpdateResponse {
15163
+ /** Properties of a MatchableAttributesConfiguration. */
15164
+ interface IMatchableAttributesConfiguration {
15165
+
15166
+ /** MatchableAttributesConfiguration attributes */
15167
+ attributes?: (flyteidl.admin.IMatchingAttributes|null);
15168
+
15169
+ /** MatchableAttributesConfiguration domain */
15170
+ domain?: (string|null);
15171
+
15172
+ /** MatchableAttributesConfiguration project */
15173
+ project?: (string|null);
15174
+
15175
+ /** MatchableAttributesConfiguration workflow */
15176
+ workflow?: (string|null);
15177
+
15178
+ /** MatchableAttributesConfiguration launchPlan */
15179
+ launchPlan?: (string|null);
15180
+
15181
+ /** MatchableAttributesConfiguration org */
15182
+ org?: (string|null);
15171
15183
  }
15172
15184
 
15173
- /** Represents a LaunchPlanUpdateResponse. */
15174
- class LaunchPlanUpdateResponse implements ILaunchPlanUpdateResponse {
15185
+ /** Represents a MatchableAttributesConfiguration. */
15186
+ class MatchableAttributesConfiguration implements IMatchableAttributesConfiguration {
15175
15187
 
15176
15188
  /**
15177
- * Constructs a new LaunchPlanUpdateResponse.
15189
+ * Constructs a new MatchableAttributesConfiguration.
15178
15190
  * @param [properties] Properties to set
15179
15191
  */
15180
- constructor(properties?: flyteidl.admin.ILaunchPlanUpdateResponse);
15192
+ constructor(properties?: flyteidl.admin.IMatchableAttributesConfiguration);
15193
+
15194
+ /** MatchableAttributesConfiguration attributes. */
15195
+ public attributes?: (flyteidl.admin.IMatchingAttributes|null);
15196
+
15197
+ /** MatchableAttributesConfiguration domain. */
15198
+ public domain: string;
15199
+
15200
+ /** MatchableAttributesConfiguration project. */
15201
+ public project: string;
15202
+
15203
+ /** MatchableAttributesConfiguration workflow. */
15204
+ public workflow: string;
15205
+
15206
+ /** MatchableAttributesConfiguration launchPlan. */
15207
+ public launchPlan: string;
15208
+
15209
+ /** MatchableAttributesConfiguration org. */
15210
+ public org: string;
15181
15211
 
15182
15212
  /**
15183
- * Creates a new LaunchPlanUpdateResponse instance using the specified properties.
15213
+ * Creates a new MatchableAttributesConfiguration instance using the specified properties.
15184
15214
  * @param [properties] Properties to set
15185
- * @returns LaunchPlanUpdateResponse instance
15215
+ * @returns MatchableAttributesConfiguration instance
15186
15216
  */
15187
- public static create(properties?: flyteidl.admin.ILaunchPlanUpdateResponse): flyteidl.admin.LaunchPlanUpdateResponse;
15217
+ public static create(properties?: flyteidl.admin.IMatchableAttributesConfiguration): flyteidl.admin.MatchableAttributesConfiguration;
15188
15218
 
15189
15219
  /**
15190
- * Encodes the specified LaunchPlanUpdateResponse message. Does not implicitly {@link flyteidl.admin.LaunchPlanUpdateResponse.verify|verify} messages.
15191
- * @param message LaunchPlanUpdateResponse message or plain object to encode
15220
+ * Encodes the specified MatchableAttributesConfiguration message. Does not implicitly {@link flyteidl.admin.MatchableAttributesConfiguration.verify|verify} messages.
15221
+ * @param message MatchableAttributesConfiguration message or plain object to encode
15192
15222
  * @param [writer] Writer to encode to
15193
15223
  * @returns Writer
15194
15224
  */
15195
- public static encode(message: flyteidl.admin.ILaunchPlanUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer;
15225
+ public static encode(message: flyteidl.admin.IMatchableAttributesConfiguration, writer?: $protobuf.Writer): $protobuf.Writer;
15196
15226
 
15197
15227
  /**
15198
- * Decodes a LaunchPlanUpdateResponse message from the specified reader or buffer.
15228
+ * Decodes a MatchableAttributesConfiguration message from the specified reader or buffer.
15199
15229
  * @param reader Reader or buffer to decode from
15200
15230
  * @param [length] Message length if known beforehand
15201
- * @returns LaunchPlanUpdateResponse
15231
+ * @returns MatchableAttributesConfiguration
15202
15232
  * @throws {Error} If the payload is not a reader or valid buffer
15203
15233
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15204
15234
  */
15205
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanUpdateResponse;
15235
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.MatchableAttributesConfiguration;
15206
15236
 
15207
15237
  /**
15208
- * Verifies a LaunchPlanUpdateResponse message.
15238
+ * Verifies a MatchableAttributesConfiguration message.
15209
15239
  * @param message Plain object to verify
15210
15240
  * @returns `null` if valid, otherwise the reason why it is not
15211
15241
  */
15212
15242
  public static verify(message: { [k: string]: any }): (string|null);
15213
15243
  }
15214
15244
 
15215
- /** Properties of an ActiveLaunchPlanRequest. */
15216
- interface IActiveLaunchPlanRequest {
15245
+ /** Properties of a ListMatchableAttributesRequest. */
15246
+ interface IListMatchableAttributesRequest {
15217
15247
 
15218
- /** ActiveLaunchPlanRequest id */
15219
- id?: (flyteidl.admin.INamedEntityIdentifier|null);
15248
+ /** ListMatchableAttributesRequest resourceType */
15249
+ resourceType?: (flyteidl.admin.MatchableResource|null);
15250
+
15251
+ /** ListMatchableAttributesRequest org */
15252
+ org?: (string|null);
15220
15253
  }
15221
15254
 
15222
- /** Represents an ActiveLaunchPlanRequest. */
15223
- class ActiveLaunchPlanRequest implements IActiveLaunchPlanRequest {
15255
+ /** Represents a ListMatchableAttributesRequest. */
15256
+ class ListMatchableAttributesRequest implements IListMatchableAttributesRequest {
15224
15257
 
15225
15258
  /**
15226
- * Constructs a new ActiveLaunchPlanRequest.
15259
+ * Constructs a new ListMatchableAttributesRequest.
15227
15260
  * @param [properties] Properties to set
15228
15261
  */
15229
- constructor(properties?: flyteidl.admin.IActiveLaunchPlanRequest);
15262
+ constructor(properties?: flyteidl.admin.IListMatchableAttributesRequest);
15230
15263
 
15231
- /** ActiveLaunchPlanRequest id. */
15232
- public id?: (flyteidl.admin.INamedEntityIdentifier|null);
15264
+ /** ListMatchableAttributesRequest resourceType. */
15265
+ public resourceType: flyteidl.admin.MatchableResource;
15266
+
15267
+ /** ListMatchableAttributesRequest org. */
15268
+ public org: string;
15233
15269
 
15234
15270
  /**
15235
- * Creates a new ActiveLaunchPlanRequest instance using the specified properties.
15271
+ * Creates a new ListMatchableAttributesRequest instance using the specified properties.
15236
15272
  * @param [properties] Properties to set
15237
- * @returns ActiveLaunchPlanRequest instance
15273
+ * @returns ListMatchableAttributesRequest instance
15238
15274
  */
15239
- public static create(properties?: flyteidl.admin.IActiveLaunchPlanRequest): flyteidl.admin.ActiveLaunchPlanRequest;
15275
+ public static create(properties?: flyteidl.admin.IListMatchableAttributesRequest): flyteidl.admin.ListMatchableAttributesRequest;
15240
15276
 
15241
15277
  /**
15242
- * Encodes the specified ActiveLaunchPlanRequest message. Does not implicitly {@link flyteidl.admin.ActiveLaunchPlanRequest.verify|verify} messages.
15243
- * @param message ActiveLaunchPlanRequest message or plain object to encode
15278
+ * Encodes the specified ListMatchableAttributesRequest message. Does not implicitly {@link flyteidl.admin.ListMatchableAttributesRequest.verify|verify} messages.
15279
+ * @param message ListMatchableAttributesRequest message or plain object to encode
15244
15280
  * @param [writer] Writer to encode to
15245
15281
  * @returns Writer
15246
15282
  */
15247
- public static encode(message: flyteidl.admin.IActiveLaunchPlanRequest, writer?: $protobuf.Writer): $protobuf.Writer;
15283
+ public static encode(message: flyteidl.admin.IListMatchableAttributesRequest, writer?: $protobuf.Writer): $protobuf.Writer;
15248
15284
 
15249
15285
  /**
15250
- * Decodes an ActiveLaunchPlanRequest message from the specified reader or buffer.
15286
+ * Decodes a ListMatchableAttributesRequest message from the specified reader or buffer.
15251
15287
  * @param reader Reader or buffer to decode from
15252
15288
  * @param [length] Message length if known beforehand
15253
- * @returns ActiveLaunchPlanRequest
15289
+ * @returns ListMatchableAttributesRequest
15254
15290
  * @throws {Error} If the payload is not a reader or valid buffer
15255
15291
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15256
15292
  */
15257
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ActiveLaunchPlanRequest;
15293
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ListMatchableAttributesRequest;
15258
15294
 
15259
15295
  /**
15260
- * Verifies an ActiveLaunchPlanRequest message.
15296
+ * Verifies a ListMatchableAttributesRequest message.
15261
15297
  * @param message Plain object to verify
15262
15298
  * @returns `null` if valid, otherwise the reason why it is not
15263
15299
  */
15264
15300
  public static verify(message: { [k: string]: any }): (string|null);
15265
15301
  }
15266
15302
 
15267
- /** Properties of an ActiveLaunchPlanListRequest. */
15268
- interface IActiveLaunchPlanListRequest {
15269
-
15270
- /** ActiveLaunchPlanListRequest project */
15271
- project?: (string|null);
15272
-
15273
- /** ActiveLaunchPlanListRequest domain */
15274
- domain?: (string|null);
15275
-
15276
- /** ActiveLaunchPlanListRequest limit */
15277
- limit?: (number|null);
15278
-
15279
- /** ActiveLaunchPlanListRequest token */
15280
- token?: (string|null);
15281
-
15282
- /** ActiveLaunchPlanListRequest sortBy */
15283
- sortBy?: (flyteidl.admin.ISort|null);
15303
+ /** Properties of a ListMatchableAttributesResponse. */
15304
+ interface IListMatchableAttributesResponse {
15284
15305
 
15285
- /** ActiveLaunchPlanListRequest org */
15286
- org?: (string|null);
15306
+ /** ListMatchableAttributesResponse configurations */
15307
+ configurations?: (flyteidl.admin.IMatchableAttributesConfiguration[]|null);
15287
15308
  }
15288
15309
 
15289
- /** Represents an ActiveLaunchPlanListRequest. */
15290
- class ActiveLaunchPlanListRequest implements IActiveLaunchPlanListRequest {
15310
+ /** Represents a ListMatchableAttributesResponse. */
15311
+ class ListMatchableAttributesResponse implements IListMatchableAttributesResponse {
15291
15312
 
15292
15313
  /**
15293
- * Constructs a new ActiveLaunchPlanListRequest.
15314
+ * Constructs a new ListMatchableAttributesResponse.
15294
15315
  * @param [properties] Properties to set
15295
15316
  */
15296
- constructor(properties?: flyteidl.admin.IActiveLaunchPlanListRequest);
15297
-
15298
- /** ActiveLaunchPlanListRequest project. */
15299
- public project: string;
15300
-
15301
- /** ActiveLaunchPlanListRequest domain. */
15302
- public domain: string;
15303
-
15304
- /** ActiveLaunchPlanListRequest limit. */
15305
- public limit: number;
15306
-
15307
- /** ActiveLaunchPlanListRequest token. */
15308
- public token: string;
15309
-
15310
- /** ActiveLaunchPlanListRequest sortBy. */
15311
- public sortBy?: (flyteidl.admin.ISort|null);
15317
+ constructor(properties?: flyteidl.admin.IListMatchableAttributesResponse);
15312
15318
 
15313
- /** ActiveLaunchPlanListRequest org. */
15314
- public org: string;
15319
+ /** ListMatchableAttributesResponse configurations. */
15320
+ public configurations: flyteidl.admin.IMatchableAttributesConfiguration[];
15315
15321
 
15316
15322
  /**
15317
- * Creates a new ActiveLaunchPlanListRequest instance using the specified properties.
15323
+ * Creates a new ListMatchableAttributesResponse instance using the specified properties.
15318
15324
  * @param [properties] Properties to set
15319
- * @returns ActiveLaunchPlanListRequest instance
15325
+ * @returns ListMatchableAttributesResponse instance
15320
15326
  */
15321
- public static create(properties?: flyteidl.admin.IActiveLaunchPlanListRequest): flyteidl.admin.ActiveLaunchPlanListRequest;
15327
+ public static create(properties?: flyteidl.admin.IListMatchableAttributesResponse): flyteidl.admin.ListMatchableAttributesResponse;
15322
15328
 
15323
15329
  /**
15324
- * Encodes the specified ActiveLaunchPlanListRequest message. Does not implicitly {@link flyteidl.admin.ActiveLaunchPlanListRequest.verify|verify} messages.
15325
- * @param message ActiveLaunchPlanListRequest message or plain object to encode
15330
+ * Encodes the specified ListMatchableAttributesResponse message. Does not implicitly {@link flyteidl.admin.ListMatchableAttributesResponse.verify|verify} messages.
15331
+ * @param message ListMatchableAttributesResponse message or plain object to encode
15326
15332
  * @param [writer] Writer to encode to
15327
15333
  * @returns Writer
15328
15334
  */
15329
- public static encode(message: flyteidl.admin.IActiveLaunchPlanListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
15335
+ public static encode(message: flyteidl.admin.IListMatchableAttributesResponse, writer?: $protobuf.Writer): $protobuf.Writer;
15330
15336
 
15331
15337
  /**
15332
- * Decodes an ActiveLaunchPlanListRequest message from the specified reader or buffer.
15338
+ * Decodes a ListMatchableAttributesResponse message from the specified reader or buffer.
15333
15339
  * @param reader Reader or buffer to decode from
15334
15340
  * @param [length] Message length if known beforehand
15335
- * @returns ActiveLaunchPlanListRequest
15341
+ * @returns ListMatchableAttributesResponse
15336
15342
  * @throws {Error} If the payload is not a reader or valid buffer
15337
15343
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15338
15344
  */
15339
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ActiveLaunchPlanListRequest;
15345
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ListMatchableAttributesResponse;
15340
15346
 
15341
15347
  /**
15342
- * Verifies an ActiveLaunchPlanListRequest message.
15348
+ * Verifies a ListMatchableAttributesResponse message.
15343
15349
  * @param message Plain object to verify
15344
15350
  * @returns `null` if valid, otherwise the reason why it is not
15345
15351
  */
15346
15352
  public static verify(message: { [k: string]: any }): (string|null);
15347
15353
  }
15348
15354
 
15349
- /** FixedRateUnit enum. */
15350
- enum FixedRateUnit {
15351
- MINUTE = 0,
15352
- HOUR = 1,
15353
- DAY = 2
15354
- }
15355
-
15356
- /** Properties of a FixedRate. */
15357
- interface IFixedRate {
15355
+ /** Properties of a LaunchPlanCreateRequest. */
15356
+ interface ILaunchPlanCreateRequest {
15358
15357
 
15359
- /** FixedRate value */
15360
- value?: (number|null);
15358
+ /** LaunchPlanCreateRequest id */
15359
+ id?: (flyteidl.core.IIdentifier|null);
15361
15360
 
15362
- /** FixedRate unit */
15363
- unit?: (flyteidl.admin.FixedRateUnit|null);
15361
+ /** LaunchPlanCreateRequest spec */
15362
+ spec?: (flyteidl.admin.ILaunchPlanSpec|null);
15364
15363
  }
15365
15364
 
15366
- /** Represents a FixedRate. */
15367
- class FixedRate implements IFixedRate {
15365
+ /** Represents a LaunchPlanCreateRequest. */
15366
+ class LaunchPlanCreateRequest implements ILaunchPlanCreateRequest {
15368
15367
 
15369
15368
  /**
15370
- * Constructs a new FixedRate.
15369
+ * Constructs a new LaunchPlanCreateRequest.
15371
15370
  * @param [properties] Properties to set
15372
15371
  */
15373
- constructor(properties?: flyteidl.admin.IFixedRate);
15372
+ constructor(properties?: flyteidl.admin.ILaunchPlanCreateRequest);
15374
15373
 
15375
- /** FixedRate value. */
15376
- public value: number;
15374
+ /** LaunchPlanCreateRequest id. */
15375
+ public id?: (flyteidl.core.IIdentifier|null);
15377
15376
 
15378
- /** FixedRate unit. */
15379
- public unit: flyteidl.admin.FixedRateUnit;
15377
+ /** LaunchPlanCreateRequest spec. */
15378
+ public spec?: (flyteidl.admin.ILaunchPlanSpec|null);
15380
15379
 
15381
15380
  /**
15382
- * Creates a new FixedRate instance using the specified properties.
15381
+ * Creates a new LaunchPlanCreateRequest instance using the specified properties.
15383
15382
  * @param [properties] Properties to set
15384
- * @returns FixedRate instance
15383
+ * @returns LaunchPlanCreateRequest instance
15385
15384
  */
15386
- public static create(properties?: flyteidl.admin.IFixedRate): flyteidl.admin.FixedRate;
15385
+ public static create(properties?: flyteidl.admin.ILaunchPlanCreateRequest): flyteidl.admin.LaunchPlanCreateRequest;
15387
15386
 
15388
15387
  /**
15389
- * Encodes the specified FixedRate message. Does not implicitly {@link flyteidl.admin.FixedRate.verify|verify} messages.
15390
- * @param message FixedRate message or plain object to encode
15388
+ * Encodes the specified LaunchPlanCreateRequest message. Does not implicitly {@link flyteidl.admin.LaunchPlanCreateRequest.verify|verify} messages.
15389
+ * @param message LaunchPlanCreateRequest message or plain object to encode
15391
15390
  * @param [writer] Writer to encode to
15392
15391
  * @returns Writer
15393
15392
  */
15394
- public static encode(message: flyteidl.admin.IFixedRate, writer?: $protobuf.Writer): $protobuf.Writer;
15393
+ public static encode(message: flyteidl.admin.ILaunchPlanCreateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
15395
15394
 
15396
15395
  /**
15397
- * Decodes a FixedRate message from the specified reader or buffer.
15396
+ * Decodes a LaunchPlanCreateRequest message from the specified reader or buffer.
15398
15397
  * @param reader Reader or buffer to decode from
15399
15398
  * @param [length] Message length if known beforehand
15400
- * @returns FixedRate
15399
+ * @returns LaunchPlanCreateRequest
15401
15400
  * @throws {Error} If the payload is not a reader or valid buffer
15402
15401
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15403
15402
  */
15404
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.FixedRate;
15403
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanCreateRequest;
15405
15404
 
15406
15405
  /**
15407
- * Verifies a FixedRate message.
15406
+ * Verifies a LaunchPlanCreateRequest message.
15408
15407
  * @param message Plain object to verify
15409
15408
  * @returns `null` if valid, otherwise the reason why it is not
15410
15409
  */
15411
15410
  public static verify(message: { [k: string]: any }): (string|null);
15412
15411
  }
15413
15412
 
15414
- /** Properties of a CronSchedule. */
15415
- interface ICronSchedule {
15416
-
15417
- /** CronSchedule schedule */
15418
- schedule?: (string|null);
15419
-
15420
- /** CronSchedule offset */
15421
- offset?: (string|null);
15413
+ /** Properties of a LaunchPlanCreateResponse. */
15414
+ interface ILaunchPlanCreateResponse {
15422
15415
  }
15423
15416
 
15424
- /** Represents a CronSchedule. */
15425
- class CronSchedule implements ICronSchedule {
15417
+ /** Represents a LaunchPlanCreateResponse. */
15418
+ class LaunchPlanCreateResponse implements ILaunchPlanCreateResponse {
15426
15419
 
15427
15420
  /**
15428
- * Constructs a new CronSchedule.
15421
+ * Constructs a new LaunchPlanCreateResponse.
15429
15422
  * @param [properties] Properties to set
15430
15423
  */
15431
- constructor(properties?: flyteidl.admin.ICronSchedule);
15432
-
15433
- /** CronSchedule schedule. */
15434
- public schedule: string;
15435
-
15436
- /** CronSchedule offset. */
15437
- public offset: string;
15424
+ constructor(properties?: flyteidl.admin.ILaunchPlanCreateResponse);
15438
15425
 
15439
15426
  /**
15440
- * Creates a new CronSchedule instance using the specified properties.
15427
+ * Creates a new LaunchPlanCreateResponse instance using the specified properties.
15441
15428
  * @param [properties] Properties to set
15442
- * @returns CronSchedule instance
15429
+ * @returns LaunchPlanCreateResponse instance
15443
15430
  */
15444
- public static create(properties?: flyteidl.admin.ICronSchedule): flyteidl.admin.CronSchedule;
15431
+ public static create(properties?: flyteidl.admin.ILaunchPlanCreateResponse): flyteidl.admin.LaunchPlanCreateResponse;
15445
15432
 
15446
15433
  /**
15447
- * Encodes the specified CronSchedule message. Does not implicitly {@link flyteidl.admin.CronSchedule.verify|verify} messages.
15448
- * @param message CronSchedule message or plain object to encode
15434
+ * Encodes the specified LaunchPlanCreateResponse message. Does not implicitly {@link flyteidl.admin.LaunchPlanCreateResponse.verify|verify} messages.
15435
+ * @param message LaunchPlanCreateResponse message or plain object to encode
15449
15436
  * @param [writer] Writer to encode to
15450
15437
  * @returns Writer
15451
15438
  */
15452
- public static encode(message: flyteidl.admin.ICronSchedule, writer?: $protobuf.Writer): $protobuf.Writer;
15439
+ public static encode(message: flyteidl.admin.ILaunchPlanCreateResponse, writer?: $protobuf.Writer): $protobuf.Writer;
15453
15440
 
15454
15441
  /**
15455
- * Decodes a CronSchedule message from the specified reader or buffer.
15442
+ * Decodes a LaunchPlanCreateResponse message from the specified reader or buffer.
15456
15443
  * @param reader Reader or buffer to decode from
15457
15444
  * @param [length] Message length if known beforehand
15458
- * @returns CronSchedule
15445
+ * @returns LaunchPlanCreateResponse
15459
15446
  * @throws {Error} If the payload is not a reader or valid buffer
15460
15447
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15461
15448
  */
15462
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.CronSchedule;
15449
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanCreateResponse;
15463
15450
 
15464
15451
  /**
15465
- * Verifies a CronSchedule message.
15452
+ * Verifies a LaunchPlanCreateResponse message.
15466
15453
  * @param message Plain object to verify
15467
15454
  * @returns `null` if valid, otherwise the reason why it is not
15468
15455
  */
15469
15456
  public static verify(message: { [k: string]: any }): (string|null);
15470
15457
  }
15471
15458
 
15472
- /** Properties of a Schedule. */
15473
- interface ISchedule {
15459
+ /** LaunchPlanState enum. */
15460
+ enum LaunchPlanState {
15461
+ INACTIVE = 0,
15462
+ ACTIVE = 1
15463
+ }
15474
15464
 
15475
- /** Schedule cronExpression */
15476
- cronExpression?: (string|null);
15465
+ /** Properties of a LaunchPlan. */
15466
+ interface ILaunchPlan {
15477
15467
 
15478
- /** Schedule rate */
15479
- rate?: (flyteidl.admin.IFixedRate|null);
15468
+ /** LaunchPlan id */
15469
+ id?: (flyteidl.core.IIdentifier|null);
15480
15470
 
15481
- /** Schedule cronSchedule */
15482
- cronSchedule?: (flyteidl.admin.ICronSchedule|null);
15471
+ /** LaunchPlan spec */
15472
+ spec?: (flyteidl.admin.ILaunchPlanSpec|null);
15483
15473
 
15484
- /** Schedule kickoffTimeInputArg */
15485
- kickoffTimeInputArg?: (string|null);
15474
+ /** LaunchPlan closure */
15475
+ closure?: (flyteidl.admin.ILaunchPlanClosure|null);
15486
15476
  }
15487
15477
 
15488
- /** Represents a Schedule. */
15489
- class Schedule implements ISchedule {
15478
+ /** Represents a LaunchPlan. */
15479
+ class LaunchPlan implements ILaunchPlan {
15490
15480
 
15491
15481
  /**
15492
- * Constructs a new Schedule.
15482
+ * Constructs a new LaunchPlan.
15493
15483
  * @param [properties] Properties to set
15494
15484
  */
15495
- constructor(properties?: flyteidl.admin.ISchedule);
15496
-
15497
- /** Schedule cronExpression. */
15498
- public cronExpression: string;
15499
-
15500
- /** Schedule rate. */
15501
- public rate?: (flyteidl.admin.IFixedRate|null);
15485
+ constructor(properties?: flyteidl.admin.ILaunchPlan);
15502
15486
 
15503
- /** Schedule cronSchedule. */
15504
- public cronSchedule?: (flyteidl.admin.ICronSchedule|null);
15487
+ /** LaunchPlan id. */
15488
+ public id?: (flyteidl.core.IIdentifier|null);
15505
15489
 
15506
- /** Schedule kickoffTimeInputArg. */
15507
- public kickoffTimeInputArg: string;
15490
+ /** LaunchPlan spec. */
15491
+ public spec?: (flyteidl.admin.ILaunchPlanSpec|null);
15508
15492
 
15509
- /** Schedule ScheduleExpression. */
15510
- public ScheduleExpression?: ("cronExpression"|"rate"|"cronSchedule");
15493
+ /** LaunchPlan closure. */
15494
+ public closure?: (flyteidl.admin.ILaunchPlanClosure|null);
15511
15495
 
15512
15496
  /**
15513
- * Creates a new Schedule instance using the specified properties.
15497
+ * Creates a new LaunchPlan instance using the specified properties.
15514
15498
  * @param [properties] Properties to set
15515
- * @returns Schedule instance
15499
+ * @returns LaunchPlan instance
15516
15500
  */
15517
- public static create(properties?: flyteidl.admin.ISchedule): flyteidl.admin.Schedule;
15501
+ public static create(properties?: flyteidl.admin.ILaunchPlan): flyteidl.admin.LaunchPlan;
15518
15502
 
15519
15503
  /**
15520
- * Encodes the specified Schedule message. Does not implicitly {@link flyteidl.admin.Schedule.verify|verify} messages.
15521
- * @param message Schedule message or plain object to encode
15504
+ * Encodes the specified LaunchPlan message. Does not implicitly {@link flyteidl.admin.LaunchPlan.verify|verify} messages.
15505
+ * @param message LaunchPlan message or plain object to encode
15522
15506
  * @param [writer] Writer to encode to
15523
15507
  * @returns Writer
15524
15508
  */
15525
- public static encode(message: flyteidl.admin.ISchedule, writer?: $protobuf.Writer): $protobuf.Writer;
15509
+ public static encode(message: flyteidl.admin.ILaunchPlan, writer?: $protobuf.Writer): $protobuf.Writer;
15526
15510
 
15527
15511
  /**
15528
- * Decodes a Schedule message from the specified reader or buffer.
15512
+ * Decodes a LaunchPlan message from the specified reader or buffer.
15529
15513
  * @param reader Reader or buffer to decode from
15530
15514
  * @param [length] Message length if known beforehand
15531
- * @returns Schedule
15515
+ * @returns LaunchPlan
15532
15516
  * @throws {Error} If the payload is not a reader or valid buffer
15533
15517
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15534
15518
  */
15535
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Schedule;
15519
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlan;
15536
15520
 
15537
15521
  /**
15538
- * Verifies a Schedule message.
15522
+ * Verifies a LaunchPlan message.
15539
15523
  * @param message Plain object to verify
15540
15524
  * @returns `null` if valid, otherwise the reason why it is not
15541
15525
  */
15542
15526
  public static verify(message: { [k: string]: any }): (string|null);
15543
15527
  }
15544
15528
 
15545
- /** MatchableResource enum. */
15546
- enum MatchableResource {
15547
- TASK_RESOURCE = 0,
15548
- CLUSTER_RESOURCE = 1,
15549
- EXECUTION_QUEUE = 2,
15550
- EXECUTION_CLUSTER_LABEL = 3,
15551
- QUALITY_OF_SERVICE_SPECIFICATION = 4,
15552
- PLUGIN_OVERRIDE = 5,
15553
- WORKFLOW_EXECUTION_CONFIG = 6,
15554
- CLUSTER_ASSIGNMENT = 7
15555
- }
15556
-
15557
- /** Properties of a TaskResourceSpec. */
15558
- interface ITaskResourceSpec {
15559
-
15560
- /** TaskResourceSpec cpu */
15561
- cpu?: (string|null);
15562
-
15563
- /** TaskResourceSpec gpu */
15564
- gpu?: (string|null);
15565
-
15566
- /** TaskResourceSpec memory */
15567
- memory?: (string|null);
15529
+ /** Properties of a LaunchPlanList. */
15530
+ interface ILaunchPlanList {
15568
15531
 
15569
- /** TaskResourceSpec storage */
15570
- storage?: (string|null);
15532
+ /** LaunchPlanList launchPlans */
15533
+ launchPlans?: (flyteidl.admin.ILaunchPlan[]|null);
15571
15534
 
15572
- /** TaskResourceSpec ephemeralStorage */
15573
- ephemeralStorage?: (string|null);
15535
+ /** LaunchPlanList token */
15536
+ token?: (string|null);
15574
15537
  }
15575
15538
 
15576
- /** Represents a TaskResourceSpec. */
15577
- class TaskResourceSpec implements ITaskResourceSpec {
15539
+ /** Represents a LaunchPlanList. */
15540
+ class LaunchPlanList implements ILaunchPlanList {
15578
15541
 
15579
15542
  /**
15580
- * Constructs a new TaskResourceSpec.
15543
+ * Constructs a new LaunchPlanList.
15581
15544
  * @param [properties] Properties to set
15582
15545
  */
15583
- constructor(properties?: flyteidl.admin.ITaskResourceSpec);
15584
-
15585
- /** TaskResourceSpec cpu. */
15586
- public cpu: string;
15587
-
15588
- /** TaskResourceSpec gpu. */
15589
- public gpu: string;
15590
-
15591
- /** TaskResourceSpec memory. */
15592
- public memory: string;
15546
+ constructor(properties?: flyteidl.admin.ILaunchPlanList);
15593
15547
 
15594
- /** TaskResourceSpec storage. */
15595
- public storage: string;
15548
+ /** LaunchPlanList launchPlans. */
15549
+ public launchPlans: flyteidl.admin.ILaunchPlan[];
15596
15550
 
15597
- /** TaskResourceSpec ephemeralStorage. */
15598
- public ephemeralStorage: string;
15551
+ /** LaunchPlanList token. */
15552
+ public token: string;
15599
15553
 
15600
15554
  /**
15601
- * Creates a new TaskResourceSpec instance using the specified properties.
15555
+ * Creates a new LaunchPlanList instance using the specified properties.
15602
15556
  * @param [properties] Properties to set
15603
- * @returns TaskResourceSpec instance
15557
+ * @returns LaunchPlanList instance
15604
15558
  */
15605
- public static create(properties?: flyteidl.admin.ITaskResourceSpec): flyteidl.admin.TaskResourceSpec;
15559
+ public static create(properties?: flyteidl.admin.ILaunchPlanList): flyteidl.admin.LaunchPlanList;
15606
15560
 
15607
15561
  /**
15608
- * Encodes the specified TaskResourceSpec message. Does not implicitly {@link flyteidl.admin.TaskResourceSpec.verify|verify} messages.
15609
- * @param message TaskResourceSpec message or plain object to encode
15562
+ * Encodes the specified LaunchPlanList message. Does not implicitly {@link flyteidl.admin.LaunchPlanList.verify|verify} messages.
15563
+ * @param message LaunchPlanList message or plain object to encode
15610
15564
  * @param [writer] Writer to encode to
15611
15565
  * @returns Writer
15612
15566
  */
15613
- public static encode(message: flyteidl.admin.ITaskResourceSpec, writer?: $protobuf.Writer): $protobuf.Writer;
15567
+ public static encode(message: flyteidl.admin.ILaunchPlanList, writer?: $protobuf.Writer): $protobuf.Writer;
15614
15568
 
15615
15569
  /**
15616
- * Decodes a TaskResourceSpec message from the specified reader or buffer.
15570
+ * Decodes a LaunchPlanList message from the specified reader or buffer.
15617
15571
  * @param reader Reader or buffer to decode from
15618
15572
  * @param [length] Message length if known beforehand
15619
- * @returns TaskResourceSpec
15573
+ * @returns LaunchPlanList
15620
15574
  * @throws {Error} If the payload is not a reader or valid buffer
15621
15575
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15622
15576
  */
15623
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskResourceSpec;
15577
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanList;
15624
15578
 
15625
15579
  /**
15626
- * Verifies a TaskResourceSpec message.
15580
+ * Verifies a LaunchPlanList message.
15627
15581
  * @param message Plain object to verify
15628
15582
  * @returns `null` if valid, otherwise the reason why it is not
15629
15583
  */
15630
15584
  public static verify(message: { [k: string]: any }): (string|null);
15631
15585
  }
15632
15586
 
15633
- /** Properties of a TaskResourceAttributes. */
15634
- interface ITaskResourceAttributes {
15587
+ /** Properties of an Auth. */
15588
+ interface IAuth {
15635
15589
 
15636
- /** TaskResourceAttributes defaults */
15637
- defaults?: (flyteidl.admin.ITaskResourceSpec|null);
15590
+ /** Auth assumableIamRole */
15591
+ assumableIamRole?: (string|null);
15638
15592
 
15639
- /** TaskResourceAttributes limits */
15640
- limits?: (flyteidl.admin.ITaskResourceSpec|null);
15593
+ /** Auth kubernetesServiceAccount */
15594
+ kubernetesServiceAccount?: (string|null);
15641
15595
  }
15642
15596
 
15643
- /** Represents a TaskResourceAttributes. */
15644
- class TaskResourceAttributes implements ITaskResourceAttributes {
15597
+ /** Represents an Auth. */
15598
+ class Auth implements IAuth {
15645
15599
 
15646
15600
  /**
15647
- * Constructs a new TaskResourceAttributes.
15601
+ * Constructs a new Auth.
15648
15602
  * @param [properties] Properties to set
15649
15603
  */
15650
- constructor(properties?: flyteidl.admin.ITaskResourceAttributes);
15604
+ constructor(properties?: flyteidl.admin.IAuth);
15651
15605
 
15652
- /** TaskResourceAttributes defaults. */
15653
- public defaults?: (flyteidl.admin.ITaskResourceSpec|null);
15606
+ /** Auth assumableIamRole. */
15607
+ public assumableIamRole: string;
15654
15608
 
15655
- /** TaskResourceAttributes limits. */
15656
- public limits?: (flyteidl.admin.ITaskResourceSpec|null);
15609
+ /** Auth kubernetesServiceAccount. */
15610
+ public kubernetesServiceAccount: string;
15657
15611
 
15658
15612
  /**
15659
- * Creates a new TaskResourceAttributes instance using the specified properties.
15613
+ * Creates a new Auth instance using the specified properties.
15660
15614
  * @param [properties] Properties to set
15661
- * @returns TaskResourceAttributes instance
15615
+ * @returns Auth instance
15662
15616
  */
15663
- public static create(properties?: flyteidl.admin.ITaskResourceAttributes): flyteidl.admin.TaskResourceAttributes;
15617
+ public static create(properties?: flyteidl.admin.IAuth): flyteidl.admin.Auth;
15664
15618
 
15665
15619
  /**
15666
- * Encodes the specified TaskResourceAttributes message. Does not implicitly {@link flyteidl.admin.TaskResourceAttributes.verify|verify} messages.
15667
- * @param message TaskResourceAttributes message or plain object to encode
15620
+ * Encodes the specified Auth message. Does not implicitly {@link flyteidl.admin.Auth.verify|verify} messages.
15621
+ * @param message Auth message or plain object to encode
15668
15622
  * @param [writer] Writer to encode to
15669
15623
  * @returns Writer
15670
15624
  */
15671
- public static encode(message: flyteidl.admin.ITaskResourceAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
15625
+ public static encode(message: flyteidl.admin.IAuth, writer?: $protobuf.Writer): $protobuf.Writer;
15672
15626
 
15673
15627
  /**
15674
- * Decodes a TaskResourceAttributes message from the specified reader or buffer.
15628
+ * Decodes an Auth message from the specified reader or buffer.
15675
15629
  * @param reader Reader or buffer to decode from
15676
15630
  * @param [length] Message length if known beforehand
15677
- * @returns TaskResourceAttributes
15631
+ * @returns Auth
15678
15632
  * @throws {Error} If the payload is not a reader or valid buffer
15679
15633
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15680
15634
  */
15681
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.TaskResourceAttributes;
15635
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Auth;
15682
15636
 
15683
15637
  /**
15684
- * Verifies a TaskResourceAttributes message.
15638
+ * Verifies an Auth message.
15685
15639
  * @param message Plain object to verify
15686
15640
  * @returns `null` if valid, otherwise the reason why it is not
15687
15641
  */
15688
15642
  public static verify(message: { [k: string]: any }): (string|null);
15689
15643
  }
15690
15644
 
15691
- /** Properties of a ClusterResourceAttributes. */
15692
- interface IClusterResourceAttributes {
15645
+ /** Properties of a LaunchPlanSpec. */
15646
+ interface ILaunchPlanSpec {
15693
15647
 
15694
- /** ClusterResourceAttributes attributes */
15695
- attributes?: ({ [k: string]: string }|null);
15648
+ /** LaunchPlanSpec workflowId */
15649
+ workflowId?: (flyteidl.core.IIdentifier|null);
15650
+
15651
+ /** LaunchPlanSpec entityMetadata */
15652
+ entityMetadata?: (flyteidl.admin.ILaunchPlanMetadata|null);
15653
+
15654
+ /** LaunchPlanSpec defaultInputs */
15655
+ defaultInputs?: (flyteidl.core.IParameterMap|null);
15656
+
15657
+ /** LaunchPlanSpec fixedInputs */
15658
+ fixedInputs?: (flyteidl.core.ILiteralMap|null);
15659
+
15660
+ /** LaunchPlanSpec role */
15661
+ role?: (string|null);
15662
+
15663
+ /** LaunchPlanSpec labels */
15664
+ labels?: (flyteidl.admin.ILabels|null);
15665
+
15666
+ /** LaunchPlanSpec annotations */
15667
+ annotations?: (flyteidl.admin.IAnnotations|null);
15668
+
15669
+ /** LaunchPlanSpec auth */
15670
+ auth?: (flyteidl.admin.IAuth|null);
15671
+
15672
+ /** LaunchPlanSpec authRole */
15673
+ authRole?: (flyteidl.admin.IAuthRole|null);
15674
+
15675
+ /** LaunchPlanSpec securityContext */
15676
+ securityContext?: (flyteidl.core.ISecurityContext|null);
15677
+
15678
+ /** LaunchPlanSpec qualityOfService */
15679
+ qualityOfService?: (flyteidl.core.IQualityOfService|null);
15680
+
15681
+ /** LaunchPlanSpec rawOutputDataConfig */
15682
+ rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null);
15683
+
15684
+ /** LaunchPlanSpec maxParallelism */
15685
+ maxParallelism?: (number|null);
15686
+
15687
+ /** LaunchPlanSpec interruptible */
15688
+ interruptible?: (google.protobuf.IBoolValue|null);
15689
+
15690
+ /** LaunchPlanSpec overwriteCache */
15691
+ overwriteCache?: (boolean|null);
15692
+
15693
+ /** LaunchPlanSpec envs */
15694
+ envs?: (flyteidl.admin.IEnvs|null);
15696
15695
  }
15697
15696
 
15698
- /** Represents a ClusterResourceAttributes. */
15699
- class ClusterResourceAttributes implements IClusterResourceAttributes {
15697
+ /** Represents a LaunchPlanSpec. */
15698
+ class LaunchPlanSpec implements ILaunchPlanSpec {
15700
15699
 
15701
15700
  /**
15702
- * Constructs a new ClusterResourceAttributes.
15701
+ * Constructs a new LaunchPlanSpec.
15703
15702
  * @param [properties] Properties to set
15704
15703
  */
15705
- constructor(properties?: flyteidl.admin.IClusterResourceAttributes);
15704
+ constructor(properties?: flyteidl.admin.ILaunchPlanSpec);
15706
15705
 
15707
- /** ClusterResourceAttributes attributes. */
15708
- public attributes: { [k: string]: string };
15706
+ /** LaunchPlanSpec workflowId. */
15707
+ public workflowId?: (flyteidl.core.IIdentifier|null);
15708
+
15709
+ /** LaunchPlanSpec entityMetadata. */
15710
+ public entityMetadata?: (flyteidl.admin.ILaunchPlanMetadata|null);
15711
+
15712
+ /** LaunchPlanSpec defaultInputs. */
15713
+ public defaultInputs?: (flyteidl.core.IParameterMap|null);
15714
+
15715
+ /** LaunchPlanSpec fixedInputs. */
15716
+ public fixedInputs?: (flyteidl.core.ILiteralMap|null);
15717
+
15718
+ /** LaunchPlanSpec role. */
15719
+ public role: string;
15720
+
15721
+ /** LaunchPlanSpec labels. */
15722
+ public labels?: (flyteidl.admin.ILabels|null);
15723
+
15724
+ /** LaunchPlanSpec annotations. */
15725
+ public annotations?: (flyteidl.admin.IAnnotations|null);
15726
+
15727
+ /** LaunchPlanSpec auth. */
15728
+ public auth?: (flyteidl.admin.IAuth|null);
15729
+
15730
+ /** LaunchPlanSpec authRole. */
15731
+ public authRole?: (flyteidl.admin.IAuthRole|null);
15732
+
15733
+ /** LaunchPlanSpec securityContext. */
15734
+ public securityContext?: (flyteidl.core.ISecurityContext|null);
15735
+
15736
+ /** LaunchPlanSpec qualityOfService. */
15737
+ public qualityOfService?: (flyteidl.core.IQualityOfService|null);
15738
+
15739
+ /** LaunchPlanSpec rawOutputDataConfig. */
15740
+ public rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null);
15741
+
15742
+ /** LaunchPlanSpec maxParallelism. */
15743
+ public maxParallelism: number;
15744
+
15745
+ /** LaunchPlanSpec interruptible. */
15746
+ public interruptible?: (google.protobuf.IBoolValue|null);
15747
+
15748
+ /** LaunchPlanSpec overwriteCache. */
15749
+ public overwriteCache: boolean;
15750
+
15751
+ /** LaunchPlanSpec envs. */
15752
+ public envs?: (flyteidl.admin.IEnvs|null);
15709
15753
 
15710
15754
  /**
15711
- * Creates a new ClusterResourceAttributes instance using the specified properties.
15755
+ * Creates a new LaunchPlanSpec instance using the specified properties.
15712
15756
  * @param [properties] Properties to set
15713
- * @returns ClusterResourceAttributes instance
15757
+ * @returns LaunchPlanSpec instance
15714
15758
  */
15715
- public static create(properties?: flyteidl.admin.IClusterResourceAttributes): flyteidl.admin.ClusterResourceAttributes;
15759
+ public static create(properties?: flyteidl.admin.ILaunchPlanSpec): flyteidl.admin.LaunchPlanSpec;
15716
15760
 
15717
15761
  /**
15718
- * Encodes the specified ClusterResourceAttributes message. Does not implicitly {@link flyteidl.admin.ClusterResourceAttributes.verify|verify} messages.
15719
- * @param message ClusterResourceAttributes message or plain object to encode
15762
+ * Encodes the specified LaunchPlanSpec message. Does not implicitly {@link flyteidl.admin.LaunchPlanSpec.verify|verify} messages.
15763
+ * @param message LaunchPlanSpec message or plain object to encode
15720
15764
  * @param [writer] Writer to encode to
15721
15765
  * @returns Writer
15722
15766
  */
15723
- public static encode(message: flyteidl.admin.IClusterResourceAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
15767
+ public static encode(message: flyteidl.admin.ILaunchPlanSpec, writer?: $protobuf.Writer): $protobuf.Writer;
15724
15768
 
15725
15769
  /**
15726
- * Decodes a ClusterResourceAttributes message from the specified reader or buffer.
15770
+ * Decodes a LaunchPlanSpec message from the specified reader or buffer.
15727
15771
  * @param reader Reader or buffer to decode from
15728
15772
  * @param [length] Message length if known beforehand
15729
- * @returns ClusterResourceAttributes
15773
+ * @returns LaunchPlanSpec
15730
15774
  * @throws {Error} If the payload is not a reader or valid buffer
15731
15775
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15732
15776
  */
15733
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ClusterResourceAttributes;
15777
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanSpec;
15734
15778
 
15735
15779
  /**
15736
- * Verifies a ClusterResourceAttributes message.
15780
+ * Verifies a LaunchPlanSpec message.
15737
15781
  * @param message Plain object to verify
15738
15782
  * @returns `null` if valid, otherwise the reason why it is not
15739
15783
  */
15740
15784
  public static verify(message: { [k: string]: any }): (string|null);
15741
15785
  }
15742
15786
 
15743
- /** Properties of an ExecutionQueueAttributes. */
15744
- interface IExecutionQueueAttributes {
15787
+ /** Properties of a LaunchPlanClosure. */
15788
+ interface ILaunchPlanClosure {
15745
15789
 
15746
- /** ExecutionQueueAttributes tags */
15747
- tags?: (string[]|null);
15790
+ /** LaunchPlanClosure state */
15791
+ state?: (flyteidl.admin.LaunchPlanState|null);
15792
+
15793
+ /** LaunchPlanClosure expectedInputs */
15794
+ expectedInputs?: (flyteidl.core.IParameterMap|null);
15795
+
15796
+ /** LaunchPlanClosure expectedOutputs */
15797
+ expectedOutputs?: (flyteidl.core.IVariableMap|null);
15798
+
15799
+ /** LaunchPlanClosure createdAt */
15800
+ createdAt?: (google.protobuf.ITimestamp|null);
15801
+
15802
+ /** LaunchPlanClosure updatedAt */
15803
+ updatedAt?: (google.protobuf.ITimestamp|null);
15748
15804
  }
15749
15805
 
15750
- /** Represents an ExecutionQueueAttributes. */
15751
- class ExecutionQueueAttributes implements IExecutionQueueAttributes {
15806
+ /** Represents a LaunchPlanClosure. */
15807
+ class LaunchPlanClosure implements ILaunchPlanClosure {
15752
15808
 
15753
15809
  /**
15754
- * Constructs a new ExecutionQueueAttributes.
15810
+ * Constructs a new LaunchPlanClosure.
15755
15811
  * @param [properties] Properties to set
15756
15812
  */
15757
- constructor(properties?: flyteidl.admin.IExecutionQueueAttributes);
15813
+ constructor(properties?: flyteidl.admin.ILaunchPlanClosure);
15758
15814
 
15759
- /** ExecutionQueueAttributes tags. */
15760
- public tags: string[];
15815
+ /** LaunchPlanClosure state. */
15816
+ public state: flyteidl.admin.LaunchPlanState;
15817
+
15818
+ /** LaunchPlanClosure expectedInputs. */
15819
+ public expectedInputs?: (flyteidl.core.IParameterMap|null);
15820
+
15821
+ /** LaunchPlanClosure expectedOutputs. */
15822
+ public expectedOutputs?: (flyteidl.core.IVariableMap|null);
15823
+
15824
+ /** LaunchPlanClosure createdAt. */
15825
+ public createdAt?: (google.protobuf.ITimestamp|null);
15826
+
15827
+ /** LaunchPlanClosure updatedAt. */
15828
+ public updatedAt?: (google.protobuf.ITimestamp|null);
15761
15829
 
15762
15830
  /**
15763
- * Creates a new ExecutionQueueAttributes instance using the specified properties.
15831
+ * Creates a new LaunchPlanClosure instance using the specified properties.
15764
15832
  * @param [properties] Properties to set
15765
- * @returns ExecutionQueueAttributes instance
15833
+ * @returns LaunchPlanClosure instance
15766
15834
  */
15767
- public static create(properties?: flyteidl.admin.IExecutionQueueAttributes): flyteidl.admin.ExecutionQueueAttributes;
15835
+ public static create(properties?: flyteidl.admin.ILaunchPlanClosure): flyteidl.admin.LaunchPlanClosure;
15768
15836
 
15769
15837
  /**
15770
- * Encodes the specified ExecutionQueueAttributes message. Does not implicitly {@link flyteidl.admin.ExecutionQueueAttributes.verify|verify} messages.
15771
- * @param message ExecutionQueueAttributes message or plain object to encode
15838
+ * Encodes the specified LaunchPlanClosure message. Does not implicitly {@link flyteidl.admin.LaunchPlanClosure.verify|verify} messages.
15839
+ * @param message LaunchPlanClosure message or plain object to encode
15772
15840
  * @param [writer] Writer to encode to
15773
15841
  * @returns Writer
15774
15842
  */
15775
- public static encode(message: flyteidl.admin.IExecutionQueueAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
15843
+ public static encode(message: flyteidl.admin.ILaunchPlanClosure, writer?: $protobuf.Writer): $protobuf.Writer;
15776
15844
 
15777
15845
  /**
15778
- * Decodes an ExecutionQueueAttributes message from the specified reader or buffer.
15846
+ * Decodes a LaunchPlanClosure message from the specified reader or buffer.
15779
15847
  * @param reader Reader or buffer to decode from
15780
15848
  * @param [length] Message length if known beforehand
15781
- * @returns ExecutionQueueAttributes
15849
+ * @returns LaunchPlanClosure
15782
15850
  * @throws {Error} If the payload is not a reader or valid buffer
15783
15851
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15784
15852
  */
15785
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionQueueAttributes;
15853
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanClosure;
15786
15854
 
15787
15855
  /**
15788
- * Verifies an ExecutionQueueAttributes message.
15856
+ * Verifies a LaunchPlanClosure message.
15789
15857
  * @param message Plain object to verify
15790
15858
  * @returns `null` if valid, otherwise the reason why it is not
15791
15859
  */
15792
15860
  public static verify(message: { [k: string]: any }): (string|null);
15793
15861
  }
15794
15862
 
15795
- /** Properties of an ExecutionClusterLabel. */
15796
- interface IExecutionClusterLabel {
15863
+ /** Properties of a LaunchPlanMetadata. */
15864
+ interface ILaunchPlanMetadata {
15865
+
15866
+ /** LaunchPlanMetadata schedule */
15867
+ schedule?: (flyteidl.admin.ISchedule|null);
15868
+
15869
+ /** LaunchPlanMetadata notifications */
15870
+ notifications?: (flyteidl.admin.INotification[]|null);
15797
15871
 
15798
- /** ExecutionClusterLabel value */
15799
- value?: (string|null);
15872
+ /** LaunchPlanMetadata launchConditions */
15873
+ launchConditions?: (google.protobuf.IAny|null);
15800
15874
  }
15801
15875
 
15802
- /** Represents an ExecutionClusterLabel. */
15803
- class ExecutionClusterLabel implements IExecutionClusterLabel {
15876
+ /** Represents a LaunchPlanMetadata. */
15877
+ class LaunchPlanMetadata implements ILaunchPlanMetadata {
15804
15878
 
15805
15879
  /**
15806
- * Constructs a new ExecutionClusterLabel.
15880
+ * Constructs a new LaunchPlanMetadata.
15807
15881
  * @param [properties] Properties to set
15808
15882
  */
15809
- constructor(properties?: flyteidl.admin.IExecutionClusterLabel);
15883
+ constructor(properties?: flyteidl.admin.ILaunchPlanMetadata);
15810
15884
 
15811
- /** ExecutionClusterLabel value. */
15812
- public value: string;
15885
+ /** LaunchPlanMetadata schedule. */
15886
+ public schedule?: (flyteidl.admin.ISchedule|null);
15887
+
15888
+ /** LaunchPlanMetadata notifications. */
15889
+ public notifications: flyteidl.admin.INotification[];
15890
+
15891
+ /** LaunchPlanMetadata launchConditions. */
15892
+ public launchConditions?: (google.protobuf.IAny|null);
15813
15893
 
15814
15894
  /**
15815
- * Creates a new ExecutionClusterLabel instance using the specified properties.
15895
+ * Creates a new LaunchPlanMetadata instance using the specified properties.
15816
15896
  * @param [properties] Properties to set
15817
- * @returns ExecutionClusterLabel instance
15897
+ * @returns LaunchPlanMetadata instance
15818
15898
  */
15819
- public static create(properties?: flyteidl.admin.IExecutionClusterLabel): flyteidl.admin.ExecutionClusterLabel;
15899
+ public static create(properties?: flyteidl.admin.ILaunchPlanMetadata): flyteidl.admin.LaunchPlanMetadata;
15820
15900
 
15821
15901
  /**
15822
- * Encodes the specified ExecutionClusterLabel message. Does not implicitly {@link flyteidl.admin.ExecutionClusterLabel.verify|verify} messages.
15823
- * @param message ExecutionClusterLabel message or plain object to encode
15902
+ * Encodes the specified LaunchPlanMetadata message. Does not implicitly {@link flyteidl.admin.LaunchPlanMetadata.verify|verify} messages.
15903
+ * @param message LaunchPlanMetadata message or plain object to encode
15824
15904
  * @param [writer] Writer to encode to
15825
15905
  * @returns Writer
15826
15906
  */
15827
- public static encode(message: flyteidl.admin.IExecutionClusterLabel, writer?: $protobuf.Writer): $protobuf.Writer;
15907
+ public static encode(message: flyteidl.admin.ILaunchPlanMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
15828
15908
 
15829
15909
  /**
15830
- * Decodes an ExecutionClusterLabel message from the specified reader or buffer.
15910
+ * Decodes a LaunchPlanMetadata message from the specified reader or buffer.
15831
15911
  * @param reader Reader or buffer to decode from
15832
15912
  * @param [length] Message length if known beforehand
15833
- * @returns ExecutionClusterLabel
15913
+ * @returns LaunchPlanMetadata
15834
15914
  * @throws {Error} If the payload is not a reader or valid buffer
15835
15915
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15836
15916
  */
15837
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ExecutionClusterLabel;
15917
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanMetadata;
15838
15918
 
15839
15919
  /**
15840
- * Verifies an ExecutionClusterLabel message.
15920
+ * Verifies a LaunchPlanMetadata message.
15841
15921
  * @param message Plain object to verify
15842
15922
  * @returns `null` if valid, otherwise the reason why it is not
15843
15923
  */
15844
15924
  public static verify(message: { [k: string]: any }): (string|null);
15845
15925
  }
15846
15926
 
15847
- /** Properties of a PluginOverride. */
15848
- interface IPluginOverride {
15849
-
15850
- /** PluginOverride taskType */
15851
- taskType?: (string|null);
15927
+ /** Properties of a LaunchPlanUpdateRequest. */
15928
+ interface ILaunchPlanUpdateRequest {
15852
15929
 
15853
- /** PluginOverride pluginId */
15854
- pluginId?: (string[]|null);
15930
+ /** LaunchPlanUpdateRequest id */
15931
+ id?: (flyteidl.core.IIdentifier|null);
15855
15932
 
15856
- /** PluginOverride missingPluginBehavior */
15857
- missingPluginBehavior?: (flyteidl.admin.PluginOverride.MissingPluginBehavior|null);
15933
+ /** LaunchPlanUpdateRequest state */
15934
+ state?: (flyteidl.admin.LaunchPlanState|null);
15858
15935
  }
15859
15936
 
15860
- /** Represents a PluginOverride. */
15861
- class PluginOverride implements IPluginOverride {
15937
+ /** Represents a LaunchPlanUpdateRequest. */
15938
+ class LaunchPlanUpdateRequest implements ILaunchPlanUpdateRequest {
15862
15939
 
15863
15940
  /**
15864
- * Constructs a new PluginOverride.
15941
+ * Constructs a new LaunchPlanUpdateRequest.
15865
15942
  * @param [properties] Properties to set
15866
15943
  */
15867
- constructor(properties?: flyteidl.admin.IPluginOverride);
15868
-
15869
- /** PluginOverride taskType. */
15870
- public taskType: string;
15944
+ constructor(properties?: flyteidl.admin.ILaunchPlanUpdateRequest);
15871
15945
 
15872
- /** PluginOverride pluginId. */
15873
- public pluginId: string[];
15946
+ /** LaunchPlanUpdateRequest id. */
15947
+ public id?: (flyteidl.core.IIdentifier|null);
15874
15948
 
15875
- /** PluginOverride missingPluginBehavior. */
15876
- public missingPluginBehavior: flyteidl.admin.PluginOverride.MissingPluginBehavior;
15949
+ /** LaunchPlanUpdateRequest state. */
15950
+ public state: flyteidl.admin.LaunchPlanState;
15877
15951
 
15878
15952
  /**
15879
- * Creates a new PluginOverride instance using the specified properties.
15953
+ * Creates a new LaunchPlanUpdateRequest instance using the specified properties.
15880
15954
  * @param [properties] Properties to set
15881
- * @returns PluginOverride instance
15955
+ * @returns LaunchPlanUpdateRequest instance
15882
15956
  */
15883
- public static create(properties?: flyteidl.admin.IPluginOverride): flyteidl.admin.PluginOverride;
15957
+ public static create(properties?: flyteidl.admin.ILaunchPlanUpdateRequest): flyteidl.admin.LaunchPlanUpdateRequest;
15884
15958
 
15885
15959
  /**
15886
- * Encodes the specified PluginOverride message. Does not implicitly {@link flyteidl.admin.PluginOverride.verify|verify} messages.
15887
- * @param message PluginOverride message or plain object to encode
15960
+ * Encodes the specified LaunchPlanUpdateRequest message. Does not implicitly {@link flyteidl.admin.LaunchPlanUpdateRequest.verify|verify} messages.
15961
+ * @param message LaunchPlanUpdateRequest message or plain object to encode
15888
15962
  * @param [writer] Writer to encode to
15889
15963
  * @returns Writer
15890
15964
  */
15891
- public static encode(message: flyteidl.admin.IPluginOverride, writer?: $protobuf.Writer): $protobuf.Writer;
15965
+ public static encode(message: flyteidl.admin.ILaunchPlanUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
15892
15966
 
15893
15967
  /**
15894
- * Decodes a PluginOverride message from the specified reader or buffer.
15968
+ * Decodes a LaunchPlanUpdateRequest message from the specified reader or buffer.
15895
15969
  * @param reader Reader or buffer to decode from
15896
15970
  * @param [length] Message length if known beforehand
15897
- * @returns PluginOverride
15971
+ * @returns LaunchPlanUpdateRequest
15898
15972
  * @throws {Error} If the payload is not a reader or valid buffer
15899
15973
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15900
15974
  */
15901
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.PluginOverride;
15975
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanUpdateRequest;
15902
15976
 
15903
15977
  /**
15904
- * Verifies a PluginOverride message.
15978
+ * Verifies a LaunchPlanUpdateRequest message.
15905
15979
  * @param message Plain object to verify
15906
15980
  * @returns `null` if valid, otherwise the reason why it is not
15907
15981
  */
15908
15982
  public static verify(message: { [k: string]: any }): (string|null);
15909
15983
  }
15910
15984
 
15911
- namespace PluginOverride {
15912
-
15913
- /** MissingPluginBehavior enum. */
15914
- enum MissingPluginBehavior {
15915
- FAIL = 0,
15916
- USE_DEFAULT = 1
15917
- }
15918
- }
15919
-
15920
- /** Properties of a PluginOverrides. */
15921
- interface IPluginOverrides {
15922
-
15923
- /** PluginOverrides overrides */
15924
- overrides?: (flyteidl.admin.IPluginOverride[]|null);
15985
+ /** Properties of a LaunchPlanUpdateResponse. */
15986
+ interface ILaunchPlanUpdateResponse {
15925
15987
  }
15926
15988
 
15927
- /** Represents a PluginOverrides. */
15928
- class PluginOverrides implements IPluginOverrides {
15989
+ /** Represents a LaunchPlanUpdateResponse. */
15990
+ class LaunchPlanUpdateResponse implements ILaunchPlanUpdateResponse {
15929
15991
 
15930
15992
  /**
15931
- * Constructs a new PluginOverrides.
15993
+ * Constructs a new LaunchPlanUpdateResponse.
15932
15994
  * @param [properties] Properties to set
15933
15995
  */
15934
- constructor(properties?: flyteidl.admin.IPluginOverrides);
15935
-
15936
- /** PluginOverrides overrides. */
15937
- public overrides: flyteidl.admin.IPluginOverride[];
15996
+ constructor(properties?: flyteidl.admin.ILaunchPlanUpdateResponse);
15938
15997
 
15939
15998
  /**
15940
- * Creates a new PluginOverrides instance using the specified properties.
15999
+ * Creates a new LaunchPlanUpdateResponse instance using the specified properties.
15941
16000
  * @param [properties] Properties to set
15942
- * @returns PluginOverrides instance
16001
+ * @returns LaunchPlanUpdateResponse instance
15943
16002
  */
15944
- public static create(properties?: flyteidl.admin.IPluginOverrides): flyteidl.admin.PluginOverrides;
16003
+ public static create(properties?: flyteidl.admin.ILaunchPlanUpdateResponse): flyteidl.admin.LaunchPlanUpdateResponse;
15945
16004
 
15946
16005
  /**
15947
- * Encodes the specified PluginOverrides message. Does not implicitly {@link flyteidl.admin.PluginOverrides.verify|verify} messages.
15948
- * @param message PluginOverrides message or plain object to encode
16006
+ * Encodes the specified LaunchPlanUpdateResponse message. Does not implicitly {@link flyteidl.admin.LaunchPlanUpdateResponse.verify|verify} messages.
16007
+ * @param message LaunchPlanUpdateResponse message or plain object to encode
15949
16008
  * @param [writer] Writer to encode to
15950
16009
  * @returns Writer
15951
16010
  */
15952
- public static encode(message: flyteidl.admin.IPluginOverrides, writer?: $protobuf.Writer): $protobuf.Writer;
16011
+ public static encode(message: flyteidl.admin.ILaunchPlanUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer;
15953
16012
 
15954
16013
  /**
15955
- * Decodes a PluginOverrides message from the specified reader or buffer.
16014
+ * Decodes a LaunchPlanUpdateResponse message from the specified reader or buffer.
15956
16015
  * @param reader Reader or buffer to decode from
15957
16016
  * @param [length] Message length if known beforehand
15958
- * @returns PluginOverrides
16017
+ * @returns LaunchPlanUpdateResponse
15959
16018
  * @throws {Error} If the payload is not a reader or valid buffer
15960
16019
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
15961
16020
  */
15962
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.PluginOverrides;
16021
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.LaunchPlanUpdateResponse;
15963
16022
 
15964
16023
  /**
15965
- * Verifies a PluginOverrides message.
16024
+ * Verifies a LaunchPlanUpdateResponse message.
15966
16025
  * @param message Plain object to verify
15967
16026
  * @returns `null` if valid, otherwise the reason why it is not
15968
16027
  */
15969
16028
  public static verify(message: { [k: string]: any }): (string|null);
15970
16029
  }
15971
16030
 
15972
- /** Properties of a WorkflowExecutionConfig. */
15973
- interface IWorkflowExecutionConfig {
15974
-
15975
- /** WorkflowExecutionConfig maxParallelism */
15976
- maxParallelism?: (number|null);
15977
-
15978
- /** WorkflowExecutionConfig securityContext */
15979
- securityContext?: (flyteidl.core.ISecurityContext|null);
15980
-
15981
- /** WorkflowExecutionConfig rawOutputDataConfig */
15982
- rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null);
15983
-
15984
- /** WorkflowExecutionConfig labels */
15985
- labels?: (flyteidl.admin.ILabels|null);
15986
-
15987
- /** WorkflowExecutionConfig annotations */
15988
- annotations?: (flyteidl.admin.IAnnotations|null);
15989
-
15990
- /** WorkflowExecutionConfig interruptible */
15991
- interruptible?: (google.protobuf.IBoolValue|null);
15992
-
15993
- /** WorkflowExecutionConfig overwriteCache */
15994
- overwriteCache?: (boolean|null);
16031
+ /** Properties of an ActiveLaunchPlanRequest. */
16032
+ interface IActiveLaunchPlanRequest {
15995
16033
 
15996
- /** WorkflowExecutionConfig envs */
15997
- envs?: (flyteidl.admin.IEnvs|null);
16034
+ /** ActiveLaunchPlanRequest id */
16035
+ id?: (flyteidl.admin.INamedEntityIdentifier|null);
15998
16036
  }
15999
16037
 
16000
- /** Represents a WorkflowExecutionConfig. */
16001
- class WorkflowExecutionConfig implements IWorkflowExecutionConfig {
16038
+ /** Represents an ActiveLaunchPlanRequest. */
16039
+ class ActiveLaunchPlanRequest implements IActiveLaunchPlanRequest {
16002
16040
 
16003
16041
  /**
16004
- * Constructs a new WorkflowExecutionConfig.
16042
+ * Constructs a new ActiveLaunchPlanRequest.
16005
16043
  * @param [properties] Properties to set
16006
16044
  */
16007
- constructor(properties?: flyteidl.admin.IWorkflowExecutionConfig);
16008
-
16009
- /** WorkflowExecutionConfig maxParallelism. */
16010
- public maxParallelism: number;
16011
-
16012
- /** WorkflowExecutionConfig securityContext. */
16013
- public securityContext?: (flyteidl.core.ISecurityContext|null);
16014
-
16015
- /** WorkflowExecutionConfig rawOutputDataConfig. */
16016
- public rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null);
16017
-
16018
- /** WorkflowExecutionConfig labels. */
16019
- public labels?: (flyteidl.admin.ILabels|null);
16020
-
16021
- /** WorkflowExecutionConfig annotations. */
16022
- public annotations?: (flyteidl.admin.IAnnotations|null);
16023
-
16024
- /** WorkflowExecutionConfig interruptible. */
16025
- public interruptible?: (google.protobuf.IBoolValue|null);
16026
-
16027
- /** WorkflowExecutionConfig overwriteCache. */
16028
- public overwriteCache: boolean;
16045
+ constructor(properties?: flyteidl.admin.IActiveLaunchPlanRequest);
16029
16046
 
16030
- /** WorkflowExecutionConfig envs. */
16031
- public envs?: (flyteidl.admin.IEnvs|null);
16047
+ /** ActiveLaunchPlanRequest id. */
16048
+ public id?: (flyteidl.admin.INamedEntityIdentifier|null);
16032
16049
 
16033
16050
  /**
16034
- * Creates a new WorkflowExecutionConfig instance using the specified properties.
16051
+ * Creates a new ActiveLaunchPlanRequest instance using the specified properties.
16035
16052
  * @param [properties] Properties to set
16036
- * @returns WorkflowExecutionConfig instance
16053
+ * @returns ActiveLaunchPlanRequest instance
16037
16054
  */
16038
- public static create(properties?: flyteidl.admin.IWorkflowExecutionConfig): flyteidl.admin.WorkflowExecutionConfig;
16055
+ public static create(properties?: flyteidl.admin.IActiveLaunchPlanRequest): flyteidl.admin.ActiveLaunchPlanRequest;
16039
16056
 
16040
16057
  /**
16041
- * Encodes the specified WorkflowExecutionConfig message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionConfig.verify|verify} messages.
16042
- * @param message WorkflowExecutionConfig message or plain object to encode
16058
+ * Encodes the specified ActiveLaunchPlanRequest message. Does not implicitly {@link flyteidl.admin.ActiveLaunchPlanRequest.verify|verify} messages.
16059
+ * @param message ActiveLaunchPlanRequest message or plain object to encode
16043
16060
  * @param [writer] Writer to encode to
16044
16061
  * @returns Writer
16045
16062
  */
16046
- public static encode(message: flyteidl.admin.IWorkflowExecutionConfig, writer?: $protobuf.Writer): $protobuf.Writer;
16063
+ public static encode(message: flyteidl.admin.IActiveLaunchPlanRequest, writer?: $protobuf.Writer): $protobuf.Writer;
16047
16064
 
16048
16065
  /**
16049
- * Decodes a WorkflowExecutionConfig message from the specified reader or buffer.
16066
+ * Decodes an ActiveLaunchPlanRequest message from the specified reader or buffer.
16050
16067
  * @param reader Reader or buffer to decode from
16051
16068
  * @param [length] Message length if known beforehand
16052
- * @returns WorkflowExecutionConfig
16069
+ * @returns ActiveLaunchPlanRequest
16053
16070
  * @throws {Error} If the payload is not a reader or valid buffer
16054
16071
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
16055
16072
  */
16056
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionConfig;
16073
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ActiveLaunchPlanRequest;
16057
16074
 
16058
16075
  /**
16059
- * Verifies a WorkflowExecutionConfig message.
16076
+ * Verifies an ActiveLaunchPlanRequest message.
16060
16077
  * @param message Plain object to verify
16061
16078
  * @returns `null` if valid, otherwise the reason why it is not
16062
16079
  */
16063
16080
  public static verify(message: { [k: string]: any }): (string|null);
16064
16081
  }
16065
16082
 
16066
- /** Properties of a MatchingAttributes. */
16067
- interface IMatchingAttributes {
16068
-
16069
- /** MatchingAttributes taskResourceAttributes */
16070
- taskResourceAttributes?: (flyteidl.admin.ITaskResourceAttributes|null);
16071
-
16072
- /** MatchingAttributes clusterResourceAttributes */
16073
- clusterResourceAttributes?: (flyteidl.admin.IClusterResourceAttributes|null);
16083
+ /** Properties of an ActiveLaunchPlanListRequest. */
16084
+ interface IActiveLaunchPlanListRequest {
16074
16085
 
16075
- /** MatchingAttributes executionQueueAttributes */
16076
- executionQueueAttributes?: (flyteidl.admin.IExecutionQueueAttributes|null);
16086
+ /** ActiveLaunchPlanListRequest project */
16087
+ project?: (string|null);
16077
16088
 
16078
- /** MatchingAttributes executionClusterLabel */
16079
- executionClusterLabel?: (flyteidl.admin.IExecutionClusterLabel|null);
16089
+ /** ActiveLaunchPlanListRequest domain */
16090
+ domain?: (string|null);
16080
16091
 
16081
- /** MatchingAttributes qualityOfService */
16082
- qualityOfService?: (flyteidl.core.IQualityOfService|null);
16092
+ /** ActiveLaunchPlanListRequest limit */
16093
+ limit?: (number|null);
16083
16094
 
16084
- /** MatchingAttributes pluginOverrides */
16085
- pluginOverrides?: (flyteidl.admin.IPluginOverrides|null);
16095
+ /** ActiveLaunchPlanListRequest token */
16096
+ token?: (string|null);
16086
16097
 
16087
- /** MatchingAttributes workflowExecutionConfig */
16088
- workflowExecutionConfig?: (flyteidl.admin.IWorkflowExecutionConfig|null);
16098
+ /** ActiveLaunchPlanListRequest sortBy */
16099
+ sortBy?: (flyteidl.admin.ISort|null);
16089
16100
 
16090
- /** MatchingAttributes clusterAssignment */
16091
- clusterAssignment?: (flyteidl.admin.IClusterAssignment|null);
16101
+ /** ActiveLaunchPlanListRequest org */
16102
+ org?: (string|null);
16092
16103
  }
16093
16104
 
16094
- /** Represents a MatchingAttributes. */
16095
- class MatchingAttributes implements IMatchingAttributes {
16105
+ /** Represents an ActiveLaunchPlanListRequest. */
16106
+ class ActiveLaunchPlanListRequest implements IActiveLaunchPlanListRequest {
16096
16107
 
16097
16108
  /**
16098
- * Constructs a new MatchingAttributes.
16109
+ * Constructs a new ActiveLaunchPlanListRequest.
16099
16110
  * @param [properties] Properties to set
16100
16111
  */
16101
- constructor(properties?: flyteidl.admin.IMatchingAttributes);
16102
-
16103
- /** MatchingAttributes taskResourceAttributes. */
16104
- public taskResourceAttributes?: (flyteidl.admin.ITaskResourceAttributes|null);
16105
-
16106
- /** MatchingAttributes clusterResourceAttributes. */
16107
- public clusterResourceAttributes?: (flyteidl.admin.IClusterResourceAttributes|null);
16108
-
16109
- /** MatchingAttributes executionQueueAttributes. */
16110
- public executionQueueAttributes?: (flyteidl.admin.IExecutionQueueAttributes|null);
16112
+ constructor(properties?: flyteidl.admin.IActiveLaunchPlanListRequest);
16111
16113
 
16112
- /** MatchingAttributes executionClusterLabel. */
16113
- public executionClusterLabel?: (flyteidl.admin.IExecutionClusterLabel|null);
16114
+ /** ActiveLaunchPlanListRequest project. */
16115
+ public project: string;
16114
16116
 
16115
- /** MatchingAttributes qualityOfService. */
16116
- public qualityOfService?: (flyteidl.core.IQualityOfService|null);
16117
+ /** ActiveLaunchPlanListRequest domain. */
16118
+ public domain: string;
16117
16119
 
16118
- /** MatchingAttributes pluginOverrides. */
16119
- public pluginOverrides?: (flyteidl.admin.IPluginOverrides|null);
16120
+ /** ActiveLaunchPlanListRequest limit. */
16121
+ public limit: number;
16120
16122
 
16121
- /** MatchingAttributes workflowExecutionConfig. */
16122
- public workflowExecutionConfig?: (flyteidl.admin.IWorkflowExecutionConfig|null);
16123
+ /** ActiveLaunchPlanListRequest token. */
16124
+ public token: string;
16123
16125
 
16124
- /** MatchingAttributes clusterAssignment. */
16125
- public clusterAssignment?: (flyteidl.admin.IClusterAssignment|null);
16126
+ /** ActiveLaunchPlanListRequest sortBy. */
16127
+ public sortBy?: (flyteidl.admin.ISort|null);
16126
16128
 
16127
- /** MatchingAttributes target. */
16128
- public target?: ("taskResourceAttributes"|"clusterResourceAttributes"|"executionQueueAttributes"|"executionClusterLabel"|"qualityOfService"|"pluginOverrides"|"workflowExecutionConfig"|"clusterAssignment");
16129
+ /** ActiveLaunchPlanListRequest org. */
16130
+ public org: string;
16129
16131
 
16130
16132
  /**
16131
- * Creates a new MatchingAttributes instance using the specified properties.
16133
+ * Creates a new ActiveLaunchPlanListRequest instance using the specified properties.
16132
16134
  * @param [properties] Properties to set
16133
- * @returns MatchingAttributes instance
16135
+ * @returns ActiveLaunchPlanListRequest instance
16134
16136
  */
16135
- public static create(properties?: flyteidl.admin.IMatchingAttributes): flyteidl.admin.MatchingAttributes;
16137
+ public static create(properties?: flyteidl.admin.IActiveLaunchPlanListRequest): flyteidl.admin.ActiveLaunchPlanListRequest;
16136
16138
 
16137
16139
  /**
16138
- * Encodes the specified MatchingAttributes message. Does not implicitly {@link flyteidl.admin.MatchingAttributes.verify|verify} messages.
16139
- * @param message MatchingAttributes message or plain object to encode
16140
+ * Encodes the specified ActiveLaunchPlanListRequest message. Does not implicitly {@link flyteidl.admin.ActiveLaunchPlanListRequest.verify|verify} messages.
16141
+ * @param message ActiveLaunchPlanListRequest message or plain object to encode
16140
16142
  * @param [writer] Writer to encode to
16141
16143
  * @returns Writer
16142
16144
  */
16143
- public static encode(message: flyteidl.admin.IMatchingAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
16145
+ public static encode(message: flyteidl.admin.IActiveLaunchPlanListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
16144
16146
 
16145
16147
  /**
16146
- * Decodes a MatchingAttributes message from the specified reader or buffer.
16148
+ * Decodes an ActiveLaunchPlanListRequest message from the specified reader or buffer.
16147
16149
  * @param reader Reader or buffer to decode from
16148
16150
  * @param [length] Message length if known beforehand
16149
- * @returns MatchingAttributes
16151
+ * @returns ActiveLaunchPlanListRequest
16150
16152
  * @throws {Error} If the payload is not a reader or valid buffer
16151
16153
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
16152
16154
  */
16153
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.MatchingAttributes;
16155
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ActiveLaunchPlanListRequest;
16154
16156
 
16155
16157
  /**
16156
- * Verifies a MatchingAttributes message.
16158
+ * Verifies an ActiveLaunchPlanListRequest message.
16157
16159
  * @param message Plain object to verify
16158
16160
  * @returns `null` if valid, otherwise the reason why it is not
16159
16161
  */
16160
16162
  public static verify(message: { [k: string]: any }): (string|null);
16161
16163
  }
16162
16164
 
16163
- /** Properties of a MatchableAttributesConfiguration. */
16164
- interface IMatchableAttributesConfiguration {
16165
-
16166
- /** MatchableAttributesConfiguration attributes */
16167
- attributes?: (flyteidl.admin.IMatchingAttributes|null);
16168
-
16169
- /** MatchableAttributesConfiguration domain */
16170
- domain?: (string|null);
16171
-
16172
- /** MatchableAttributesConfiguration project */
16173
- project?: (string|null);
16165
+ /** FixedRateUnit enum. */
16166
+ enum FixedRateUnit {
16167
+ MINUTE = 0,
16168
+ HOUR = 1,
16169
+ DAY = 2
16170
+ }
16174
16171
 
16175
- /** MatchableAttributesConfiguration workflow */
16176
- workflow?: (string|null);
16172
+ /** Properties of a FixedRate. */
16173
+ interface IFixedRate {
16177
16174
 
16178
- /** MatchableAttributesConfiguration launchPlan */
16179
- launchPlan?: (string|null);
16175
+ /** FixedRate value */
16176
+ value?: (number|null);
16180
16177
 
16181
- /** MatchableAttributesConfiguration org */
16182
- org?: (string|null);
16178
+ /** FixedRate unit */
16179
+ unit?: (flyteidl.admin.FixedRateUnit|null);
16183
16180
  }
16184
16181
 
16185
- /** Represents a MatchableAttributesConfiguration. */
16186
- class MatchableAttributesConfiguration implements IMatchableAttributesConfiguration {
16182
+ /** Represents a FixedRate. */
16183
+ class FixedRate implements IFixedRate {
16187
16184
 
16188
16185
  /**
16189
- * Constructs a new MatchableAttributesConfiguration.
16186
+ * Constructs a new FixedRate.
16190
16187
  * @param [properties] Properties to set
16191
16188
  */
16192
- constructor(properties?: flyteidl.admin.IMatchableAttributesConfiguration);
16193
-
16194
- /** MatchableAttributesConfiguration attributes. */
16195
- public attributes?: (flyteidl.admin.IMatchingAttributes|null);
16196
-
16197
- /** MatchableAttributesConfiguration domain. */
16198
- public domain: string;
16199
-
16200
- /** MatchableAttributesConfiguration project. */
16201
- public project: string;
16202
-
16203
- /** MatchableAttributesConfiguration workflow. */
16204
- public workflow: string;
16189
+ constructor(properties?: flyteidl.admin.IFixedRate);
16205
16190
 
16206
- /** MatchableAttributesConfiguration launchPlan. */
16207
- public launchPlan: string;
16191
+ /** FixedRate value. */
16192
+ public value: number;
16208
16193
 
16209
- /** MatchableAttributesConfiguration org. */
16210
- public org: string;
16194
+ /** FixedRate unit. */
16195
+ public unit: flyteidl.admin.FixedRateUnit;
16211
16196
 
16212
16197
  /**
16213
- * Creates a new MatchableAttributesConfiguration instance using the specified properties.
16198
+ * Creates a new FixedRate instance using the specified properties.
16214
16199
  * @param [properties] Properties to set
16215
- * @returns MatchableAttributesConfiguration instance
16200
+ * @returns FixedRate instance
16216
16201
  */
16217
- public static create(properties?: flyteidl.admin.IMatchableAttributesConfiguration): flyteidl.admin.MatchableAttributesConfiguration;
16202
+ public static create(properties?: flyteidl.admin.IFixedRate): flyteidl.admin.FixedRate;
16218
16203
 
16219
16204
  /**
16220
- * Encodes the specified MatchableAttributesConfiguration message. Does not implicitly {@link flyteidl.admin.MatchableAttributesConfiguration.verify|verify} messages.
16221
- * @param message MatchableAttributesConfiguration message or plain object to encode
16205
+ * Encodes the specified FixedRate message. Does not implicitly {@link flyteidl.admin.FixedRate.verify|verify} messages.
16206
+ * @param message FixedRate message or plain object to encode
16222
16207
  * @param [writer] Writer to encode to
16223
16208
  * @returns Writer
16224
16209
  */
16225
- public static encode(message: flyteidl.admin.IMatchableAttributesConfiguration, writer?: $protobuf.Writer): $protobuf.Writer;
16210
+ public static encode(message: flyteidl.admin.IFixedRate, writer?: $protobuf.Writer): $protobuf.Writer;
16226
16211
 
16227
16212
  /**
16228
- * Decodes a MatchableAttributesConfiguration message from the specified reader or buffer.
16213
+ * Decodes a FixedRate message from the specified reader or buffer.
16229
16214
  * @param reader Reader or buffer to decode from
16230
16215
  * @param [length] Message length if known beforehand
16231
- * @returns MatchableAttributesConfiguration
16216
+ * @returns FixedRate
16232
16217
  * @throws {Error} If the payload is not a reader or valid buffer
16233
16218
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
16234
16219
  */
16235
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.MatchableAttributesConfiguration;
16220
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.FixedRate;
16236
16221
 
16237
16222
  /**
16238
- * Verifies a MatchableAttributesConfiguration message.
16223
+ * Verifies a FixedRate message.
16239
16224
  * @param message Plain object to verify
16240
16225
  * @returns `null` if valid, otherwise the reason why it is not
16241
16226
  */
16242
16227
  public static verify(message: { [k: string]: any }): (string|null);
16243
16228
  }
16244
16229
 
16245
- /** Properties of a ListMatchableAttributesRequest. */
16246
- interface IListMatchableAttributesRequest {
16230
+ /** Properties of a CronSchedule. */
16231
+ interface ICronSchedule {
16247
16232
 
16248
- /** ListMatchableAttributesRequest resourceType */
16249
- resourceType?: (flyteidl.admin.MatchableResource|null);
16233
+ /** CronSchedule schedule */
16234
+ schedule?: (string|null);
16250
16235
 
16251
- /** ListMatchableAttributesRequest org */
16252
- org?: (string|null);
16236
+ /** CronSchedule offset */
16237
+ offset?: (string|null);
16253
16238
  }
16254
16239
 
16255
- /** Represents a ListMatchableAttributesRequest. */
16256
- class ListMatchableAttributesRequest implements IListMatchableAttributesRequest {
16240
+ /** Represents a CronSchedule. */
16241
+ class CronSchedule implements ICronSchedule {
16257
16242
 
16258
16243
  /**
16259
- * Constructs a new ListMatchableAttributesRequest.
16244
+ * Constructs a new CronSchedule.
16260
16245
  * @param [properties] Properties to set
16261
16246
  */
16262
- constructor(properties?: flyteidl.admin.IListMatchableAttributesRequest);
16247
+ constructor(properties?: flyteidl.admin.ICronSchedule);
16263
16248
 
16264
- /** ListMatchableAttributesRequest resourceType. */
16265
- public resourceType: flyteidl.admin.MatchableResource;
16249
+ /** CronSchedule schedule. */
16250
+ public schedule: string;
16266
16251
 
16267
- /** ListMatchableAttributesRequest org. */
16268
- public org: string;
16252
+ /** CronSchedule offset. */
16253
+ public offset: string;
16269
16254
 
16270
16255
  /**
16271
- * Creates a new ListMatchableAttributesRequest instance using the specified properties.
16256
+ * Creates a new CronSchedule instance using the specified properties.
16272
16257
  * @param [properties] Properties to set
16273
- * @returns ListMatchableAttributesRequest instance
16258
+ * @returns CronSchedule instance
16274
16259
  */
16275
- public static create(properties?: flyteidl.admin.IListMatchableAttributesRequest): flyteidl.admin.ListMatchableAttributesRequest;
16260
+ public static create(properties?: flyteidl.admin.ICronSchedule): flyteidl.admin.CronSchedule;
16276
16261
 
16277
16262
  /**
16278
- * Encodes the specified ListMatchableAttributesRequest message. Does not implicitly {@link flyteidl.admin.ListMatchableAttributesRequest.verify|verify} messages.
16279
- * @param message ListMatchableAttributesRequest message or plain object to encode
16263
+ * Encodes the specified CronSchedule message. Does not implicitly {@link flyteidl.admin.CronSchedule.verify|verify} messages.
16264
+ * @param message CronSchedule message or plain object to encode
16280
16265
  * @param [writer] Writer to encode to
16281
16266
  * @returns Writer
16282
16267
  */
16283
- public static encode(message: flyteidl.admin.IListMatchableAttributesRequest, writer?: $protobuf.Writer): $protobuf.Writer;
16268
+ public static encode(message: flyteidl.admin.ICronSchedule, writer?: $protobuf.Writer): $protobuf.Writer;
16284
16269
 
16285
16270
  /**
16286
- * Decodes a ListMatchableAttributesRequest message from the specified reader or buffer.
16271
+ * Decodes a CronSchedule message from the specified reader or buffer.
16287
16272
  * @param reader Reader or buffer to decode from
16288
16273
  * @param [length] Message length if known beforehand
16289
- * @returns ListMatchableAttributesRequest
16274
+ * @returns CronSchedule
16290
16275
  * @throws {Error} If the payload is not a reader or valid buffer
16291
16276
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
16292
16277
  */
16293
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ListMatchableAttributesRequest;
16278
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.CronSchedule;
16294
16279
 
16295
16280
  /**
16296
- * Verifies a ListMatchableAttributesRequest message.
16281
+ * Verifies a CronSchedule message.
16297
16282
  * @param message Plain object to verify
16298
16283
  * @returns `null` if valid, otherwise the reason why it is not
16299
16284
  */
16300
16285
  public static verify(message: { [k: string]: any }): (string|null);
16301
16286
  }
16302
16287
 
16303
- /** Properties of a ListMatchableAttributesResponse. */
16304
- interface IListMatchableAttributesResponse {
16288
+ /** Properties of a Schedule. */
16289
+ interface ISchedule {
16305
16290
 
16306
- /** ListMatchableAttributesResponse configurations */
16307
- configurations?: (flyteidl.admin.IMatchableAttributesConfiguration[]|null);
16291
+ /** Schedule cronExpression */
16292
+ cronExpression?: (string|null);
16293
+
16294
+ /** Schedule rate */
16295
+ rate?: (flyteidl.admin.IFixedRate|null);
16296
+
16297
+ /** Schedule cronSchedule */
16298
+ cronSchedule?: (flyteidl.admin.ICronSchedule|null);
16299
+
16300
+ /** Schedule kickoffTimeInputArg */
16301
+ kickoffTimeInputArg?: (string|null);
16308
16302
  }
16309
16303
 
16310
- /** Represents a ListMatchableAttributesResponse. */
16311
- class ListMatchableAttributesResponse implements IListMatchableAttributesResponse {
16304
+ /** Represents a Schedule. */
16305
+ class Schedule implements ISchedule {
16312
16306
 
16313
16307
  /**
16314
- * Constructs a new ListMatchableAttributesResponse.
16308
+ * Constructs a new Schedule.
16315
16309
  * @param [properties] Properties to set
16316
16310
  */
16317
- constructor(properties?: flyteidl.admin.IListMatchableAttributesResponse);
16311
+ constructor(properties?: flyteidl.admin.ISchedule);
16318
16312
 
16319
- /** ListMatchableAttributesResponse configurations. */
16320
- public configurations: flyteidl.admin.IMatchableAttributesConfiguration[];
16313
+ /** Schedule cronExpression. */
16314
+ public cronExpression: string;
16315
+
16316
+ /** Schedule rate. */
16317
+ public rate?: (flyteidl.admin.IFixedRate|null);
16318
+
16319
+ /** Schedule cronSchedule. */
16320
+ public cronSchedule?: (flyteidl.admin.ICronSchedule|null);
16321
+
16322
+ /** Schedule kickoffTimeInputArg. */
16323
+ public kickoffTimeInputArg: string;
16324
+
16325
+ /** Schedule ScheduleExpression. */
16326
+ public ScheduleExpression?: ("cronExpression"|"rate"|"cronSchedule");
16321
16327
 
16322
16328
  /**
16323
- * Creates a new ListMatchableAttributesResponse instance using the specified properties.
16329
+ * Creates a new Schedule instance using the specified properties.
16324
16330
  * @param [properties] Properties to set
16325
- * @returns ListMatchableAttributesResponse instance
16331
+ * @returns Schedule instance
16326
16332
  */
16327
- public static create(properties?: flyteidl.admin.IListMatchableAttributesResponse): flyteidl.admin.ListMatchableAttributesResponse;
16333
+ public static create(properties?: flyteidl.admin.ISchedule): flyteidl.admin.Schedule;
16328
16334
 
16329
16335
  /**
16330
- * Encodes the specified ListMatchableAttributesResponse message. Does not implicitly {@link flyteidl.admin.ListMatchableAttributesResponse.verify|verify} messages.
16331
- * @param message ListMatchableAttributesResponse message or plain object to encode
16336
+ * Encodes the specified Schedule message. Does not implicitly {@link flyteidl.admin.Schedule.verify|verify} messages.
16337
+ * @param message Schedule message or plain object to encode
16332
16338
  * @param [writer] Writer to encode to
16333
16339
  * @returns Writer
16334
16340
  */
16335
- public static encode(message: flyteidl.admin.IListMatchableAttributesResponse, writer?: $protobuf.Writer): $protobuf.Writer;
16341
+ public static encode(message: flyteidl.admin.ISchedule, writer?: $protobuf.Writer): $protobuf.Writer;
16336
16342
 
16337
16343
  /**
16338
- * Decodes a ListMatchableAttributesResponse message from the specified reader or buffer.
16344
+ * Decodes a Schedule message from the specified reader or buffer.
16339
16345
  * @param reader Reader or buffer to decode from
16340
16346
  * @param [length] Message length if known beforehand
16341
- * @returns ListMatchableAttributesResponse
16347
+ * @returns Schedule
16342
16348
  * @throws {Error} If the payload is not a reader or valid buffer
16343
16349
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
16344
16350
  */
16345
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ListMatchableAttributesResponse;
16351
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Schedule;
16346
16352
 
16347
16353
  /**
16348
- * Verifies a ListMatchableAttributesResponse message.
16354
+ * Verifies a Schedule message.
16349
16355
  * @param message Plain object to verify
16350
16356
  * @returns `null` if valid, otherwise the reason why it is not
16351
16357
  */
@@ -17817,6 +17823,9 @@ export namespace flyteidl {
17817
17823
 
17818
17824
  /** ProjectGetRequest id */
17819
17825
  id?: (string|null);
17826
+
17827
+ /** ProjectGetRequest org */
17828
+ org?: (string|null);
17820
17829
  }
17821
17830
 
17822
17831
  /** Represents a ProjectGetRequest. */
@@ -17831,6 +17840,9 @@ export namespace flyteidl {
17831
17840
  /** ProjectGetRequest id. */
17832
17841
  public id: string;
17833
17842
 
17843
+ /** ProjectGetRequest org. */
17844
+ public org: string;
17845
+
17834
17846
  /**
17835
17847
  * Creates a new ProjectGetRequest instance using the specified properties.
17836
17848
  * @param [properties] Properties to set