system-initiative-api-client 1.9.0 → 1.10.0

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/dist/cjs/api.d.ts CHANGED
@@ -202,6 +202,43 @@ export interface ApiSuccessString {
202
202
  */
203
203
  'data': string;
204
204
  }
205
+ /**
206
+ *
207
+ * @export
208
+ * @interface AttributeArgumentBindingRequest
209
+ */
210
+ export interface AttributeArgumentBindingRequest {
211
+ /**
212
+ * Element type for Array arguments. Required when kind is \'Array\'. Specifies the type of array elements.
213
+ * @type {string}
214
+ * @memberof AttributeArgumentBindingRequest
215
+ */
216
+ 'elementKind'?: string | null;
217
+ /**
218
+ * Type of the argument. Valid values: \"Any\", \"Array\", \"Boolean\", \"Float\", \"Integer\", \"Json\", \"Map\", \"Object\", \"String\". Use \'Array\' with element_kind for typed arrays.
219
+ * @type {string}
220
+ * @memberof AttributeArgumentBindingRequest
221
+ */
222
+ 'kind': string;
223
+ /**
224
+ * Name of the function argument (e.g., \"instanceType\", \"region\", \"tags\")
225
+ * @type {string}
226
+ * @memberof AttributeArgumentBindingRequest
227
+ */
228
+ 'name': string;
229
+ /**
230
+ * Prop ID to bind this argument to. Either prop_id or static_value must be provided.
231
+ * @type {string}
232
+ * @memberof AttributeArgumentBindingRequest
233
+ */
234
+ 'propId'?: string | null;
235
+ /**
236
+ *
237
+ * @type {any}
238
+ * @memberof AttributeArgumentBindingRequest
239
+ */
240
+ 'staticValue'?: any;
241
+ }
205
242
  /**
206
243
  *
207
244
  * @export
@@ -717,6 +754,50 @@ export interface CreateSecretV1Response {
717
754
  */
718
755
  'secret': SecretV1;
719
756
  }
757
+ /**
758
+ *
759
+ * @export
760
+ * @interface CreateTransformationFuncV1Request
761
+ */
762
+ export interface CreateTransformationFuncV1Request {
763
+ /**
764
+ *
765
+ * @type {string}
766
+ * @memberof CreateTransformationFuncV1Request
767
+ */
768
+ 'code': string;
769
+ /**
770
+ *
771
+ * @type {string}
772
+ * @memberof CreateTransformationFuncV1Request
773
+ */
774
+ 'description'?: string | null;
775
+ /**
776
+ *
777
+ * @type {string}
778
+ * @memberof CreateTransformationFuncV1Request
779
+ */
780
+ 'displayName'?: string | null;
781
+ /**
782
+ *
783
+ * @type {string}
784
+ * @memberof CreateTransformationFuncV1Request
785
+ */
786
+ 'name': string;
787
+ }
788
+ /**
789
+ *
790
+ * @export
791
+ * @interface CreateTransformationFuncV1Response
792
+ */
793
+ export interface CreateTransformationFuncV1Response {
794
+ /**
795
+ *
796
+ * @type {string}
797
+ * @memberof CreateTransformationFuncV1Response
798
+ */
799
+ 'funcId': string;
800
+ }
720
801
  /**
721
802
  *
722
803
  * @export
@@ -753,6 +834,12 @@ export interface CreateVariantActionFuncV1Request {
753
834
  * @memberof CreateVariantActionFuncV1Request
754
835
  */
755
836
  'name': string;
837
+ /**
838
+ *
839
+ * @type {boolean}
840
+ * @memberof CreateVariantActionFuncV1Request
841
+ */
842
+ 'skipOverlay'?: boolean | null;
756
843
  }
757
844
  /**
758
845
  *
@@ -767,6 +854,80 @@ export interface CreateVariantActionFuncV1Response {
767
854
  */
768
855
  'funcId': string;
769
856
  }
857
+ /**
858
+ *
859
+ * @export
860
+ * @interface CreateVariantAttributeFuncV1Request
861
+ */
862
+ export interface CreateVariantAttributeFuncV1Request {
863
+ /**
864
+ * Function arguments with their bindings (input sources). Each argument defines its type and where its value comes from.
865
+ * @type {Array<AttributeArgumentBindingRequest>}
866
+ * @memberof CreateVariantAttributeFuncV1Request
867
+ */
868
+ 'argumentBindings': Array<AttributeArgumentBindingRequest>;
869
+ /**
870
+ * TypeScript code for the function. Should export a main function that takes arguments and returns a value.
871
+ * @type {string}
872
+ * @memberof CreateVariantAttributeFuncV1Request
873
+ */
874
+ 'code': string;
875
+ /**
876
+ * Optional component ID for component-level bindings. If not provided, creates a schema variant-level binding.
877
+ * @type {string}
878
+ * @memberof CreateVariantAttributeFuncV1Request
879
+ */
880
+ 'componentId'?: string | null;
881
+ /**
882
+ * Description of what the function does
883
+ * @type {string}
884
+ * @memberof CreateVariantAttributeFuncV1Request
885
+ */
886
+ 'description'?: string | null;
887
+ /**
888
+ * Human-readable display name
889
+ * @type {string}
890
+ * @memberof CreateVariantAttributeFuncV1Request
891
+ */
892
+ 'displayName'?: string | null;
893
+ /**
894
+ * Unique name for the function (e.g., \"awsEC2SetInstanceType\")
895
+ * @type {string}
896
+ * @memberof CreateVariantAttributeFuncV1Request
897
+ */
898
+ 'name': string;
899
+ /**
900
+ * Prop ID where the function output will be written (required)
901
+ * @type {string}
902
+ * @memberof CreateVariantAttributeFuncV1Request
903
+ */
904
+ 'propId': string;
905
+ /**
906
+ *
907
+ * @type {boolean}
908
+ * @memberof CreateVariantAttributeFuncV1Request
909
+ */
910
+ 'skipOverlay'?: boolean | null;
911
+ }
912
+ /**
913
+ *
914
+ * @export
915
+ * @interface CreateVariantAttributeFuncV1Response
916
+ */
917
+ export interface CreateVariantAttributeFuncV1Response {
918
+ /**
919
+ *
920
+ * @type {string}
921
+ * @memberof CreateVariantAttributeFuncV1Response
922
+ */
923
+ 'attributePrototypeId': string;
924
+ /**
925
+ *
926
+ * @type {string}
927
+ * @memberof CreateVariantAttributeFuncV1Response
928
+ */
929
+ 'funcId': string;
930
+ }
770
931
  /**
771
932
  *
772
933
  * @export
@@ -841,6 +1002,12 @@ export interface CreateVariantCodegenFuncV1Request {
841
1002
  * @memberof CreateVariantCodegenFuncV1Request
842
1003
  */
843
1004
  'name': string;
1005
+ /**
1006
+ *
1007
+ * @type {boolean}
1008
+ * @memberof CreateVariantCodegenFuncV1Request
1009
+ */
1010
+ 'skipOverlay'?: boolean | null;
844
1011
  }
845
1012
  /**
846
1013
  *
@@ -885,6 +1052,12 @@ export interface CreateVariantManagementFuncV1Request {
885
1052
  * @memberof CreateVariantManagementFuncV1Request
886
1053
  */
887
1054
  'name': string;
1055
+ /**
1056
+ *
1057
+ * @type {boolean}
1058
+ * @memberof CreateVariantManagementFuncV1Request
1059
+ */
1060
+ 'skipOverlay'?: boolean | null;
888
1061
  }
889
1062
  /**
890
1063
  *
@@ -929,6 +1102,12 @@ export interface CreateVariantQualificationFuncV1Request {
929
1102
  * @memberof CreateVariantQualificationFuncV1Request
930
1103
  */
931
1104
  'name': string;
1105
+ /**
1106
+ *
1107
+ * @type {boolean}
1108
+ * @memberof CreateVariantQualificationFuncV1Request
1109
+ */
1110
+ 'skipOverlay'?: boolean | null;
932
1111
  }
933
1112
  /**
934
1113
  *
@@ -5561,6 +5740,16 @@ export declare class DebugFuncsApi extends BaseAPI implements DebugFuncsApiInter
5561
5740
  * @export
5562
5741
  */
5563
5742
  export declare const FuncsApiAxiosParamCreator: (configuration?: Configuration) => {
5743
+ /**
5744
+ *
5745
+ * @summary Create a transformation function
5746
+ * @param {string} workspaceId Workspace identifier
5747
+ * @param {string} changeSetId Change Set identifier
5748
+ * @param {CreateTransformationFuncV1Request} createTransformationFuncV1Request
5749
+ * @param {*} [options] Override http request option.
5750
+ * @throws {RequiredError}
5751
+ */
5752
+ createTransformation: (workspaceId: string, changeSetId: string, createTransformationFuncV1Request: CreateTransformationFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5564
5753
  /**
5565
5754
  *
5566
5755
  * @summary Get function details
@@ -5609,6 +5798,16 @@ export declare const FuncsApiAxiosParamCreator: (configuration?: Configuration)
5609
5798
  * @export
5610
5799
  */
5611
5800
  export declare const FuncsApiFp: (configuration?: Configuration) => {
5801
+ /**
5802
+ *
5803
+ * @summary Create a transformation function
5804
+ * @param {string} workspaceId Workspace identifier
5805
+ * @param {string} changeSetId Change Set identifier
5806
+ * @param {CreateTransformationFuncV1Request} createTransformationFuncV1Request
5807
+ * @param {*} [options] Override http request option.
5808
+ * @throws {RequiredError}
5809
+ */
5810
+ createTransformation(workspaceId: string, changeSetId: string, createTransformationFuncV1Request: CreateTransformationFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateTransformationFuncV1Response>>;
5612
5811
  /**
5613
5812
  *
5614
5813
  * @summary Get function details
@@ -5657,6 +5856,14 @@ export declare const FuncsApiFp: (configuration?: Configuration) => {
5657
5856
  * @export
5658
5857
  */
5659
5858
  export declare const FuncsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5859
+ /**
5860
+ *
5861
+ * @summary Create a transformation function
5862
+ * @param {FuncsApiCreateTransformationRequest} requestParameters Request parameters.
5863
+ * @param {*} [options] Override http request option.
5864
+ * @throws {RequiredError}
5865
+ */
5866
+ createTransformation(requestParameters: FuncsApiCreateTransformationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateTransformationFuncV1Response>;
5660
5867
  /**
5661
5868
  *
5662
5869
  * @summary Get function details
@@ -5696,6 +5903,15 @@ export declare const FuncsApiFactory: (configuration?: Configuration, basePath?:
5696
5903
  * @interface FuncsApi
5697
5904
  */
5698
5905
  export interface FuncsApiInterface {
5906
+ /**
5907
+ *
5908
+ * @summary Create a transformation function
5909
+ * @param {FuncsApiCreateTransformationRequest} requestParameters Request parameters.
5910
+ * @param {*} [options] Override http request option.
5911
+ * @throws {RequiredError}
5912
+ * @memberof FuncsApiInterface
5913
+ */
5914
+ createTransformation(requestParameters: FuncsApiCreateTransformationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateTransformationFuncV1Response>;
5699
5915
  /**
5700
5916
  *
5701
5917
  * @summary Get function details
@@ -5733,6 +5949,31 @@ export interface FuncsApiInterface {
5733
5949
  */
5734
5950
  updateFunc(requestParameters: FuncsApiUpdateFuncRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateFuncV1Response>;
5735
5951
  }
5952
+ /**
5953
+ * Request parameters for createTransformation operation in FuncsApi.
5954
+ * @export
5955
+ * @interface FuncsApiCreateTransformationRequest
5956
+ */
5957
+ export interface FuncsApiCreateTransformationRequest {
5958
+ /**
5959
+ * Workspace identifier
5960
+ * @type {string}
5961
+ * @memberof FuncsApiCreateTransformation
5962
+ */
5963
+ readonly workspaceId: string;
5964
+ /**
5965
+ * Change Set identifier
5966
+ * @type {string}
5967
+ * @memberof FuncsApiCreateTransformation
5968
+ */
5969
+ readonly changeSetId: string;
5970
+ /**
5971
+ *
5972
+ * @type {CreateTransformationFuncV1Request}
5973
+ * @memberof FuncsApiCreateTransformation
5974
+ */
5975
+ readonly createTransformationFuncV1Request: CreateTransformationFuncV1Request;
5976
+ }
5736
5977
  /**
5737
5978
  * Request parameters for getFunc operation in FuncsApi.
5738
5979
  * @export
@@ -5852,6 +6093,15 @@ export interface FuncsApiUpdateFuncRequest {
5852
6093
  * @extends {BaseAPI}
5853
6094
  */
5854
6095
  export declare class FuncsApi extends BaseAPI implements FuncsApiInterface {
6096
+ /**
6097
+ *
6098
+ * @summary Create a transformation function
6099
+ * @param {FuncsApiCreateTransformationRequest} requestParameters Request parameters.
6100
+ * @param {*} [options] Override http request option.
6101
+ * @throws {RequiredError}
6102
+ * @memberof FuncsApi
6103
+ */
6104
+ createTransformation(requestParameters: FuncsApiCreateTransformationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateTransformationFuncV1Response, any, {}>>;
5855
6105
  /**
5856
6106
  *
5857
6107
  * @summary Get function details
@@ -6085,6 +6335,18 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
6085
6335
  * @throws {RequiredError}
6086
6336
  */
6087
6337
  createVariantAction: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantActionFuncV1Request: CreateVariantActionFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6338
+ /**
6339
+ *
6340
+ * @summary Create an attribute function and attach to a schema variant
6341
+ * @param {string} workspaceId Workspace identifier
6342
+ * @param {string} changeSetId Change Set identifier
6343
+ * @param {string} schemaId Schema identifier
6344
+ * @param {string} schemaVariantId Schema variant identifier
6345
+ * @param {CreateVariantAttributeFuncV1Request} createVariantAttributeFuncV1Request
6346
+ * @param {*} [options] Override http request option.
6347
+ * @throws {RequiredError}
6348
+ */
6349
+ createVariantAttribute: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantAttributeFuncV1Request: CreateVariantAttributeFuncV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6088
6350
  /**
6089
6351
  *
6090
6352
  * @summary Create an authentication function and attach to a schema variant
@@ -6145,6 +6407,18 @@ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration
6145
6407
  * @throws {RequiredError}
6146
6408
  */
6147
6409
  detachActionFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6410
+ /**
6411
+ *
6412
+ * @summary Delete the binding between an attribute func and the schema variant
6413
+ * @param {string} workspaceId Workspace identifier
6414
+ * @param {string} changeSetId Change Set identifier
6415
+ * @param {string} schemaId Schema identifier
6416
+ * @param {string} schemaVariantId Schema variant identifier
6417
+ * @param {string} funcId Func identifier
6418
+ * @param {*} [options] Override http request option.
6419
+ * @throws {RequiredError}
6420
+ */
6421
+ detachAttributeFuncBinding: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6148
6422
  /**
6149
6423
  *
6150
6424
  * @summary Delete the binding between an authentication func and the schema variant
@@ -6316,6 +6590,18 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
6316
6590
  * @throws {RequiredError}
6317
6591
  */
6318
6592
  createVariantAction(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantActionFuncV1Request: CreateVariantActionFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVariantActionFuncV1Response>>;
6593
+ /**
6594
+ *
6595
+ * @summary Create an attribute function and attach to a schema variant
6596
+ * @param {string} workspaceId Workspace identifier
6597
+ * @param {string} changeSetId Change Set identifier
6598
+ * @param {string} schemaId Schema identifier
6599
+ * @param {string} schemaVariantId Schema variant identifier
6600
+ * @param {CreateVariantAttributeFuncV1Request} createVariantAttributeFuncV1Request
6601
+ * @param {*} [options] Override http request option.
6602
+ * @throws {RequiredError}
6603
+ */
6604
+ createVariantAttribute(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, createVariantAttributeFuncV1Request: CreateVariantAttributeFuncV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateVariantAttributeFuncV1Response>>;
6319
6605
  /**
6320
6606
  *
6321
6607
  * @summary Create an authentication function and attach to a schema variant
@@ -6376,6 +6662,18 @@ export declare const SchemasApiFp: (configuration?: Configuration) => {
6376
6662
  * @throws {RequiredError}
6377
6663
  */
6378
6664
  detachActionFuncBinding(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetachFuncBindingV1Response>>;
6665
+ /**
6666
+ *
6667
+ * @summary Delete the binding between an attribute func and the schema variant
6668
+ * @param {string} workspaceId Workspace identifier
6669
+ * @param {string} changeSetId Change Set identifier
6670
+ * @param {string} schemaId Schema identifier
6671
+ * @param {string} schemaVariantId Schema variant identifier
6672
+ * @param {string} funcId Func identifier
6673
+ * @param {*} [options] Override http request option.
6674
+ * @throws {RequiredError}
6675
+ */
6676
+ detachAttributeFuncBinding(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetachFuncBindingV1Response>>;
6379
6677
  /**
6380
6678
  *
6381
6679
  * @summary Delete the binding between an authentication func and the schema variant
@@ -6541,6 +6839,14 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
6541
6839
  * @throws {RequiredError}
6542
6840
  */
6543
6841
  createVariantAction(requestParameters: SchemasApiCreateVariantActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantActionFuncV1Response>;
6842
+ /**
6843
+ *
6844
+ * @summary Create an attribute function and attach to a schema variant
6845
+ * @param {SchemasApiCreateVariantAttributeRequest} requestParameters Request parameters.
6846
+ * @param {*} [options] Override http request option.
6847
+ * @throws {RequiredError}
6848
+ */
6849
+ createVariantAttribute(requestParameters: SchemasApiCreateVariantAttributeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantAttributeFuncV1Response>;
6544
6850
  /**
6545
6851
  *
6546
6852
  * @summary Create an authentication function and attach to a schema variant
@@ -6581,6 +6887,14 @@ export declare const SchemasApiFactory: (configuration?: Configuration, basePath
6581
6887
  * @throws {RequiredError}
6582
6888
  */
6583
6889
  detachActionFuncBinding(requestParameters: SchemasApiDetachActionFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
6890
+ /**
6891
+ *
6892
+ * @summary Delete the binding between an attribute func and the schema variant
6893
+ * @param {SchemasApiDetachAttributeFuncBindingRequest} requestParameters Request parameters.
6894
+ * @param {*} [options] Override http request option.
6895
+ * @throws {RequiredError}
6896
+ */
6897
+ detachAttributeFuncBinding(requestParameters: SchemasApiDetachAttributeFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
6584
6898
  /**
6585
6899
  *
6586
6900
  * @summary Delete the binding between an authentication func and the schema variant
@@ -6710,6 +7024,15 @@ export interface SchemasApiInterface {
6710
7024
  * @memberof SchemasApiInterface
6711
7025
  */
6712
7026
  createVariantAction(requestParameters: SchemasApiCreateVariantActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantActionFuncV1Response>;
7027
+ /**
7028
+ *
7029
+ * @summary Create an attribute function and attach to a schema variant
7030
+ * @param {SchemasApiCreateVariantAttributeRequest} requestParameters Request parameters.
7031
+ * @param {*} [options] Override http request option.
7032
+ * @throws {RequiredError}
7033
+ * @memberof SchemasApiInterface
7034
+ */
7035
+ createVariantAttribute(requestParameters: SchemasApiCreateVariantAttributeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateVariantAttributeFuncV1Response>;
6713
7036
  /**
6714
7037
  *
6715
7038
  * @summary Create an authentication function and attach to a schema variant
@@ -6755,6 +7078,15 @@ export interface SchemasApiInterface {
6755
7078
  * @memberof SchemasApiInterface
6756
7079
  */
6757
7080
  detachActionFuncBinding(requestParameters: SchemasApiDetachActionFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
7081
+ /**
7082
+ *
7083
+ * @summary Delete the binding between an attribute func and the schema variant
7084
+ * @param {SchemasApiDetachAttributeFuncBindingRequest} requestParameters Request parameters.
7085
+ * @param {*} [options] Override http request option.
7086
+ * @throws {RequiredError}
7087
+ * @memberof SchemasApiInterface
7088
+ */
7089
+ detachAttributeFuncBinding(requestParameters: SchemasApiDetachAttributeFuncBindingRequest, options?: RawAxiosRequestConfig): AxiosPromise<DetachFuncBindingV1Response>;
6758
7090
  /**
6759
7091
  *
6760
7092
  * @summary Delete the binding between an authentication func and the schema variant
@@ -6935,6 +7267,43 @@ export interface SchemasApiCreateVariantActionRequest {
6935
7267
  */
6936
7268
  readonly createVariantActionFuncV1Request: CreateVariantActionFuncV1Request;
6937
7269
  }
7270
+ /**
7271
+ * Request parameters for createVariantAttribute operation in SchemasApi.
7272
+ * @export
7273
+ * @interface SchemasApiCreateVariantAttributeRequest
7274
+ */
7275
+ export interface SchemasApiCreateVariantAttributeRequest {
7276
+ /**
7277
+ * Workspace identifier
7278
+ * @type {string}
7279
+ * @memberof SchemasApiCreateVariantAttribute
7280
+ */
7281
+ readonly workspaceId: string;
7282
+ /**
7283
+ * Change Set identifier
7284
+ * @type {string}
7285
+ * @memberof SchemasApiCreateVariantAttribute
7286
+ */
7287
+ readonly changeSetId: string;
7288
+ /**
7289
+ * Schema identifier
7290
+ * @type {string}
7291
+ * @memberof SchemasApiCreateVariantAttribute
7292
+ */
7293
+ readonly schemaId: string;
7294
+ /**
7295
+ * Schema variant identifier
7296
+ * @type {string}
7297
+ * @memberof SchemasApiCreateVariantAttribute
7298
+ */
7299
+ readonly schemaVariantId: string;
7300
+ /**
7301
+ *
7302
+ * @type {CreateVariantAttributeFuncV1Request}
7303
+ * @memberof SchemasApiCreateVariantAttribute
7304
+ */
7305
+ readonly createVariantAttributeFuncV1Request: CreateVariantAttributeFuncV1Request;
7306
+ }
6938
7307
  /**
6939
7308
  * Request parameters for createVariantAuthentication operation in SchemasApi.
6940
7309
  * @export
@@ -7120,6 +7489,43 @@ export interface SchemasApiDetachActionFuncBindingRequest {
7120
7489
  */
7121
7490
  readonly funcId: string;
7122
7491
  }
7492
+ /**
7493
+ * Request parameters for detachAttributeFuncBinding operation in SchemasApi.
7494
+ * @export
7495
+ * @interface SchemasApiDetachAttributeFuncBindingRequest
7496
+ */
7497
+ export interface SchemasApiDetachAttributeFuncBindingRequest {
7498
+ /**
7499
+ * Workspace identifier
7500
+ * @type {string}
7501
+ * @memberof SchemasApiDetachAttributeFuncBinding
7502
+ */
7503
+ readonly workspaceId: string;
7504
+ /**
7505
+ * Change Set identifier
7506
+ * @type {string}
7507
+ * @memberof SchemasApiDetachAttributeFuncBinding
7508
+ */
7509
+ readonly changeSetId: string;
7510
+ /**
7511
+ * Schema identifier
7512
+ * @type {string}
7513
+ * @memberof SchemasApiDetachAttributeFuncBinding
7514
+ */
7515
+ readonly schemaId: string;
7516
+ /**
7517
+ * Schema variant identifier
7518
+ * @type {string}
7519
+ * @memberof SchemasApiDetachAttributeFuncBinding
7520
+ */
7521
+ readonly schemaVariantId: string;
7522
+ /**
7523
+ * Func identifier
7524
+ * @type {string}
7525
+ * @memberof SchemasApiDetachAttributeFuncBinding
7526
+ */
7527
+ readonly funcId: string;
7528
+ }
7123
7529
  /**
7124
7530
  * Request parameters for detachAuthenticationFuncBinding operation in SchemasApi.
7125
7531
  * @export
@@ -7548,6 +7954,15 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
7548
7954
  * @memberof SchemasApi
7549
7955
  */
7550
7956
  createVariantAction(requestParameters: SchemasApiCreateVariantActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVariantActionFuncV1Response, any, {}>>;
7957
+ /**
7958
+ *
7959
+ * @summary Create an attribute function and attach to a schema variant
7960
+ * @param {SchemasApiCreateVariantAttributeRequest} requestParameters Request parameters.
7961
+ * @param {*} [options] Override http request option.
7962
+ * @throws {RequiredError}
7963
+ * @memberof SchemasApi
7964
+ */
7965
+ createVariantAttribute(requestParameters: SchemasApiCreateVariantAttributeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateVariantAttributeFuncV1Response, any, {}>>;
7551
7966
  /**
7552
7967
  *
7553
7968
  * @summary Create an authentication function and attach to a schema variant
@@ -7593,6 +8008,15 @@ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
7593
8008
  * @memberof SchemasApi
7594
8009
  */
7595
8010
  detachActionFuncBinding(requestParameters: SchemasApiDetachActionFuncBindingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachFuncBindingV1Response, any, {}>>;
8011
+ /**
8012
+ *
8013
+ * @summary Delete the binding between an attribute func and the schema variant
8014
+ * @param {SchemasApiDetachAttributeFuncBindingRequest} requestParameters Request parameters.
8015
+ * @param {*} [options] Override http request option.
8016
+ * @throws {RequiredError}
8017
+ * @memberof SchemasApi
8018
+ */
8019
+ detachAttributeFuncBinding(requestParameters: SchemasApiDetachAttributeFuncBindingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachFuncBindingV1Response, any, {}>>;
7596
8020
  /**
7597
8021
  *
7598
8022
  * @summary Delete the binding between an authentication func and the schema variant