@meshery/schemas 1.3.44 → 1.3.46

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.
Files changed (35) hide show
  1. package/dist/cloudApi.d.mts +882 -4
  2. package/dist/cloudApi.d.ts +882 -4
  3. package/dist/cloudApi.js +1 -1
  4. package/dist/cloudApi.mjs +1 -1
  5. package/dist/constructs/v1beta1/pattern/Pattern.d.ts +1424 -3
  6. package/dist/constructs/v1beta1/pattern/PatternSchema.js +49 -1
  7. package/dist/constructs/v1beta1/pattern/PatternSchema.mjs +49 -1
  8. package/dist/constructs/v1beta2/design/Design.d.ts +1557 -47
  9. package/dist/constructs/v1beta2/design/DesignSchema.js +137 -45
  10. package/dist/constructs/v1beta2/design/DesignSchema.mjs +137 -45
  11. package/dist/constructs/v1beta2/relationship/Relationship.d.ts +34 -17
  12. package/dist/constructs/v1beta2/relationship/RelationshipSchema.js +34 -17
  13. package/dist/constructs/v1beta2/relationship/RelationshipSchema.mjs +34 -17
  14. package/dist/constructs/v1beta3/design/Design.d.ts +371 -7
  15. package/dist/constructs/v1beta3/design/DesignSchema.js +14 -5
  16. package/dist/constructs/v1beta3/design/DesignSchema.mjs +14 -5
  17. package/dist/constructs/v1beta3/relationship/Relationship.d.ts +685 -100
  18. package/dist/constructs/v1beta3/relationship/RelationshipSchema.js +468 -18
  19. package/dist/constructs/v1beta3/relationship/RelationshipSchema.mjs +468 -18
  20. package/dist/constructs/v1beta3/subscription/Subscription.d.ts +436 -0
  21. package/dist/constructs/v1beta3/subscription/SubscriptionSchema.js +1 -1
  22. package/dist/constructs/v1beta3/subscription/SubscriptionSchema.mjs +1 -1
  23. package/dist/index.d.mts +74 -37
  24. package/dist/index.d.ts +74 -37
  25. package/dist/index.js +226 -69
  26. package/dist/index.mjs +226 -69
  27. package/dist/mesheryApi.d.mts +235 -3
  28. package/dist/mesheryApi.d.ts +235 -3
  29. package/dist/mesheryApi.js +1 -1
  30. package/dist/mesheryApi.mjs +1 -1
  31. package/dist/permissions.d.mts +71 -1
  32. package/dist/permissions.d.ts +71 -1
  33. package/dist/permissions.js +1 -1
  34. package/dist/permissions.mjs +1 -1
  35. package/package.json +2 -2
package/dist/index.d.mts CHANGED
@@ -24934,12 +24934,13 @@ interface components$9 {
24934
24934
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
24935
24935
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
24936
24936
  * remove: Removes a value.
24937
+ * replace: Replaces the value at the target location.
24937
24938
  * copy: Copies a value from one location to another.
24938
24939
  * move: Moves a value from one location to another.
24939
24940
  * test: Tests that a value at the target location is equal to a specified value.
24940
24941
  * @enum {string}
24941
24942
  */
24942
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
24943
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
24943
24944
  /** @description JSON ref to value from where patch should be applied. */
24944
24945
  mutatorRef?: string[][];
24945
24946
  mutatedRef?: string[][];
@@ -25025,12 +25026,13 @@ interface components$9 {
25025
25026
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
25026
25027
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
25027
25028
  * remove: Removes a value.
25029
+ * replace: Replaces the value at the target location.
25028
25030
  * copy: Copies a value from one location to another.
25029
25031
  * move: Moves a value from one location to another.
25030
25032
  * test: Tests that a value at the target location is equal to a specified value.
25031
25033
  * @enum {string}
25032
25034
  */
25033
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
25035
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
25034
25036
  /** @description JSON ref to value from where patch should be applied. */
25035
25037
  mutatorRef?: string[][];
25036
25038
  mutatedRef?: string[][];
@@ -25119,12 +25121,13 @@ interface components$9 {
25119
25121
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
25120
25122
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
25121
25123
  * remove: Removes a value.
25124
+ * replace: Replaces the value at the target location.
25122
25125
  * copy: Copies a value from one location to another.
25123
25126
  * move: Moves a value from one location to another.
25124
25127
  * test: Tests that a value at the target location is equal to a specified value.
25125
25128
  * @enum {string}
25126
25129
  */
25127
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
25130
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
25128
25131
  /** @description JSON ref to value from where patch should be applied. */
25129
25132
  mutatorRef?: string[][];
25130
25133
  mutatedRef?: string[][];
@@ -25210,12 +25213,13 @@ interface components$9 {
25210
25213
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
25211
25214
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
25212
25215
  * remove: Removes a value.
25216
+ * replace: Replaces the value at the target location.
25213
25217
  * copy: Copies a value from one location to another.
25214
25218
  * move: Moves a value from one location to another.
25215
25219
  * test: Tests that a value at the target location is equal to a specified value.
25216
25220
  * @enum {string}
25217
25221
  */
25218
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
25222
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
25219
25223
  /** @description JSON ref to value from where patch should be applied. */
25220
25224
  mutatorRef?: string[][];
25221
25225
  mutatedRef?: string[][];
@@ -26393,12 +26397,13 @@ interface components$9 {
26393
26397
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
26394
26398
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
26395
26399
  * remove: Removes a value.
26400
+ * replace: Replaces the value at the target location.
26396
26401
  * copy: Copies a value from one location to another.
26397
26402
  * move: Moves a value from one location to another.
26398
26403
  * test: Tests that a value at the target location is equal to a specified value.
26399
26404
  * @enum {string}
26400
26405
  */
26401
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
26406
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
26402
26407
  /** @description JSON ref to value from where patch should be applied. */
26403
26408
  mutatorRef?: string[][];
26404
26409
  mutatedRef?: string[][];
@@ -26484,12 +26489,13 @@ interface components$9 {
26484
26489
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
26485
26490
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
26486
26491
  * remove: Removes a value.
26492
+ * replace: Replaces the value at the target location.
26487
26493
  * copy: Copies a value from one location to another.
26488
26494
  * move: Moves a value from one location to another.
26489
26495
  * test: Tests that a value at the target location is equal to a specified value.
26490
26496
  * @enum {string}
26491
26497
  */
26492
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
26498
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
26493
26499
  /** @description JSON ref to value from where patch should be applied. */
26494
26500
  mutatorRef?: string[][];
26495
26501
  mutatedRef?: string[][];
@@ -26578,12 +26584,13 @@ interface components$9 {
26578
26584
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
26579
26585
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
26580
26586
  * remove: Removes a value.
26587
+ * replace: Replaces the value at the target location.
26581
26588
  * copy: Copies a value from one location to another.
26582
26589
  * move: Moves a value from one location to another.
26583
26590
  * test: Tests that a value at the target location is equal to a specified value.
26584
26591
  * @enum {string}
26585
26592
  */
26586
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
26593
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
26587
26594
  /** @description JSON ref to value from where patch should be applied. */
26588
26595
  mutatorRef?: string[][];
26589
26596
  mutatedRef?: string[][];
@@ -26669,12 +26676,13 @@ interface components$9 {
26669
26676
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
26670
26677
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
26671
26678
  * remove: Removes a value.
26679
+ * replace: Replaces the value at the target location.
26672
26680
  * copy: Copies a value from one location to another.
26673
26681
  * move: Moves a value from one location to another.
26674
26682
  * test: Tests that a value at the target location is equal to a specified value.
26675
26683
  * @enum {string}
26676
26684
  */
26677
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
26685
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
26678
26686
  /** @description JSON ref to value from where patch should be applied. */
26679
26687
  mutatorRef?: string[][];
26680
26688
  mutatedRef?: string[][];
@@ -27864,12 +27872,13 @@ interface components$9 {
27864
27872
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
27865
27873
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
27866
27874
  * remove: Removes a value.
27875
+ * replace: Replaces the value at the target location.
27867
27876
  * copy: Copies a value from one location to another.
27868
27877
  * move: Moves a value from one location to another.
27869
27878
  * test: Tests that a value at the target location is equal to a specified value.
27870
27879
  * @enum {string}
27871
27880
  */
27872
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
27881
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
27873
27882
  /** @description JSON ref to value from where patch should be applied. */
27874
27883
  mutatorRef?: string[][];
27875
27884
  mutatedRef?: string[][];
@@ -27955,12 +27964,13 @@ interface components$9 {
27955
27964
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
27956
27965
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
27957
27966
  * remove: Removes a value.
27967
+ * replace: Replaces the value at the target location.
27958
27968
  * copy: Copies a value from one location to another.
27959
27969
  * move: Moves a value from one location to another.
27960
27970
  * test: Tests that a value at the target location is equal to a specified value.
27961
27971
  * @enum {string}
27962
27972
  */
27963
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
27973
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
27964
27974
  /** @description JSON ref to value from where patch should be applied. */
27965
27975
  mutatorRef?: string[][];
27966
27976
  mutatedRef?: string[][];
@@ -28049,12 +28059,13 @@ interface components$9 {
28049
28059
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
28050
28060
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
28051
28061
  * remove: Removes a value.
28062
+ * replace: Replaces the value at the target location.
28052
28063
  * copy: Copies a value from one location to another.
28053
28064
  * move: Moves a value from one location to another.
28054
28065
  * test: Tests that a value at the target location is equal to a specified value.
28055
28066
  * @enum {string}
28056
28067
  */
28057
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
28068
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
28058
28069
  /** @description JSON ref to value from where patch should be applied. */
28059
28070
  mutatorRef?: string[][];
28060
28071
  mutatedRef?: string[][];
@@ -28140,12 +28151,13 @@ interface components$9 {
28140
28151
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
28141
28152
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
28142
28153
  * remove: Removes a value.
28154
+ * replace: Replaces the value at the target location.
28143
28155
  * copy: Copies a value from one location to another.
28144
28156
  * move: Moves a value from one location to another.
28145
28157
  * test: Tests that a value at the target location is equal to a specified value.
28146
28158
  * @enum {string}
28147
28159
  */
28148
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
28160
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
28149
28161
  /** @description JSON ref to value from where patch should be applied. */
28150
28162
  mutatorRef?: string[][];
28151
28163
  mutatedRef?: string[][];
@@ -29344,12 +29356,13 @@ interface components$9 {
29344
29356
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
29345
29357
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
29346
29358
  * remove: Removes a value.
29359
+ * replace: Replaces the value at the target location.
29347
29360
  * copy: Copies a value from one location to another.
29348
29361
  * move: Moves a value from one location to another.
29349
29362
  * test: Tests that a value at the target location is equal to a specified value.
29350
29363
  * @enum {string}
29351
29364
  */
29352
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
29365
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
29353
29366
  /** @description JSON ref to value from where patch should be applied. */
29354
29367
  mutatorRef?: string[][];
29355
29368
  mutatedRef?: string[][];
@@ -29435,12 +29448,13 @@ interface components$9 {
29435
29448
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
29436
29449
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
29437
29450
  * remove: Removes a value.
29451
+ * replace: Replaces the value at the target location.
29438
29452
  * copy: Copies a value from one location to another.
29439
29453
  * move: Moves a value from one location to another.
29440
29454
  * test: Tests that a value at the target location is equal to a specified value.
29441
29455
  * @enum {string}
29442
29456
  */
29443
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
29457
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
29444
29458
  /** @description JSON ref to value from where patch should be applied. */
29445
29459
  mutatorRef?: string[][];
29446
29460
  mutatedRef?: string[][];
@@ -29529,12 +29543,13 @@ interface components$9 {
29529
29543
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
29530
29544
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
29531
29545
  * remove: Removes a value.
29546
+ * replace: Replaces the value at the target location.
29532
29547
  * copy: Copies a value from one location to another.
29533
29548
  * move: Moves a value from one location to another.
29534
29549
  * test: Tests that a value at the target location is equal to a specified value.
29535
29550
  * @enum {string}
29536
29551
  */
29537
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
29552
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
29538
29553
  /** @description JSON ref to value from where patch should be applied. */
29539
29554
  mutatorRef?: string[][];
29540
29555
  mutatedRef?: string[][];
@@ -29620,12 +29635,13 @@ interface components$9 {
29620
29635
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
29621
29636
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
29622
29637
  * remove: Removes a value.
29638
+ * replace: Replaces the value at the target location.
29623
29639
  * copy: Copies a value from one location to another.
29624
29640
  * move: Moves a value from one location to another.
29625
29641
  * test: Tests that a value at the target location is equal to a specified value.
29626
29642
  * @enum {string}
29627
29643
  */
29628
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
29644
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
29629
29645
  /** @description JSON ref to value from where patch should be applied. */
29630
29646
  mutatorRef?: string[][];
29631
29647
  mutatedRef?: string[][];
@@ -30895,12 +30911,13 @@ interface components$9 {
30895
30911
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
30896
30912
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
30897
30913
  * remove: Removes a value.
30914
+ * replace: Replaces the value at the target location.
30898
30915
  * copy: Copies a value from one location to another.
30899
30916
  * move: Moves a value from one location to another.
30900
30917
  * test: Tests that a value at the target location is equal to a specified value.
30901
30918
  * @enum {string}
30902
30919
  */
30903
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
30920
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
30904
30921
  /** @description JSON ref to value from where patch should be applied. */
30905
30922
  mutatorRef?: string[][];
30906
30923
  mutatedRef?: string[][];
@@ -30986,12 +31003,13 @@ interface components$9 {
30986
31003
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
30987
31004
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
30988
31005
  * remove: Removes a value.
31006
+ * replace: Replaces the value at the target location.
30989
31007
  * copy: Copies a value from one location to another.
30990
31008
  * move: Moves a value from one location to another.
30991
31009
  * test: Tests that a value at the target location is equal to a specified value.
30992
31010
  * @enum {string}
30993
31011
  */
30994
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
31012
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
30995
31013
  /** @description JSON ref to value from where patch should be applied. */
30996
31014
  mutatorRef?: string[][];
30997
31015
  mutatedRef?: string[][];
@@ -31080,12 +31098,13 @@ interface components$9 {
31080
31098
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
31081
31099
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
31082
31100
  * remove: Removes a value.
31101
+ * replace: Replaces the value at the target location.
31083
31102
  * copy: Copies a value from one location to another.
31084
31103
  * move: Moves a value from one location to another.
31085
31104
  * test: Tests that a value at the target location is equal to a specified value.
31086
31105
  * @enum {string}
31087
31106
  */
31088
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
31107
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
31089
31108
  /** @description JSON ref to value from where patch should be applied. */
31090
31109
  mutatorRef?: string[][];
31091
31110
  mutatedRef?: string[][];
@@ -31171,12 +31190,13 @@ interface components$9 {
31171
31190
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
31172
31191
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
31173
31192
  * remove: Removes a value.
31193
+ * replace: Replaces the value at the target location.
31174
31194
  * copy: Copies a value from one location to another.
31175
31195
  * move: Moves a value from one location to another.
31176
31196
  * test: Tests that a value at the target location is equal to a specified value.
31177
31197
  * @enum {string}
31178
31198
  */
31179
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
31199
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
31180
31200
  /** @description JSON ref to value from where patch should be applied. */
31181
31201
  mutatorRef?: string[][];
31182
31202
  mutatedRef?: string[][];
@@ -33527,12 +33547,13 @@ interface components$4 {
33527
33547
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
33528
33548
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
33529
33549
  * remove: Removes a value.
33550
+ * replace: Replaces the value at the target location.
33530
33551
  * copy: Copies a value from one location to another.
33531
33552
  * move: Moves a value from one location to another.
33532
33553
  * test: Tests that a value at the target location is equal to a specified value.
33533
33554
  * @enum {string}
33534
33555
  */
33535
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
33556
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
33536
33557
  /** @description JSON ref to value from where patch should be applied. */
33537
33558
  mutatorRef?: string[][];
33538
33559
  mutatedRef?: string[][];
@@ -33618,12 +33639,13 @@ interface components$4 {
33618
33639
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
33619
33640
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
33620
33641
  * remove: Removes a value.
33642
+ * replace: Replaces the value at the target location.
33621
33643
  * copy: Copies a value from one location to another.
33622
33644
  * move: Moves a value from one location to another.
33623
33645
  * test: Tests that a value at the target location is equal to a specified value.
33624
33646
  * @enum {string}
33625
33647
  */
33626
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
33648
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
33627
33649
  /** @description JSON ref to value from where patch should be applied. */
33628
33650
  mutatorRef?: string[][];
33629
33651
  mutatedRef?: string[][];
@@ -33712,12 +33734,13 @@ interface components$4 {
33712
33734
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
33713
33735
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
33714
33736
  * remove: Removes a value.
33737
+ * replace: Replaces the value at the target location.
33715
33738
  * copy: Copies a value from one location to another.
33716
33739
  * move: Moves a value from one location to another.
33717
33740
  * test: Tests that a value at the target location is equal to a specified value.
33718
33741
  * @enum {string}
33719
33742
  */
33720
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
33743
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
33721
33744
  /** @description JSON ref to value from where patch should be applied. */
33722
33745
  mutatorRef?: string[][];
33723
33746
  mutatedRef?: string[][];
@@ -33803,12 +33826,13 @@ interface components$4 {
33803
33826
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
33804
33827
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
33805
33828
  * remove: Removes a value.
33829
+ * replace: Replaces the value at the target location.
33806
33830
  * copy: Copies a value from one location to another.
33807
33831
  * move: Moves a value from one location to another.
33808
33832
  * test: Tests that a value at the target location is equal to a specified value.
33809
33833
  * @enum {string}
33810
33834
  */
33811
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
33835
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
33812
33836
  /** @description JSON ref to value from where patch should be applied. */
33813
33837
  mutatorRef?: string[][];
33814
33838
  mutatedRef?: string[][];
@@ -33827,12 +33851,13 @@ interface components$4 {
33827
33851
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
33828
33852
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
33829
33853
  * remove: Removes a value.
33854
+ * replace: Replaces the value at the target location.
33830
33855
  * copy: Copies a value from one location to another.
33831
33856
  * move: Moves a value from one location to another.
33832
33857
  * test: Tests that a value at the target location is equal to a specified value.
33833
33858
  * @enum {string}
33834
33859
  */
33835
- RelationshipDefinitionSelectorsPatchStrategy: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
33860
+ RelationshipDefinitionSelectorsPatchStrategy: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
33836
33861
  /** @description Patch configuration for the selector */
33837
33862
  RelationshipDefinitionSelectorsPatch: {
33838
33863
  /**
@@ -33842,12 +33867,13 @@ interface components$4 {
33842
33867
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
33843
33868
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
33844
33869
  * remove: Removes a value.
33870
+ * replace: Replaces the value at the target location.
33845
33871
  * copy: Copies a value from one location to another.
33846
33872
  * move: Moves a value from one location to another.
33847
33873
  * test: Tests that a value at the target location is equal to a specified value.
33848
33874
  * @enum {string}
33849
33875
  */
33850
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
33876
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
33851
33877
  /** @description JSON ref to value from where patch should be applied. */
33852
33878
  mutatorRef?: string[][];
33853
33879
  mutatedRef?: string[][];
@@ -33976,12 +34002,13 @@ interface components$4 {
33976
34002
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
33977
34003
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
33978
34004
  * remove: Removes a value.
34005
+ * replace: Replaces the value at the target location.
33979
34006
  * copy: Copies a value from one location to another.
33980
34007
  * move: Moves a value from one location to another.
33981
34008
  * test: Tests that a value at the target location is equal to a specified value.
33982
34009
  * @enum {string}
33983
34010
  */
33984
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
34011
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
33985
34012
  /** @description JSON ref to value from where patch should be applied. */
33986
34013
  mutatorRef?: string[][];
33987
34014
  mutatedRef?: string[][];
@@ -34069,12 +34096,13 @@ interface components$4 {
34069
34096
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
34070
34097
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
34071
34098
  * remove: Removes a value.
34099
+ * replace: Replaces the value at the target location.
34072
34100
  * copy: Copies a value from one location to another.
34073
34101
  * move: Moves a value from one location to another.
34074
34102
  * test: Tests that a value at the target location is equal to a specified value.
34075
34103
  * @enum {string}
34076
34104
  */
34077
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
34105
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
34078
34106
  /** @description JSON ref to value from where patch should be applied. */
34079
34107
  mutatorRef?: string[][];
34080
34108
  mutatedRef?: string[][];
@@ -34160,12 +34188,13 @@ interface components$4 {
34160
34188
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
34161
34189
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
34162
34190
  * remove: Removes a value.
34191
+ * replace: Replaces the value at the target location.
34163
34192
  * copy: Copies a value from one location to another.
34164
34193
  * move: Moves a value from one location to another.
34165
34194
  * test: Tests that a value at the target location is equal to a specified value.
34166
34195
  * @enum {string}
34167
34196
  */
34168
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
34197
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
34169
34198
  /** @description JSON ref to value from where patch should be applied. */
34170
34199
  mutatorRef?: string[][];
34171
34200
  mutatedRef?: string[][];
@@ -34256,12 +34285,13 @@ interface components$4 {
34256
34285
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
34257
34286
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
34258
34287
  * remove: Removes a value.
34288
+ * replace: Replaces the value at the target location.
34259
34289
  * copy: Copies a value from one location to another.
34260
34290
  * move: Moves a value from one location to another.
34261
34291
  * test: Tests that a value at the target location is equal to a specified value.
34262
34292
  * @enum {string}
34263
34293
  */
34264
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
34294
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
34265
34295
  /** @description JSON ref to value from where patch should be applied. */
34266
34296
  mutatorRef?: string[][];
34267
34297
  mutatedRef?: string[][];
@@ -34347,12 +34377,13 @@ interface components$4 {
34347
34377
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
34348
34378
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
34349
34379
  * remove: Removes a value.
34380
+ * replace: Replaces the value at the target location.
34350
34381
  * copy: Copies a value from one location to another.
34351
34382
  * move: Moves a value from one location to another.
34352
34383
  * test: Tests that a value at the target location is equal to a specified value.
34353
34384
  * @enum {string}
34354
34385
  */
34355
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
34386
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
34356
34387
  /** @description JSON ref to value from where patch should be applied. */
34357
34388
  mutatorRef?: string[][];
34358
34389
  mutatedRef?: string[][];
@@ -34441,12 +34472,13 @@ interface components$4 {
34441
34472
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
34442
34473
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
34443
34474
  * remove: Removes a value.
34475
+ * replace: Replaces the value at the target location.
34444
34476
  * copy: Copies a value from one location to another.
34445
34477
  * move: Moves a value from one location to another.
34446
34478
  * test: Tests that a value at the target location is equal to a specified value.
34447
34479
  * @enum {string}
34448
34480
  */
34449
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
34481
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
34450
34482
  /** @description JSON ref to value from where patch should be applied. */
34451
34483
  mutatorRef?: string[][];
34452
34484
  mutatedRef?: string[][];
@@ -34532,12 +34564,13 @@ interface components$4 {
34532
34564
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
34533
34565
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
34534
34566
  * remove: Removes a value.
34567
+ * replace: Replaces the value at the target location.
34535
34568
  * copy: Copies a value from one location to another.
34536
34569
  * move: Moves a value from one location to another.
34537
34570
  * test: Tests that a value at the target location is equal to a specified value.
34538
34571
  * @enum {string}
34539
34572
  */
34540
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
34573
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
34541
34574
  /** @description JSON ref to value from where patch should be applied. */
34542
34575
  mutatorRef?: string[][];
34543
34576
  mutatedRef?: string[][];
@@ -34629,12 +34662,13 @@ interface components$4 {
34629
34662
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
34630
34663
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
34631
34664
  * remove: Removes a value.
34665
+ * replace: Replaces the value at the target location.
34632
34666
  * copy: Copies a value from one location to another.
34633
34667
  * move: Moves a value from one location to another.
34634
34668
  * test: Tests that a value at the target location is equal to a specified value.
34635
34669
  * @enum {string}
34636
34670
  */
34637
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
34671
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
34638
34672
  /** @description JSON ref to value from where patch should be applied. */
34639
34673
  mutatorRef?: string[][];
34640
34674
  mutatedRef?: string[][];
@@ -34720,12 +34754,13 @@ interface components$4 {
34720
34754
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
34721
34755
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
34722
34756
  * remove: Removes a value.
34757
+ * replace: Replaces the value at the target location.
34723
34758
  * copy: Copies a value from one location to another.
34724
34759
  * move: Moves a value from one location to another.
34725
34760
  * test: Tests that a value at the target location is equal to a specified value.
34726
34761
  * @enum {string}
34727
34762
  */
34728
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
34763
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
34729
34764
  /** @description JSON ref to value from where patch should be applied. */
34730
34765
  mutatorRef?: string[][];
34731
34766
  mutatedRef?: string[][];
@@ -34814,12 +34849,13 @@ interface components$4 {
34814
34849
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
34815
34850
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
34816
34851
  * remove: Removes a value.
34852
+ * replace: Replaces the value at the target location.
34817
34853
  * copy: Copies a value from one location to another.
34818
34854
  * move: Moves a value from one location to another.
34819
34855
  * test: Tests that a value at the target location is equal to a specified value.
34820
34856
  * @enum {string}
34821
34857
  */
34822
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
34858
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
34823
34859
  /** @description JSON ref to value from where patch should be applied. */
34824
34860
  mutatorRef?: string[][];
34825
34861
  mutatedRef?: string[][];
@@ -34905,12 +34941,13 @@ interface components$4 {
34905
34941
  * merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
34906
34942
  * strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
34907
34943
  * remove: Removes a value.
34944
+ * replace: Replaces the value at the target location.
34908
34945
  * copy: Copies a value from one location to another.
34909
34946
  * move: Moves a value from one location to another.
34910
34947
  * test: Tests that a value at the target location is equal to a specified value.
34911
34948
  * @enum {string}
34912
34949
  */
34913
- patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
34950
+ patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
34914
34951
  /** @description JSON ref to value from where patch should be applied. */
34915
34952
  mutatorRef?: string[][];
34916
34953
  mutatedRef?: string[][];