@lansweeper/discovery-cloud-proto 0.0.12 → 0.0.13

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.
@@ -5,8 +5,8 @@
5
5
  /* eslint-disable */
6
6
 
7
7
  import * as jspb from "google-protobuf";
8
- import * as google_protobuf_wrappers_pb from "google-protobuf/google/protobuf/wrappers_pb";
9
8
  import * as google_protobuf_any_pb from "google-protobuf/google/protobuf/any_pb";
9
+ import * as google_protobuf_wrappers_pb from "google-protobuf/google/protobuf/wrappers_pb";
10
10
 
11
11
  export class CloudEntity extends jspb.Message {
12
12
  getEntityName(): string;
@@ -34,6 +34,20 @@ export class CloudEntity extends jspb.Message {
34
34
  clearPublicCloudProperties(): void;
35
35
  getPublicCloudProperties(): google_protobuf_any_pb.Any | undefined;
36
36
  setPublicCloudProperties(value?: google_protobuf_any_pb.Any): CloudEntity;
37
+ getEnvironmentId(): string;
38
+ setEnvironmentId(value: string): CloudEntity;
39
+ getCloudProvider(): string;
40
+ setCloudProvider(value: string): CloudEntity;
41
+
42
+ hasRegionId(): boolean;
43
+ clearRegionId(): void;
44
+ getRegionId(): string | undefined;
45
+ setRegionId(value: string): CloudEntity;
46
+
47
+ hasErrors(): boolean;
48
+ clearErrors(): void;
49
+ getErrors(): NullableErrorList | undefined;
50
+ setErrors(value?: NullableErrorList): CloudEntity;
37
51
 
38
52
  serializeBinary(): Uint8Array;
39
53
  toObject(includeInstance?: boolean): CloudEntity.AsObject;
@@ -55,6 +69,116 @@ export namespace CloudEntity {
55
69
  ipAddress?: string,
56
70
  mac?: string,
57
71
  publicCloudProperties?: google_protobuf_any_pb.Any.AsObject,
72
+ environmentId: string,
73
+ cloudProvider: string,
74
+ regionId?: string,
75
+ errors?: NullableErrorList.AsObject,
76
+ }
77
+ }
78
+
79
+ export class NullableErrorList extends jspb.Message {
80
+
81
+ hasData(): boolean;
82
+ clearData(): void;
83
+ getData(): ErrorList | undefined;
84
+ setData(value?: ErrorList): NullableErrorList;
85
+
86
+ getKindCase(): NullableErrorList.KindCase;
87
+
88
+ serializeBinary(): Uint8Array;
89
+ toObject(includeInstance?: boolean): NullableErrorList.AsObject;
90
+ static toObject(includeInstance: boolean, msg: NullableErrorList): NullableErrorList.AsObject;
91
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
92
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
93
+ static serializeBinaryToWriter(message: NullableErrorList, writer: jspb.BinaryWriter): void;
94
+ static deserializeBinary(bytes: Uint8Array): NullableErrorList;
95
+ static deserializeBinaryFromReader(message: NullableErrorList, reader: jspb.BinaryReader): NullableErrorList;
96
+ }
97
+
98
+ export namespace NullableErrorList {
99
+ export type AsObject = {
100
+ data?: ErrorList.AsObject,
101
+ }
102
+
103
+ export enum KindCase {
104
+ KIND_NOT_SET = 0,
105
+ DATA = 1,
106
+ }
107
+
108
+ }
109
+
110
+ export class ErrorList extends jspb.Message {
111
+ clearItemsList(): void;
112
+ getItemsList(): Array<Error>;
113
+ setItemsList(value: Array<Error>): ErrorList;
114
+ addItems(value?: Error, index?: number): Error;
115
+
116
+ serializeBinary(): Uint8Array;
117
+ toObject(includeInstance?: boolean): ErrorList.AsObject;
118
+ static toObject(includeInstance: boolean, msg: ErrorList): ErrorList.AsObject;
119
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
120
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
121
+ static serializeBinaryToWriter(message: ErrorList, writer: jspb.BinaryWriter): void;
122
+ static deserializeBinary(bytes: Uint8Array): ErrorList;
123
+ static deserializeBinaryFromReader(message: ErrorList, reader: jspb.BinaryReader): ErrorList;
124
+ }
125
+
126
+ export namespace ErrorList {
127
+ export type AsObject = {
128
+ itemsList: Array<Error.AsObject>,
129
+ }
130
+ }
131
+
132
+ export class Error extends jspb.Message {
133
+
134
+ hasErrorId(): boolean;
135
+ clearErrorId(): void;
136
+ getErrorId(): string | undefined;
137
+ setErrorId(value: string): Error;
138
+
139
+ hasCfgNName(): boolean;
140
+ clearCfgNName(): void;
141
+ getCfgNName(): string | undefined;
142
+ setCfgNName(value: string): Error;
143
+
144
+ hasErrorText(): boolean;
145
+ clearErrorText(): void;
146
+ getErrorText(): string | undefined;
147
+ setErrorText(value: string): Error;
148
+
149
+ hasLastChanged(): boolean;
150
+ clearLastChanged(): void;
151
+ getLastChanged(): string | undefined;
152
+ setLastChanged(value: string): Error;
153
+
154
+ hasErrorTypeId(): boolean;
155
+ clearErrorTypeId(): void;
156
+ getErrorTypeId(): string | undefined;
157
+ setErrorTypeId(value: string): Error;
158
+
159
+ hasErrorTypeName(): boolean;
160
+ clearErrorTypeName(): void;
161
+ getErrorTypeName(): string | undefined;
162
+ setErrorTypeName(value: string): Error;
163
+
164
+ serializeBinary(): Uint8Array;
165
+ toObject(includeInstance?: boolean): Error.AsObject;
166
+ static toObject(includeInstance: boolean, msg: Error): Error.AsObject;
167
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
168
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
169
+ static serializeBinaryToWriter(message: Error, writer: jspb.BinaryWriter): void;
170
+ static deserializeBinary(bytes: Uint8Array): Error;
171
+ static deserializeBinaryFromReader(message: Error, reader: jspb.BinaryReader): Error;
172
+ }
173
+
174
+ export namespace Error {
175
+ export type AsObject = {
176
+ errorId?: string,
177
+ cfgNName?: string,
178
+ errorText?: string,
179
+ lastChanged?: string,
180
+ errorTypeId?: string,
181
+ errorTypeName?: string,
58
182
  }
59
183
  }
60
184