@flyteorg/flyteidl 1.1.16 → 1.1.18
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.
- package/gen/pb-js/flyteidl.d.ts +445 -0
- package/gen/pb-js/flyteidl.js +1190 -242
- package/package.json +1 -1
- package/protos/docs/admin/admin.rst +169 -1
- package/protos/docs/event/event.rst +1 -0
- package/protos/docs/service/service.rst +3 -0
- package/protos/flyteidl/admin/node_execution.proto +2 -0
- package/protos/flyteidl/admin/project.proto +1 -1
- package/protos/flyteidl/admin/project_attributes.proto +60 -0
- package/protos/flyteidl/event/event.proto +2 -0
- package/protos/flyteidl/service/admin.proto +32 -0
package/gen/pb-js/flyteidl.d.ts
CHANGED
|
@@ -6428,6 +6428,9 @@ export namespace flyteidl {
|
|
|
6428
6428
|
/** TaskNodeMetadata reservationStatus */
|
|
6429
6429
|
reservationStatus?: (flyteidl.core.CatalogReservation.Status|null);
|
|
6430
6430
|
|
|
6431
|
+
/** TaskNodeMetadata checkpointUri */
|
|
6432
|
+
checkpointUri?: (string|null);
|
|
6433
|
+
|
|
6431
6434
|
/** TaskNodeMetadata dynamicWorkflow */
|
|
6432
6435
|
dynamicWorkflow?: (flyteidl.event.IDynamicWorkflowNodeMetadata|null);
|
|
6433
6436
|
}
|
|
@@ -6450,6 +6453,9 @@ export namespace flyteidl {
|
|
|
6450
6453
|
/** TaskNodeMetadata reservationStatus. */
|
|
6451
6454
|
public reservationStatus: flyteidl.core.CatalogReservation.Status;
|
|
6452
6455
|
|
|
6456
|
+
/** TaskNodeMetadata checkpointUri. */
|
|
6457
|
+
public checkpointUri: string;
|
|
6458
|
+
|
|
6453
6459
|
/** TaskNodeMetadata dynamicWorkflow. */
|
|
6454
6460
|
public dynamicWorkflow?: (flyteidl.event.IDynamicWorkflowNodeMetadata|null);
|
|
6455
6461
|
|
|
@@ -12854,6 +12860,9 @@ export namespace flyteidl {
|
|
|
12854
12860
|
|
|
12855
12861
|
/** TaskNodeMetadata catalogKey */
|
|
12856
12862
|
catalogKey?: (flyteidl.core.ICatalogMetadata|null);
|
|
12863
|
+
|
|
12864
|
+
/** TaskNodeMetadata checkpointUri */
|
|
12865
|
+
checkpointUri?: (string|null);
|
|
12857
12866
|
}
|
|
12858
12867
|
|
|
12859
12868
|
/** Represents a TaskNodeMetadata. */
|
|
@@ -12871,6 +12880,9 @@ export namespace flyteidl {
|
|
|
12871
12880
|
/** TaskNodeMetadata catalogKey. */
|
|
12872
12881
|
public catalogKey?: (flyteidl.core.ICatalogMetadata|null);
|
|
12873
12882
|
|
|
12883
|
+
/** TaskNodeMetadata checkpointUri. */
|
|
12884
|
+
public checkpointUri: string;
|
|
12885
|
+
|
|
12874
12886
|
/**
|
|
12875
12887
|
* Creates a new TaskNodeMetadata instance using the specified properties.
|
|
12876
12888
|
* @param [properties] Properties to set
|
|
@@ -13582,6 +13594,376 @@ export namespace flyteidl {
|
|
|
13582
13594
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
13583
13595
|
}
|
|
13584
13596
|
|
|
13597
|
+
/** Properties of a ProjectAttributes. */
|
|
13598
|
+
interface IProjectAttributes {
|
|
13599
|
+
|
|
13600
|
+
/** ProjectAttributes project */
|
|
13601
|
+
project?: (string|null);
|
|
13602
|
+
|
|
13603
|
+
/** ProjectAttributes matchingAttributes */
|
|
13604
|
+
matchingAttributes?: (flyteidl.admin.IMatchingAttributes|null);
|
|
13605
|
+
}
|
|
13606
|
+
|
|
13607
|
+
/** Represents a ProjectAttributes. */
|
|
13608
|
+
class ProjectAttributes implements IProjectAttributes {
|
|
13609
|
+
|
|
13610
|
+
/**
|
|
13611
|
+
* Constructs a new ProjectAttributes.
|
|
13612
|
+
* @param [properties] Properties to set
|
|
13613
|
+
*/
|
|
13614
|
+
constructor(properties?: flyteidl.admin.IProjectAttributes);
|
|
13615
|
+
|
|
13616
|
+
/** ProjectAttributes project. */
|
|
13617
|
+
public project: string;
|
|
13618
|
+
|
|
13619
|
+
/** ProjectAttributes matchingAttributes. */
|
|
13620
|
+
public matchingAttributes?: (flyteidl.admin.IMatchingAttributes|null);
|
|
13621
|
+
|
|
13622
|
+
/**
|
|
13623
|
+
* Creates a new ProjectAttributes instance using the specified properties.
|
|
13624
|
+
* @param [properties] Properties to set
|
|
13625
|
+
* @returns ProjectAttributes instance
|
|
13626
|
+
*/
|
|
13627
|
+
public static create(properties?: flyteidl.admin.IProjectAttributes): flyteidl.admin.ProjectAttributes;
|
|
13628
|
+
|
|
13629
|
+
/**
|
|
13630
|
+
* Encodes the specified ProjectAttributes message. Does not implicitly {@link flyteidl.admin.ProjectAttributes.verify|verify} messages.
|
|
13631
|
+
* @param message ProjectAttributes message or plain object to encode
|
|
13632
|
+
* @param [writer] Writer to encode to
|
|
13633
|
+
* @returns Writer
|
|
13634
|
+
*/
|
|
13635
|
+
public static encode(message: flyteidl.admin.IProjectAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13636
|
+
|
|
13637
|
+
/**
|
|
13638
|
+
* Decodes a ProjectAttributes message from the specified reader or buffer.
|
|
13639
|
+
* @param reader Reader or buffer to decode from
|
|
13640
|
+
* @param [length] Message length if known beforehand
|
|
13641
|
+
* @returns ProjectAttributes
|
|
13642
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13643
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13644
|
+
*/
|
|
13645
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributes;
|
|
13646
|
+
|
|
13647
|
+
/**
|
|
13648
|
+
* Verifies a ProjectAttributes message.
|
|
13649
|
+
* @param message Plain object to verify
|
|
13650
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13651
|
+
*/
|
|
13652
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13653
|
+
}
|
|
13654
|
+
|
|
13655
|
+
/** Properties of a ProjectAttributesUpdateRequest. */
|
|
13656
|
+
interface IProjectAttributesUpdateRequest {
|
|
13657
|
+
|
|
13658
|
+
/** ProjectAttributesUpdateRequest attributes */
|
|
13659
|
+
attributes?: (flyteidl.admin.IProjectAttributes|null);
|
|
13660
|
+
}
|
|
13661
|
+
|
|
13662
|
+
/** Represents a ProjectAttributesUpdateRequest. */
|
|
13663
|
+
class ProjectAttributesUpdateRequest implements IProjectAttributesUpdateRequest {
|
|
13664
|
+
|
|
13665
|
+
/**
|
|
13666
|
+
* Constructs a new ProjectAttributesUpdateRequest.
|
|
13667
|
+
* @param [properties] Properties to set
|
|
13668
|
+
*/
|
|
13669
|
+
constructor(properties?: flyteidl.admin.IProjectAttributesUpdateRequest);
|
|
13670
|
+
|
|
13671
|
+
/** ProjectAttributesUpdateRequest attributes. */
|
|
13672
|
+
public attributes?: (flyteidl.admin.IProjectAttributes|null);
|
|
13673
|
+
|
|
13674
|
+
/**
|
|
13675
|
+
* Creates a new ProjectAttributesUpdateRequest instance using the specified properties.
|
|
13676
|
+
* @param [properties] Properties to set
|
|
13677
|
+
* @returns ProjectAttributesUpdateRequest instance
|
|
13678
|
+
*/
|
|
13679
|
+
public static create(properties?: flyteidl.admin.IProjectAttributesUpdateRequest): flyteidl.admin.ProjectAttributesUpdateRequest;
|
|
13680
|
+
|
|
13681
|
+
/**
|
|
13682
|
+
* Encodes the specified ProjectAttributesUpdateRequest message. Does not implicitly {@link flyteidl.admin.ProjectAttributesUpdateRequest.verify|verify} messages.
|
|
13683
|
+
* @param message ProjectAttributesUpdateRequest message or plain object to encode
|
|
13684
|
+
* @param [writer] Writer to encode to
|
|
13685
|
+
* @returns Writer
|
|
13686
|
+
*/
|
|
13687
|
+
public static encode(message: flyteidl.admin.IProjectAttributesUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13688
|
+
|
|
13689
|
+
/**
|
|
13690
|
+
* Decodes a ProjectAttributesUpdateRequest message from the specified reader or buffer.
|
|
13691
|
+
* @param reader Reader or buffer to decode from
|
|
13692
|
+
* @param [length] Message length if known beforehand
|
|
13693
|
+
* @returns ProjectAttributesUpdateRequest
|
|
13694
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13695
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13696
|
+
*/
|
|
13697
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesUpdateRequest;
|
|
13698
|
+
|
|
13699
|
+
/**
|
|
13700
|
+
* Verifies a ProjectAttributesUpdateRequest message.
|
|
13701
|
+
* @param message Plain object to verify
|
|
13702
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13703
|
+
*/
|
|
13704
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13705
|
+
}
|
|
13706
|
+
|
|
13707
|
+
/** Properties of a ProjectAttributesUpdateResponse. */
|
|
13708
|
+
interface IProjectAttributesUpdateResponse {
|
|
13709
|
+
}
|
|
13710
|
+
|
|
13711
|
+
/** Represents a ProjectAttributesUpdateResponse. */
|
|
13712
|
+
class ProjectAttributesUpdateResponse implements IProjectAttributesUpdateResponse {
|
|
13713
|
+
|
|
13714
|
+
/**
|
|
13715
|
+
* Constructs a new ProjectAttributesUpdateResponse.
|
|
13716
|
+
* @param [properties] Properties to set
|
|
13717
|
+
*/
|
|
13718
|
+
constructor(properties?: flyteidl.admin.IProjectAttributesUpdateResponse);
|
|
13719
|
+
|
|
13720
|
+
/**
|
|
13721
|
+
* Creates a new ProjectAttributesUpdateResponse instance using the specified properties.
|
|
13722
|
+
* @param [properties] Properties to set
|
|
13723
|
+
* @returns ProjectAttributesUpdateResponse instance
|
|
13724
|
+
*/
|
|
13725
|
+
public static create(properties?: flyteidl.admin.IProjectAttributesUpdateResponse): flyteidl.admin.ProjectAttributesUpdateResponse;
|
|
13726
|
+
|
|
13727
|
+
/**
|
|
13728
|
+
* Encodes the specified ProjectAttributesUpdateResponse message. Does not implicitly {@link flyteidl.admin.ProjectAttributesUpdateResponse.verify|verify} messages.
|
|
13729
|
+
* @param message ProjectAttributesUpdateResponse message or plain object to encode
|
|
13730
|
+
* @param [writer] Writer to encode to
|
|
13731
|
+
* @returns Writer
|
|
13732
|
+
*/
|
|
13733
|
+
public static encode(message: flyteidl.admin.IProjectAttributesUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13734
|
+
|
|
13735
|
+
/**
|
|
13736
|
+
* Decodes a ProjectAttributesUpdateResponse message from the specified reader or buffer.
|
|
13737
|
+
* @param reader Reader or buffer to decode from
|
|
13738
|
+
* @param [length] Message length if known beforehand
|
|
13739
|
+
* @returns ProjectAttributesUpdateResponse
|
|
13740
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13741
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13742
|
+
*/
|
|
13743
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesUpdateResponse;
|
|
13744
|
+
|
|
13745
|
+
/**
|
|
13746
|
+
* Verifies a ProjectAttributesUpdateResponse message.
|
|
13747
|
+
* @param message Plain object to verify
|
|
13748
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13749
|
+
*/
|
|
13750
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13751
|
+
}
|
|
13752
|
+
|
|
13753
|
+
/** Properties of a ProjectAttributesGetRequest. */
|
|
13754
|
+
interface IProjectAttributesGetRequest {
|
|
13755
|
+
|
|
13756
|
+
/** ProjectAttributesGetRequest project */
|
|
13757
|
+
project?: (string|null);
|
|
13758
|
+
|
|
13759
|
+
/** ProjectAttributesGetRequest resourceType */
|
|
13760
|
+
resourceType?: (flyteidl.admin.MatchableResource|null);
|
|
13761
|
+
}
|
|
13762
|
+
|
|
13763
|
+
/** Represents a ProjectAttributesGetRequest. */
|
|
13764
|
+
class ProjectAttributesGetRequest implements IProjectAttributesGetRequest {
|
|
13765
|
+
|
|
13766
|
+
/**
|
|
13767
|
+
* Constructs a new ProjectAttributesGetRequest.
|
|
13768
|
+
* @param [properties] Properties to set
|
|
13769
|
+
*/
|
|
13770
|
+
constructor(properties?: flyteidl.admin.IProjectAttributesGetRequest);
|
|
13771
|
+
|
|
13772
|
+
/** ProjectAttributesGetRequest project. */
|
|
13773
|
+
public project: string;
|
|
13774
|
+
|
|
13775
|
+
/** ProjectAttributesGetRequest resourceType. */
|
|
13776
|
+
public resourceType: flyteidl.admin.MatchableResource;
|
|
13777
|
+
|
|
13778
|
+
/**
|
|
13779
|
+
* Creates a new ProjectAttributesGetRequest instance using the specified properties.
|
|
13780
|
+
* @param [properties] Properties to set
|
|
13781
|
+
* @returns ProjectAttributesGetRequest instance
|
|
13782
|
+
*/
|
|
13783
|
+
public static create(properties?: flyteidl.admin.IProjectAttributesGetRequest): flyteidl.admin.ProjectAttributesGetRequest;
|
|
13784
|
+
|
|
13785
|
+
/**
|
|
13786
|
+
* Encodes the specified ProjectAttributesGetRequest message. Does not implicitly {@link flyteidl.admin.ProjectAttributesGetRequest.verify|verify} messages.
|
|
13787
|
+
* @param message ProjectAttributesGetRequest message or plain object to encode
|
|
13788
|
+
* @param [writer] Writer to encode to
|
|
13789
|
+
* @returns Writer
|
|
13790
|
+
*/
|
|
13791
|
+
public static encode(message: flyteidl.admin.IProjectAttributesGetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13792
|
+
|
|
13793
|
+
/**
|
|
13794
|
+
* Decodes a ProjectAttributesGetRequest message from the specified reader or buffer.
|
|
13795
|
+
* @param reader Reader or buffer to decode from
|
|
13796
|
+
* @param [length] Message length if known beforehand
|
|
13797
|
+
* @returns ProjectAttributesGetRequest
|
|
13798
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13799
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13800
|
+
*/
|
|
13801
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesGetRequest;
|
|
13802
|
+
|
|
13803
|
+
/**
|
|
13804
|
+
* Verifies a ProjectAttributesGetRequest message.
|
|
13805
|
+
* @param message Plain object to verify
|
|
13806
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13807
|
+
*/
|
|
13808
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13809
|
+
}
|
|
13810
|
+
|
|
13811
|
+
/** Properties of a ProjectAttributesGetResponse. */
|
|
13812
|
+
interface IProjectAttributesGetResponse {
|
|
13813
|
+
|
|
13814
|
+
/** ProjectAttributesGetResponse attributes */
|
|
13815
|
+
attributes?: (flyteidl.admin.IProjectAttributes|null);
|
|
13816
|
+
}
|
|
13817
|
+
|
|
13818
|
+
/** Represents a ProjectAttributesGetResponse. */
|
|
13819
|
+
class ProjectAttributesGetResponse implements IProjectAttributesGetResponse {
|
|
13820
|
+
|
|
13821
|
+
/**
|
|
13822
|
+
* Constructs a new ProjectAttributesGetResponse.
|
|
13823
|
+
* @param [properties] Properties to set
|
|
13824
|
+
*/
|
|
13825
|
+
constructor(properties?: flyteidl.admin.IProjectAttributesGetResponse);
|
|
13826
|
+
|
|
13827
|
+
/** ProjectAttributesGetResponse attributes. */
|
|
13828
|
+
public attributes?: (flyteidl.admin.IProjectAttributes|null);
|
|
13829
|
+
|
|
13830
|
+
/**
|
|
13831
|
+
* Creates a new ProjectAttributesGetResponse instance using the specified properties.
|
|
13832
|
+
* @param [properties] Properties to set
|
|
13833
|
+
* @returns ProjectAttributesGetResponse instance
|
|
13834
|
+
*/
|
|
13835
|
+
public static create(properties?: flyteidl.admin.IProjectAttributesGetResponse): flyteidl.admin.ProjectAttributesGetResponse;
|
|
13836
|
+
|
|
13837
|
+
/**
|
|
13838
|
+
* Encodes the specified ProjectAttributesGetResponse message. Does not implicitly {@link flyteidl.admin.ProjectAttributesGetResponse.verify|verify} messages.
|
|
13839
|
+
* @param message ProjectAttributesGetResponse message or plain object to encode
|
|
13840
|
+
* @param [writer] Writer to encode to
|
|
13841
|
+
* @returns Writer
|
|
13842
|
+
*/
|
|
13843
|
+
public static encode(message: flyteidl.admin.IProjectAttributesGetResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13844
|
+
|
|
13845
|
+
/**
|
|
13846
|
+
* Decodes a ProjectAttributesGetResponse message from the specified reader or buffer.
|
|
13847
|
+
* @param reader Reader or buffer to decode from
|
|
13848
|
+
* @param [length] Message length if known beforehand
|
|
13849
|
+
* @returns ProjectAttributesGetResponse
|
|
13850
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13851
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13852
|
+
*/
|
|
13853
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesGetResponse;
|
|
13854
|
+
|
|
13855
|
+
/**
|
|
13856
|
+
* Verifies a ProjectAttributesGetResponse message.
|
|
13857
|
+
* @param message Plain object to verify
|
|
13858
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13859
|
+
*/
|
|
13860
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13861
|
+
}
|
|
13862
|
+
|
|
13863
|
+
/** Properties of a ProjectAttributesDeleteRequest. */
|
|
13864
|
+
interface IProjectAttributesDeleteRequest {
|
|
13865
|
+
|
|
13866
|
+
/** ProjectAttributesDeleteRequest project */
|
|
13867
|
+
project?: (string|null);
|
|
13868
|
+
|
|
13869
|
+
/** ProjectAttributesDeleteRequest resourceType */
|
|
13870
|
+
resourceType?: (flyteidl.admin.MatchableResource|null);
|
|
13871
|
+
}
|
|
13872
|
+
|
|
13873
|
+
/** Represents a ProjectAttributesDeleteRequest. */
|
|
13874
|
+
class ProjectAttributesDeleteRequest implements IProjectAttributesDeleteRequest {
|
|
13875
|
+
|
|
13876
|
+
/**
|
|
13877
|
+
* Constructs a new ProjectAttributesDeleteRequest.
|
|
13878
|
+
* @param [properties] Properties to set
|
|
13879
|
+
*/
|
|
13880
|
+
constructor(properties?: flyteidl.admin.IProjectAttributesDeleteRequest);
|
|
13881
|
+
|
|
13882
|
+
/** ProjectAttributesDeleteRequest project. */
|
|
13883
|
+
public project: string;
|
|
13884
|
+
|
|
13885
|
+
/** ProjectAttributesDeleteRequest resourceType. */
|
|
13886
|
+
public resourceType: flyteidl.admin.MatchableResource;
|
|
13887
|
+
|
|
13888
|
+
/**
|
|
13889
|
+
* Creates a new ProjectAttributesDeleteRequest instance using the specified properties.
|
|
13890
|
+
* @param [properties] Properties to set
|
|
13891
|
+
* @returns ProjectAttributesDeleteRequest instance
|
|
13892
|
+
*/
|
|
13893
|
+
public static create(properties?: flyteidl.admin.IProjectAttributesDeleteRequest): flyteidl.admin.ProjectAttributesDeleteRequest;
|
|
13894
|
+
|
|
13895
|
+
/**
|
|
13896
|
+
* Encodes the specified ProjectAttributesDeleteRequest message. Does not implicitly {@link flyteidl.admin.ProjectAttributesDeleteRequest.verify|verify} messages.
|
|
13897
|
+
* @param message ProjectAttributesDeleteRequest message or plain object to encode
|
|
13898
|
+
* @param [writer] Writer to encode to
|
|
13899
|
+
* @returns Writer
|
|
13900
|
+
*/
|
|
13901
|
+
public static encode(message: flyteidl.admin.IProjectAttributesDeleteRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13902
|
+
|
|
13903
|
+
/**
|
|
13904
|
+
* Decodes a ProjectAttributesDeleteRequest message from the specified reader or buffer.
|
|
13905
|
+
* @param reader Reader or buffer to decode from
|
|
13906
|
+
* @param [length] Message length if known beforehand
|
|
13907
|
+
* @returns ProjectAttributesDeleteRequest
|
|
13908
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13909
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13910
|
+
*/
|
|
13911
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesDeleteRequest;
|
|
13912
|
+
|
|
13913
|
+
/**
|
|
13914
|
+
* Verifies a ProjectAttributesDeleteRequest message.
|
|
13915
|
+
* @param message Plain object to verify
|
|
13916
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13917
|
+
*/
|
|
13918
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13919
|
+
}
|
|
13920
|
+
|
|
13921
|
+
/** Properties of a ProjectAttributesDeleteResponse. */
|
|
13922
|
+
interface IProjectAttributesDeleteResponse {
|
|
13923
|
+
}
|
|
13924
|
+
|
|
13925
|
+
/** Represents a ProjectAttributesDeleteResponse. */
|
|
13926
|
+
class ProjectAttributesDeleteResponse implements IProjectAttributesDeleteResponse {
|
|
13927
|
+
|
|
13928
|
+
/**
|
|
13929
|
+
* Constructs a new ProjectAttributesDeleteResponse.
|
|
13930
|
+
* @param [properties] Properties to set
|
|
13931
|
+
*/
|
|
13932
|
+
constructor(properties?: flyteidl.admin.IProjectAttributesDeleteResponse);
|
|
13933
|
+
|
|
13934
|
+
/**
|
|
13935
|
+
* Creates a new ProjectAttributesDeleteResponse instance using the specified properties.
|
|
13936
|
+
* @param [properties] Properties to set
|
|
13937
|
+
* @returns ProjectAttributesDeleteResponse instance
|
|
13938
|
+
*/
|
|
13939
|
+
public static create(properties?: flyteidl.admin.IProjectAttributesDeleteResponse): flyteidl.admin.ProjectAttributesDeleteResponse;
|
|
13940
|
+
|
|
13941
|
+
/**
|
|
13942
|
+
* Encodes the specified ProjectAttributesDeleteResponse message. Does not implicitly {@link flyteidl.admin.ProjectAttributesDeleteResponse.verify|verify} messages.
|
|
13943
|
+
* @param message ProjectAttributesDeleteResponse message or plain object to encode
|
|
13944
|
+
* @param [writer] Writer to encode to
|
|
13945
|
+
* @returns Writer
|
|
13946
|
+
*/
|
|
13947
|
+
public static encode(message: flyteidl.admin.IProjectAttributesDeleteResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13948
|
+
|
|
13949
|
+
/**
|
|
13950
|
+
* Decodes a ProjectAttributesDeleteResponse message from the specified reader or buffer.
|
|
13951
|
+
* @param reader Reader or buffer to decode from
|
|
13952
|
+
* @param [length] Message length if known beforehand
|
|
13953
|
+
* @returns ProjectAttributesDeleteResponse
|
|
13954
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13955
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13956
|
+
*/
|
|
13957
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesDeleteResponse;
|
|
13958
|
+
|
|
13959
|
+
/**
|
|
13960
|
+
* Verifies a ProjectAttributesDeleteResponse message.
|
|
13961
|
+
* @param message Plain object to verify
|
|
13962
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13963
|
+
*/
|
|
13964
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13965
|
+
}
|
|
13966
|
+
|
|
13585
13967
|
/** Properties of a ProjectDomainAttributes. */
|
|
13586
13968
|
interface IProjectDomainAttributes {
|
|
13587
13969
|
|
|
@@ -16285,6 +16667,48 @@ export namespace flyteidl {
|
|
|
16285
16667
|
*/
|
|
16286
16668
|
public deleteProjectDomainAttributes(request: flyteidl.admin.IProjectDomainAttributesDeleteRequest): Promise<flyteidl.admin.ProjectDomainAttributesDeleteResponse>;
|
|
16287
16669
|
|
|
16670
|
+
/**
|
|
16671
|
+
* Calls UpdateProjectAttributes.
|
|
16672
|
+
* @param request ProjectAttributesUpdateRequest message or plain object
|
|
16673
|
+
* @param callback Node-style callback called with the error, if any, and ProjectAttributesUpdateResponse
|
|
16674
|
+
*/
|
|
16675
|
+
public updateProjectAttributes(request: flyteidl.admin.IProjectAttributesUpdateRequest, callback: flyteidl.service.AdminService.UpdateProjectAttributesCallback): void;
|
|
16676
|
+
|
|
16677
|
+
/**
|
|
16678
|
+
* Calls UpdateProjectAttributes.
|
|
16679
|
+
* @param request ProjectAttributesUpdateRequest message or plain object
|
|
16680
|
+
* @returns Promise
|
|
16681
|
+
*/
|
|
16682
|
+
public updateProjectAttributes(request: flyteidl.admin.IProjectAttributesUpdateRequest): Promise<flyteidl.admin.ProjectAttributesUpdateResponse>;
|
|
16683
|
+
|
|
16684
|
+
/**
|
|
16685
|
+
* Calls GetProjectAttributes.
|
|
16686
|
+
* @param request ProjectAttributesGetRequest message or plain object
|
|
16687
|
+
* @param callback Node-style callback called with the error, if any, and ProjectAttributesGetResponse
|
|
16688
|
+
*/
|
|
16689
|
+
public getProjectAttributes(request: flyteidl.admin.IProjectAttributesGetRequest, callback: flyteidl.service.AdminService.GetProjectAttributesCallback): void;
|
|
16690
|
+
|
|
16691
|
+
/**
|
|
16692
|
+
* Calls GetProjectAttributes.
|
|
16693
|
+
* @param request ProjectAttributesGetRequest message or plain object
|
|
16694
|
+
* @returns Promise
|
|
16695
|
+
*/
|
|
16696
|
+
public getProjectAttributes(request: flyteidl.admin.IProjectAttributesGetRequest): Promise<flyteidl.admin.ProjectAttributesGetResponse>;
|
|
16697
|
+
|
|
16698
|
+
/**
|
|
16699
|
+
* Calls DeleteProjectAttributes.
|
|
16700
|
+
* @param request ProjectAttributesDeleteRequest message or plain object
|
|
16701
|
+
* @param callback Node-style callback called with the error, if any, and ProjectAttributesDeleteResponse
|
|
16702
|
+
*/
|
|
16703
|
+
public deleteProjectAttributes(request: flyteidl.admin.IProjectAttributesDeleteRequest, callback: flyteidl.service.AdminService.DeleteProjectAttributesCallback): void;
|
|
16704
|
+
|
|
16705
|
+
/**
|
|
16706
|
+
* Calls DeleteProjectAttributes.
|
|
16707
|
+
* @param request ProjectAttributesDeleteRequest message or plain object
|
|
16708
|
+
* @returns Promise
|
|
16709
|
+
*/
|
|
16710
|
+
public deleteProjectAttributes(request: flyteidl.admin.IProjectAttributesDeleteRequest): Promise<flyteidl.admin.ProjectAttributesDeleteResponse>;
|
|
16711
|
+
|
|
16288
16712
|
/**
|
|
16289
16713
|
* Calls UpdateWorkflowAttributes.
|
|
16290
16714
|
* @param request WorkflowAttributesUpdateRequest message or plain object
|
|
@@ -16673,6 +17097,27 @@ export namespace flyteidl {
|
|
|
16673
17097
|
*/
|
|
16674
17098
|
type DeleteProjectDomainAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectDomainAttributesDeleteResponse) => void;
|
|
16675
17099
|
|
|
17100
|
+
/**
|
|
17101
|
+
* Callback as used by {@link flyteidl.service.AdminService#updateProjectAttributes}.
|
|
17102
|
+
* @param error Error, if any
|
|
17103
|
+
* @param [response] ProjectAttributesUpdateResponse
|
|
17104
|
+
*/
|
|
17105
|
+
type UpdateProjectAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectAttributesUpdateResponse) => void;
|
|
17106
|
+
|
|
17107
|
+
/**
|
|
17108
|
+
* Callback as used by {@link flyteidl.service.AdminService#getProjectAttributes}.
|
|
17109
|
+
* @param error Error, if any
|
|
17110
|
+
* @param [response] ProjectAttributesGetResponse
|
|
17111
|
+
*/
|
|
17112
|
+
type GetProjectAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectAttributesGetResponse) => void;
|
|
17113
|
+
|
|
17114
|
+
/**
|
|
17115
|
+
* Callback as used by {@link flyteidl.service.AdminService#deleteProjectAttributes}.
|
|
17116
|
+
* @param error Error, if any
|
|
17117
|
+
* @param [response] ProjectAttributesDeleteResponse
|
|
17118
|
+
*/
|
|
17119
|
+
type DeleteProjectAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectAttributesDeleteResponse) => void;
|
|
17120
|
+
|
|
16676
17121
|
/**
|
|
16677
17122
|
* Callback as used by {@link flyteidl.service.AdminService#updateWorkflowAttributes}.
|
|
16678
17123
|
* @param error Error, if any
|