@@ -6554,6 +6554,22 @@ components:
6554
6554
- status
6555
6555
title : BaseInfoResponse
6556
6556
description : Base info serializer for responses.
6557
+ BulkAction :
6558
+ type : string
6559
+ enum :
6560
+ - create
6561
+ - delete
6562
+ - update
6563
+ title : BulkAction
6564
+ description : Bulk Action to be performed on the used model.
6565
+ BulkActionOnExistence :
6566
+ type : string
6567
+ enum :
6568
+ - fail
6569
+ - skip
6570
+ - overwrite
6571
+ title : BulkActionOnExistence
6572
+ description : Bulk Action to be taken if the entity already exists or not.
6557
6573
ClearTaskInstancesBody :
6558
6574
properties :
6559
6575
dry_run :
@@ -6847,24 +6863,17 @@ components:
6847
6863
ConnectionBulkCreateAction :
6848
6864
properties :
6849
6865
action :
6850
- type : string
6851
- const : create
6852
- title : Action
6866
+ $ref : ' #/components/schemas/BulkAction'
6853
6867
default : create
6868
+ action_on_existence :
6869
+ $ref : ' #/components/schemas/BulkActionOnExistence'
6870
+ default : fail
6854
6871
connections :
6855
6872
items :
6856
6873
$ref : ' #/components/schemas/ConnectionBody'
6857
6874
type : array
6858
6875
title : Connections
6859
6876
description : A list of connections to be created.
6860
- action_if_exists :
6861
- type : string
6862
- enum :
6863
- - skip
6864
- - overwrite
6865
- - fail
6866
- title : Action If Exists
6867
- default : fail
6868
6877
type : object
6869
6878
required :
6870
6879
- connections
@@ -6873,23 +6882,17 @@ components:
6873
6882
ConnectionBulkDeleteAction :
6874
6883
properties :
6875
6884
action :
6876
- type : string
6877
- const : delete
6878
- title : Action
6885
+ $ref : ' #/components/schemas/BulkAction'
6879
6886
default : delete
6887
+ action_on_existence :
6888
+ $ref : ' #/components/schemas/BulkActionOnExistence'
6889
+ default : fail
6880
6890
connection_ids :
6881
6891
items :
6882
6892
type : string
6883
6893
type : array
6884
6894
title : Connection Ids
6885
6895
description : A list of connection IDs to be deleted.
6886
- action_if_not_exists :
6887
- type : string
6888
- enum :
6889
- - skip
6890
- - fail
6891
- title : Action If Not Exists
6892
- default : fail
6893
6896
type : object
6894
6897
required :
6895
6898
- connection_ids
@@ -6931,23 +6934,17 @@ components:
6931
6934
ConnectionBulkUpdateAction :
6932
6935
properties :
6933
6936
action :
6934
- type : string
6935
- const : update
6936
- title : Action
6937
+ $ref : ' #/components/schemas/BulkAction'
6937
6938
default : update
6939
+ action_on_existence :
6940
+ $ref : ' #/components/schemas/BulkActionOnExistence'
6941
+ default : fail
6938
6942
connections :
6939
6943
items :
6940
6944
$ref : ' #/components/schemas/ConnectionBody'
6941
6945
type : array
6942
6946
title : Connections
6943
6947
description : A list of connections to be updated.
6944
- action_if_not_exists :
6945
- type : string
6946
- enum :
6947
- - skip
6948
- - fail
6949
- title : Action If Not Exists
6950
- default : fail
6951
6948
type : object
6952
6949
required :
6953
6950
- connections
@@ -9969,24 +9966,17 @@ components:
9969
9966
VariableBulkCreateAction :
9970
9967
properties :
9971
9968
action :
9972
- type : string
9973
- const : create
9974
- title : Action
9969
+ $ref : ' #/components/schemas/BulkAction'
9975
9970
default : create
9971
+ action_on_existence :
9972
+ $ref : ' #/components/schemas/BulkActionOnExistence'
9973
+ default : fail
9976
9974
variables :
9977
9975
items :
9978
9976
$ref : ' #/components/schemas/VariableBody'
9979
9977
type : array
9980
9978
title : Variables
9981
9979
description : A list of variables to be created.
9982
- action_if_exists :
9983
- type : string
9984
- enum :
9985
- - skip
9986
- - overwrite
9987
- - fail
9988
- title : Action If Exists
9989
- default : fail
9990
9980
type : object
9991
9981
required :
9992
9982
- variables
@@ -9995,23 +9985,17 @@ components:
9995
9985
VariableBulkDeleteAction :
9996
9986
properties :
9997
9987
action :
9998
- type : string
9999
- const : delete
10000
- title : Action
9988
+ $ref : ' #/components/schemas/BulkAction'
10001
9989
default : delete
9990
+ action_on_existence :
9991
+ $ref : ' #/components/schemas/BulkActionOnExistence'
9992
+ default : fail
10002
9993
keys :
10003
9994
items :
10004
9995
type : string
10005
9996
type : array
10006
9997
title : Keys
10007
9998
description : A list of variable keys to be deleted.
10008
- action_if_not_exists :
10009
- type : string
10010
- enum :
10011
- - skip
10012
- - fail
10013
- title : Action If Not Exists
10014
- default : fail
10015
9999
type : object
10016
10000
required :
10017
10001
- keys
@@ -10053,23 +10037,17 @@ components:
10053
10037
VariableBulkUpdateAction :
10054
10038
properties :
10055
10039
action :
10056
- type : string
10057
- const : update
10058
- title : Action
10040
+ $ref : ' #/components/schemas/BulkAction'
10059
10041
default : update
10042
+ action_on_existence :
10043
+ $ref : ' #/components/schemas/BulkActionOnExistence'
10044
+ default : fail
10060
10045
variables :
10061
10046
items :
10062
10047
$ref : ' #/components/schemas/VariableBody'
10063
10048
type : array
10064
10049
title : Variables
10065
10050
description : A list of variables to be updated.
10066
- action_if_not_exists :
10067
- type : string
10068
- enum :
10069
- - skip
10070
- - fail
10071
- title : Action If Not Exists
10072
- default : fail
10073
10051
type : object
10074
10052
required :
10075
10053
- variables
0 commit comments