@flyteorg/flyteidl 1.1.17 → 1.1.19
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 +437 -190
- package/gen/pb-js/flyteidl.js +6342 -5869
- package/package.json +1 -1
- package/protos/docs/admin/admin.rst +169 -87
- package/protos/docs/service/service.rst +3 -0
- package/protos/flyteidl/admin/cluster_assignment.proto +2 -41
- package/protos/flyteidl/admin/project.proto +1 -1
- package/protos/flyteidl/admin/project_attributes.proto +60 -0
- package/protos/flyteidl/service/admin.proto +32 -0
package/gen/pb-js/flyteidl.d.ts
CHANGED
|
@@ -7037,11 +7037,8 @@ export namespace flyteidl {
|
|
|
7037
7037
|
/** Properties of a ClusterAssignment. */
|
|
7038
7038
|
interface IClusterAssignment {
|
|
7039
7039
|
|
|
7040
|
-
/** ClusterAssignment
|
|
7041
|
-
|
|
7042
|
-
|
|
7043
|
-
/** ClusterAssignment toleration */
|
|
7044
|
-
toleration?: (flyteidl.admin.IToleration|null);
|
|
7040
|
+
/** ClusterAssignment clusterPoolName */
|
|
7041
|
+
clusterPoolName?: (string|null);
|
|
7045
7042
|
}
|
|
7046
7043
|
|
|
7047
7044
|
/** Represents a ClusterAssignment. */
|
|
@@ -7053,11 +7050,8 @@ export namespace flyteidl {
|
|
|
7053
7050
|
*/
|
|
7054
7051
|
constructor(properties?: flyteidl.admin.IClusterAssignment);
|
|
7055
7052
|
|
|
7056
|
-
/** ClusterAssignment
|
|
7057
|
-
public
|
|
7058
|
-
|
|
7059
|
-
/** ClusterAssignment toleration. */
|
|
7060
|
-
public toleration?: (flyteidl.admin.IToleration|null);
|
|
7053
|
+
/** ClusterAssignment clusterPoolName. */
|
|
7054
|
+
public clusterPoolName: string;
|
|
7061
7055
|
|
|
7062
7056
|
/**
|
|
7063
7057
|
* Creates a new ClusterAssignment instance using the specified properties.
|
|
@@ -7092,186 +7086,6 @@ export namespace flyteidl {
|
|
|
7092
7086
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
7093
7087
|
}
|
|
7094
7088
|
|
|
7095
|
-
/** Properties of an Affinity. */
|
|
7096
|
-
interface IAffinity {
|
|
7097
|
-
|
|
7098
|
-
/** Affinity selectors */
|
|
7099
|
-
selectors?: (flyteidl.admin.ISelector[]|null);
|
|
7100
|
-
}
|
|
7101
|
-
|
|
7102
|
-
/** Represents an Affinity. */
|
|
7103
|
-
class Affinity implements IAffinity {
|
|
7104
|
-
|
|
7105
|
-
/**
|
|
7106
|
-
* Constructs a new Affinity.
|
|
7107
|
-
* @param [properties] Properties to set
|
|
7108
|
-
*/
|
|
7109
|
-
constructor(properties?: flyteidl.admin.IAffinity);
|
|
7110
|
-
|
|
7111
|
-
/** Affinity selectors. */
|
|
7112
|
-
public selectors: flyteidl.admin.ISelector[];
|
|
7113
|
-
|
|
7114
|
-
/**
|
|
7115
|
-
* Creates a new Affinity instance using the specified properties.
|
|
7116
|
-
* @param [properties] Properties to set
|
|
7117
|
-
* @returns Affinity instance
|
|
7118
|
-
*/
|
|
7119
|
-
public static create(properties?: flyteidl.admin.IAffinity): flyteidl.admin.Affinity;
|
|
7120
|
-
|
|
7121
|
-
/**
|
|
7122
|
-
* Encodes the specified Affinity message. Does not implicitly {@link flyteidl.admin.Affinity.verify|verify} messages.
|
|
7123
|
-
* @param message Affinity message or plain object to encode
|
|
7124
|
-
* @param [writer] Writer to encode to
|
|
7125
|
-
* @returns Writer
|
|
7126
|
-
*/
|
|
7127
|
-
public static encode(message: flyteidl.admin.IAffinity, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7128
|
-
|
|
7129
|
-
/**
|
|
7130
|
-
* Decodes an Affinity message from the specified reader or buffer.
|
|
7131
|
-
* @param reader Reader or buffer to decode from
|
|
7132
|
-
* @param [length] Message length if known beforehand
|
|
7133
|
-
* @returns Affinity
|
|
7134
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7135
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7136
|
-
*/
|
|
7137
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Affinity;
|
|
7138
|
-
|
|
7139
|
-
/**
|
|
7140
|
-
* Verifies an Affinity message.
|
|
7141
|
-
* @param message Plain object to verify
|
|
7142
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
7143
|
-
*/
|
|
7144
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
7145
|
-
}
|
|
7146
|
-
|
|
7147
|
-
/** Properties of a Toleration. */
|
|
7148
|
-
interface IToleration {
|
|
7149
|
-
|
|
7150
|
-
/** Toleration selectors */
|
|
7151
|
-
selectors?: (flyteidl.admin.ISelector[]|null);
|
|
7152
|
-
}
|
|
7153
|
-
|
|
7154
|
-
/** Represents a Toleration. */
|
|
7155
|
-
class Toleration implements IToleration {
|
|
7156
|
-
|
|
7157
|
-
/**
|
|
7158
|
-
* Constructs a new Toleration.
|
|
7159
|
-
* @param [properties] Properties to set
|
|
7160
|
-
*/
|
|
7161
|
-
constructor(properties?: flyteidl.admin.IToleration);
|
|
7162
|
-
|
|
7163
|
-
/** Toleration selectors. */
|
|
7164
|
-
public selectors: flyteidl.admin.ISelector[];
|
|
7165
|
-
|
|
7166
|
-
/**
|
|
7167
|
-
* Creates a new Toleration instance using the specified properties.
|
|
7168
|
-
* @param [properties] Properties to set
|
|
7169
|
-
* @returns Toleration instance
|
|
7170
|
-
*/
|
|
7171
|
-
public static create(properties?: flyteidl.admin.IToleration): flyteidl.admin.Toleration;
|
|
7172
|
-
|
|
7173
|
-
/**
|
|
7174
|
-
* Encodes the specified Toleration message. Does not implicitly {@link flyteidl.admin.Toleration.verify|verify} messages.
|
|
7175
|
-
* @param message Toleration message or plain object to encode
|
|
7176
|
-
* @param [writer] Writer to encode to
|
|
7177
|
-
* @returns Writer
|
|
7178
|
-
*/
|
|
7179
|
-
public static encode(message: flyteidl.admin.IToleration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7180
|
-
|
|
7181
|
-
/**
|
|
7182
|
-
* Decodes a Toleration message from the specified reader or buffer.
|
|
7183
|
-
* @param reader Reader or buffer to decode from
|
|
7184
|
-
* @param [length] Message length if known beforehand
|
|
7185
|
-
* @returns Toleration
|
|
7186
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7187
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7188
|
-
*/
|
|
7189
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Toleration;
|
|
7190
|
-
|
|
7191
|
-
/**
|
|
7192
|
-
* Verifies a Toleration message.
|
|
7193
|
-
* @param message Plain object to verify
|
|
7194
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
7195
|
-
*/
|
|
7196
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
7197
|
-
}
|
|
7198
|
-
|
|
7199
|
-
/** Properties of a Selector. */
|
|
7200
|
-
interface ISelector {
|
|
7201
|
-
|
|
7202
|
-
/** Selector key */
|
|
7203
|
-
key?: (string|null);
|
|
7204
|
-
|
|
7205
|
-
/** Selector value */
|
|
7206
|
-
value?: (string[]|null);
|
|
7207
|
-
|
|
7208
|
-
/** Selector operator */
|
|
7209
|
-
operator?: (flyteidl.admin.Selector.Operator|null);
|
|
7210
|
-
}
|
|
7211
|
-
|
|
7212
|
-
/** Represents a Selector. */
|
|
7213
|
-
class Selector implements ISelector {
|
|
7214
|
-
|
|
7215
|
-
/**
|
|
7216
|
-
* Constructs a new Selector.
|
|
7217
|
-
* @param [properties] Properties to set
|
|
7218
|
-
*/
|
|
7219
|
-
constructor(properties?: flyteidl.admin.ISelector);
|
|
7220
|
-
|
|
7221
|
-
/** Selector key. */
|
|
7222
|
-
public key: string;
|
|
7223
|
-
|
|
7224
|
-
/** Selector value. */
|
|
7225
|
-
public value: string[];
|
|
7226
|
-
|
|
7227
|
-
/** Selector operator. */
|
|
7228
|
-
public operator: flyteidl.admin.Selector.Operator;
|
|
7229
|
-
|
|
7230
|
-
/**
|
|
7231
|
-
* Creates a new Selector instance using the specified properties.
|
|
7232
|
-
* @param [properties] Properties to set
|
|
7233
|
-
* @returns Selector instance
|
|
7234
|
-
*/
|
|
7235
|
-
public static create(properties?: flyteidl.admin.ISelector): flyteidl.admin.Selector;
|
|
7236
|
-
|
|
7237
|
-
/**
|
|
7238
|
-
* Encodes the specified Selector message. Does not implicitly {@link flyteidl.admin.Selector.verify|verify} messages.
|
|
7239
|
-
* @param message Selector message or plain object to encode
|
|
7240
|
-
* @param [writer] Writer to encode to
|
|
7241
|
-
* @returns Writer
|
|
7242
|
-
*/
|
|
7243
|
-
public static encode(message: flyteidl.admin.ISelector, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7244
|
-
|
|
7245
|
-
/**
|
|
7246
|
-
* Decodes a Selector message from the specified reader or buffer.
|
|
7247
|
-
* @param reader Reader or buffer to decode from
|
|
7248
|
-
* @param [length] Message length if known beforehand
|
|
7249
|
-
* @returns Selector
|
|
7250
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7251
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7252
|
-
*/
|
|
7253
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Selector;
|
|
7254
|
-
|
|
7255
|
-
/**
|
|
7256
|
-
* Verifies a Selector message.
|
|
7257
|
-
* @param message Plain object to verify
|
|
7258
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
7259
|
-
*/
|
|
7260
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
7261
|
-
}
|
|
7262
|
-
|
|
7263
|
-
namespace Selector {
|
|
7264
|
-
|
|
7265
|
-
/** Operator enum. */
|
|
7266
|
-
enum Operator {
|
|
7267
|
-
EQUALS = 0,
|
|
7268
|
-
NOT_EQUALS = 1,
|
|
7269
|
-
IN = 2,
|
|
7270
|
-
NOT_IN = 3,
|
|
7271
|
-
EXISTS = 4
|
|
7272
|
-
}
|
|
7273
|
-
}
|
|
7274
|
-
|
|
7275
7089
|
/** Properties of a NamedEntityIdentifier. */
|
|
7276
7090
|
interface INamedEntityIdentifier {
|
|
7277
7091
|
|
|
@@ -13594,6 +13408,376 @@ export namespace flyteidl {
|
|
|
13594
13408
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
13595
13409
|
}
|
|
13596
13410
|
|
|
13411
|
+
/** Properties of a ProjectAttributes. */
|
|
13412
|
+
interface IProjectAttributes {
|
|
13413
|
+
|
|
13414
|
+
/** ProjectAttributes project */
|
|
13415
|
+
project?: (string|null);
|
|
13416
|
+
|
|
13417
|
+
/** ProjectAttributes matchingAttributes */
|
|
13418
|
+
matchingAttributes?: (flyteidl.admin.IMatchingAttributes|null);
|
|
13419
|
+
}
|
|
13420
|
+
|
|
13421
|
+
/** Represents a ProjectAttributes. */
|
|
13422
|
+
class ProjectAttributes implements IProjectAttributes {
|
|
13423
|
+
|
|
13424
|
+
/**
|
|
13425
|
+
* Constructs a new ProjectAttributes.
|
|
13426
|
+
* @param [properties] Properties to set
|
|
13427
|
+
*/
|
|
13428
|
+
constructor(properties?: flyteidl.admin.IProjectAttributes);
|
|
13429
|
+
|
|
13430
|
+
/** ProjectAttributes project. */
|
|
13431
|
+
public project: string;
|
|
13432
|
+
|
|
13433
|
+
/** ProjectAttributes matchingAttributes. */
|
|
13434
|
+
public matchingAttributes?: (flyteidl.admin.IMatchingAttributes|null);
|
|
13435
|
+
|
|
13436
|
+
/**
|
|
13437
|
+
* Creates a new ProjectAttributes instance using the specified properties.
|
|
13438
|
+
* @param [properties] Properties to set
|
|
13439
|
+
* @returns ProjectAttributes instance
|
|
13440
|
+
*/
|
|
13441
|
+
public static create(properties?: flyteidl.admin.IProjectAttributes): flyteidl.admin.ProjectAttributes;
|
|
13442
|
+
|
|
13443
|
+
/**
|
|
13444
|
+
* Encodes the specified ProjectAttributes message. Does not implicitly {@link flyteidl.admin.ProjectAttributes.verify|verify} messages.
|
|
13445
|
+
* @param message ProjectAttributes message or plain object to encode
|
|
13446
|
+
* @param [writer] Writer to encode to
|
|
13447
|
+
* @returns Writer
|
|
13448
|
+
*/
|
|
13449
|
+
public static encode(message: flyteidl.admin.IProjectAttributes, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13450
|
+
|
|
13451
|
+
/**
|
|
13452
|
+
* Decodes a ProjectAttributes message from the specified reader or buffer.
|
|
13453
|
+
* @param reader Reader or buffer to decode from
|
|
13454
|
+
* @param [length] Message length if known beforehand
|
|
13455
|
+
* @returns ProjectAttributes
|
|
13456
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13457
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13458
|
+
*/
|
|
13459
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributes;
|
|
13460
|
+
|
|
13461
|
+
/**
|
|
13462
|
+
* Verifies a ProjectAttributes message.
|
|
13463
|
+
* @param message Plain object to verify
|
|
13464
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13465
|
+
*/
|
|
13466
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13467
|
+
}
|
|
13468
|
+
|
|
13469
|
+
/** Properties of a ProjectAttributesUpdateRequest. */
|
|
13470
|
+
interface IProjectAttributesUpdateRequest {
|
|
13471
|
+
|
|
13472
|
+
/** ProjectAttributesUpdateRequest attributes */
|
|
13473
|
+
attributes?: (flyteidl.admin.IProjectAttributes|null);
|
|
13474
|
+
}
|
|
13475
|
+
|
|
13476
|
+
/** Represents a ProjectAttributesUpdateRequest. */
|
|
13477
|
+
class ProjectAttributesUpdateRequest implements IProjectAttributesUpdateRequest {
|
|
13478
|
+
|
|
13479
|
+
/**
|
|
13480
|
+
* Constructs a new ProjectAttributesUpdateRequest.
|
|
13481
|
+
* @param [properties] Properties to set
|
|
13482
|
+
*/
|
|
13483
|
+
constructor(properties?: flyteidl.admin.IProjectAttributesUpdateRequest);
|
|
13484
|
+
|
|
13485
|
+
/** ProjectAttributesUpdateRequest attributes. */
|
|
13486
|
+
public attributes?: (flyteidl.admin.IProjectAttributes|null);
|
|
13487
|
+
|
|
13488
|
+
/**
|
|
13489
|
+
* Creates a new ProjectAttributesUpdateRequest instance using the specified properties.
|
|
13490
|
+
* @param [properties] Properties to set
|
|
13491
|
+
* @returns ProjectAttributesUpdateRequest instance
|
|
13492
|
+
*/
|
|
13493
|
+
public static create(properties?: flyteidl.admin.IProjectAttributesUpdateRequest): flyteidl.admin.ProjectAttributesUpdateRequest;
|
|
13494
|
+
|
|
13495
|
+
/**
|
|
13496
|
+
* Encodes the specified ProjectAttributesUpdateRequest message. Does not implicitly {@link flyteidl.admin.ProjectAttributesUpdateRequest.verify|verify} messages.
|
|
13497
|
+
* @param message ProjectAttributesUpdateRequest message or plain object to encode
|
|
13498
|
+
* @param [writer] Writer to encode to
|
|
13499
|
+
* @returns Writer
|
|
13500
|
+
*/
|
|
13501
|
+
public static encode(message: flyteidl.admin.IProjectAttributesUpdateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13502
|
+
|
|
13503
|
+
/**
|
|
13504
|
+
* Decodes a ProjectAttributesUpdateRequest message from the specified reader or buffer.
|
|
13505
|
+
* @param reader Reader or buffer to decode from
|
|
13506
|
+
* @param [length] Message length if known beforehand
|
|
13507
|
+
* @returns ProjectAttributesUpdateRequest
|
|
13508
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13509
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13510
|
+
*/
|
|
13511
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesUpdateRequest;
|
|
13512
|
+
|
|
13513
|
+
/**
|
|
13514
|
+
* Verifies a ProjectAttributesUpdateRequest message.
|
|
13515
|
+
* @param message Plain object to verify
|
|
13516
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13517
|
+
*/
|
|
13518
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13519
|
+
}
|
|
13520
|
+
|
|
13521
|
+
/** Properties of a ProjectAttributesUpdateResponse. */
|
|
13522
|
+
interface IProjectAttributesUpdateResponse {
|
|
13523
|
+
}
|
|
13524
|
+
|
|
13525
|
+
/** Represents a ProjectAttributesUpdateResponse. */
|
|
13526
|
+
class ProjectAttributesUpdateResponse implements IProjectAttributesUpdateResponse {
|
|
13527
|
+
|
|
13528
|
+
/**
|
|
13529
|
+
* Constructs a new ProjectAttributesUpdateResponse.
|
|
13530
|
+
* @param [properties] Properties to set
|
|
13531
|
+
*/
|
|
13532
|
+
constructor(properties?: flyteidl.admin.IProjectAttributesUpdateResponse);
|
|
13533
|
+
|
|
13534
|
+
/**
|
|
13535
|
+
* Creates a new ProjectAttributesUpdateResponse instance using the specified properties.
|
|
13536
|
+
* @param [properties] Properties to set
|
|
13537
|
+
* @returns ProjectAttributesUpdateResponse instance
|
|
13538
|
+
*/
|
|
13539
|
+
public static create(properties?: flyteidl.admin.IProjectAttributesUpdateResponse): flyteidl.admin.ProjectAttributesUpdateResponse;
|
|
13540
|
+
|
|
13541
|
+
/**
|
|
13542
|
+
* Encodes the specified ProjectAttributesUpdateResponse message. Does not implicitly {@link flyteidl.admin.ProjectAttributesUpdateResponse.verify|verify} messages.
|
|
13543
|
+
* @param message ProjectAttributesUpdateResponse message or plain object to encode
|
|
13544
|
+
* @param [writer] Writer to encode to
|
|
13545
|
+
* @returns Writer
|
|
13546
|
+
*/
|
|
13547
|
+
public static encode(message: flyteidl.admin.IProjectAttributesUpdateResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13548
|
+
|
|
13549
|
+
/**
|
|
13550
|
+
* Decodes a ProjectAttributesUpdateResponse message from the specified reader or buffer.
|
|
13551
|
+
* @param reader Reader or buffer to decode from
|
|
13552
|
+
* @param [length] Message length if known beforehand
|
|
13553
|
+
* @returns ProjectAttributesUpdateResponse
|
|
13554
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13555
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13556
|
+
*/
|
|
13557
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesUpdateResponse;
|
|
13558
|
+
|
|
13559
|
+
/**
|
|
13560
|
+
* Verifies a ProjectAttributesUpdateResponse message.
|
|
13561
|
+
* @param message Plain object to verify
|
|
13562
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13563
|
+
*/
|
|
13564
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13565
|
+
}
|
|
13566
|
+
|
|
13567
|
+
/** Properties of a ProjectAttributesGetRequest. */
|
|
13568
|
+
interface IProjectAttributesGetRequest {
|
|
13569
|
+
|
|
13570
|
+
/** ProjectAttributesGetRequest project */
|
|
13571
|
+
project?: (string|null);
|
|
13572
|
+
|
|
13573
|
+
/** ProjectAttributesGetRequest resourceType */
|
|
13574
|
+
resourceType?: (flyteidl.admin.MatchableResource|null);
|
|
13575
|
+
}
|
|
13576
|
+
|
|
13577
|
+
/** Represents a ProjectAttributesGetRequest. */
|
|
13578
|
+
class ProjectAttributesGetRequest implements IProjectAttributesGetRequest {
|
|
13579
|
+
|
|
13580
|
+
/**
|
|
13581
|
+
* Constructs a new ProjectAttributesGetRequest.
|
|
13582
|
+
* @param [properties] Properties to set
|
|
13583
|
+
*/
|
|
13584
|
+
constructor(properties?: flyteidl.admin.IProjectAttributesGetRequest);
|
|
13585
|
+
|
|
13586
|
+
/** ProjectAttributesGetRequest project. */
|
|
13587
|
+
public project: string;
|
|
13588
|
+
|
|
13589
|
+
/** ProjectAttributesGetRequest resourceType. */
|
|
13590
|
+
public resourceType: flyteidl.admin.MatchableResource;
|
|
13591
|
+
|
|
13592
|
+
/**
|
|
13593
|
+
* Creates a new ProjectAttributesGetRequest instance using the specified properties.
|
|
13594
|
+
* @param [properties] Properties to set
|
|
13595
|
+
* @returns ProjectAttributesGetRequest instance
|
|
13596
|
+
*/
|
|
13597
|
+
public static create(properties?: flyteidl.admin.IProjectAttributesGetRequest): flyteidl.admin.ProjectAttributesGetRequest;
|
|
13598
|
+
|
|
13599
|
+
/**
|
|
13600
|
+
* Encodes the specified ProjectAttributesGetRequest message. Does not implicitly {@link flyteidl.admin.ProjectAttributesGetRequest.verify|verify} messages.
|
|
13601
|
+
* @param message ProjectAttributesGetRequest message or plain object to encode
|
|
13602
|
+
* @param [writer] Writer to encode to
|
|
13603
|
+
* @returns Writer
|
|
13604
|
+
*/
|
|
13605
|
+
public static encode(message: flyteidl.admin.IProjectAttributesGetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13606
|
+
|
|
13607
|
+
/**
|
|
13608
|
+
* Decodes a ProjectAttributesGetRequest message from the specified reader or buffer.
|
|
13609
|
+
* @param reader Reader or buffer to decode from
|
|
13610
|
+
* @param [length] Message length if known beforehand
|
|
13611
|
+
* @returns ProjectAttributesGetRequest
|
|
13612
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13613
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13614
|
+
*/
|
|
13615
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesGetRequest;
|
|
13616
|
+
|
|
13617
|
+
/**
|
|
13618
|
+
* Verifies a ProjectAttributesGetRequest message.
|
|
13619
|
+
* @param message Plain object to verify
|
|
13620
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13621
|
+
*/
|
|
13622
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13623
|
+
}
|
|
13624
|
+
|
|
13625
|
+
/** Properties of a ProjectAttributesGetResponse. */
|
|
13626
|
+
interface IProjectAttributesGetResponse {
|
|
13627
|
+
|
|
13628
|
+
/** ProjectAttributesGetResponse attributes */
|
|
13629
|
+
attributes?: (flyteidl.admin.IProjectAttributes|null);
|
|
13630
|
+
}
|
|
13631
|
+
|
|
13632
|
+
/** Represents a ProjectAttributesGetResponse. */
|
|
13633
|
+
class ProjectAttributesGetResponse implements IProjectAttributesGetResponse {
|
|
13634
|
+
|
|
13635
|
+
/**
|
|
13636
|
+
* Constructs a new ProjectAttributesGetResponse.
|
|
13637
|
+
* @param [properties] Properties to set
|
|
13638
|
+
*/
|
|
13639
|
+
constructor(properties?: flyteidl.admin.IProjectAttributesGetResponse);
|
|
13640
|
+
|
|
13641
|
+
/** ProjectAttributesGetResponse attributes. */
|
|
13642
|
+
public attributes?: (flyteidl.admin.IProjectAttributes|null);
|
|
13643
|
+
|
|
13644
|
+
/**
|
|
13645
|
+
* Creates a new ProjectAttributesGetResponse instance using the specified properties.
|
|
13646
|
+
* @param [properties] Properties to set
|
|
13647
|
+
* @returns ProjectAttributesGetResponse instance
|
|
13648
|
+
*/
|
|
13649
|
+
public static create(properties?: flyteidl.admin.IProjectAttributesGetResponse): flyteidl.admin.ProjectAttributesGetResponse;
|
|
13650
|
+
|
|
13651
|
+
/**
|
|
13652
|
+
* Encodes the specified ProjectAttributesGetResponse message. Does not implicitly {@link flyteidl.admin.ProjectAttributesGetResponse.verify|verify} messages.
|
|
13653
|
+
* @param message ProjectAttributesGetResponse message or plain object to encode
|
|
13654
|
+
* @param [writer] Writer to encode to
|
|
13655
|
+
* @returns Writer
|
|
13656
|
+
*/
|
|
13657
|
+
public static encode(message: flyteidl.admin.IProjectAttributesGetResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13658
|
+
|
|
13659
|
+
/**
|
|
13660
|
+
* Decodes a ProjectAttributesGetResponse message from the specified reader or buffer.
|
|
13661
|
+
* @param reader Reader or buffer to decode from
|
|
13662
|
+
* @param [length] Message length if known beforehand
|
|
13663
|
+
* @returns ProjectAttributesGetResponse
|
|
13664
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13665
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13666
|
+
*/
|
|
13667
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesGetResponse;
|
|
13668
|
+
|
|
13669
|
+
/**
|
|
13670
|
+
* Verifies a ProjectAttributesGetResponse message.
|
|
13671
|
+
* @param message Plain object to verify
|
|
13672
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13673
|
+
*/
|
|
13674
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13675
|
+
}
|
|
13676
|
+
|
|
13677
|
+
/** Properties of a ProjectAttributesDeleteRequest. */
|
|
13678
|
+
interface IProjectAttributesDeleteRequest {
|
|
13679
|
+
|
|
13680
|
+
/** ProjectAttributesDeleteRequest project */
|
|
13681
|
+
project?: (string|null);
|
|
13682
|
+
|
|
13683
|
+
/** ProjectAttributesDeleteRequest resourceType */
|
|
13684
|
+
resourceType?: (flyteidl.admin.MatchableResource|null);
|
|
13685
|
+
}
|
|
13686
|
+
|
|
13687
|
+
/** Represents a ProjectAttributesDeleteRequest. */
|
|
13688
|
+
class ProjectAttributesDeleteRequest implements IProjectAttributesDeleteRequest {
|
|
13689
|
+
|
|
13690
|
+
/**
|
|
13691
|
+
* Constructs a new ProjectAttributesDeleteRequest.
|
|
13692
|
+
* @param [properties] Properties to set
|
|
13693
|
+
*/
|
|
13694
|
+
constructor(properties?: flyteidl.admin.IProjectAttributesDeleteRequest);
|
|
13695
|
+
|
|
13696
|
+
/** ProjectAttributesDeleteRequest project. */
|
|
13697
|
+
public project: string;
|
|
13698
|
+
|
|
13699
|
+
/** ProjectAttributesDeleteRequest resourceType. */
|
|
13700
|
+
public resourceType: flyteidl.admin.MatchableResource;
|
|
13701
|
+
|
|
13702
|
+
/**
|
|
13703
|
+
* Creates a new ProjectAttributesDeleteRequest instance using the specified properties.
|
|
13704
|
+
* @param [properties] Properties to set
|
|
13705
|
+
* @returns ProjectAttributesDeleteRequest instance
|
|
13706
|
+
*/
|
|
13707
|
+
public static create(properties?: flyteidl.admin.IProjectAttributesDeleteRequest): flyteidl.admin.ProjectAttributesDeleteRequest;
|
|
13708
|
+
|
|
13709
|
+
/**
|
|
13710
|
+
* Encodes the specified ProjectAttributesDeleteRequest message. Does not implicitly {@link flyteidl.admin.ProjectAttributesDeleteRequest.verify|verify} messages.
|
|
13711
|
+
* @param message ProjectAttributesDeleteRequest message or plain object to encode
|
|
13712
|
+
* @param [writer] Writer to encode to
|
|
13713
|
+
* @returns Writer
|
|
13714
|
+
*/
|
|
13715
|
+
public static encode(message: flyteidl.admin.IProjectAttributesDeleteRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13716
|
+
|
|
13717
|
+
/**
|
|
13718
|
+
* Decodes a ProjectAttributesDeleteRequest message from the specified reader or buffer.
|
|
13719
|
+
* @param reader Reader or buffer to decode from
|
|
13720
|
+
* @param [length] Message length if known beforehand
|
|
13721
|
+
* @returns ProjectAttributesDeleteRequest
|
|
13722
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13723
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13724
|
+
*/
|
|
13725
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesDeleteRequest;
|
|
13726
|
+
|
|
13727
|
+
/**
|
|
13728
|
+
* Verifies a ProjectAttributesDeleteRequest message.
|
|
13729
|
+
* @param message Plain object to verify
|
|
13730
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13731
|
+
*/
|
|
13732
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13733
|
+
}
|
|
13734
|
+
|
|
13735
|
+
/** Properties of a ProjectAttributesDeleteResponse. */
|
|
13736
|
+
interface IProjectAttributesDeleteResponse {
|
|
13737
|
+
}
|
|
13738
|
+
|
|
13739
|
+
/** Represents a ProjectAttributesDeleteResponse. */
|
|
13740
|
+
class ProjectAttributesDeleteResponse implements IProjectAttributesDeleteResponse {
|
|
13741
|
+
|
|
13742
|
+
/**
|
|
13743
|
+
* Constructs a new ProjectAttributesDeleteResponse.
|
|
13744
|
+
* @param [properties] Properties to set
|
|
13745
|
+
*/
|
|
13746
|
+
constructor(properties?: flyteidl.admin.IProjectAttributesDeleteResponse);
|
|
13747
|
+
|
|
13748
|
+
/**
|
|
13749
|
+
* Creates a new ProjectAttributesDeleteResponse instance using the specified properties.
|
|
13750
|
+
* @param [properties] Properties to set
|
|
13751
|
+
* @returns ProjectAttributesDeleteResponse instance
|
|
13752
|
+
*/
|
|
13753
|
+
public static create(properties?: flyteidl.admin.IProjectAttributesDeleteResponse): flyteidl.admin.ProjectAttributesDeleteResponse;
|
|
13754
|
+
|
|
13755
|
+
/**
|
|
13756
|
+
* Encodes the specified ProjectAttributesDeleteResponse message. Does not implicitly {@link flyteidl.admin.ProjectAttributesDeleteResponse.verify|verify} messages.
|
|
13757
|
+
* @param message ProjectAttributesDeleteResponse message or plain object to encode
|
|
13758
|
+
* @param [writer] Writer to encode to
|
|
13759
|
+
* @returns Writer
|
|
13760
|
+
*/
|
|
13761
|
+
public static encode(message: flyteidl.admin.IProjectAttributesDeleteResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
13762
|
+
|
|
13763
|
+
/**
|
|
13764
|
+
* Decodes a ProjectAttributesDeleteResponse message from the specified reader or buffer.
|
|
13765
|
+
* @param reader Reader or buffer to decode from
|
|
13766
|
+
* @param [length] Message length if known beforehand
|
|
13767
|
+
* @returns ProjectAttributesDeleteResponse
|
|
13768
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
13769
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
13770
|
+
*/
|
|
13771
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.ProjectAttributesDeleteResponse;
|
|
13772
|
+
|
|
13773
|
+
/**
|
|
13774
|
+
* Verifies a ProjectAttributesDeleteResponse message.
|
|
13775
|
+
* @param message Plain object to verify
|
|
13776
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
13777
|
+
*/
|
|
13778
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
13779
|
+
}
|
|
13780
|
+
|
|
13597
13781
|
/** Properties of a ProjectDomainAttributes. */
|
|
13598
13782
|
interface IProjectDomainAttributes {
|
|
13599
13783
|
|
|
@@ -16297,6 +16481,48 @@ export namespace flyteidl {
|
|
|
16297
16481
|
*/
|
|
16298
16482
|
public deleteProjectDomainAttributes(request: flyteidl.admin.IProjectDomainAttributesDeleteRequest): Promise<flyteidl.admin.ProjectDomainAttributesDeleteResponse>;
|
|
16299
16483
|
|
|
16484
|
+
/**
|
|
16485
|
+
* Calls UpdateProjectAttributes.
|
|
16486
|
+
* @param request ProjectAttributesUpdateRequest message or plain object
|
|
16487
|
+
* @param callback Node-style callback called with the error, if any, and ProjectAttributesUpdateResponse
|
|
16488
|
+
*/
|
|
16489
|
+
public updateProjectAttributes(request: flyteidl.admin.IProjectAttributesUpdateRequest, callback: flyteidl.service.AdminService.UpdateProjectAttributesCallback): void;
|
|
16490
|
+
|
|
16491
|
+
/**
|
|
16492
|
+
* Calls UpdateProjectAttributes.
|
|
16493
|
+
* @param request ProjectAttributesUpdateRequest message or plain object
|
|
16494
|
+
* @returns Promise
|
|
16495
|
+
*/
|
|
16496
|
+
public updateProjectAttributes(request: flyteidl.admin.IProjectAttributesUpdateRequest): Promise<flyteidl.admin.ProjectAttributesUpdateResponse>;
|
|
16497
|
+
|
|
16498
|
+
/**
|
|
16499
|
+
* Calls GetProjectAttributes.
|
|
16500
|
+
* @param request ProjectAttributesGetRequest message or plain object
|
|
16501
|
+
* @param callback Node-style callback called with the error, if any, and ProjectAttributesGetResponse
|
|
16502
|
+
*/
|
|
16503
|
+
public getProjectAttributes(request: flyteidl.admin.IProjectAttributesGetRequest, callback: flyteidl.service.AdminService.GetProjectAttributesCallback): void;
|
|
16504
|
+
|
|
16505
|
+
/**
|
|
16506
|
+
* Calls GetProjectAttributes.
|
|
16507
|
+
* @param request ProjectAttributesGetRequest message or plain object
|
|
16508
|
+
* @returns Promise
|
|
16509
|
+
*/
|
|
16510
|
+
public getProjectAttributes(request: flyteidl.admin.IProjectAttributesGetRequest): Promise<flyteidl.admin.ProjectAttributesGetResponse>;
|
|
16511
|
+
|
|
16512
|
+
/**
|
|
16513
|
+
* Calls DeleteProjectAttributes.
|
|
16514
|
+
* @param request ProjectAttributesDeleteRequest message or plain object
|
|
16515
|
+
* @param callback Node-style callback called with the error, if any, and ProjectAttributesDeleteResponse
|
|
16516
|
+
*/
|
|
16517
|
+
public deleteProjectAttributes(request: flyteidl.admin.IProjectAttributesDeleteRequest, callback: flyteidl.service.AdminService.DeleteProjectAttributesCallback): void;
|
|
16518
|
+
|
|
16519
|
+
/**
|
|
16520
|
+
* Calls DeleteProjectAttributes.
|
|
16521
|
+
* @param request ProjectAttributesDeleteRequest message or plain object
|
|
16522
|
+
* @returns Promise
|
|
16523
|
+
*/
|
|
16524
|
+
public deleteProjectAttributes(request: flyteidl.admin.IProjectAttributesDeleteRequest): Promise<flyteidl.admin.ProjectAttributesDeleteResponse>;
|
|
16525
|
+
|
|
16300
16526
|
/**
|
|
16301
16527
|
* Calls UpdateWorkflowAttributes.
|
|
16302
16528
|
* @param request WorkflowAttributesUpdateRequest message or plain object
|
|
@@ -16685,6 +16911,27 @@ export namespace flyteidl {
|
|
|
16685
16911
|
*/
|
|
16686
16912
|
type DeleteProjectDomainAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectDomainAttributesDeleteResponse) => void;
|
|
16687
16913
|
|
|
16914
|
+
/**
|
|
16915
|
+
* Callback as used by {@link flyteidl.service.AdminService#updateProjectAttributes}.
|
|
16916
|
+
* @param error Error, if any
|
|
16917
|
+
* @param [response] ProjectAttributesUpdateResponse
|
|
16918
|
+
*/
|
|
16919
|
+
type UpdateProjectAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectAttributesUpdateResponse) => void;
|
|
16920
|
+
|
|
16921
|
+
/**
|
|
16922
|
+
* Callback as used by {@link flyteidl.service.AdminService#getProjectAttributes}.
|
|
16923
|
+
* @param error Error, if any
|
|
16924
|
+
* @param [response] ProjectAttributesGetResponse
|
|
16925
|
+
*/
|
|
16926
|
+
type GetProjectAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectAttributesGetResponse) => void;
|
|
16927
|
+
|
|
16928
|
+
/**
|
|
16929
|
+
* Callback as used by {@link flyteidl.service.AdminService#deleteProjectAttributes}.
|
|
16930
|
+
* @param error Error, if any
|
|
16931
|
+
* @param [response] ProjectAttributesDeleteResponse
|
|
16932
|
+
*/
|
|
16933
|
+
type DeleteProjectAttributesCallback = (error: (Error|null), response?: flyteidl.admin.ProjectAttributesDeleteResponse) => void;
|
|
16934
|
+
|
|
16688
16935
|
/**
|
|
16689
16936
|
* Callback as used by {@link flyteidl.service.AdminService#updateWorkflowAttributes}.
|
|
16690
16937
|
* @param error Error, if any
|