@kernelminds/scailo-sdk 0.1.6 → 0.1.8

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.
@@ -587,5 +587,170 @@ exports.VaultService = {
587
587
  O: base_scailo_pb_js_1.CountResponse,
588
588
  kind: protobuf_1.MethodKind.Unary,
589
589
  },
590
+ /**
591
+ * Reconfigures the enclave (redeploys the enclave)
592
+ *
593
+ * @generated from rpc Scailo.VaultService.ReconfigureEnclave
594
+ */
595
+ reconfigureEnclave: {
596
+ name: "ReconfigureEnclave",
597
+ I: base_scailo_pb_js_1.IdentifierUUID,
598
+ O: base_scailo_pb_js_1.IdentifierUUID,
599
+ kind: protobuf_1.MethodKind.Unary,
600
+ },
601
+ /**
602
+ * Setup Enclave Ingress
603
+ *
604
+ * @generated from rpc Scailo.VaultService.SetupEnclaveIngress
605
+ */
606
+ setupEnclaveIngress: {
607
+ name: "SetupEnclaveIngress",
608
+ I: base_scailo_pb_js_1.IdentifierUUID,
609
+ O: vault_commons_scailo_pb_js_1.EnclaveIngress,
610
+ kind: protobuf_1.MethodKind.Unary,
611
+ },
612
+ /**
613
+ * View all enclave ingresses that match the given filter criteria
614
+ *
615
+ * @generated from rpc Scailo.VaultService.FilterEnclaveIngresses
616
+ */
617
+ filterEnclaveIngresses: {
618
+ name: "FilterEnclaveIngresses",
619
+ I: vault_commons_scailo_pb_js_1.EnclaveIngressFilterReq,
620
+ O: vault_commons_scailo_pb_js_1.EnclaveIngressesList,
621
+ kind: protobuf_1.MethodKind.Unary,
622
+ },
623
+ /**
624
+ * Count all enclave ingresses that match the given filter criteria
625
+ *
626
+ * @generated from rpc Scailo.VaultService.CountEnclaveIngresses
627
+ */
628
+ countEnclaveIngresses: {
629
+ name: "CountEnclaveIngresses",
630
+ I: vault_commons_scailo_pb_js_1.EnclaveIngressCountReq,
631
+ O: base_scailo_pb_js_1.CountResponse,
632
+ kind: protobuf_1.MethodKind.Unary,
633
+ },
634
+ /**
635
+ * Verifies the enclave ingress and returns the necessary information for subsequent requests
636
+ *
637
+ * @generated from rpc Scailo.VaultService.VerifyEnclaveIngress
638
+ */
639
+ verifyEnclaveIngress: {
640
+ name: "VerifyEnclaveIngress",
641
+ I: vault_commons_scailo_pb_js_1.VerifyEnclaveIngressRequest,
642
+ O: vault_commons_scailo_pb_js_1.VerifyEnclaveIngressResponse,
643
+ kind: protobuf_1.MethodKind.Unary,
644
+ },
645
+ /**
646
+ * Add environment variable to enclave
647
+ *
648
+ * @generated from rpc Scailo.VaultService.AddEnclaveEnvironmentVariable
649
+ */
650
+ addEnclaveEnvironmentVariable: {
651
+ name: "AddEnclaveEnvironmentVariable",
652
+ I: vault_commons_scailo_pb_js_1.EnclaveEnvironmentVariableAddRequest,
653
+ O: vault_commons_scailo_pb_js_1.EnclaveEnvironmentVariable,
654
+ kind: protobuf_1.MethodKind.Unary,
655
+ },
656
+ /**
657
+ * Update environment variable in enclave
658
+ *
659
+ * @generated from rpc Scailo.VaultService.UpdateEnclaveEnvironmentVariable
660
+ */
661
+ updateEnclaveEnvironmentVariable: {
662
+ name: "UpdateEnclaveEnvironmentVariable",
663
+ I: vault_commons_scailo_pb_js_1.EnclaveEnvironmentVariableUpdateRequest,
664
+ O: vault_commons_scailo_pb_js_1.EnclaveEnvironmentVariable,
665
+ kind: protobuf_1.MethodKind.Unary,
666
+ },
667
+ /**
668
+ * Delete environment variable in enclave
669
+ *
670
+ * @generated from rpc Scailo.VaultService.DeleteEnclaveEnvironmentVariable
671
+ */
672
+ deleteEnclaveEnvironmentVariable: {
673
+ name: "DeleteEnclaveEnvironmentVariable",
674
+ I: base_scailo_pb_js_1.IdentifierUUID,
675
+ O: base_scailo_pb_js_1.IdentifierResponse,
676
+ kind: protobuf_1.MethodKind.Unary,
677
+ },
678
+ /**
679
+ * View environment variable in enclave represented by the Identifier
680
+ *
681
+ * @generated from rpc Scailo.VaultService.ViewEnclaveEnvironmentVariable
682
+ */
683
+ viewEnclaveEnvironmentVariable: {
684
+ name: "ViewEnclaveEnvironmentVariable",
685
+ I: base_scailo_pb_js_1.IdentifierUUID,
686
+ O: vault_commons_scailo_pb_js_1.EnclaveEnvironmentVariable,
687
+ kind: protobuf_1.MethodKind.Unary,
688
+ },
689
+ /**
690
+ * View all environment variables in enclave for the enclave represented by the Identifier
691
+ *
692
+ * @generated from rpc Scailo.VaultService.ViewAllEnclaveEnvironmentVariables
693
+ */
694
+ viewAllEnclaveEnvironmentVariables: {
695
+ name: "ViewAllEnclaveEnvironmentVariables",
696
+ I: base_scailo_pb_js_1.IdentifierUUID,
697
+ O: vault_commons_scailo_pb_js_1.EnclaveEnvironmentVariablesList,
698
+ kind: protobuf_1.MethodKind.Unary,
699
+ },
700
+ /**
701
+ * Add domain to enclave
702
+ *
703
+ * @generated from rpc Scailo.VaultService.AddEnclaveDomain
704
+ */
705
+ addEnclaveDomain: {
706
+ name: "AddEnclaveDomain",
707
+ I: vault_commons_scailo_pb_js_1.EnclaveDomainAddRequest,
708
+ O: vault_commons_scailo_pb_js_1.EnclaveDomain,
709
+ kind: protobuf_1.MethodKind.Unary,
710
+ },
711
+ /**
712
+ * Delete domain from enclave
713
+ *
714
+ * @generated from rpc Scailo.VaultService.DeleteEnclaveDomain
715
+ */
716
+ deleteEnclaveDomain: {
717
+ name: "DeleteEnclaveDomain",
718
+ I: base_scailo_pb_js_1.IdentifierUUID,
719
+ O: base_scailo_pb_js_1.IdentifierResponse,
720
+ kind: protobuf_1.MethodKind.Unary,
721
+ },
722
+ /**
723
+ * View domain for enclave represented by the Identifier
724
+ *
725
+ * @generated from rpc Scailo.VaultService.ViewEnclaveDomain
726
+ */
727
+ viewEnclaveDomain: {
728
+ name: "ViewEnclaveDomain",
729
+ I: base_scailo_pb_js_1.IdentifierUUID,
730
+ O: vault_commons_scailo_pb_js_1.EnclaveDomain,
731
+ kind: protobuf_1.MethodKind.Unary,
732
+ },
733
+ /**
734
+ * View all domains for enclave for the enclave represented by the Identifier
735
+ *
736
+ * @generated from rpc Scailo.VaultService.ViewAllEnclaveDomains
737
+ */
738
+ viewAllEnclaveDomains: {
739
+ name: "ViewAllEnclaveDomains",
740
+ I: base_scailo_pb_js_1.IdentifierUUID,
741
+ O: vault_commons_scailo_pb_js_1.EnclaveDomainsList,
742
+ kind: protobuf_1.MethodKind.Unary,
743
+ },
744
+ /**
745
+ * Filter all domains that match the given filter criteria
746
+ *
747
+ * @generated from rpc Scailo.VaultService.FilterEnclaveDomains
748
+ */
749
+ filterEnclaveDomains: {
750
+ name: "FilterEnclaveDomains",
751
+ I: vault_commons_scailo_pb_js_1.EnclaveDomainsFilterReq,
752
+ O: vault_commons_scailo_pb_js_1.EnclaveDomainsList,
753
+ kind: protobuf_1.MethodKind.Unary,
754
+ },
590
755
  }
591
756
  };