ruby_aem 1.0.13 → 1.0.14
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.
- checksums.yaml +4 -4
- data/conf/spec.yaml +36 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b45d098721852515e8615685d3ee203f1a35a7a5
|
|
4
|
+
data.tar.gz: 514b59f46fc1afa79b49caf1adbc71b3ed9b1429
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45a8e3997e255d7f83d0e36d400bdf7465a0f8351464218c3f80d462dc9339b2d797118531771e7034891b22c1156d482970dbe48858981b562d80a744e1ef01
|
|
7
|
+
data.tar.gz: 218ea27d0607f86791dea71c51f3d3c0522c49a050b9373f59ce8fcb3590e32de902f8192247650fe515c9bfa91affaa82920b8a0180ad6b0ced6cc15bafee0c
|
data/conf/spec.yaml
CHANGED
|
@@ -81,15 +81,23 @@ flushagent:
|
|
|
81
81
|
message: 'Flush agent %{name} created on %{run_mode}'
|
|
82
82
|
delete:
|
|
83
83
|
api: sling
|
|
84
|
-
operation:
|
|
84
|
+
operation: postAgent
|
|
85
85
|
params:
|
|
86
86
|
required:
|
|
87
87
|
runmode: '%{run_mode}'
|
|
88
88
|
name: '%{name}'
|
|
89
|
+
optional:
|
|
90
|
+
operation: delete
|
|
89
91
|
responses:
|
|
92
|
+
200:
|
|
93
|
+
handler: simple
|
|
94
|
+
message: 'Flush agent %{name} deleted on %{run_mode}'
|
|
90
95
|
204:
|
|
91
96
|
handler: simple
|
|
92
97
|
message: 'Flush agent %{name} deleted on %{run_mode}'
|
|
98
|
+
403:
|
|
99
|
+
handler: simple_error
|
|
100
|
+
message: 'Flush agent %{name} not found on %{run_mode}'
|
|
93
101
|
exists:
|
|
94
102
|
api: sling
|
|
95
103
|
operation: getAgent
|
|
@@ -510,15 +518,23 @@ replicationagent:
|
|
|
510
518
|
message: 'Replication agent %{name} created on %{run_mode}'
|
|
511
519
|
delete:
|
|
512
520
|
api: sling
|
|
513
|
-
operation:
|
|
521
|
+
operation: postAgent
|
|
514
522
|
params:
|
|
515
523
|
required:
|
|
516
524
|
runmode: '%{run_mode}'
|
|
517
525
|
name: '%{name}'
|
|
526
|
+
optional:
|
|
527
|
+
operation: delete
|
|
518
528
|
responses:
|
|
529
|
+
200:
|
|
530
|
+
handler: simple
|
|
531
|
+
message: 'Replication agent %{name} deleted on %{run_mode}'
|
|
519
532
|
204:
|
|
520
533
|
handler: simple
|
|
521
534
|
message: 'Replication agent %{name} deleted on %{run_mode}'
|
|
535
|
+
403:
|
|
536
|
+
handler: simple_error
|
|
537
|
+
message: 'Replication agent %{name} not found on %{run_mode}'
|
|
522
538
|
exists:
|
|
523
539
|
api: sling
|
|
524
540
|
operation: getAgent
|
|
@@ -573,15 +589,23 @@ outboxreplicationagent:
|
|
|
573
589
|
message: 'Outbox replication agent %{name} created on %{run_mode}'
|
|
574
590
|
delete:
|
|
575
591
|
api: sling
|
|
576
|
-
operation:
|
|
592
|
+
operation: postAgent
|
|
577
593
|
params:
|
|
578
594
|
required:
|
|
579
595
|
runmode: '%{run_mode}'
|
|
580
596
|
name: '%{name}'
|
|
597
|
+
optional:
|
|
598
|
+
operation: delete
|
|
581
599
|
responses:
|
|
600
|
+
200:
|
|
601
|
+
handler: simple
|
|
602
|
+
message: 'Outbox replication agent %{name} deleted on %{run_mode}'
|
|
582
603
|
204:
|
|
583
604
|
handler: simple
|
|
584
605
|
message: 'Outbox replication agent %{name} deleted on %{run_mode}'
|
|
606
|
+
403:
|
|
607
|
+
handler: simple_error
|
|
608
|
+
message: 'Outbox replication agent %{name} not found on %{run_mode}'
|
|
585
609
|
exists:
|
|
586
610
|
api: sling
|
|
587
611
|
operation: getAgent
|
|
@@ -636,15 +660,23 @@ reversereplicationagent:
|
|
|
636
660
|
message: 'Reverse replication agent %{name} created on %{run_mode}'
|
|
637
661
|
delete:
|
|
638
662
|
api: sling
|
|
639
|
-
operation:
|
|
663
|
+
operation: postAgent
|
|
640
664
|
params:
|
|
641
665
|
required:
|
|
642
666
|
runmode: '%{run_mode}'
|
|
643
667
|
name: '%{name}'
|
|
668
|
+
optional:
|
|
669
|
+
operation: delete
|
|
644
670
|
responses:
|
|
671
|
+
200:
|
|
672
|
+
handler: simple
|
|
673
|
+
message: 'Reverse replication agent %{name} deleted on %{run_mode}'
|
|
645
674
|
204:
|
|
646
675
|
handler: simple
|
|
647
676
|
message: 'Reverse replication agent %{name} deleted on %{run_mode}'
|
|
677
|
+
403:
|
|
678
|
+
handler: simple_error
|
|
679
|
+
message: 'Reverse replication agent %{name} not found on %{run_mode}'
|
|
648
680
|
exists:
|
|
649
681
|
api: sling
|
|
650
682
|
operation: getAgent
|