@meshery/schemas 1.3.45 → 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.
- package/dist/constructs/v1beta2/design/Design.d.ts +96 -48
- package/dist/constructs/v1beta2/design/DesignSchema.js +96 -48
- package/dist/constructs/v1beta2/design/DesignSchema.mjs +96 -48
- package/dist/constructs/v1beta2/relationship/Relationship.d.ts +34 -17
- package/dist/constructs/v1beta2/relationship/RelationshipSchema.js +34 -17
- package/dist/constructs/v1beta2/relationship/RelationshipSchema.mjs +34 -17
- package/dist/constructs/v1beta3/design/Design.d.ts +8 -4
- package/dist/constructs/v1beta3/design/DesignSchema.js +8 -4
- package/dist/constructs/v1beta3/design/DesignSchema.mjs +8 -4
- package/dist/constructs/v1beta3/relationship/Relationship.d.ts +685 -100
- package/dist/constructs/v1beta3/relationship/RelationshipSchema.js +468 -18
- package/dist/constructs/v1beta3/relationship/RelationshipSchema.mjs +468 -18
- package/dist/index.d.mts +74 -37
- package/dist/index.d.ts +74 -37
- package/dist/index.js +131 -66
- package/dist/index.mjs +131 -66
- package/package.json +1 -1
|
@@ -1527,12 +1527,13 @@ export interface components {
|
|
|
1527
1527
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
1528
1528
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
1529
1529
|
* remove: Removes a value.
|
|
1530
|
+
* replace: Replaces the value at the target location.
|
|
1530
1531
|
* copy: Copies a value from one location to another.
|
|
1531
1532
|
* move: Moves a value from one location to another.
|
|
1532
1533
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
1533
1534
|
* @enum {string}
|
|
1534
1535
|
*/
|
|
1535
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
1536
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
1536
1537
|
/** @description JSON ref to value from where patch should be applied. */
|
|
1537
1538
|
mutatorRef?: string[][];
|
|
1538
1539
|
mutatedRef?: string[][];
|
|
@@ -1618,12 +1619,13 @@ export interface components {
|
|
|
1618
1619
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
1619
1620
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
1620
1621
|
* remove: Removes a value.
|
|
1622
|
+
* replace: Replaces the value at the target location.
|
|
1621
1623
|
* copy: Copies a value from one location to another.
|
|
1622
1624
|
* move: Moves a value from one location to another.
|
|
1623
1625
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
1624
1626
|
* @enum {string}
|
|
1625
1627
|
*/
|
|
1626
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
1628
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
1627
1629
|
/** @description JSON ref to value from where patch should be applied. */
|
|
1628
1630
|
mutatorRef?: string[][];
|
|
1629
1631
|
mutatedRef?: string[][];
|
|
@@ -1712,12 +1714,13 @@ export interface components {
|
|
|
1712
1714
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
1713
1715
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
1714
1716
|
* remove: Removes a value.
|
|
1717
|
+
* replace: Replaces the value at the target location.
|
|
1715
1718
|
* copy: Copies a value from one location to another.
|
|
1716
1719
|
* move: Moves a value from one location to another.
|
|
1717
1720
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
1718
1721
|
* @enum {string}
|
|
1719
1722
|
*/
|
|
1720
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
1723
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
1721
1724
|
/** @description JSON ref to value from where patch should be applied. */
|
|
1722
1725
|
mutatorRef?: string[][];
|
|
1723
1726
|
mutatedRef?: string[][];
|
|
@@ -1803,12 +1806,13 @@ export interface components {
|
|
|
1803
1806
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
1804
1807
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
1805
1808
|
* remove: Removes a value.
|
|
1809
|
+
* replace: Replaces the value at the target location.
|
|
1806
1810
|
* copy: Copies a value from one location to another.
|
|
1807
1811
|
* move: Moves a value from one location to another.
|
|
1808
1812
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
1809
1813
|
* @enum {string}
|
|
1810
1814
|
*/
|
|
1811
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
1815
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
1812
1816
|
/** @description JSON ref to value from where patch should be applied. */
|
|
1813
1817
|
mutatorRef?: string[][];
|
|
1814
1818
|
mutatedRef?: string[][];
|
|
@@ -2986,12 +2990,13 @@ export interface components {
|
|
|
2986
2990
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
2987
2991
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
2988
2992
|
* remove: Removes a value.
|
|
2993
|
+
* replace: Replaces the value at the target location.
|
|
2989
2994
|
* copy: Copies a value from one location to another.
|
|
2990
2995
|
* move: Moves a value from one location to another.
|
|
2991
2996
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
2992
2997
|
* @enum {string}
|
|
2993
2998
|
*/
|
|
2994
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
2999
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
2995
3000
|
/** @description JSON ref to value from where patch should be applied. */
|
|
2996
3001
|
mutatorRef?: string[][];
|
|
2997
3002
|
mutatedRef?: string[][];
|
|
@@ -3077,12 +3082,13 @@ export interface components {
|
|
|
3077
3082
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
3078
3083
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
3079
3084
|
* remove: Removes a value.
|
|
3085
|
+
* replace: Replaces the value at the target location.
|
|
3080
3086
|
* copy: Copies a value from one location to another.
|
|
3081
3087
|
* move: Moves a value from one location to another.
|
|
3082
3088
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
3083
3089
|
* @enum {string}
|
|
3084
3090
|
*/
|
|
3085
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
3091
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
3086
3092
|
/** @description JSON ref to value from where patch should be applied. */
|
|
3087
3093
|
mutatorRef?: string[][];
|
|
3088
3094
|
mutatedRef?: string[][];
|
|
@@ -3171,12 +3177,13 @@ export interface components {
|
|
|
3171
3177
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
3172
3178
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
3173
3179
|
* remove: Removes a value.
|
|
3180
|
+
* replace: Replaces the value at the target location.
|
|
3174
3181
|
* copy: Copies a value from one location to another.
|
|
3175
3182
|
* move: Moves a value from one location to another.
|
|
3176
3183
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
3177
3184
|
* @enum {string}
|
|
3178
3185
|
*/
|
|
3179
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
3186
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
3180
3187
|
/** @description JSON ref to value from where patch should be applied. */
|
|
3181
3188
|
mutatorRef?: string[][];
|
|
3182
3189
|
mutatedRef?: string[][];
|
|
@@ -3262,12 +3269,13 @@ export interface components {
|
|
|
3262
3269
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
3263
3270
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
3264
3271
|
* remove: Removes a value.
|
|
3272
|
+
* replace: Replaces the value at the target location.
|
|
3265
3273
|
* copy: Copies a value from one location to another.
|
|
3266
3274
|
* move: Moves a value from one location to another.
|
|
3267
3275
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
3268
3276
|
* @enum {string}
|
|
3269
3277
|
*/
|
|
3270
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
3278
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
3271
3279
|
/** @description JSON ref to value from where patch should be applied. */
|
|
3272
3280
|
mutatorRef?: string[][];
|
|
3273
3281
|
mutatedRef?: string[][];
|
|
@@ -4457,12 +4465,13 @@ export interface components {
|
|
|
4457
4465
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
4458
4466
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
4459
4467
|
* remove: Removes a value.
|
|
4468
|
+
* replace: Replaces the value at the target location.
|
|
4460
4469
|
* copy: Copies a value from one location to another.
|
|
4461
4470
|
* move: Moves a value from one location to another.
|
|
4462
4471
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
4463
4472
|
* @enum {string}
|
|
4464
4473
|
*/
|
|
4465
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
4474
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
4466
4475
|
/** @description JSON ref to value from where patch should be applied. */
|
|
4467
4476
|
mutatorRef?: string[][];
|
|
4468
4477
|
mutatedRef?: string[][];
|
|
@@ -4548,12 +4557,13 @@ export interface components {
|
|
|
4548
4557
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
4549
4558
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
4550
4559
|
* remove: Removes a value.
|
|
4560
|
+
* replace: Replaces the value at the target location.
|
|
4551
4561
|
* copy: Copies a value from one location to another.
|
|
4552
4562
|
* move: Moves a value from one location to another.
|
|
4553
4563
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
4554
4564
|
* @enum {string}
|
|
4555
4565
|
*/
|
|
4556
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
4566
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
4557
4567
|
/** @description JSON ref to value from where patch should be applied. */
|
|
4558
4568
|
mutatorRef?: string[][];
|
|
4559
4569
|
mutatedRef?: string[][];
|
|
@@ -4642,12 +4652,13 @@ export interface components {
|
|
|
4642
4652
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
4643
4653
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
4644
4654
|
* remove: Removes a value.
|
|
4655
|
+
* replace: Replaces the value at the target location.
|
|
4645
4656
|
* copy: Copies a value from one location to another.
|
|
4646
4657
|
* move: Moves a value from one location to another.
|
|
4647
4658
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
4648
4659
|
* @enum {string}
|
|
4649
4660
|
*/
|
|
4650
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
4661
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
4651
4662
|
/** @description JSON ref to value from where patch should be applied. */
|
|
4652
4663
|
mutatorRef?: string[][];
|
|
4653
4664
|
mutatedRef?: string[][];
|
|
@@ -4733,12 +4744,13 @@ export interface components {
|
|
|
4733
4744
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
4734
4745
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
4735
4746
|
* remove: Removes a value.
|
|
4747
|
+
* replace: Replaces the value at the target location.
|
|
4736
4748
|
* copy: Copies a value from one location to another.
|
|
4737
4749
|
* move: Moves a value from one location to another.
|
|
4738
4750
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
4739
4751
|
* @enum {string}
|
|
4740
4752
|
*/
|
|
4741
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
4753
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
4742
4754
|
/** @description JSON ref to value from where patch should be applied. */
|
|
4743
4755
|
mutatorRef?: string[][];
|
|
4744
4756
|
mutatedRef?: string[][];
|
|
@@ -5937,12 +5949,13 @@ export interface components {
|
|
|
5937
5949
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
5938
5950
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
5939
5951
|
* remove: Removes a value.
|
|
5952
|
+
* replace: Replaces the value at the target location.
|
|
5940
5953
|
* copy: Copies a value from one location to another.
|
|
5941
5954
|
* move: Moves a value from one location to another.
|
|
5942
5955
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
5943
5956
|
* @enum {string}
|
|
5944
5957
|
*/
|
|
5945
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
5958
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
5946
5959
|
/** @description JSON ref to value from where patch should be applied. */
|
|
5947
5960
|
mutatorRef?: string[][];
|
|
5948
5961
|
mutatedRef?: string[][];
|
|
@@ -6028,12 +6041,13 @@ export interface components {
|
|
|
6028
6041
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
6029
6042
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
6030
6043
|
* remove: Removes a value.
|
|
6044
|
+
* replace: Replaces the value at the target location.
|
|
6031
6045
|
* copy: Copies a value from one location to another.
|
|
6032
6046
|
* move: Moves a value from one location to another.
|
|
6033
6047
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
6034
6048
|
* @enum {string}
|
|
6035
6049
|
*/
|
|
6036
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
6050
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
6037
6051
|
/** @description JSON ref to value from where patch should be applied. */
|
|
6038
6052
|
mutatorRef?: string[][];
|
|
6039
6053
|
mutatedRef?: string[][];
|
|
@@ -6122,12 +6136,13 @@ export interface components {
|
|
|
6122
6136
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
6123
6137
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
6124
6138
|
* remove: Removes a value.
|
|
6139
|
+
* replace: Replaces the value at the target location.
|
|
6125
6140
|
* copy: Copies a value from one location to another.
|
|
6126
6141
|
* move: Moves a value from one location to another.
|
|
6127
6142
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
6128
6143
|
* @enum {string}
|
|
6129
6144
|
*/
|
|
6130
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
6145
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
6131
6146
|
/** @description JSON ref to value from where patch should be applied. */
|
|
6132
6147
|
mutatorRef?: string[][];
|
|
6133
6148
|
mutatedRef?: string[][];
|
|
@@ -6213,12 +6228,13 @@ export interface components {
|
|
|
6213
6228
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
6214
6229
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
6215
6230
|
* remove: Removes a value.
|
|
6231
|
+
* replace: Replaces the value at the target location.
|
|
6216
6232
|
* copy: Copies a value from one location to another.
|
|
6217
6233
|
* move: Moves a value from one location to another.
|
|
6218
6234
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
6219
6235
|
* @enum {string}
|
|
6220
6236
|
*/
|
|
6221
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
6237
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
6222
6238
|
/** @description JSON ref to value from where patch should be applied. */
|
|
6223
6239
|
mutatorRef?: string[][];
|
|
6224
6240
|
mutatedRef?: string[][];
|
|
@@ -7488,12 +7504,13 @@ export interface components {
|
|
|
7488
7504
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
7489
7505
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
7490
7506
|
* remove: Removes a value.
|
|
7507
|
+
* replace: Replaces the value at the target location.
|
|
7491
7508
|
* copy: Copies a value from one location to another.
|
|
7492
7509
|
* move: Moves a value from one location to another.
|
|
7493
7510
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
7494
7511
|
* @enum {string}
|
|
7495
7512
|
*/
|
|
7496
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
7513
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
7497
7514
|
/** @description JSON ref to value from where patch should be applied. */
|
|
7498
7515
|
mutatorRef?: string[][];
|
|
7499
7516
|
mutatedRef?: string[][];
|
|
@@ -7579,12 +7596,13 @@ export interface components {
|
|
|
7579
7596
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
7580
7597
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
7581
7598
|
* remove: Removes a value.
|
|
7599
|
+
* replace: Replaces the value at the target location.
|
|
7582
7600
|
* copy: Copies a value from one location to another.
|
|
7583
7601
|
* move: Moves a value from one location to another.
|
|
7584
7602
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
7585
7603
|
* @enum {string}
|
|
7586
7604
|
*/
|
|
7587
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
7605
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
7588
7606
|
/** @description JSON ref to value from where patch should be applied. */
|
|
7589
7607
|
mutatorRef?: string[][];
|
|
7590
7608
|
mutatedRef?: string[][];
|
|
@@ -7673,12 +7691,13 @@ export interface components {
|
|
|
7673
7691
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
7674
7692
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
7675
7693
|
* remove: Removes a value.
|
|
7694
|
+
* replace: Replaces the value at the target location.
|
|
7676
7695
|
* copy: Copies a value from one location to another.
|
|
7677
7696
|
* move: Moves a value from one location to another.
|
|
7678
7697
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
7679
7698
|
* @enum {string}
|
|
7680
7699
|
*/
|
|
7681
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
7700
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
7682
7701
|
/** @description JSON ref to value from where patch should be applied. */
|
|
7683
7702
|
mutatorRef?: string[][];
|
|
7684
7703
|
mutatedRef?: string[][];
|
|
@@ -7764,12 +7783,13 @@ export interface components {
|
|
|
7764
7783
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
7765
7784
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
7766
7785
|
* remove: Removes a value.
|
|
7786
|
+
* replace: Replaces the value at the target location.
|
|
7767
7787
|
* copy: Copies a value from one location to another.
|
|
7768
7788
|
* move: Moves a value from one location to another.
|
|
7769
7789
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
7770
7790
|
* @enum {string}
|
|
7771
7791
|
*/
|
|
7772
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
7792
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
7773
7793
|
/** @description JSON ref to value from where patch should be applied. */
|
|
7774
7794
|
mutatorRef?: string[][];
|
|
7775
7795
|
mutatedRef?: string[][];
|
|
@@ -9166,12 +9186,13 @@ export interface operations {
|
|
|
9166
9186
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
9167
9187
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
9168
9188
|
* remove: Removes a value.
|
|
9189
|
+
* replace: Replaces the value at the target location.
|
|
9169
9190
|
* copy: Copies a value from one location to another.
|
|
9170
9191
|
* move: Moves a value from one location to another.
|
|
9171
9192
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
9172
9193
|
* @enum {string}
|
|
9173
9194
|
*/
|
|
9174
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
9195
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
9175
9196
|
/** @description JSON ref to value from where patch should be applied. */
|
|
9176
9197
|
mutatorRef?: string[][];
|
|
9177
9198
|
mutatedRef?: string[][];
|
|
@@ -9257,12 +9278,13 @@ export interface operations {
|
|
|
9257
9278
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
9258
9279
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
9259
9280
|
* remove: Removes a value.
|
|
9281
|
+
* replace: Replaces the value at the target location.
|
|
9260
9282
|
* copy: Copies a value from one location to another.
|
|
9261
9283
|
* move: Moves a value from one location to another.
|
|
9262
9284
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
9263
9285
|
* @enum {string}
|
|
9264
9286
|
*/
|
|
9265
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
9287
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
9266
9288
|
/** @description JSON ref to value from where patch should be applied. */
|
|
9267
9289
|
mutatorRef?: string[][];
|
|
9268
9290
|
mutatedRef?: string[][];
|
|
@@ -9351,12 +9373,13 @@ export interface operations {
|
|
|
9351
9373
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
9352
9374
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
9353
9375
|
* remove: Removes a value.
|
|
9376
|
+
* replace: Replaces the value at the target location.
|
|
9354
9377
|
* copy: Copies a value from one location to another.
|
|
9355
9378
|
* move: Moves a value from one location to another.
|
|
9356
9379
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
9357
9380
|
* @enum {string}
|
|
9358
9381
|
*/
|
|
9359
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
9382
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
9360
9383
|
/** @description JSON ref to value from where patch should be applied. */
|
|
9361
9384
|
mutatorRef?: string[][];
|
|
9362
9385
|
mutatedRef?: string[][];
|
|
@@ -9442,12 +9465,13 @@ export interface operations {
|
|
|
9442
9465
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
9443
9466
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
9444
9467
|
* remove: Removes a value.
|
|
9468
|
+
* replace: Replaces the value at the target location.
|
|
9445
9469
|
* copy: Copies a value from one location to another.
|
|
9446
9470
|
* move: Moves a value from one location to another.
|
|
9447
9471
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
9448
9472
|
* @enum {string}
|
|
9449
9473
|
*/
|
|
9450
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
9474
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
9451
9475
|
/** @description JSON ref to value from where patch should be applied. */
|
|
9452
9476
|
mutatorRef?: string[][];
|
|
9453
9477
|
mutatedRef?: string[][];
|
|
@@ -10669,12 +10693,13 @@ export interface operations {
|
|
|
10669
10693
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
10670
10694
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
10671
10695
|
* remove: Removes a value.
|
|
10696
|
+
* replace: Replaces the value at the target location.
|
|
10672
10697
|
* copy: Copies a value from one location to another.
|
|
10673
10698
|
* move: Moves a value from one location to another.
|
|
10674
10699
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
10675
10700
|
* @enum {string}
|
|
10676
10701
|
*/
|
|
10677
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
10702
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
10678
10703
|
/** @description JSON ref to value from where patch should be applied. */
|
|
10679
10704
|
mutatorRef?: string[][];
|
|
10680
10705
|
mutatedRef?: string[][];
|
|
@@ -10760,12 +10785,13 @@ export interface operations {
|
|
|
10760
10785
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
10761
10786
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
10762
10787
|
* remove: Removes a value.
|
|
10788
|
+
* replace: Replaces the value at the target location.
|
|
10763
10789
|
* copy: Copies a value from one location to another.
|
|
10764
10790
|
* move: Moves a value from one location to another.
|
|
10765
10791
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
10766
10792
|
* @enum {string}
|
|
10767
10793
|
*/
|
|
10768
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
10794
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
10769
10795
|
/** @description JSON ref to value from where patch should be applied. */
|
|
10770
10796
|
mutatorRef?: string[][];
|
|
10771
10797
|
mutatedRef?: string[][];
|
|
@@ -10854,12 +10880,13 @@ export interface operations {
|
|
|
10854
10880
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
10855
10881
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
10856
10882
|
* remove: Removes a value.
|
|
10883
|
+
* replace: Replaces the value at the target location.
|
|
10857
10884
|
* copy: Copies a value from one location to another.
|
|
10858
10885
|
* move: Moves a value from one location to another.
|
|
10859
10886
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
10860
10887
|
* @enum {string}
|
|
10861
10888
|
*/
|
|
10862
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
10889
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
10863
10890
|
/** @description JSON ref to value from where patch should be applied. */
|
|
10864
10891
|
mutatorRef?: string[][];
|
|
10865
10892
|
mutatedRef?: string[][];
|
|
@@ -10945,12 +10972,13 @@ export interface operations {
|
|
|
10945
10972
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
10946
10973
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
10947
10974
|
* remove: Removes a value.
|
|
10975
|
+
* replace: Replaces the value at the target location.
|
|
10948
10976
|
* copy: Copies a value from one location to another.
|
|
10949
10977
|
* move: Moves a value from one location to another.
|
|
10950
10978
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
10951
10979
|
* @enum {string}
|
|
10952
10980
|
*/
|
|
10953
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
10981
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
10954
10982
|
/** @description JSON ref to value from where patch should be applied. */
|
|
10955
10983
|
mutatorRef?: string[][];
|
|
10956
10984
|
mutatedRef?: string[][];
|
|
@@ -12153,12 +12181,13 @@ export interface operations {
|
|
|
12153
12181
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
12154
12182
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
12155
12183
|
* remove: Removes a value.
|
|
12184
|
+
* replace: Replaces the value at the target location.
|
|
12156
12185
|
* copy: Copies a value from one location to another.
|
|
12157
12186
|
* move: Moves a value from one location to another.
|
|
12158
12187
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
12159
12188
|
* @enum {string}
|
|
12160
12189
|
*/
|
|
12161
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
12190
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
12162
12191
|
/** @description JSON ref to value from where patch should be applied. */
|
|
12163
12192
|
mutatorRef?: string[][];
|
|
12164
12193
|
mutatedRef?: string[][];
|
|
@@ -12244,12 +12273,13 @@ export interface operations {
|
|
|
12244
12273
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
12245
12274
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
12246
12275
|
* remove: Removes a value.
|
|
12276
|
+
* replace: Replaces the value at the target location.
|
|
12247
12277
|
* copy: Copies a value from one location to another.
|
|
12248
12278
|
* move: Moves a value from one location to another.
|
|
12249
12279
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
12250
12280
|
* @enum {string}
|
|
12251
12281
|
*/
|
|
12252
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
12282
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
12253
12283
|
/** @description JSON ref to value from where patch should be applied. */
|
|
12254
12284
|
mutatorRef?: string[][];
|
|
12255
12285
|
mutatedRef?: string[][];
|
|
@@ -12338,12 +12368,13 @@ export interface operations {
|
|
|
12338
12368
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
12339
12369
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
12340
12370
|
* remove: Removes a value.
|
|
12371
|
+
* replace: Replaces the value at the target location.
|
|
12341
12372
|
* copy: Copies a value from one location to another.
|
|
12342
12373
|
* move: Moves a value from one location to another.
|
|
12343
12374
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
12344
12375
|
* @enum {string}
|
|
12345
12376
|
*/
|
|
12346
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
12377
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
12347
12378
|
/** @description JSON ref to value from where patch should be applied. */
|
|
12348
12379
|
mutatorRef?: string[][];
|
|
12349
12380
|
mutatedRef?: string[][];
|
|
@@ -12429,12 +12460,13 @@ export interface operations {
|
|
|
12429
12460
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
12430
12461
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
12431
12462
|
* remove: Removes a value.
|
|
12463
|
+
* replace: Replaces the value at the target location.
|
|
12432
12464
|
* copy: Copies a value from one location to another.
|
|
12433
12465
|
* move: Moves a value from one location to another.
|
|
12434
12466
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
12435
12467
|
* @enum {string}
|
|
12436
12468
|
*/
|
|
12437
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
12469
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
12438
12470
|
/** @description JSON ref to value from where patch should be applied. */
|
|
12439
12471
|
mutatorRef?: string[][];
|
|
12440
12472
|
mutatedRef?: string[][];
|
|
@@ -13909,12 +13941,13 @@ export interface operations {
|
|
|
13909
13941
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
13910
13942
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
13911
13943
|
* remove: Removes a value.
|
|
13944
|
+
* replace: Replaces the value at the target location.
|
|
13912
13945
|
* copy: Copies a value from one location to another.
|
|
13913
13946
|
* move: Moves a value from one location to another.
|
|
13914
13947
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
13915
13948
|
* @enum {string}
|
|
13916
13949
|
*/
|
|
13917
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
13950
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
13918
13951
|
/** @description JSON ref to value from where patch should be applied. */
|
|
13919
13952
|
mutatorRef?: string[][];
|
|
13920
13953
|
mutatedRef?: string[][];
|
|
@@ -14000,12 +14033,13 @@ export interface operations {
|
|
|
14000
14033
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
14001
14034
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
14002
14035
|
* remove: Removes a value.
|
|
14036
|
+
* replace: Replaces the value at the target location.
|
|
14003
14037
|
* copy: Copies a value from one location to another.
|
|
14004
14038
|
* move: Moves a value from one location to another.
|
|
14005
14039
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
14006
14040
|
* @enum {string}
|
|
14007
14041
|
*/
|
|
14008
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
14042
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
14009
14043
|
/** @description JSON ref to value from where patch should be applied. */
|
|
14010
14044
|
mutatorRef?: string[][];
|
|
14011
14045
|
mutatedRef?: string[][];
|
|
@@ -14094,12 +14128,13 @@ export interface operations {
|
|
|
14094
14128
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
14095
14129
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
14096
14130
|
* remove: Removes a value.
|
|
14131
|
+
* replace: Replaces the value at the target location.
|
|
14097
14132
|
* copy: Copies a value from one location to another.
|
|
14098
14133
|
* move: Moves a value from one location to another.
|
|
14099
14134
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
14100
14135
|
* @enum {string}
|
|
14101
14136
|
*/
|
|
14102
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
14137
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
14103
14138
|
/** @description JSON ref to value from where patch should be applied. */
|
|
14104
14139
|
mutatorRef?: string[][];
|
|
14105
14140
|
mutatedRef?: string[][];
|
|
@@ -14185,12 +14220,13 @@ export interface operations {
|
|
|
14185
14220
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
14186
14221
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
14187
14222
|
* remove: Removes a value.
|
|
14223
|
+
* replace: Replaces the value at the target location.
|
|
14188
14224
|
* copy: Copies a value from one location to another.
|
|
14189
14225
|
* move: Moves a value from one location to another.
|
|
14190
14226
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
14191
14227
|
* @enum {string}
|
|
14192
14228
|
*/
|
|
14193
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
14229
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
14194
14230
|
/** @description JSON ref to value from where patch should be applied. */
|
|
14195
14231
|
mutatorRef?: string[][];
|
|
14196
14232
|
mutatedRef?: string[][];
|
|
@@ -15471,12 +15507,13 @@ export interface operations {
|
|
|
15471
15507
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
15472
15508
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
15473
15509
|
* remove: Removes a value.
|
|
15510
|
+
* replace: Replaces the value at the target location.
|
|
15474
15511
|
* copy: Copies a value from one location to another.
|
|
15475
15512
|
* move: Moves a value from one location to another.
|
|
15476
15513
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
15477
15514
|
* @enum {string}
|
|
15478
15515
|
*/
|
|
15479
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
15516
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
15480
15517
|
/** @description JSON ref to value from where patch should be applied. */
|
|
15481
15518
|
mutatorRef?: string[][];
|
|
15482
15519
|
mutatedRef?: string[][];
|
|
@@ -15562,12 +15599,13 @@ export interface operations {
|
|
|
15562
15599
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
15563
15600
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
15564
15601
|
* remove: Removes a value.
|
|
15602
|
+
* replace: Replaces the value at the target location.
|
|
15565
15603
|
* copy: Copies a value from one location to another.
|
|
15566
15604
|
* move: Moves a value from one location to another.
|
|
15567
15605
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
15568
15606
|
* @enum {string}
|
|
15569
15607
|
*/
|
|
15570
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
15608
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
15571
15609
|
/** @description JSON ref to value from where patch should be applied. */
|
|
15572
15610
|
mutatorRef?: string[][];
|
|
15573
15611
|
mutatedRef?: string[][];
|
|
@@ -15656,12 +15694,13 @@ export interface operations {
|
|
|
15656
15694
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
15657
15695
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
15658
15696
|
* remove: Removes a value.
|
|
15697
|
+
* replace: Replaces the value at the target location.
|
|
15659
15698
|
* copy: Copies a value from one location to another.
|
|
15660
15699
|
* move: Moves a value from one location to another.
|
|
15661
15700
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
15662
15701
|
* @enum {string}
|
|
15663
15702
|
*/
|
|
15664
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
15703
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
15665
15704
|
/** @description JSON ref to value from where patch should be applied. */
|
|
15666
15705
|
mutatorRef?: string[][];
|
|
15667
15706
|
mutatedRef?: string[][];
|
|
@@ -15747,12 +15786,13 @@ export interface operations {
|
|
|
15747
15786
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
15748
15787
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
15749
15788
|
* remove: Removes a value.
|
|
15789
|
+
* replace: Replaces the value at the target location.
|
|
15750
15790
|
* copy: Copies a value from one location to another.
|
|
15751
15791
|
* move: Moves a value from one location to another.
|
|
15752
15792
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
15753
15793
|
* @enum {string}
|
|
15754
15794
|
*/
|
|
15755
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
15795
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
15756
15796
|
/** @description JSON ref to value from where patch should be applied. */
|
|
15757
15797
|
mutatorRef?: string[][];
|
|
15758
15798
|
mutatedRef?: string[][];
|
|
@@ -17130,12 +17170,13 @@ export interface operations {
|
|
|
17130
17170
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
17131
17171
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
17132
17172
|
* remove: Removes a value.
|
|
17173
|
+
* replace: Replaces the value at the target location.
|
|
17133
17174
|
* copy: Copies a value from one location to another.
|
|
17134
17175
|
* move: Moves a value from one location to another.
|
|
17135
17176
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
17136
17177
|
* @enum {string}
|
|
17137
17178
|
*/
|
|
17138
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
17179
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
17139
17180
|
/** @description JSON ref to value from where patch should be applied. */
|
|
17140
17181
|
mutatorRef?: string[][];
|
|
17141
17182
|
mutatedRef?: string[][];
|
|
@@ -17221,12 +17262,13 @@ export interface operations {
|
|
|
17221
17262
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
17222
17263
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
17223
17264
|
* remove: Removes a value.
|
|
17265
|
+
* replace: Replaces the value at the target location.
|
|
17224
17266
|
* copy: Copies a value from one location to another.
|
|
17225
17267
|
* move: Moves a value from one location to another.
|
|
17226
17268
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
17227
17269
|
* @enum {string}
|
|
17228
17270
|
*/
|
|
17229
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
17271
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
17230
17272
|
/** @description JSON ref to value from where patch should be applied. */
|
|
17231
17273
|
mutatorRef?: string[][];
|
|
17232
17274
|
mutatedRef?: string[][];
|
|
@@ -17315,12 +17357,13 @@ export interface operations {
|
|
|
17315
17357
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
17316
17358
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
17317
17359
|
* remove: Removes a value.
|
|
17360
|
+
* replace: Replaces the value at the target location.
|
|
17318
17361
|
* copy: Copies a value from one location to another.
|
|
17319
17362
|
* move: Moves a value from one location to another.
|
|
17320
17363
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
17321
17364
|
* @enum {string}
|
|
17322
17365
|
*/
|
|
17323
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
17366
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
17324
17367
|
/** @description JSON ref to value from where patch should be applied. */
|
|
17325
17368
|
mutatorRef?: string[][];
|
|
17326
17369
|
mutatedRef?: string[][];
|
|
@@ -17406,12 +17449,13 @@ export interface operations {
|
|
|
17406
17449
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
17407
17450
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
17408
17451
|
* remove: Removes a value.
|
|
17452
|
+
* replace: Replaces the value at the target location.
|
|
17409
17453
|
* copy: Copies a value from one location to another.
|
|
17410
17454
|
* move: Moves a value from one location to another.
|
|
17411
17455
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
17412
17456
|
* @enum {string}
|
|
17413
17457
|
*/
|
|
17414
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
17458
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
17415
17459
|
/** @description JSON ref to value from where patch should be applied. */
|
|
17416
17460
|
mutatorRef?: string[][];
|
|
17417
17461
|
mutatedRef?: string[][];
|
|
@@ -18665,12 +18709,13 @@ export interface operations {
|
|
|
18665
18709
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
18666
18710
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
18667
18711
|
* remove: Removes a value.
|
|
18712
|
+
* replace: Replaces the value at the target location.
|
|
18668
18713
|
* copy: Copies a value from one location to another.
|
|
18669
18714
|
* move: Moves a value from one location to another.
|
|
18670
18715
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
18671
18716
|
* @enum {string}
|
|
18672
18717
|
*/
|
|
18673
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
18718
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
18674
18719
|
/** @description JSON ref to value from where patch should be applied. */
|
|
18675
18720
|
mutatorRef?: string[][];
|
|
18676
18721
|
mutatedRef?: string[][];
|
|
@@ -18756,12 +18801,13 @@ export interface operations {
|
|
|
18756
18801
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
18757
18802
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
18758
18803
|
* remove: Removes a value.
|
|
18804
|
+
* replace: Replaces the value at the target location.
|
|
18759
18805
|
* copy: Copies a value from one location to another.
|
|
18760
18806
|
* move: Moves a value from one location to another.
|
|
18761
18807
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
18762
18808
|
* @enum {string}
|
|
18763
18809
|
*/
|
|
18764
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
18810
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
18765
18811
|
/** @description JSON ref to value from where patch should be applied. */
|
|
18766
18812
|
mutatorRef?: string[][];
|
|
18767
18813
|
mutatedRef?: string[][];
|
|
@@ -18850,12 +18896,13 @@ export interface operations {
|
|
|
18850
18896
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
18851
18897
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
18852
18898
|
* remove: Removes a value.
|
|
18899
|
+
* replace: Replaces the value at the target location.
|
|
18853
18900
|
* copy: Copies a value from one location to another.
|
|
18854
18901
|
* move: Moves a value from one location to another.
|
|
18855
18902
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
18856
18903
|
* @enum {string}
|
|
18857
18904
|
*/
|
|
18858
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
18905
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
18859
18906
|
/** @description JSON ref to value from where patch should be applied. */
|
|
18860
18907
|
mutatorRef?: string[][];
|
|
18861
18908
|
mutatedRef?: string[][];
|
|
@@ -18941,12 +18988,13 @@ export interface operations {
|
|
|
18941
18988
|
* merge: Combines the values of the target location with the values from the patch. If the target location doesn't exist, it is created.
|
|
18942
18989
|
* strategic: specific to Kubernetes and understands the structure of Kubernetes objects.
|
|
18943
18990
|
* remove: Removes a value.
|
|
18991
|
+
* replace: Replaces the value at the target location.
|
|
18944
18992
|
* copy: Copies a value from one location to another.
|
|
18945
18993
|
* move: Moves a value from one location to another.
|
|
18946
18994
|
* test: Tests that a value at the target location is equal to a specified value.
|
|
18947
18995
|
* @enum {string}
|
|
18948
18996
|
*/
|
|
18949
|
-
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "copy" | "move" | "test";
|
|
18997
|
+
patchStrategy?: "merge" | "strategic" | "add" | "remove" | "replace" | "copy" | "move" | "test";
|
|
18950
18998
|
/** @description JSON ref to value from where patch should be applied. */
|
|
18951
18999
|
mutatorRef?: string[][];
|
|
18952
19000
|
mutatedRef?: string[][];
|