@octelium/apis 1.0.4 → 1.0.6
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/main/authv1/authv1.client.d.ts +20 -0
- package/main/authv1/authv1.client.d.ts.map +1 -1
- package/main/authv1/authv1.client.js +14 -0
- package/main/authv1/authv1.client.js.map +1 -1
- package/main/authv1/authv1.client.ts +26 -0
- package/main/authv1/authv1.d.ts +237 -0
- package/main/authv1/authv1.d.ts.map +1 -1
- package/main/authv1/authv1.js +524 -1
- package/main/authv1/authv1.js.map +1 -1
- package/main/authv1/authv1.ts +671 -1
- package/main/cordiumv1/index.d.ts +1 -1
- package/main/cordiumv1/index.d.ts.map +1 -1
- package/main/cordiumv1/index.js +1 -1
- package/main/cordiumv1/index.js.map +1 -1
- package/main/cordiumv1/index.ts +1 -1
- package/main/corev1/corev1.d.ts +474 -0
- package/main/corev1/corev1.d.ts.map +1 -1
- package/main/corev1/corev1.js +854 -3
- package/main/corev1/corev1.js.map +1 -1
- package/main/corev1/corev1.ts +1145 -31
- package/main/userv1/userv1.d.ts +9 -1
- package/main/userv1/userv1.d.ts.map +1 -1
- package/main/userv1/userv1.js +8 -0
- package/main/userv1/userv1.js.map +1 -1
- package/main/userv1/userv1.ts +9 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA;AAC9B,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA;AAC9B,OAAO,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAA"}
|
package/main/cordiumv1/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA;AAC9B,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA;AAC9B,OAAO,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAA"}
|
package/main/cordiumv1/index.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './cordiumv1.js'
|
|
2
|
-
export { MainServiceClient } from './cordiumv1.client.js'
|
|
2
|
+
export { MainServiceClient, WorkspaceServiceClient, ManagementServiceClient } from './cordiumv1.client.js'
|
package/main/corev1/corev1.d.ts
CHANGED
|
@@ -4891,6 +4891,280 @@ export interface Device_Status {
|
|
|
4891
4891
|
* @generated from protobuf field: repeated string macAddresses = 8
|
|
4892
4892
|
*/
|
|
4893
4893
|
macAddresses: string[];
|
|
4894
|
+
/**
|
|
4895
|
+
* @generated from protobuf field: octelium.api.main.core.v1.Device.Status.Posture posture = 9
|
|
4896
|
+
*/
|
|
4897
|
+
posture?: Device_Status_Posture;
|
|
4898
|
+
/**
|
|
4899
|
+
* @generated from protobuf field: octelium.api.main.core.v1.Device.Status.Binding binding = 10
|
|
4900
|
+
*/
|
|
4901
|
+
binding?: Device_Status_Binding;
|
|
4902
|
+
/**
|
|
4903
|
+
* @generated from protobuf field: octelium.api.main.core.v1.Device.Status.ProbeAttempt probeAttempt = 11
|
|
4904
|
+
*/
|
|
4905
|
+
probeAttempt?: Device_Status_ProbeAttempt;
|
|
4906
|
+
}
|
|
4907
|
+
/**
|
|
4908
|
+
* @generated from protobuf message octelium.api.main.core.v1.Device.Status.Posture
|
|
4909
|
+
*/
|
|
4910
|
+
export interface Device_Status_Posture {
|
|
4911
|
+
/**
|
|
4912
|
+
* @generated from protobuf field: octelium.api.main.core.v1.Device.Status.Posture.RiskLevel riskLevel = 1
|
|
4913
|
+
*/
|
|
4914
|
+
riskLevel: Device_Status_Posture_RiskLevel;
|
|
4915
|
+
/**
|
|
4916
|
+
* @generated from protobuf field: octelium.api.main.core.v1.Device.Status.Posture.SignalState diskEncryption = 2
|
|
4917
|
+
*/
|
|
4918
|
+
diskEncryption: Device_Status_Posture_SignalState;
|
|
4919
|
+
/**
|
|
4920
|
+
* @generated from protobuf field: octelium.api.main.core.v1.Device.Status.Posture.SignalState compliant = 3
|
|
4921
|
+
*/
|
|
4922
|
+
compliant: Device_Status_Posture_SignalState;
|
|
4923
|
+
/**
|
|
4924
|
+
* @generated from protobuf field: octelium.api.main.core.v1.Device.Status.Posture.SignalState threatFree = 4
|
|
4925
|
+
*/
|
|
4926
|
+
threatFree: Device_Status_Posture_SignalState;
|
|
4927
|
+
/**
|
|
4928
|
+
* @generated from protobuf field: map<string, octelium.api.main.core.v1.Device.Status.Posture.SignalState> signals = 5
|
|
4929
|
+
*/
|
|
4930
|
+
signals: {
|
|
4931
|
+
[key: string]: Device_Status_Posture_SignalState;
|
|
4932
|
+
};
|
|
4933
|
+
/**
|
|
4934
|
+
* @generated from protobuf field: google.protobuf.Timestamp lastSyncAt = 6
|
|
4935
|
+
*/
|
|
4936
|
+
lastSyncAt?: Timestamp;
|
|
4937
|
+
/**
|
|
4938
|
+
* @generated from protobuf field: google.protobuf.Timestamp lastSeenAt = 7
|
|
4939
|
+
*/
|
|
4940
|
+
lastSeenAt?: Timestamp;
|
|
4941
|
+
/**
|
|
4942
|
+
* The PDP MUST treat posture with expiresAt in the past as absent.
|
|
4943
|
+
* The device watcher additionally clears expired posture as hygiene.
|
|
4944
|
+
*
|
|
4945
|
+
* @generated from protobuf field: google.protobuf.Timestamp expiresAt = 8
|
|
4946
|
+
*/
|
|
4947
|
+
expiresAt?: Timestamp;
|
|
4948
|
+
/**
|
|
4949
|
+
* @generated from protobuf field: google.protobuf.Struct attrs = 9
|
|
4950
|
+
*/
|
|
4951
|
+
attrs?: Struct;
|
|
4952
|
+
}
|
|
4953
|
+
/**
|
|
4954
|
+
* @generated from protobuf enum octelium.api.main.core.v1.Device.Status.Posture.RiskLevel
|
|
4955
|
+
*/
|
|
4956
|
+
export declare enum Device_Status_Posture_RiskLevel {
|
|
4957
|
+
/**
|
|
4958
|
+
* @generated from protobuf enum value: RISK_LEVEL_UNKNOWN = 0;
|
|
4959
|
+
*/
|
|
4960
|
+
RISK_LEVEL_UNKNOWN = 0,
|
|
4961
|
+
/**
|
|
4962
|
+
* @generated from protobuf enum value: LOW = 1;
|
|
4963
|
+
*/
|
|
4964
|
+
LOW = 1,
|
|
4965
|
+
/**
|
|
4966
|
+
* @generated from protobuf enum value: MEDIUM = 2;
|
|
4967
|
+
*/
|
|
4968
|
+
MEDIUM = 2,
|
|
4969
|
+
/**
|
|
4970
|
+
* @generated from protobuf enum value: HIGH = 3;
|
|
4971
|
+
*/
|
|
4972
|
+
HIGH = 3,
|
|
4973
|
+
/**
|
|
4974
|
+
* @generated from protobuf enum value: CRITICAL = 4;
|
|
4975
|
+
*/
|
|
4976
|
+
CRITICAL = 4
|
|
4977
|
+
}
|
|
4978
|
+
/**
|
|
4979
|
+
* SignalState semantics under the single-provider model: adapters MUST
|
|
4980
|
+
* set NOT_APPLICABLE for every named signal outside their provider's
|
|
4981
|
+
* domain (an EDR adapter sets compliant = NOT_APPLICABLE, an MDM
|
|
4982
|
+
* adapter sets threatFree = NOT_APPLICABLE). SIGNAL_STATE_UNKNOWN is
|
|
4983
|
+
* reserved for "the provider should know this but did not report it"
|
|
4984
|
+
* and fails closed in policy. Leaving a signal UNKNOWN when it is
|
|
4985
|
+
* actually out-of-domain will lock devices out under any policy that
|
|
4986
|
+
* requires that signal.
|
|
4987
|
+
*
|
|
4988
|
+
* @generated from protobuf enum octelium.api.main.core.v1.Device.Status.Posture.SignalState
|
|
4989
|
+
*/
|
|
4990
|
+
export declare enum Device_Status_Posture_SignalState {
|
|
4991
|
+
/**
|
|
4992
|
+
* @generated from protobuf enum value: SIGNAL_STATE_UNKNOWN = 0;
|
|
4993
|
+
*/
|
|
4994
|
+
SIGNAL_STATE_UNKNOWN = 0,
|
|
4995
|
+
/**
|
|
4996
|
+
* @generated from protobuf enum value: PASS = 1;
|
|
4997
|
+
*/
|
|
4998
|
+
PASS = 1,
|
|
4999
|
+
/**
|
|
5000
|
+
* @generated from protobuf enum value: FAIL = 2;
|
|
5001
|
+
*/
|
|
5002
|
+
FAIL = 2,
|
|
5003
|
+
/**
|
|
5004
|
+
* @generated from protobuf enum value: NOT_APPLICABLE = 3;
|
|
5005
|
+
*/
|
|
5006
|
+
NOT_APPLICABLE = 3
|
|
5007
|
+
}
|
|
5008
|
+
/**
|
|
5009
|
+
* Binding is the singular, quasi-permanent link between this Device and
|
|
5010
|
+
* one DeviceManager. ownerRef lives here and only here; Posture validity
|
|
5011
|
+
* is defined as binding.state == ACCEPTED, so Posture does not carry a
|
|
5012
|
+
* duplicate ownerRef that could diverge.
|
|
5013
|
+
*
|
|
5014
|
+
* ACCEPTED and REJECTED are both sticky: reconciliation never overwrites
|
|
5015
|
+
* them, and only ResetDeviceBinding / ResetDeviceManagerBindings (or
|
|
5016
|
+
* DeviceManager deletion, which auto-resets) clears them. There is no
|
|
5017
|
+
* PENDING or EXPIRED state: attempt lifecycle belongs to ProbeAttempt,
|
|
5018
|
+
* and an unbound Device simply has no Binding, so nothing dead-ends.
|
|
5019
|
+
*
|
|
5020
|
+
* @generated from protobuf message octelium.api.main.core.v1.Device.Status.Binding
|
|
5021
|
+
*/
|
|
5022
|
+
export interface Device_Status_Binding {
|
|
5023
|
+
/**
|
|
5024
|
+
* @generated from protobuf field: string uid = 1
|
|
5025
|
+
*/
|
|
5026
|
+
uid: string;
|
|
5027
|
+
/**
|
|
5028
|
+
* @generated from protobuf field: octelium.api.main.meta.v1.ObjectReference ownerRef = 2
|
|
5029
|
+
*/
|
|
5030
|
+
ownerRef?: ObjectReference;
|
|
5031
|
+
/**
|
|
5032
|
+
* @generated from protobuf field: string externalID = 3
|
|
5033
|
+
*/
|
|
5034
|
+
externalID: string;
|
|
5035
|
+
/**
|
|
5036
|
+
* @generated from protobuf field: octelium.api.main.core.v1.Device.Status.Binding.State state = 4
|
|
5037
|
+
*/
|
|
5038
|
+
state: Device_Status_Binding_State;
|
|
5039
|
+
/**
|
|
5040
|
+
* @generated from protobuf field: octelium.api.main.core.v1.Device.Status.Binding.AcceptanceMethod acceptanceMethod = 5
|
|
5041
|
+
*/
|
|
5042
|
+
acceptanceMethod: Device_Status_Binding_AcceptanceMethod;
|
|
5043
|
+
/**
|
|
5044
|
+
* @generated from protobuf field: google.protobuf.Timestamp acceptedAt = 6
|
|
5045
|
+
*/
|
|
5046
|
+
acceptedAt?: Timestamp;
|
|
5047
|
+
/**
|
|
5048
|
+
* @generated from protobuf field: google.protobuf.Timestamp expiresAt = 7
|
|
5049
|
+
*/
|
|
5050
|
+
expiresAt?: Timestamp;
|
|
5051
|
+
/**
|
|
5052
|
+
* @generated from protobuf field: google.protobuf.Timestamp lastVerifiedAt = 8
|
|
5053
|
+
*/
|
|
5054
|
+
lastVerifiedAt?: Timestamp;
|
|
5055
|
+
/**
|
|
5056
|
+
* @generated from protobuf field: uint32 verificationFailures = 9
|
|
5057
|
+
*/
|
|
5058
|
+
verificationFailures: number;
|
|
5059
|
+
}
|
|
5060
|
+
/**
|
|
5061
|
+
* @generated from protobuf enum octelium.api.main.core.v1.Device.Status.Binding.State
|
|
5062
|
+
*/
|
|
5063
|
+
export declare enum Device_Status_Binding_State {
|
|
5064
|
+
/**
|
|
5065
|
+
* @generated from protobuf enum value: STATE_UNKNOWN = 0;
|
|
5066
|
+
*/
|
|
5067
|
+
STATE_UNKNOWN = 0,
|
|
5068
|
+
/**
|
|
5069
|
+
* WAITING_APPROVAL means a unique candidate exists and MANUAL
|
|
5070
|
+
* approval mode requires administrator action before acceptance.
|
|
5071
|
+
* Expiry (per expiresAt) clears the Binding rather than tombstoning
|
|
5072
|
+
* it, so a later attempt can retry.
|
|
5073
|
+
*
|
|
5074
|
+
* @generated from protobuf enum value: WAITING_APPROVAL = 1;
|
|
5075
|
+
*/
|
|
5076
|
+
WAITING_APPROVAL = 1,
|
|
5077
|
+
/**
|
|
5078
|
+
* @generated from protobuf enum value: ACCEPTED = 2;
|
|
5079
|
+
*/
|
|
5080
|
+
ACCEPTED = 2,
|
|
5081
|
+
/**
|
|
5082
|
+
* REJECTED is a sticky record that this Device must not bind to
|
|
5083
|
+
* ownerRef, set by administrator rejection or by losing a uniqueness
|
|
5084
|
+
* claim to another Device. Cleared only by reset.
|
|
5085
|
+
*
|
|
5086
|
+
* @generated from protobuf enum value: REJECTED = 3;
|
|
5087
|
+
*/
|
|
5088
|
+
REJECTED = 3,
|
|
5089
|
+
/**
|
|
5090
|
+
* AMBIGUOUS means candidate selection could not resolve uniquely:
|
|
5091
|
+
* multiple DeviceManagers matched at equal priority, a provider
|
|
5092
|
+
* inventory matched non-uniquely, or probe and identity sources
|
|
5093
|
+
* disagreed within one DeviceManager. The specifics are in message.
|
|
5094
|
+
* Recomputed on each reconcile; clears itself once resolved.
|
|
5095
|
+
*
|
|
5096
|
+
* @generated from protobuf enum value: AMBIGUOUS = 4;
|
|
5097
|
+
*/
|
|
5098
|
+
AMBIGUOUS = 4
|
|
5099
|
+
}
|
|
5100
|
+
/**
|
|
5101
|
+
* @generated from protobuf enum octelium.api.main.core.v1.Device.Status.Binding.AcceptanceMethod
|
|
5102
|
+
*/
|
|
5103
|
+
export declare enum Device_Status_Binding_AcceptanceMethod {
|
|
5104
|
+
/**
|
|
5105
|
+
* @generated from protobuf enum value: ACCEPTANCE_METHOD_UNKNOWN = 0;
|
|
5106
|
+
*/
|
|
5107
|
+
ACCEPTANCE_METHOD_UNKNOWN = 0,
|
|
5108
|
+
/**
|
|
5109
|
+
* @generated from protobuf enum value: AUTOMATIC = 1;
|
|
5110
|
+
*/
|
|
5111
|
+
AUTOMATIC = 1,
|
|
5112
|
+
/**
|
|
5113
|
+
* @generated from protobuf enum value: EMAIL = 2;
|
|
5114
|
+
*/
|
|
5115
|
+
EMAIL = 2,
|
|
5116
|
+
/**
|
|
5117
|
+
* @generated from protobuf enum value: MANUAL = 3;
|
|
5118
|
+
*/
|
|
5119
|
+
MANUAL = 3
|
|
5120
|
+
}
|
|
5121
|
+
/**
|
|
5122
|
+
* @generated from protobuf message octelium.api.main.core.v1.Device.Status.ProbeAttempt
|
|
5123
|
+
*/
|
|
5124
|
+
export interface Device_Status_ProbeAttempt {
|
|
5125
|
+
/**
|
|
5126
|
+
* @generated from protobuf field: string uid = 1
|
|
5127
|
+
*/
|
|
5128
|
+
uid: string;
|
|
5129
|
+
/**
|
|
5130
|
+
* @generated from protobuf field: google.protobuf.Timestamp startedAt = 2
|
|
5131
|
+
*/
|
|
5132
|
+
startedAt?: Timestamp;
|
|
5133
|
+
/**
|
|
5134
|
+
* @generated from protobuf field: repeated octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe probes = 3
|
|
5135
|
+
*/
|
|
5136
|
+
probes: ClusterConfig_Status_Device_Probe[];
|
|
5137
|
+
/**
|
|
5138
|
+
* @generated from protobuf field: repeated octelium.api.main.core.v1.Device.Status.ProbeAttempt.Result results = 4
|
|
5139
|
+
*/
|
|
5140
|
+
results: Device_Status_ProbeAttempt_Result[];
|
|
5141
|
+
}
|
|
5142
|
+
/**
|
|
5143
|
+
* @generated from protobuf message octelium.api.main.core.v1.Device.Status.ProbeAttempt.Result
|
|
5144
|
+
*/
|
|
5145
|
+
export interface Device_Status_ProbeAttempt_Result {
|
|
5146
|
+
/**
|
|
5147
|
+
* @generated from protobuf field: string probeID = 1
|
|
5148
|
+
*/
|
|
5149
|
+
probeID: string;
|
|
5150
|
+
/**
|
|
5151
|
+
* @generated from protobuf oneof: type
|
|
5152
|
+
*/
|
|
5153
|
+
type: {
|
|
5154
|
+
oneofKind: "output";
|
|
5155
|
+
/**
|
|
5156
|
+
* @generated from protobuf field: bytes output = 2
|
|
5157
|
+
*/
|
|
5158
|
+
output: Uint8Array;
|
|
5159
|
+
} | {
|
|
5160
|
+
oneofKind: "error";
|
|
5161
|
+
/**
|
|
5162
|
+
* @generated from protobuf field: string error = 3
|
|
5163
|
+
*/
|
|
5164
|
+
error: string;
|
|
5165
|
+
} | {
|
|
5166
|
+
oneofKind: undefined;
|
|
5167
|
+
};
|
|
4894
5168
|
}
|
|
4895
5169
|
/**
|
|
4896
5170
|
* @generated from protobuf enum octelium.api.main.core.v1.Device.Status.OSType
|
|
@@ -7686,6 +7960,10 @@ export interface Gateway_Status {
|
|
|
7686
7960
|
* @generated from protobuf field: string hostname = 8
|
|
7687
7961
|
*/
|
|
7688
7962
|
hostname: string;
|
|
7963
|
+
/**
|
|
7964
|
+
* @generated from protobuf field: optional int32 index = 9
|
|
7965
|
+
*/
|
|
7966
|
+
index?: number;
|
|
7689
7967
|
}
|
|
7690
7968
|
/**
|
|
7691
7969
|
* @generated from protobuf message octelium.api.main.core.v1.Gateway.Status.WireGuard
|
|
@@ -8587,6 +8865,10 @@ export interface ClusterConfig_Status {
|
|
|
8587
8865
|
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Status.SecretManager secretManager = 4
|
|
8588
8866
|
*/
|
|
8589
8867
|
secretManager?: ClusterConfig_Status_SecretManager;
|
|
8868
|
+
/**
|
|
8869
|
+
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Status.Device device = 5
|
|
8870
|
+
*/
|
|
8871
|
+
device?: ClusterConfig_Status_Device;
|
|
8590
8872
|
}
|
|
8591
8873
|
/**
|
|
8592
8874
|
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Status.NetworkConfig
|
|
@@ -8775,6 +9057,107 @@ export interface ClusterConfig_Status_SecretManager {
|
|
|
8775
9057
|
*/
|
|
8776
9058
|
export interface ClusterConfig_Status_SecretManager_TLS {
|
|
8777
9059
|
}
|
|
9060
|
+
/**
|
|
9061
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Status.Device
|
|
9062
|
+
*/
|
|
9063
|
+
export interface ClusterConfig_Status_Device {
|
|
9064
|
+
/**
|
|
9065
|
+
* @generated from protobuf field: repeated octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe probes = 1
|
|
9066
|
+
*/
|
|
9067
|
+
probes: ClusterConfig_Status_Device_Probe[];
|
|
9068
|
+
}
|
|
9069
|
+
/**
|
|
9070
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe
|
|
9071
|
+
*/
|
|
9072
|
+
export interface ClusterConfig_Status_Device_Probe {
|
|
9073
|
+
/**
|
|
9074
|
+
* @generated from protobuf field: octelium.api.main.meta.v1.ObjectReference ownerRef = 1
|
|
9075
|
+
*/
|
|
9076
|
+
ownerRef?: ObjectReference;
|
|
9077
|
+
/**
|
|
9078
|
+
* @generated from protobuf field: octelium.api.main.core.v1.Device.Status.OSType osType = 2
|
|
9079
|
+
*/
|
|
9080
|
+
osType: Device_Status_OSType;
|
|
9081
|
+
/**
|
|
9082
|
+
* @generated from protobuf field: bool requireElevation = 3
|
|
9083
|
+
*/
|
|
9084
|
+
requireElevation: boolean;
|
|
9085
|
+
/**
|
|
9086
|
+
* @generated from protobuf field: octelium.api.main.core.v1.Condition condition = 4
|
|
9087
|
+
*/
|
|
9088
|
+
condition?: Condition;
|
|
9089
|
+
/**
|
|
9090
|
+
* @generated from protobuf oneof: type
|
|
9091
|
+
*/
|
|
9092
|
+
type: {
|
|
9093
|
+
oneofKind: "runCommand";
|
|
9094
|
+
/**
|
|
9095
|
+
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe.RunCommand runCommand = 5
|
|
9096
|
+
*/
|
|
9097
|
+
runCommand: ClusterConfig_Status_Device_Probe_RunCommand;
|
|
9098
|
+
} | {
|
|
9099
|
+
oneofKind: "readFile";
|
|
9100
|
+
/**
|
|
9101
|
+
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe.ReadFile readFile = 6
|
|
9102
|
+
*/
|
|
9103
|
+
readFile: ClusterConfig_Status_Device_Probe_ReadFile;
|
|
9104
|
+
} | {
|
|
9105
|
+
oneofKind: "readRegistry";
|
|
9106
|
+
/**
|
|
9107
|
+
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe.ReadRegistry readRegistry = 7
|
|
9108
|
+
*/
|
|
9109
|
+
readRegistry: ClusterConfig_Status_Device_Probe_ReadRegistry;
|
|
9110
|
+
} | {
|
|
9111
|
+
oneofKind: undefined;
|
|
9112
|
+
};
|
|
9113
|
+
}
|
|
9114
|
+
/**
|
|
9115
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe.RunCommand
|
|
9116
|
+
*/
|
|
9117
|
+
export interface ClusterConfig_Status_Device_Probe_RunCommand {
|
|
9118
|
+
/**
|
|
9119
|
+
* @generated from protobuf field: string command = 1
|
|
9120
|
+
*/
|
|
9121
|
+
command: string;
|
|
9122
|
+
/**
|
|
9123
|
+
* @generated from protobuf field: repeated string args = 2
|
|
9124
|
+
*/
|
|
9125
|
+
args: string[];
|
|
9126
|
+
/**
|
|
9127
|
+
* @generated from protobuf field: uint32 timeoutSeconds = 3
|
|
9128
|
+
*/
|
|
9129
|
+
timeoutSeconds: number;
|
|
9130
|
+
/**
|
|
9131
|
+
* @generated from protobuf field: uint32 maxOutputBytes = 4
|
|
9132
|
+
*/
|
|
9133
|
+
maxOutputBytes: number;
|
|
9134
|
+
}
|
|
9135
|
+
/**
|
|
9136
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe.ReadFile
|
|
9137
|
+
*/
|
|
9138
|
+
export interface ClusterConfig_Status_Device_Probe_ReadFile {
|
|
9139
|
+
/**
|
|
9140
|
+
* @generated from protobuf field: string path = 1
|
|
9141
|
+
*/
|
|
9142
|
+
path: string;
|
|
9143
|
+
/**
|
|
9144
|
+
* @generated from protobuf field: uint32 maxBytes = 2
|
|
9145
|
+
*/
|
|
9146
|
+
maxBytes: number;
|
|
9147
|
+
}
|
|
9148
|
+
/**
|
|
9149
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe.ReadRegistry
|
|
9150
|
+
*/
|
|
9151
|
+
export interface ClusterConfig_Status_Device_Probe_ReadRegistry {
|
|
9152
|
+
/**
|
|
9153
|
+
* @generated from protobuf field: string key = 1
|
|
9154
|
+
*/
|
|
9155
|
+
key: string;
|
|
9156
|
+
/**
|
|
9157
|
+
* @generated from protobuf field: string name = 2
|
|
9158
|
+
*/
|
|
9159
|
+
name: string;
|
|
9160
|
+
}
|
|
8778
9161
|
/**
|
|
8779
9162
|
* @generated from protobuf message octelium.api.main.core.v1.RequestContext
|
|
8780
9163
|
*/
|
|
@@ -11769,6 +12152,47 @@ declare class Device_Status$Type extends MessageType<Device_Status> {
|
|
|
11769
12152
|
* @generated MessageType for protobuf message octelium.api.main.core.v1.Device.Status
|
|
11770
12153
|
*/
|
|
11771
12154
|
export declare const Device_Status: Device_Status$Type;
|
|
12155
|
+
declare class Device_Status_Posture$Type extends MessageType<Device_Status_Posture> {
|
|
12156
|
+
constructor();
|
|
12157
|
+
create(value?: PartialMessage<Device_Status_Posture>): Device_Status_Posture;
|
|
12158
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Device_Status_Posture): Device_Status_Posture;
|
|
12159
|
+
private binaryReadMap5;
|
|
12160
|
+
internalBinaryWrite(message: Device_Status_Posture, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
12161
|
+
}
|
|
12162
|
+
/**
|
|
12163
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.Device.Status.Posture
|
|
12164
|
+
*/
|
|
12165
|
+
export declare const Device_Status_Posture: Device_Status_Posture$Type;
|
|
12166
|
+
declare class Device_Status_Binding$Type extends MessageType<Device_Status_Binding> {
|
|
12167
|
+
constructor();
|
|
12168
|
+
create(value?: PartialMessage<Device_Status_Binding>): Device_Status_Binding;
|
|
12169
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Device_Status_Binding): Device_Status_Binding;
|
|
12170
|
+
internalBinaryWrite(message: Device_Status_Binding, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
12171
|
+
}
|
|
12172
|
+
/**
|
|
12173
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.Device.Status.Binding
|
|
12174
|
+
*/
|
|
12175
|
+
export declare const Device_Status_Binding: Device_Status_Binding$Type;
|
|
12176
|
+
declare class Device_Status_ProbeAttempt$Type extends MessageType<Device_Status_ProbeAttempt> {
|
|
12177
|
+
constructor();
|
|
12178
|
+
create(value?: PartialMessage<Device_Status_ProbeAttempt>): Device_Status_ProbeAttempt;
|
|
12179
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Device_Status_ProbeAttempt): Device_Status_ProbeAttempt;
|
|
12180
|
+
internalBinaryWrite(message: Device_Status_ProbeAttempt, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
12181
|
+
}
|
|
12182
|
+
/**
|
|
12183
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.Device.Status.ProbeAttempt
|
|
12184
|
+
*/
|
|
12185
|
+
export declare const Device_Status_ProbeAttempt: Device_Status_ProbeAttempt$Type;
|
|
12186
|
+
declare class Device_Status_ProbeAttempt_Result$Type extends MessageType<Device_Status_ProbeAttempt_Result> {
|
|
12187
|
+
constructor();
|
|
12188
|
+
create(value?: PartialMessage<Device_Status_ProbeAttempt_Result>): Device_Status_ProbeAttempt_Result;
|
|
12189
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Device_Status_ProbeAttempt_Result): Device_Status_ProbeAttempt_Result;
|
|
12190
|
+
internalBinaryWrite(message: Device_Status_ProbeAttempt_Result, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
12191
|
+
}
|
|
12192
|
+
/**
|
|
12193
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.Device.Status.ProbeAttempt.Result
|
|
12194
|
+
*/
|
|
12195
|
+
export declare const Device_Status_ProbeAttempt_Result: Device_Status_ProbeAttempt_Result$Type;
|
|
11772
12196
|
declare class DeviceList$Type extends MessageType<DeviceList> {
|
|
11773
12197
|
constructor();
|
|
11774
12198
|
create(value?: PartialMessage<DeviceList>): DeviceList;
|
|
@@ -13125,6 +13549,56 @@ declare class ClusterConfig_Status_SecretManager_TLS$Type extends MessageType<Cl
|
|
|
13125
13549
|
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Status.SecretManager.TLS
|
|
13126
13550
|
*/
|
|
13127
13551
|
export declare const ClusterConfig_Status_SecretManager_TLS: ClusterConfig_Status_SecretManager_TLS$Type;
|
|
13552
|
+
declare class ClusterConfig_Status_Device$Type extends MessageType<ClusterConfig_Status_Device> {
|
|
13553
|
+
constructor();
|
|
13554
|
+
create(value?: PartialMessage<ClusterConfig_Status_Device>): ClusterConfig_Status_Device;
|
|
13555
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Status_Device): ClusterConfig_Status_Device;
|
|
13556
|
+
internalBinaryWrite(message: ClusterConfig_Status_Device, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
13557
|
+
}
|
|
13558
|
+
/**
|
|
13559
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Status.Device
|
|
13560
|
+
*/
|
|
13561
|
+
export declare const ClusterConfig_Status_Device: ClusterConfig_Status_Device$Type;
|
|
13562
|
+
declare class ClusterConfig_Status_Device_Probe$Type extends MessageType<ClusterConfig_Status_Device_Probe> {
|
|
13563
|
+
constructor();
|
|
13564
|
+
create(value?: PartialMessage<ClusterConfig_Status_Device_Probe>): ClusterConfig_Status_Device_Probe;
|
|
13565
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Status_Device_Probe): ClusterConfig_Status_Device_Probe;
|
|
13566
|
+
internalBinaryWrite(message: ClusterConfig_Status_Device_Probe, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
13567
|
+
}
|
|
13568
|
+
/**
|
|
13569
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe
|
|
13570
|
+
*/
|
|
13571
|
+
export declare const ClusterConfig_Status_Device_Probe: ClusterConfig_Status_Device_Probe$Type;
|
|
13572
|
+
declare class ClusterConfig_Status_Device_Probe_RunCommand$Type extends MessageType<ClusterConfig_Status_Device_Probe_RunCommand> {
|
|
13573
|
+
constructor();
|
|
13574
|
+
create(value?: PartialMessage<ClusterConfig_Status_Device_Probe_RunCommand>): ClusterConfig_Status_Device_Probe_RunCommand;
|
|
13575
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Status_Device_Probe_RunCommand): ClusterConfig_Status_Device_Probe_RunCommand;
|
|
13576
|
+
internalBinaryWrite(message: ClusterConfig_Status_Device_Probe_RunCommand, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
13577
|
+
}
|
|
13578
|
+
/**
|
|
13579
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe.RunCommand
|
|
13580
|
+
*/
|
|
13581
|
+
export declare const ClusterConfig_Status_Device_Probe_RunCommand: ClusterConfig_Status_Device_Probe_RunCommand$Type;
|
|
13582
|
+
declare class ClusterConfig_Status_Device_Probe_ReadFile$Type extends MessageType<ClusterConfig_Status_Device_Probe_ReadFile> {
|
|
13583
|
+
constructor();
|
|
13584
|
+
create(value?: PartialMessage<ClusterConfig_Status_Device_Probe_ReadFile>): ClusterConfig_Status_Device_Probe_ReadFile;
|
|
13585
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Status_Device_Probe_ReadFile): ClusterConfig_Status_Device_Probe_ReadFile;
|
|
13586
|
+
internalBinaryWrite(message: ClusterConfig_Status_Device_Probe_ReadFile, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
13587
|
+
}
|
|
13588
|
+
/**
|
|
13589
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe.ReadFile
|
|
13590
|
+
*/
|
|
13591
|
+
export declare const ClusterConfig_Status_Device_Probe_ReadFile: ClusterConfig_Status_Device_Probe_ReadFile$Type;
|
|
13592
|
+
declare class ClusterConfig_Status_Device_Probe_ReadRegistry$Type extends MessageType<ClusterConfig_Status_Device_Probe_ReadRegistry> {
|
|
13593
|
+
constructor();
|
|
13594
|
+
create(value?: PartialMessage<ClusterConfig_Status_Device_Probe_ReadRegistry>): ClusterConfig_Status_Device_Probe_ReadRegistry;
|
|
13595
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Status_Device_Probe_ReadRegistry): ClusterConfig_Status_Device_Probe_ReadRegistry;
|
|
13596
|
+
internalBinaryWrite(message: ClusterConfig_Status_Device_Probe_ReadRegistry, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
13597
|
+
}
|
|
13598
|
+
/**
|
|
13599
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Status.Device.Probe.ReadRegistry
|
|
13600
|
+
*/
|
|
13601
|
+
export declare const ClusterConfig_Status_Device_Probe_ReadRegistry: ClusterConfig_Status_Device_Probe_ReadRegistry$Type;
|
|
13128
13602
|
declare class RequestContext$Type extends MessageType<RequestContext> {
|
|
13129
13603
|
constructor();
|
|
13130
13604
|
create(value?: PartialMessage<RequestContext>): RequestContext;
|