+
+
+
+ *
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Autoscale
+
+
+
+ Manual
+
+
+
+
+
+
+ Provision maximum RU/s required by this resource. Estimate your required RU/s with
+ capacity calculator.
+
+
+ Max RU/s
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Choose unlimited storage capacity for more than 10,000 RU/s.
+
+
+
+
+
+ Estimate your required throughput with
+ capacity calculator
+
+
+
+
+
+
+
+
+
+
+
+

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Choose unlimited storage capacity for more than 10,000 RU/s.
+
+
+
diff --git a/src/Explorer/Panes/PaneComponents.ts b/src/Explorer/Panes/PaneComponents.ts
index 34ff76ed3..708f24b4b 100644
--- a/src/Explorer/Panes/PaneComponents.ts
+++ b/src/Explorer/Panes/PaneComponents.ts
@@ -2,6 +2,8 @@ import AddCollectionPaneTemplate from "./AddCollectionPane.html";
import AddDatabasePaneTemplate from "./AddDatabasePane.html";
import CassandraAddCollectionPaneTemplate from "./CassandraAddCollectionPane.html";
import GraphStylingPaneTemplate from "./GraphStylingPane.html";
+import TableAddEntityPaneTemplate from "./Tables/TableAddEntityPane.html";
+import TableEditEntityPaneTemplate from "./Tables/TableEditEntityPane.html";
export class PaneComponent {
constructor(data: any) {
@@ -35,6 +37,23 @@ export class GraphStylingPaneComponent {
}
}
+export class TableAddEntityPaneComponent {
+ constructor() {
+ return {
+ viewModel: PaneComponent,
+ template: TableAddEntityPaneTemplate,
+ };
+ }
+}
+
+export class TableEditEntityPaneComponent {
+ constructor() {
+ return {
+ viewModel: PaneComponent,
+ template: TableEditEntityPaneTemplate,
+ };
+ }
+}
export class CassandraAddCollectionPaneComponent {
constructor() {
return {