@raystack/proton 0.1.0-ce225175aa066e6f296bc489293bb83ed0edcef6

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 (197) hide show
  1. package/google/api/annotations_pb.ts +33 -0
  2. package/google/api/field_behavior.ts +95 -0
  3. package/google/api/field_behavior_pb.ts +139 -0
  4. package/google/api/http.ts +695 -0
  5. package/google/api/http_pb.ts +547 -0
  6. package/google/api/httpbody.ts +159 -0
  7. package/google/api/httpbody_pb.ts +122 -0
  8. package/google/protobuf/any.ts +322 -0
  9. package/google/protobuf/descriptor.ts +3475 -0
  10. package/google/protobuf/duration.ts +231 -0
  11. package/google/protobuf/struct.ts +484 -0
  12. package/google/protobuf/timestamp.ts +290 -0
  13. package/google/protobuf/wrappers.ts +752 -0
  14. package/package.json +47 -0
  15. package/protoc-gen-openapiv2/options/annotations_pb.ts +78 -0
  16. package/protoc-gen-openapiv2/options/openapiv2.ts +3110 -0
  17. package/protoc-gen-openapiv2/options/openapiv2_pb.ts +1995 -0
  18. package/raystack/assets/index.ts +29 -0
  19. package/raystack/assets/v1beta1/bucket.ts +362 -0
  20. package/raystack/assets/v1beta1/bucket_pb.ts +233 -0
  21. package/raystack/assets/v1beta1/dashboard.ts +426 -0
  22. package/raystack/assets/v1beta1/dashboard_pb.ts +275 -0
  23. package/raystack/assets/v1beta1/event.ts +105 -0
  24. package/raystack/assets/v1beta1/event_pb.ts +70 -0
  25. package/raystack/assets/v1beta1/group.ts +223 -0
  26. package/raystack/assets/v1beta1/group_pb.ts +149 -0
  27. package/raystack/assets/v1beta1/job.ts +147 -0
  28. package/raystack/assets/v1beta1/job_pb.ts +100 -0
  29. package/raystack/assets/v1beta1/lineage.ts +90 -0
  30. package/raystack/assets/v1beta1/lineage_pb.ts +61 -0
  31. package/raystack/assets/v1beta1/ownership.ts +179 -0
  32. package/raystack/assets/v1beta1/ownership_pb.ts +119 -0
  33. package/raystack/assets/v1beta1/preview.ts +87 -0
  34. package/raystack/assets/v1beta1/preview_pb.ts +58 -0
  35. package/raystack/assets/v1beta1/properties.ts +116 -0
  36. package/raystack/assets/v1beta1/properties_pb.ts +63 -0
  37. package/raystack/assets/v1beta1/resource.ts +149 -0
  38. package/raystack/assets/v1beta1/resource_pb.ts +96 -0
  39. package/raystack/assets/v1beta1/schema.ts +421 -0
  40. package/raystack/assets/v1beta1/schema_pb.ts +262 -0
  41. package/raystack/assets/v1beta1/table.ts +408 -0
  42. package/raystack/assets/v1beta1/table_pb.ts +266 -0
  43. package/raystack/assets/v1beta1/timestamp.ts +158 -0
  44. package/raystack/assets/v1beta1/timestamp_pb.ts +107 -0
  45. package/raystack/assets/v1beta1/topic.ts +253 -0
  46. package/raystack/assets/v1beta1/topic_pb.ts +171 -0
  47. package/raystack/assets/v1beta1/user.ts +451 -0
  48. package/raystack/assets/v1beta1/user_pb.ts +292 -0
  49. package/raystack/assets/v1beta2/application.ts +125 -0
  50. package/raystack/assets/v1beta2/application_pb.ts +79 -0
  51. package/raystack/assets/v1beta2/asset.ts +269 -0
  52. package/raystack/assets/v1beta2/asset_pb.ts +157 -0
  53. package/raystack/assets/v1beta2/bucket.ts +341 -0
  54. package/raystack/assets/v1beta2/bucket_pb.ts +215 -0
  55. package/raystack/assets/v1beta2/common.ts +392 -0
  56. package/raystack/assets/v1beta2/common_pb.ts +258 -0
  57. package/raystack/assets/v1beta2/dashboard.ts +393 -0
  58. package/raystack/assets/v1beta2/dashboard_pb.ts +247 -0
  59. package/raystack/assets/v1beta2/experiment.ts +274 -0
  60. package/raystack/assets/v1beta2/experiment_pb.ts +180 -0
  61. package/raystack/assets/v1beta2/feature_table.ts +387 -0
  62. package/raystack/assets/v1beta2/feature_table_pb.ts +237 -0
  63. package/raystack/assets/v1beta2/group.ts +178 -0
  64. package/raystack/assets/v1beta2/group_pb.ts +118 -0
  65. package/raystack/assets/v1beta2/job.ts +99 -0
  66. package/raystack/assets/v1beta2/job_pb.ts +65 -0
  67. package/raystack/assets/v1beta2/metric.ts +163 -0
  68. package/raystack/assets/v1beta2/metric_pb.ts +105 -0
  69. package/raystack/assets/v1beta2/model.ts +519 -0
  70. package/raystack/assets/v1beta2/model_pb.ts +322 -0
  71. package/raystack/assets/v1beta2/table.ts +663 -0
  72. package/raystack/assets/v1beta2/table_pb.ts +409 -0
  73. package/raystack/assets/v1beta2/topic.ts +275 -0
  74. package/raystack/assets/v1beta2/topic_pb.ts +181 -0
  75. package/raystack/assets/v1beta2/user.ts +433 -0
  76. package/raystack/assets/v1beta2/user_pb.ts +277 -0
  77. package/raystack/common/index.ts +3 -0
  78. package/raystack/common/v1/service-CommonService_connectquery.ts +21 -0
  79. package/raystack/common/v1/service.client.ts +37 -0
  80. package/raystack/common/v1/service.ts +245 -0
  81. package/raystack/common/v1/service_connect.ts +26 -0
  82. package/raystack/common/v1/service_pb.ts +149 -0
  83. package/raystack/compass/index.ts +3 -0
  84. package/raystack/compass/v1beta1/service-CompassService_connectquery.ts +605 -0
  85. package/raystack/compass/v1beta1/service.client.ts +594 -0
  86. package/raystack/compass/v1beta1/service.ts +8169 -0
  87. package/raystack/compass/v1beta1/service_connect.ts +407 -0
  88. package/raystack/compass/v1beta1/service_pb.ts +4975 -0
  89. package/raystack/entropy/index.ts +6 -0
  90. package/raystack/entropy/v1beta1/module-ModuleService_connectquery.ts +77 -0
  91. package/raystack/entropy/v1beta1/module.client.ts +89 -0
  92. package/raystack/entropy/v1beta1/module.ts +692 -0
  93. package/raystack/entropy/v1beta1/module_connect.ts +62 -0
  94. package/raystack/entropy/v1beta1/module_pb.ts +445 -0
  95. package/raystack/entropy/v1beta1/resource-ResourceService_connectquery.ts +105 -0
  96. package/raystack/entropy/v1beta1/resource.client.ts +129 -0
  97. package/raystack/entropy/v1beta1/resource.ts +1817 -0
  98. package/raystack/entropy/v1beta1/resource_connect.ts +89 -0
  99. package/raystack/entropy/v1beta1/resource_pb.ts +1092 -0
  100. package/raystack/frontier/index.ts +7 -0
  101. package/raystack/frontier/v1beta1/admin-AdminService_connectquery.ts +756 -0
  102. package/raystack/frontier/v1beta1/admin.client.ts +849 -0
  103. package/raystack/frontier/v1beta1/admin.ts +9007 -0
  104. package/raystack/frontier/v1beta1/admin_connect.ts +573 -0
  105. package/raystack/frontier/v1beta1/admin_pb.ts +5615 -0
  106. package/raystack/frontier/v1beta1/frontier-FrontierService_connectquery.ts +2399 -0
  107. package/raystack/frontier/v1beta1/frontier.client.ts +2307 -0
  108. package/raystack/frontier/v1beta1/frontier.ts +23706 -0
  109. package/raystack/frontier/v1beta1/frontier_connect.ts +1574 -0
  110. package/raystack/frontier/v1beta1/frontier_pb.ts +15258 -0
  111. package/raystack/frontier/v1beta1/models.ts +7433 -0
  112. package/raystack/frontier/v1beta1/models_pb.ts +4345 -0
  113. package/raystack/guardian/index.ts +3 -0
  114. package/raystack/guardian/v1beta1/guardian-GuardianService_connectquery.ts +569 -0
  115. package/raystack/guardian/v1beta1/guardian.client.ts +552 -0
  116. package/raystack/guardian/v1beta1/guardian.ts +9688 -0
  117. package/raystack/guardian/v1beta1/guardian_connect.ts +381 -0
  118. package/raystack/guardian/v1beta1/guardian_pb.ts +5858 -0
  119. package/raystack/optimus/core/v1beta1/backup-BackupService_connectquery.ts +49 -0
  120. package/raystack/optimus/core/v1beta1/backup.client.ts +63 -0
  121. package/raystack/optimus/core/v1beta1/backup.ts +708 -0
  122. package/raystack/optimus/core/v1beta1/backup_connect.ts +44 -0
  123. package/raystack/optimus/core/v1beta1/backup_pb.ts +406 -0
  124. package/raystack/optimus/core/v1beta1/job_run-JobRunService_connectquery.ts +71 -0
  125. package/raystack/optimus/core/v1beta1/job_run.client.ts +96 -0
  126. package/raystack/optimus/core/v1beta1/job_run.ts +1008 -0
  127. package/raystack/optimus/core/v1beta1/job_run_connect.ts +63 -0
  128. package/raystack/optimus/core/v1beta1/job_run_pb.ts +612 -0
  129. package/raystack/optimus/core/v1beta1/job_spec-JobSpecificationService_connectquery.ts +249 -0
  130. package/raystack/optimus/core/v1beta1/job_spec.client.ts +363 -0
  131. package/raystack/optimus/core/v1beta1/job_spec.ts +5134 -0
  132. package/raystack/optimus/core/v1beta1/job_spec_connect.ts +233 -0
  133. package/raystack/optimus/core/v1beta1/job_spec_pb.ts +3196 -0
  134. package/raystack/optimus/core/v1beta1/namespace-NamespaceService_connectquery.ts +55 -0
  135. package/raystack/optimus/core/v1beta1/namespace.client.ts +75 -0
  136. package/raystack/optimus/core/v1beta1/namespace.ts +477 -0
  137. package/raystack/optimus/core/v1beta1/namespace_connect.ts +50 -0
  138. package/raystack/optimus/core/v1beta1/namespace_pb.ts +291 -0
  139. package/raystack/optimus/core/v1beta1/project-ProjectService_connectquery.ts +55 -0
  140. package/raystack/optimus/core/v1beta1/project.client.ts +75 -0
  141. package/raystack/optimus/core/v1beta1/project.ts +520 -0
  142. package/raystack/optimus/core/v1beta1/project_connect.ts +50 -0
  143. package/raystack/optimus/core/v1beta1/project_pb.ts +322 -0
  144. package/raystack/optimus/core/v1beta1/replay-ReplayService_connectquery.ts +63 -0
  145. package/raystack/optimus/core/v1beta1/replay.client.ts +76 -0
  146. package/raystack/optimus/core/v1beta1/replay.ts +881 -0
  147. package/raystack/optimus/core/v1beta1/replay_connect.ts +53 -0
  148. package/raystack/optimus/core/v1beta1/replay_pb.ts +522 -0
  149. package/raystack/optimus/core/v1beta1/resource-ResourceService_connectquery.ts +104 -0
  150. package/raystack/optimus/core/v1beta1/resource.client.ts +148 -0
  151. package/raystack/optimus/core/v1beta1/resource.ts +1329 -0
  152. package/raystack/optimus/core/v1beta1/resource_connect.ts +96 -0
  153. package/raystack/optimus/core/v1beta1/resource_pb.ts +791 -0
  154. package/raystack/optimus/core/v1beta1/runtime-RuntimeService_connectquery.ts +23 -0
  155. package/raystack/optimus/core/v1beta1/runtime.client.ts +45 -0
  156. package/raystack/optimus/core/v1beta1/runtime.ts +131 -0
  157. package/raystack/optimus/core/v1beta1/runtime_connect.ts +30 -0
  158. package/raystack/optimus/core/v1beta1/runtime_pb.ts +82 -0
  159. package/raystack/optimus/core/v1beta1/secret-SecretService_connectquery.ts +71 -0
  160. package/raystack/optimus/core/v1beta1/secret.client.ts +92 -0
  161. package/raystack/optimus/core/v1beta1/secret.ts +619 -0
  162. package/raystack/optimus/core/v1beta1/secret_connect.ts +61 -0
  163. package/raystack/optimus/core/v1beta1/secret_pb.ts +393 -0
  164. package/raystack/optimus/core/v1beta1/status.ts +113 -0
  165. package/raystack/optimus/core/v1beta1/status_pb.ts +101 -0
  166. package/raystack/optimus/integration/v1beta1/event.ts +531 -0
  167. package/raystack/optimus/integration/v1beta1/event_pb.ts +362 -0
  168. package/raystack/optimus/plugins/v1beta1/dependency_resolver-DependencyResolverModService_connectquery.ts +72 -0
  169. package/raystack/optimus/plugins/v1beta1/dependency_resolver.client.ts +100 -0
  170. package/raystack/optimus/plugins/v1beta1/dependency_resolver.ts +950 -0
  171. package/raystack/optimus/plugins/v1beta1/dependency_resolver_connect.ts +65 -0
  172. package/raystack/optimus/plugins/v1beta1/dependency_resolver_pb.ts +604 -0
  173. package/raystack/predator/index.ts +2 -0
  174. package/raystack/predator/v1beta1/metrics_log.ts +457 -0
  175. package/raystack/predator/v1beta1/metrics_log_pb.ts +277 -0
  176. package/raystack/predator/v1beta1/result_log.ts +390 -0
  177. package/raystack/predator/v1beta1/result_log_pb.ts +235 -0
  178. package/raystack/raccoon/index.ts +3 -0
  179. package/raystack/raccoon/v1beta1/raccoon-EventService_connectquery.ts +21 -0
  180. package/raystack/raccoon/v1beta1/raccoon.client.ts +37 -0
  181. package/raystack/raccoon/v1beta1/raccoon.ts +442 -0
  182. package/raystack/raccoon/v1beta1/raccoon_connect.ts +26 -0
  183. package/raystack/raccoon/v1beta1/raccoon_pb.ts +324 -0
  184. package/raystack/siren/index.ts +3 -0
  185. package/raystack/siren/v1beta1/siren-SirenService_connectquery.ts +497 -0
  186. package/raystack/siren/v1beta1/siren.client.ts +479 -0
  187. package/raystack/siren/v1beta1/siren.ts +6507 -0
  188. package/raystack/siren/v1beta1/siren_connect.ts +332 -0
  189. package/raystack/siren/v1beta1/siren_pb.ts +3853 -0
  190. package/raystack/stencil/index.ts +3 -0
  191. package/raystack/stencil/v1beta1/stencil-StencilService_connectquery.ts +231 -0
  192. package/raystack/stencil/v1beta1/stencil.client.ts +232 -0
  193. package/raystack/stencil/v1beta1/stencil.ts +2716 -0
  194. package/raystack/stencil/v1beta1/stencil_connect.ts +161 -0
  195. package/raystack/stencil/v1beta1/stencil_pb.ts +1729 -0
  196. package/validate/validate.ts +4130 -0
  197. package/validate/validate_pb.ts +2621 -0
@@ -0,0 +1,65 @@
1
+ // @generated by protoc-gen-connect-es v1.6.1 with parameter "target=ts"
2
+ // @generated from file raystack/optimus/plugins/v1beta1/dependency_resolver.proto (package raystack.optimus.plugins.v1beta1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+
6
+ import { CompileAssetsRequest, CompileAssetsResponse, GenerateDependenciesRequest, GenerateDependenciesResponse, GenerateDestinationRequest, GenerateDestinationResponse, GetNameRequest, GetNameResponse } from "./dependency_resolver_pb.js";
7
+ import { MethodKind } from "@bufbuild/protobuf";
8
+
9
+ /**
10
+ * DependencyResolverModService must be implemented by all plugins want to support automatic
11
+ * dependency resolution
12
+ *
13
+ * @generated from service raystack.optimus.plugins.v1beta1.DependencyResolverModService
14
+ */
15
+ export const DependencyResolverModService = {
16
+ typeName: "raystack.optimus.plugins.v1beta1.DependencyResolverModService",
17
+ methods: {
18
+ /**
19
+ * GetName returns name of the plugin
20
+ *
21
+ * @generated from rpc raystack.optimus.plugins.v1beta1.DependencyResolverModService.GetName
22
+ */
23
+ getName: {
24
+ name: "GetName",
25
+ I: GetNameRequest,
26
+ O: GetNameResponse,
27
+ kind: MethodKind.Unary,
28
+ },
29
+ /**
30
+ * GenerateDestination derive destination from config and assets
31
+ *
32
+ * @generated from rpc raystack.optimus.plugins.v1beta1.DependencyResolverModService.GenerateDestination
33
+ */
34
+ generateDestination: {
35
+ name: "GenerateDestination",
36
+ I: GenerateDestinationRequest,
37
+ O: GenerateDestinationResponse,
38
+ kind: MethodKind.Unary,
39
+ },
40
+ /**
41
+ * GenerateDependencies return names of job destination on which this unit
42
+ * is dependent on
43
+ *
44
+ * @generated from rpc raystack.optimus.plugins.v1beta1.DependencyResolverModService.GenerateDependencies
45
+ */
46
+ generateDependencies: {
47
+ name: "GenerateDependencies",
48
+ I: GenerateDependenciesRequest,
49
+ O: GenerateDependenciesResponse,
50
+ kind: MethodKind.Unary,
51
+ },
52
+ /**
53
+ * CompileAssets overrides the default asset compilation behaviour
54
+ *
55
+ * @generated from rpc raystack.optimus.plugins.v1beta1.DependencyResolverModService.CompileAssets
56
+ */
57
+ compileAssets: {
58
+ name: "CompileAssets",
59
+ I: CompileAssetsRequest,
60
+ O: CompileAssetsResponse,
61
+ kind: MethodKind.Unary,
62
+ },
63
+ }
64
+ } as const;
65
+
@@ -0,0 +1,604 @@
1
+ // @generated by protoc-gen-es v1.10.1 with parameter "target=ts,import_extension=none"
2
+ // @generated from file raystack/optimus/plugins/v1beta1/dependency_resolver.proto (package raystack.optimus.plugins.v1beta1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+
6
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
7
+ import { Message, proto3, Timestamp } from "@bufbuild/protobuf";
8
+
9
+ /**
10
+ * @generated from message raystack.optimus.plugins.v1beta1.GetNameRequest
11
+ */
12
+ export class GetNameRequest extends Message<GetNameRequest> {
13
+ constructor(data?: PartialMessage<GetNameRequest>) {
14
+ super();
15
+ proto3.util.initPartial(data, this);
16
+ }
17
+
18
+ static readonly runtime: typeof proto3 = proto3;
19
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.GetNameRequest";
20
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
21
+ ]);
22
+
23
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetNameRequest {
24
+ return new GetNameRequest().fromBinary(bytes, options);
25
+ }
26
+
27
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetNameRequest {
28
+ return new GetNameRequest().fromJson(jsonValue, options);
29
+ }
30
+
31
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetNameRequest {
32
+ return new GetNameRequest().fromJsonString(jsonString, options);
33
+ }
34
+
35
+ static equals(a: GetNameRequest | PlainMessage<GetNameRequest> | undefined, b: GetNameRequest | PlainMessage<GetNameRequest> | undefined): boolean {
36
+ return proto3.util.equals(GetNameRequest, a, b);
37
+ }
38
+ }
39
+
40
+ /**
41
+ * @generated from message raystack.optimus.plugins.v1beta1.GetNameResponse
42
+ */
43
+ export class GetNameResponse extends Message<GetNameResponse> {
44
+ /**
45
+ * @generated from field: string name = 1;
46
+ */
47
+ name = "";
48
+
49
+ constructor(data?: PartialMessage<GetNameResponse>) {
50
+ super();
51
+ proto3.util.initPartial(data, this);
52
+ }
53
+
54
+ static readonly runtime: typeof proto3 = proto3;
55
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.GetNameResponse";
56
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
57
+ { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
58
+ ]);
59
+
60
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetNameResponse {
61
+ return new GetNameResponse().fromBinary(bytes, options);
62
+ }
63
+
64
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetNameResponse {
65
+ return new GetNameResponse().fromJson(jsonValue, options);
66
+ }
67
+
68
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetNameResponse {
69
+ return new GetNameResponse().fromJsonString(jsonString, options);
70
+ }
71
+
72
+ static equals(a: GetNameResponse | PlainMessage<GetNameResponse> | undefined, b: GetNameResponse | PlainMessage<GetNameResponse> | undefined): boolean {
73
+ return proto3.util.equals(GetNameResponse, a, b);
74
+ }
75
+ }
76
+
77
+ /**
78
+ * @generated from message raystack.optimus.plugins.v1beta1.GenerateDestinationRequest
79
+ */
80
+ export class GenerateDestinationRequest extends Message<GenerateDestinationRequest> {
81
+ /**
82
+ * @generated from field: raystack.optimus.plugins.v1beta1.Configs config = 1;
83
+ */
84
+ config?: Configs;
85
+
86
+ /**
87
+ * @generated from field: raystack.optimus.plugins.v1beta1.Assets assets = 2;
88
+ */
89
+ assets?: Assets;
90
+
91
+ /**
92
+ * @generated from field: raystack.optimus.plugins.v1beta1.PluginOptions options = 40;
93
+ */
94
+ options?: PluginOptions;
95
+
96
+ constructor(data?: PartialMessage<GenerateDestinationRequest>) {
97
+ super();
98
+ proto3.util.initPartial(data, this);
99
+ }
100
+
101
+ static readonly runtime: typeof proto3 = proto3;
102
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.GenerateDestinationRequest";
103
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
104
+ { no: 1, name: "config", kind: "message", T: Configs },
105
+ { no: 2, name: "assets", kind: "message", T: Assets },
106
+ { no: 40, name: "options", kind: "message", T: PluginOptions },
107
+ ]);
108
+
109
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GenerateDestinationRequest {
110
+ return new GenerateDestinationRequest().fromBinary(bytes, options);
111
+ }
112
+
113
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GenerateDestinationRequest {
114
+ return new GenerateDestinationRequest().fromJson(jsonValue, options);
115
+ }
116
+
117
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GenerateDestinationRequest {
118
+ return new GenerateDestinationRequest().fromJsonString(jsonString, options);
119
+ }
120
+
121
+ static equals(a: GenerateDestinationRequest | PlainMessage<GenerateDestinationRequest> | undefined, b: GenerateDestinationRequest | PlainMessage<GenerateDestinationRequest> | undefined): boolean {
122
+ return proto3.util.equals(GenerateDestinationRequest, a, b);
123
+ }
124
+ }
125
+
126
+ /**
127
+ * @generated from message raystack.optimus.plugins.v1beta1.GenerateDestinationResponse
128
+ */
129
+ export class GenerateDestinationResponse extends Message<GenerateDestinationResponse> {
130
+ /**
131
+ * @generated from field: string destination = 1;
132
+ */
133
+ destination = "";
134
+
135
+ /**
136
+ * @generated from field: string destination_type = 2;
137
+ */
138
+ destinationType = "";
139
+
140
+ constructor(data?: PartialMessage<GenerateDestinationResponse>) {
141
+ super();
142
+ proto3.util.initPartial(data, this);
143
+ }
144
+
145
+ static readonly runtime: typeof proto3 = proto3;
146
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.GenerateDestinationResponse";
147
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
148
+ { no: 1, name: "destination", kind: "scalar", T: 9 /* ScalarType.STRING */ },
149
+ { no: 2, name: "destination_type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
150
+ ]);
151
+
152
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GenerateDestinationResponse {
153
+ return new GenerateDestinationResponse().fromBinary(bytes, options);
154
+ }
155
+
156
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GenerateDestinationResponse {
157
+ return new GenerateDestinationResponse().fromJson(jsonValue, options);
158
+ }
159
+
160
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GenerateDestinationResponse {
161
+ return new GenerateDestinationResponse().fromJsonString(jsonString, options);
162
+ }
163
+
164
+ static equals(a: GenerateDestinationResponse | PlainMessage<GenerateDestinationResponse> | undefined, b: GenerateDestinationResponse | PlainMessage<GenerateDestinationResponse> | undefined): boolean {
165
+ return proto3.util.equals(GenerateDestinationResponse, a, b);
166
+ }
167
+ }
168
+
169
+ /**
170
+ * @generated from message raystack.optimus.plugins.v1beta1.GenerateDependenciesRequest
171
+ */
172
+ export class GenerateDependenciesRequest extends Message<GenerateDependenciesRequest> {
173
+ /**
174
+ * @generated from field: raystack.optimus.plugins.v1beta1.Configs config = 1;
175
+ */
176
+ config?: Configs;
177
+
178
+ /**
179
+ * @generated from field: raystack.optimus.plugins.v1beta1.Assets assets = 2;
180
+ */
181
+ assets?: Assets;
182
+
183
+ /**
184
+ * @generated from field: raystack.optimus.plugins.v1beta1.PluginOptions options = 40;
185
+ */
186
+ options?: PluginOptions;
187
+
188
+ constructor(data?: PartialMessage<GenerateDependenciesRequest>) {
189
+ super();
190
+ proto3.util.initPartial(data, this);
191
+ }
192
+
193
+ static readonly runtime: typeof proto3 = proto3;
194
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.GenerateDependenciesRequest";
195
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
196
+ { no: 1, name: "config", kind: "message", T: Configs },
197
+ { no: 2, name: "assets", kind: "message", T: Assets },
198
+ { no: 40, name: "options", kind: "message", T: PluginOptions },
199
+ ]);
200
+
201
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GenerateDependenciesRequest {
202
+ return new GenerateDependenciesRequest().fromBinary(bytes, options);
203
+ }
204
+
205
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GenerateDependenciesRequest {
206
+ return new GenerateDependenciesRequest().fromJson(jsonValue, options);
207
+ }
208
+
209
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GenerateDependenciesRequest {
210
+ return new GenerateDependenciesRequest().fromJsonString(jsonString, options);
211
+ }
212
+
213
+ static equals(a: GenerateDependenciesRequest | PlainMessage<GenerateDependenciesRequest> | undefined, b: GenerateDependenciesRequest | PlainMessage<GenerateDependenciesRequest> | undefined): boolean {
214
+ return proto3.util.equals(GenerateDependenciesRequest, a, b);
215
+ }
216
+ }
217
+
218
+ /**
219
+ * @generated from message raystack.optimus.plugins.v1beta1.GenerateDependenciesResponse
220
+ */
221
+ export class GenerateDependenciesResponse extends Message<GenerateDependenciesResponse> {
222
+ /**
223
+ * @generated from field: repeated string dependencies = 1;
224
+ */
225
+ dependencies: string[] = [];
226
+
227
+ constructor(data?: PartialMessage<GenerateDependenciesResponse>) {
228
+ super();
229
+ proto3.util.initPartial(data, this);
230
+ }
231
+
232
+ static readonly runtime: typeof proto3 = proto3;
233
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.GenerateDependenciesResponse";
234
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
235
+ { no: 1, name: "dependencies", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
236
+ ]);
237
+
238
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GenerateDependenciesResponse {
239
+ return new GenerateDependenciesResponse().fromBinary(bytes, options);
240
+ }
241
+
242
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GenerateDependenciesResponse {
243
+ return new GenerateDependenciesResponse().fromJson(jsonValue, options);
244
+ }
245
+
246
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GenerateDependenciesResponse {
247
+ return new GenerateDependenciesResponse().fromJsonString(jsonString, options);
248
+ }
249
+
250
+ static equals(a: GenerateDependenciesResponse | PlainMessage<GenerateDependenciesResponse> | undefined, b: GenerateDependenciesResponse | PlainMessage<GenerateDependenciesResponse> | undefined): boolean {
251
+ return proto3.util.equals(GenerateDependenciesResponse, a, b);
252
+ }
253
+ }
254
+
255
+ /**
256
+ * @generated from message raystack.optimus.plugins.v1beta1.Configs
257
+ */
258
+ export class Configs extends Message<Configs> {
259
+ /**
260
+ * @generated from field: repeated raystack.optimus.plugins.v1beta1.Configs.Config configs = 1;
261
+ */
262
+ configs: Configs_Config[] = [];
263
+
264
+ constructor(data?: PartialMessage<Configs>) {
265
+ super();
266
+ proto3.util.initPartial(data, this);
267
+ }
268
+
269
+ static readonly runtime: typeof proto3 = proto3;
270
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.Configs";
271
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
272
+ { no: 1, name: "configs", kind: "message", T: Configs_Config, repeated: true },
273
+ ]);
274
+
275
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Configs {
276
+ return new Configs().fromBinary(bytes, options);
277
+ }
278
+
279
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Configs {
280
+ return new Configs().fromJson(jsonValue, options);
281
+ }
282
+
283
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Configs {
284
+ return new Configs().fromJsonString(jsonString, options);
285
+ }
286
+
287
+ static equals(a: Configs | PlainMessage<Configs> | undefined, b: Configs | PlainMessage<Configs> | undefined): boolean {
288
+ return proto3.util.equals(Configs, a, b);
289
+ }
290
+ }
291
+
292
+ /**
293
+ * @generated from message raystack.optimus.plugins.v1beta1.Configs.Config
294
+ */
295
+ export class Configs_Config extends Message<Configs_Config> {
296
+ /**
297
+ * @generated from field: string name = 1;
298
+ */
299
+ name = "";
300
+
301
+ /**
302
+ * @generated from field: string value = 2;
303
+ */
304
+ value = "";
305
+
306
+ constructor(data?: PartialMessage<Configs_Config>) {
307
+ super();
308
+ proto3.util.initPartial(data, this);
309
+ }
310
+
311
+ static readonly runtime: typeof proto3 = proto3;
312
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.Configs.Config";
313
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
314
+ { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
315
+ { no: 2, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
316
+ ]);
317
+
318
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Configs_Config {
319
+ return new Configs_Config().fromBinary(bytes, options);
320
+ }
321
+
322
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Configs_Config {
323
+ return new Configs_Config().fromJson(jsonValue, options);
324
+ }
325
+
326
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Configs_Config {
327
+ return new Configs_Config().fromJsonString(jsonString, options);
328
+ }
329
+
330
+ static equals(a: Configs_Config | PlainMessage<Configs_Config> | undefined, b: Configs_Config | PlainMessage<Configs_Config> | undefined): boolean {
331
+ return proto3.util.equals(Configs_Config, a, b);
332
+ }
333
+ }
334
+
335
+ /**
336
+ * @generated from message raystack.optimus.plugins.v1beta1.Assets
337
+ */
338
+ export class Assets extends Message<Assets> {
339
+ /**
340
+ * @generated from field: repeated raystack.optimus.plugins.v1beta1.Assets.Asset assets = 1;
341
+ */
342
+ assets: Assets_Asset[] = [];
343
+
344
+ constructor(data?: PartialMessage<Assets>) {
345
+ super();
346
+ proto3.util.initPartial(data, this);
347
+ }
348
+
349
+ static readonly runtime: typeof proto3 = proto3;
350
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.Assets";
351
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
352
+ { no: 1, name: "assets", kind: "message", T: Assets_Asset, repeated: true },
353
+ ]);
354
+
355
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Assets {
356
+ return new Assets().fromBinary(bytes, options);
357
+ }
358
+
359
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Assets {
360
+ return new Assets().fromJson(jsonValue, options);
361
+ }
362
+
363
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Assets {
364
+ return new Assets().fromJsonString(jsonString, options);
365
+ }
366
+
367
+ static equals(a: Assets | PlainMessage<Assets> | undefined, b: Assets | PlainMessage<Assets> | undefined): boolean {
368
+ return proto3.util.equals(Assets, a, b);
369
+ }
370
+ }
371
+
372
+ /**
373
+ * @generated from message raystack.optimus.plugins.v1beta1.Assets.Asset
374
+ */
375
+ export class Assets_Asset extends Message<Assets_Asset> {
376
+ /**
377
+ * @generated from field: string name = 1;
378
+ */
379
+ name = "";
380
+
381
+ /**
382
+ * @generated from field: string value = 2;
383
+ */
384
+ value = "";
385
+
386
+ constructor(data?: PartialMessage<Assets_Asset>) {
387
+ super();
388
+ proto3.util.initPartial(data, this);
389
+ }
390
+
391
+ static readonly runtime: typeof proto3 = proto3;
392
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.Assets.Asset";
393
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
394
+ { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
395
+ { no: 2, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
396
+ ]);
397
+
398
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Assets_Asset {
399
+ return new Assets_Asset().fromBinary(bytes, options);
400
+ }
401
+
402
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Assets_Asset {
403
+ return new Assets_Asset().fromJson(jsonValue, options);
404
+ }
405
+
406
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Assets_Asset {
407
+ return new Assets_Asset().fromJsonString(jsonString, options);
408
+ }
409
+
410
+ static equals(a: Assets_Asset | PlainMessage<Assets_Asset> | undefined, b: Assets_Asset | PlainMessage<Assets_Asset> | undefined): boolean {
411
+ return proto3.util.equals(Assets_Asset, a, b);
412
+ }
413
+ }
414
+
415
+ /**
416
+ * @generated from message raystack.optimus.plugins.v1beta1.InstanceData
417
+ */
418
+ export class InstanceData extends Message<InstanceData> {
419
+ /**
420
+ * @generated from field: string name = 1;
421
+ */
422
+ name = "";
423
+
424
+ /**
425
+ * @generated from field: string value = 2;
426
+ */
427
+ value = "";
428
+
429
+ /**
430
+ * @generated from field: string type = 3;
431
+ */
432
+ type = "";
433
+
434
+ constructor(data?: PartialMessage<InstanceData>) {
435
+ super();
436
+ proto3.util.initPartial(data, this);
437
+ }
438
+
439
+ static readonly runtime: typeof proto3 = proto3;
440
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.InstanceData";
441
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
442
+ { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
443
+ { no: 2, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
444
+ { no: 3, name: "type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
445
+ ]);
446
+
447
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InstanceData {
448
+ return new InstanceData().fromBinary(bytes, options);
449
+ }
450
+
451
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InstanceData {
452
+ return new InstanceData().fromJson(jsonValue, options);
453
+ }
454
+
455
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InstanceData {
456
+ return new InstanceData().fromJsonString(jsonString, options);
457
+ }
458
+
459
+ static equals(a: InstanceData | PlainMessage<InstanceData> | undefined, b: InstanceData | PlainMessage<InstanceData> | undefined): boolean {
460
+ return proto3.util.equals(InstanceData, a, b);
461
+ }
462
+ }
463
+
464
+ /**
465
+ * @generated from message raystack.optimus.plugins.v1beta1.CompileAssetsRequest
466
+ */
467
+ export class CompileAssetsRequest extends Message<CompileAssetsRequest> {
468
+ /**
469
+ * @generated from field: raystack.optimus.plugins.v1beta1.Configs configs = 1;
470
+ */
471
+ configs?: Configs;
472
+
473
+ /**
474
+ * @generated from field: raystack.optimus.plugins.v1beta1.Assets assets = 2;
475
+ */
476
+ assets?: Assets;
477
+
478
+ /**
479
+ * @generated from field: repeated raystack.optimus.plugins.v1beta1.InstanceData instance_data = 8;
480
+ */
481
+ instanceData: InstanceData[] = [];
482
+
483
+ /**
484
+ * @generated from field: google.protobuf.Timestamp start_time = 6;
485
+ */
486
+ startTime?: Timestamp;
487
+
488
+ /**
489
+ * @generated from field: google.protobuf.Timestamp end_time = 7;
490
+ */
491
+ endTime?: Timestamp;
492
+
493
+ /**
494
+ * @generated from field: raystack.optimus.plugins.v1beta1.PluginOptions options = 40;
495
+ */
496
+ options?: PluginOptions;
497
+
498
+ constructor(data?: PartialMessage<CompileAssetsRequest>) {
499
+ super();
500
+ proto3.util.initPartial(data, this);
501
+ }
502
+
503
+ static readonly runtime: typeof proto3 = proto3;
504
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.CompileAssetsRequest";
505
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
506
+ { no: 1, name: "configs", kind: "message", T: Configs },
507
+ { no: 2, name: "assets", kind: "message", T: Assets },
508
+ { no: 8, name: "instance_data", kind: "message", T: InstanceData, repeated: true },
509
+ { no: 6, name: "start_time", kind: "message", T: Timestamp },
510
+ { no: 7, name: "end_time", kind: "message", T: Timestamp },
511
+ { no: 40, name: "options", kind: "message", T: PluginOptions },
512
+ ]);
513
+
514
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CompileAssetsRequest {
515
+ return new CompileAssetsRequest().fromBinary(bytes, options);
516
+ }
517
+
518
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CompileAssetsRequest {
519
+ return new CompileAssetsRequest().fromJson(jsonValue, options);
520
+ }
521
+
522
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CompileAssetsRequest {
523
+ return new CompileAssetsRequest().fromJsonString(jsonString, options);
524
+ }
525
+
526
+ static equals(a: CompileAssetsRequest | PlainMessage<CompileAssetsRequest> | undefined, b: CompileAssetsRequest | PlainMessage<CompileAssetsRequest> | undefined): boolean {
527
+ return proto3.util.equals(CompileAssetsRequest, a, b);
528
+ }
529
+ }
530
+
531
+ /**
532
+ * @generated from message raystack.optimus.plugins.v1beta1.CompileAssetsResponse
533
+ */
534
+ export class CompileAssetsResponse extends Message<CompileAssetsResponse> {
535
+ /**
536
+ * @generated from field: raystack.optimus.plugins.v1beta1.Assets assets = 1;
537
+ */
538
+ assets?: Assets;
539
+
540
+ constructor(data?: PartialMessage<CompileAssetsResponse>) {
541
+ super();
542
+ proto3.util.initPartial(data, this);
543
+ }
544
+
545
+ static readonly runtime: typeof proto3 = proto3;
546
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.CompileAssetsResponse";
547
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
548
+ { no: 1, name: "assets", kind: "message", T: Assets },
549
+ ]);
550
+
551
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CompileAssetsResponse {
552
+ return new CompileAssetsResponse().fromBinary(bytes, options);
553
+ }
554
+
555
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CompileAssetsResponse {
556
+ return new CompileAssetsResponse().fromJson(jsonValue, options);
557
+ }
558
+
559
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CompileAssetsResponse {
560
+ return new CompileAssetsResponse().fromJsonString(jsonString, options);
561
+ }
562
+
563
+ static equals(a: CompileAssetsResponse | PlainMessage<CompileAssetsResponse> | undefined, b: CompileAssetsResponse | PlainMessage<CompileAssetsResponse> | undefined): boolean {
564
+ return proto3.util.equals(CompileAssetsResponse, a, b);
565
+ }
566
+ }
567
+
568
+ /**
569
+ * @generated from message raystack.optimus.plugins.v1beta1.PluginOptions
570
+ */
571
+ export class PluginOptions extends Message<PluginOptions> {
572
+ /**
573
+ * @generated from field: bool dry_run = 1;
574
+ */
575
+ dryRun = false;
576
+
577
+ constructor(data?: PartialMessage<PluginOptions>) {
578
+ super();
579
+ proto3.util.initPartial(data, this);
580
+ }
581
+
582
+ static readonly runtime: typeof proto3 = proto3;
583
+ static readonly typeName = "raystack.optimus.plugins.v1beta1.PluginOptions";
584
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
585
+ { no: 1, name: "dry_run", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
586
+ ]);
587
+
588
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PluginOptions {
589
+ return new PluginOptions().fromBinary(bytes, options);
590
+ }
591
+
592
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PluginOptions {
593
+ return new PluginOptions().fromJson(jsonValue, options);
594
+ }
595
+
596
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PluginOptions {
597
+ return new PluginOptions().fromJsonString(jsonString, options);
598
+ }
599
+
600
+ static equals(a: PluginOptions | PlainMessage<PluginOptions> | undefined, b: PluginOptions | PlainMessage<PluginOptions> | undefined): boolean {
601
+ return proto3.util.equals(PluginOptions, a, b);
602
+ }
603
+ }
604
+
@@ -0,0 +1,2 @@
1
+ export * from "./v1beta1/metrics_log";
2
+ export * from "./v1beta1/result_log";