@microsoft/msgraph-sdk 1.0.0-preview.12 → 1.0.0-preview.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.
@@ -0,0 +1,339 @@
1
+ import { LongRunningOperationStatus, type BaseCollectionPaginationCountResponse, type Entity, type PublicError } from '../../';
2
+ import { type AdditionalDataHolder, type BackedModel, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions';
3
+ export type AttributeSet = (typeof AttributeSetObject)[keyof typeof AttributeSetObject];
4
+ export interface AzureUsage extends Entity, Parsable {
5
+ /**
6
+ * The billed property
7
+ */
8
+ billed?: BilledUsage;
9
+ /**
10
+ * The unbilled property
11
+ */
12
+ unbilled?: UnbilledUsage;
13
+ }
14
+ export interface BilledUsage extends Entity, Parsable {
15
+ }
16
+ export interface Billing extends Entity, Parsable {
17
+ /**
18
+ * Represents metadata for the exported data.
19
+ */
20
+ manifests?: Manifest[];
21
+ /**
22
+ * Represents an operation to export the billing data of a partner.
23
+ */
24
+ operations?: Operation[];
25
+ /**
26
+ * The usage property
27
+ */
28
+ usage?: AzureUsage;
29
+ }
30
+ export type BillingPeriod = (typeof BillingPeriodObject)[keyof typeof BillingPeriodObject];
31
+ export interface Blob extends AdditionalDataHolder, BackedModel, Parsable {
32
+ /**
33
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
34
+ */
35
+ additionalData?: Record<string, unknown>;
36
+ /**
37
+ * Stores model information.
38
+ */
39
+ backingStoreEnabled?: boolean;
40
+ /**
41
+ * The blob name.
42
+ */
43
+ name?: string;
44
+ /**
45
+ * The OdataType property
46
+ */
47
+ odataType?: string;
48
+ /**
49
+ * The partition that contains the file. A large partition is split into multiple files, each with the same partitionValue.
50
+ */
51
+ partitionValue?: string;
52
+ }
53
+ /**
54
+ * Creates a new instance of the appropriate class based on discriminator value
55
+ * @param parseNode The parse node to use to read the discriminator value and create the object
56
+ * @returns a azureUsage
57
+ */
58
+ export declare function createAzureUsageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
59
+ /**
60
+ * Creates a new instance of the appropriate class based on discriminator value
61
+ * @param parseNode The parse node to use to read the discriminator value and create the object
62
+ * @returns a billedUsage
63
+ */
64
+ export declare function createBilledUsageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
65
+ /**
66
+ * Creates a new instance of the appropriate class based on discriminator value
67
+ * @param parseNode The parse node to use to read the discriminator value and create the object
68
+ * @returns a billing
69
+ */
70
+ export declare function createBillingFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
71
+ /**
72
+ * Creates a new instance of the appropriate class based on discriminator value
73
+ * @param parseNode The parse node to use to read the discriminator value and create the object
74
+ * @returns a blob
75
+ */
76
+ export declare function createBlobFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
77
+ /**
78
+ * Creates a new instance of the appropriate class based on discriminator value
79
+ * @param parseNode The parse node to use to read the discriminator value and create the object
80
+ * @returns a exportSuccessOperation
81
+ */
82
+ export declare function createExportSuccessOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
83
+ /**
84
+ * Creates a new instance of the appropriate class based on discriminator value
85
+ * @param parseNode The parse node to use to read the discriminator value and create the object
86
+ * @returns a failedOperation
87
+ */
88
+ export declare function createFailedOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
89
+ /**
90
+ * Creates a new instance of the appropriate class based on discriminator value
91
+ * @param parseNode The parse node to use to read the discriminator value and create the object
92
+ * @returns a manifestCollectionResponse
93
+ */
94
+ export declare function createManifestCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
95
+ /**
96
+ * Creates a new instance of the appropriate class based on discriminator value
97
+ * @param parseNode The parse node to use to read the discriminator value and create the object
98
+ * @returns a manifest
99
+ */
100
+ export declare function createManifestFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
101
+ /**
102
+ * Creates a new instance of the appropriate class based on discriminator value
103
+ * @param parseNode The parse node to use to read the discriminator value and create the object
104
+ * @returns a operationCollectionResponse
105
+ */
106
+ export declare function createOperationCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
107
+ /**
108
+ * Creates a new instance of the appropriate class based on discriminator value
109
+ * @param parseNode The parse node to use to read the discriminator value and create the object
110
+ * @returns a operation
111
+ */
112
+ export declare function createOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
113
+ /**
114
+ * Creates a new instance of the appropriate class based on discriminator value
115
+ * @param parseNode The parse node to use to read the discriminator value and create the object
116
+ * @returns a runningOperation
117
+ */
118
+ export declare function createRunningOperationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
119
+ /**
120
+ * Creates a new instance of the appropriate class based on discriminator value
121
+ * @param parseNode The parse node to use to read the discriminator value and create the object
122
+ * @returns a unbilledUsage
123
+ */
124
+ export declare function createUnbilledUsageFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
125
+ /**
126
+ * The deserialization information for the current model
127
+ * @returns a Record<string, (node: ParseNode) => void>
128
+ */
129
+ export declare function deserializeIntoAzureUsage(azureUsage?: Partial<AzureUsage> | undefined): Record<string, (node: ParseNode) => void>;
130
+ /**
131
+ * The deserialization information for the current model
132
+ * @returns a Record<string, (node: ParseNode) => void>
133
+ */
134
+ export declare function deserializeIntoBilledUsage(billedUsage?: Partial<BilledUsage> | undefined): Record<string, (node: ParseNode) => void>;
135
+ /**
136
+ * The deserialization information for the current model
137
+ * @returns a Record<string, (node: ParseNode) => void>
138
+ */
139
+ export declare function deserializeIntoBilling(billing?: Partial<Billing> | undefined): Record<string, (node: ParseNode) => void>;
140
+ /**
141
+ * The deserialization information for the current model
142
+ * @returns a Record<string, (node: ParseNode) => void>
143
+ */
144
+ export declare function deserializeIntoBlob(blob?: Partial<Blob> | undefined): Record<string, (node: ParseNode) => void>;
145
+ /**
146
+ * The deserialization information for the current model
147
+ * @returns a Record<string, (node: ParseNode) => void>
148
+ */
149
+ export declare function deserializeIntoExportSuccessOperation(exportSuccessOperation?: Partial<ExportSuccessOperation> | undefined): Record<string, (node: ParseNode) => void>;
150
+ /**
151
+ * The deserialization information for the current model
152
+ * @returns a Record<string, (node: ParseNode) => void>
153
+ */
154
+ export declare function deserializeIntoFailedOperation(failedOperation?: Partial<FailedOperation> | undefined): Record<string, (node: ParseNode) => void>;
155
+ /**
156
+ * The deserialization information for the current model
157
+ * @returns a Record<string, (node: ParseNode) => void>
158
+ */
159
+ export declare function deserializeIntoManifest(manifest?: Partial<Manifest> | undefined): Record<string, (node: ParseNode) => void>;
160
+ /**
161
+ * The deserialization information for the current model
162
+ * @returns a Record<string, (node: ParseNode) => void>
163
+ */
164
+ export declare function deserializeIntoManifestCollectionResponse(manifestCollectionResponse?: Partial<ManifestCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
165
+ /**
166
+ * The deserialization information for the current model
167
+ * @returns a Record<string, (node: ParseNode) => void>
168
+ */
169
+ export declare function deserializeIntoOperation(operation?: Partial<Operation> | undefined): Record<string, (node: ParseNode) => void>;
170
+ /**
171
+ * The deserialization information for the current model
172
+ * @returns a Record<string, (node: ParseNode) => void>
173
+ */
174
+ export declare function deserializeIntoOperationCollectionResponse(operationCollectionResponse?: Partial<OperationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
175
+ /**
176
+ * The deserialization information for the current model
177
+ * @returns a Record<string, (node: ParseNode) => void>
178
+ */
179
+ export declare function deserializeIntoRunningOperation(runningOperation?: Partial<RunningOperation> | undefined): Record<string, (node: ParseNode) => void>;
180
+ /**
181
+ * The deserialization information for the current model
182
+ * @returns a Record<string, (node: ParseNode) => void>
183
+ */
184
+ export declare function deserializeIntoUnbilledUsage(unbilledUsage?: Partial<UnbilledUsage> | undefined): Record<string, (node: ParseNode) => void>;
185
+ export interface ExportSuccessOperation extends Operation, Parsable {
186
+ /**
187
+ * The resourceLocation property
188
+ */
189
+ resourceLocation?: Manifest;
190
+ }
191
+ export interface FailedOperation extends Operation, Parsable {
192
+ /**
193
+ * The error property
194
+ */
195
+ errorEscaped?: PublicError;
196
+ }
197
+ export interface Manifest extends Entity, Parsable {
198
+ /**
199
+ * The total file count for this partner tenant ID.
200
+ */
201
+ blobCount?: number;
202
+ /**
203
+ * A collection of blob objects that contain details of all the files for the partner tenant ID.
204
+ */
205
+ blobs?: Blob[];
206
+ /**
207
+ * The date and time when a manifest resource was created. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
208
+ */
209
+ createdDateTime?: Date;
210
+ /**
211
+ * The billing data file format. The possible value is: compressedJSONLines. Each blob is a compressed file and data in the file is in JSON lines format. Decompress the file to access the data.
212
+ */
213
+ dataFormat?: string;
214
+ /**
215
+ * Version of data represented by the manifest. Any change in eTag indicates a new data version.
216
+ */
217
+ eTag?: string;
218
+ /**
219
+ * Indicates the division of data. If a given partition has more than the supported number, the data is split into multiple files, each file representing a specific partitionValue. By default, the data in the file is partitioned by the number of line items.
220
+ */
221
+ partitionType?: string;
222
+ /**
223
+ * The Microsoft Entra tenant ID of the partner.
224
+ */
225
+ partnerTenantId?: string;
226
+ /**
227
+ * The root directory that contains all the files.
228
+ */
229
+ rootDirectory?: string;
230
+ /**
231
+ * The SAS token for accessing the directory or an individual file in the directory.
232
+ */
233
+ sasToken?: string;
234
+ /**
235
+ * The version of the manifest schema.
236
+ */
237
+ schemaVersion?: string;
238
+ }
239
+ export interface ManifestCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
240
+ /**
241
+ * The value property
242
+ */
243
+ value?: Manifest[];
244
+ }
245
+ export interface Operation extends Entity, Parsable {
246
+ /**
247
+ * The start time of the operation. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
248
+ */
249
+ createdDateTime?: Date;
250
+ /**
251
+ * The time of the last action of the operation. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
252
+ */
253
+ lastActionDateTime?: Date;
254
+ /**
255
+ * The status of the operation. Possible values are: notStarted, running, completed, failed, unknownFutureValue.
256
+ */
257
+ status?: LongRunningOperationStatus;
258
+ }
259
+ export interface OperationCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
260
+ /**
261
+ * The value property
262
+ */
263
+ value?: Operation[];
264
+ }
265
+ export interface RunningOperation extends Operation, Parsable {
266
+ }
267
+ /**
268
+ * Serializes information the current object
269
+ * @param writer Serialization writer to use to serialize this model
270
+ */
271
+ export declare function serializeAzureUsage(writer: SerializationWriter, azureUsage?: Partial<AzureUsage> | undefined): void;
272
+ /**
273
+ * Serializes information the current object
274
+ * @param writer Serialization writer to use to serialize this model
275
+ */
276
+ export declare function serializeBilledUsage(writer: SerializationWriter, billedUsage?: Partial<BilledUsage> | undefined): void;
277
+ /**
278
+ * Serializes information the current object
279
+ * @param writer Serialization writer to use to serialize this model
280
+ */
281
+ export declare function serializeBilling(writer: SerializationWriter, billing?: Partial<Billing> | undefined): void;
282
+ /**
283
+ * Serializes information the current object
284
+ * @param writer Serialization writer to use to serialize this model
285
+ */
286
+ export declare function serializeBlob(writer: SerializationWriter, blob?: Partial<Blob> | undefined): void;
287
+ /**
288
+ * Serializes information the current object
289
+ * @param writer Serialization writer to use to serialize this model
290
+ */
291
+ export declare function serializeExportSuccessOperation(writer: SerializationWriter, exportSuccessOperation?: Partial<ExportSuccessOperation> | undefined): void;
292
+ /**
293
+ * Serializes information the current object
294
+ * @param writer Serialization writer to use to serialize this model
295
+ */
296
+ export declare function serializeFailedOperation(writer: SerializationWriter, failedOperation?: Partial<FailedOperation> | undefined): void;
297
+ /**
298
+ * Serializes information the current object
299
+ * @param writer Serialization writer to use to serialize this model
300
+ */
301
+ export declare function serializeManifest(writer: SerializationWriter, manifest?: Partial<Manifest> | undefined): void;
302
+ /**
303
+ * Serializes information the current object
304
+ * @param writer Serialization writer to use to serialize this model
305
+ */
306
+ export declare function serializeManifestCollectionResponse(writer: SerializationWriter, manifestCollectionResponse?: Partial<ManifestCollectionResponse> | undefined): void;
307
+ /**
308
+ * Serializes information the current object
309
+ * @param writer Serialization writer to use to serialize this model
310
+ */
311
+ export declare function serializeOperation(writer: SerializationWriter, operation?: Partial<Operation> | undefined): void;
312
+ /**
313
+ * Serializes information the current object
314
+ * @param writer Serialization writer to use to serialize this model
315
+ */
316
+ export declare function serializeOperationCollectionResponse(writer: SerializationWriter, operationCollectionResponse?: Partial<OperationCollectionResponse> | undefined): void;
317
+ /**
318
+ * Serializes information the current object
319
+ * @param writer Serialization writer to use to serialize this model
320
+ */
321
+ export declare function serializeRunningOperation(writer: SerializationWriter, runningOperation?: Partial<RunningOperation> | undefined): void;
322
+ /**
323
+ * Serializes information the current object
324
+ * @param writer Serialization writer to use to serialize this model
325
+ */
326
+ export declare function serializeUnbilledUsage(writer: SerializationWriter, unbilledUsage?: Partial<UnbilledUsage> | undefined): void;
327
+ export interface UnbilledUsage extends Entity, Parsable {
328
+ }
329
+ export declare const AttributeSetObject: {
330
+ readonly Full: "full";
331
+ readonly Basic: "basic";
332
+ readonly UnknownFutureValue: "unknownFutureValue";
333
+ };
334
+ export declare const BillingPeriodObject: {
335
+ readonly Current: "current";
336
+ readonly Last: "last";
337
+ readonly UnknownFutureValue: "unknownFutureValue";
338
+ };
339
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"}