@microsoft/msgraph-sdk-devicemanagement 1.0.0-preview.75 → 1.0.0-preview.79

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 (30) hide show
  1. package/deviceManagement/exchangeConnectors/item/sync/index.d.ts +1 -1
  2. package/deviceManagement/exchangeConnectors/item/sync/index.d.ts.map +1 -1
  3. package/deviceManagement/exchangeConnectors/item/sync/index.js.map +1 -1
  4. package/deviceManagement/virtualEndpoint/cloudPCs/item/index.d.ts +10 -0
  5. package/deviceManagement/virtualEndpoint/cloudPCs/item/index.d.ts.map +1 -1
  6. package/deviceManagement/virtualEndpoint/cloudPCs/item/index.js +10 -0
  7. package/deviceManagement/virtualEndpoint/cloudPCs/item/index.js.map +1 -1
  8. package/deviceManagement/virtualEndpoint/cloudPCs/item/reprovision/index.d.ts +64 -0
  9. package/deviceManagement/virtualEndpoint/cloudPCs/item/reprovision/index.d.ts.map +1 -0
  10. package/deviceManagement/virtualEndpoint/cloudPCs/item/reprovision/index.js +67 -0
  11. package/deviceManagement/virtualEndpoint/cloudPCs/item/reprovision/index.js.map +1 -0
  12. package/deviceManagement/virtualEndpoint/cloudPCs/item/retrieveCloudPcLaunchDetail/index.d.ts +30 -0
  13. package/deviceManagement/virtualEndpoint/cloudPCs/item/retrieveCloudPcLaunchDetail/index.d.ts.map +1 -0
  14. package/deviceManagement/virtualEndpoint/cloudPCs/item/retrieveCloudPcLaunchDetail/index.js +28 -0
  15. package/deviceManagement/virtualEndpoint/cloudPCs/item/retrieveCloudPcLaunchDetail/index.js.map +1 -0
  16. package/deviceManagement/virtualEndpoint/index.d.ts +5 -0
  17. package/deviceManagement/virtualEndpoint/index.d.ts.map +1 -1
  18. package/deviceManagement/virtualEndpoint/index.js +6 -0
  19. package/deviceManagement/virtualEndpoint/index.js.map +1 -1
  20. package/deviceManagement/virtualEndpoint/report/index.d.ts +78 -0
  21. package/deviceManagement/virtualEndpoint/report/index.d.ts.map +1 -0
  22. package/deviceManagement/virtualEndpoint/report/index.js +66 -0
  23. package/deviceManagement/virtualEndpoint/report/index.js.map +1 -0
  24. package/deviceManagement/virtualEndpoint/report/retrieveCloudPcRecommendationReports/index.d.ts +89 -0
  25. package/deviceManagement/virtualEndpoint/report/retrieveCloudPcRecommendationReports/index.d.ts.map +1 -0
  26. package/deviceManagement/virtualEndpoint/report/retrieveCloudPcRecommendationReports/index.js +80 -0
  27. package/deviceManagement/virtualEndpoint/report/retrieveCloudPcRecommendationReports/index.js.map +1 -0
  28. package/package.json +2 -3
  29. package/tsconfig.tsbuildinfo +1 -1
  30. package/LICENSE +0 -21
@@ -0,0 +1,89 @@
1
+ import { type CloudPcRecommendationReportType } from '@microsoft/msgraph-sdk/models/index.js';
2
+ import { type AdditionalDataHolder, type BackedModel, type BaseRequestBuilder, type Parsable, type ParseNode, type RequestConfiguration, type RequestInformation, type RequestsMetadata, type SerializationWriter } from '@microsoft/kiota-abstractions';
3
+ /**
4
+ * Creates a new instance of the appropriate class based on discriminator value
5
+ * @param parseNode The parse node to use to read the discriminator value and create the object
6
+ * @returns {RetrieveCloudPcRecommendationReportsPostRequestBody}
7
+ */
8
+ export declare function createRetrieveCloudPcRecommendationReportsPostRequestBodyFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
9
+ /**
10
+ * The deserialization information for the current model
11
+ * @param RetrieveCloudPcRecommendationReportsPostRequestBody The instance to deserialize into.
12
+ * @returns {Record<string, (node: ParseNode) => void>}
13
+ */
14
+ export declare function deserializeIntoRetrieveCloudPcRecommendationReportsPostRequestBody(retrieveCloudPcRecommendationReportsPostRequestBody?: Partial<RetrieveCloudPcRecommendationReportsPostRequestBody> | undefined): Record<string, (node: ParseNode) => void>;
15
+ export interface RetrieveCloudPcRecommendationReportsPostRequestBody extends AdditionalDataHolder, BackedModel, Parsable {
16
+ /**
17
+ * Stores model information.
18
+ */
19
+ backingStoreEnabled?: boolean | null;
20
+ /**
21
+ * The filter property
22
+ */
23
+ filter?: string | null;
24
+ /**
25
+ * The groupBy property
26
+ */
27
+ groupBy?: string[] | null;
28
+ /**
29
+ * The orderBy property
30
+ */
31
+ orderBy?: string[] | null;
32
+ /**
33
+ * The reportType property
34
+ */
35
+ reportType?: CloudPcRecommendationReportType | null;
36
+ /**
37
+ * The search property
38
+ */
39
+ search?: string | null;
40
+ /**
41
+ * The select property
42
+ */
43
+ select?: string[] | null;
44
+ /**
45
+ * The skip property
46
+ */
47
+ skip?: number | null;
48
+ /**
49
+ * The top property
50
+ */
51
+ top?: number | null;
52
+ }
53
+ /**
54
+ * Provides operations to call the retrieveCloudPcRecommendationReports method.
55
+ */
56
+ export interface RetrieveCloudPcRecommendationReportsRequestBuilder extends BaseRequestBuilder<RetrieveCloudPcRecommendationReportsRequestBuilder> {
57
+ /**
58
+ * Retrieve Cloud PC recommendation reports for usage optimization and cost savings. The usage category report categorizes a Cloud PC as Undersized, Oversized, Rightsized, or Underutilized, and also provides the recommended SKU when the Cloud PC isn't Rightsized.
59
+ * @param body The request body
60
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
61
+ * @returns {Promise<ArrayBuffer>}
62
+ * @throws {ODataError} error when the service returns a 4XX or 5XX status code
63
+ * @see {@link https://learn.microsoft.com/graph/api/cloudpcreport-retrievecloudpcrecommendationreports?view=graph-rest-1.0|Find more info here}
64
+ */
65
+ post(body: RetrieveCloudPcRecommendationReportsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
66
+ /**
67
+ * Retrieve Cloud PC recommendation reports for usage optimization and cost savings. The usage category report categorizes a Cloud PC as Undersized, Oversized, Rightsized, or Underutilized, and also provides the recommended SKU when the Cloud PC isn't Rightsized.
68
+ * @param body The request body
69
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
70
+ * @returns {RequestInformation}
71
+ */
72
+ toPostRequestInformation(body: RetrieveCloudPcRecommendationReportsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
73
+ }
74
+ /**
75
+ * Serializes information the current object
76
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
77
+ * @param RetrieveCloudPcRecommendationReportsPostRequestBody The instance to serialize from.
78
+ * @param writer Serialization writer to use to serialize this model
79
+ */
80
+ export declare function serializeRetrieveCloudPcRecommendationReportsPostRequestBody(writer: SerializationWriter, retrieveCloudPcRecommendationReportsPostRequestBody?: Partial<RetrieveCloudPcRecommendationReportsPostRequestBody> | undefined | null, isSerializingDerivedType?: boolean): void;
81
+ /**
82
+ * Uri template for the request builder.
83
+ */
84
+ export declare const RetrieveCloudPcRecommendationReportsRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/virtualEndpoint/report/retrieveCloudPcRecommendationReports";
85
+ /**
86
+ * Metadata for all the requests in the request builder.
87
+ */
88
+ export declare const RetrieveCloudPcRecommendationReportsRequestBuilderRequestsMetadata: RequestsMetadata;
89
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAyC,KAAK,+BAA+B,EAAE,MAAM,wCAAwC,CAAC;AAIrI,OAAO,EAAE,KAAK,oBAAoB,EAAE,KAAK,WAAW,EAAqB,KAAK,kBAAkB,EAAE,KAAK,QAAQ,EAAwB,KAAK,SAAS,EAAE,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,KAAK,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAElS;;;;GAIG;AAEH,wBAAgB,+EAA+E,CAAC,SAAS,EAAE,SAAS,GAAG,SAAS,GAAI,CAAC,CAAC,QAAQ,CAAC,EAAE,QAAQ,KAAK,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAAC,CAEvM;AACD;;;;GAIG;AAEH,wBAAgB,kEAAkE,CAAC,mDAAmD,GAAE,OAAO,CAAC,mDAAmD,CAAC,GAAG,SAAc,GAAI,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAYjQ;AACD,MAAM,WAAW,mDAAoD,SAAQ,oBAAoB,EAAE,WAAW,EAAE,QAAQ;IACpH;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACrC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IAC1B;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IAC1B;;OAEG;IACH,UAAU,CAAC,EAAE,+BAA+B,GAAG,IAAI,CAAC;IACpD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IACzB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB;AACD;;GAEG;AACH,MAAM,WAAW,kDAAmD,SAAQ,kBAAkB,CAAC,kDAAkD,CAAC;IAC9I;;;;;;;OAOG;IACF,IAAI,CAAC,IAAI,EAAE,mDAAmD,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IACrK;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,mDAAmD,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC9K;AACD;;;;;GAKG;AAEH,wBAAgB,4DAA4D,CAAC,MAAM,EAAE,mBAAmB,EAAE,mDAAmD,GAAE,OAAO,CAAC,mDAAmD,CAAC,GAAG,SAAS,GAAG,IAAS,EAAE,wBAAwB,GAAE,OAAe,GAAI,IAAI,CAWrS;AACD;;GAEG;AACH,eAAO,MAAM,6DAA6D,4FAA4F,CAAC;AACvK;;GAEG;AACH,eAAO,MAAM,kEAAkE,EAAE,gBAahF,CAAC"}
@@ -0,0 +1,80 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ // Generated by Microsoft Kiota
4
+ // @ts-ignore
5
+ import { CloudPcRecommendationReportTypeObject } from '@microsoft/msgraph-sdk/models/index.js';
6
+ // @ts-ignore
7
+ import { createODataErrorFromDiscriminatorValue } from '@microsoft/msgraph-sdk/models/oDataErrors/index.js';
8
+ /**
9
+ * Creates a new instance of the appropriate class based on discriminator value
10
+ * @param parseNode The parse node to use to read the discriminator value and create the object
11
+ * @returns {RetrieveCloudPcRecommendationReportsPostRequestBody}
12
+ */
13
+ // @ts-ignore
14
+ export function createRetrieveCloudPcRecommendationReportsPostRequestBodyFromDiscriminatorValue(parseNode) {
15
+ return deserializeIntoRetrieveCloudPcRecommendationReportsPostRequestBody;
16
+ }
17
+ /**
18
+ * The deserialization information for the current model
19
+ * @param RetrieveCloudPcRecommendationReportsPostRequestBody The instance to deserialize into.
20
+ * @returns {Record<string, (node: ParseNode) => void>}
21
+ */
22
+ // @ts-ignore
23
+ export function deserializeIntoRetrieveCloudPcRecommendationReportsPostRequestBody(retrieveCloudPcRecommendationReportsPostRequestBody = {}) {
24
+ return {
25
+ "backingStoreEnabled": n => { retrieveCloudPcRecommendationReportsPostRequestBody.backingStoreEnabled = true; },
26
+ "filter": n => { retrieveCloudPcRecommendationReportsPostRequestBody.filter = n.getStringValue(); },
27
+ "groupBy": n => { retrieveCloudPcRecommendationReportsPostRequestBody.groupBy = n.getCollectionOfPrimitiveValues(); },
28
+ "orderBy": n => { retrieveCloudPcRecommendationReportsPostRequestBody.orderBy = n.getCollectionOfPrimitiveValues(); },
29
+ "reportType": n => { retrieveCloudPcRecommendationReportsPostRequestBody.reportType = n.getEnumValue(CloudPcRecommendationReportTypeObject); },
30
+ "search": n => { retrieveCloudPcRecommendationReportsPostRequestBody.search = n.getStringValue(); },
31
+ "select": n => { retrieveCloudPcRecommendationReportsPostRequestBody.select = n.getCollectionOfPrimitiveValues(); },
32
+ "skip": n => { retrieveCloudPcRecommendationReportsPostRequestBody.skip = n.getNumberValue(); },
33
+ "top": n => { retrieveCloudPcRecommendationReportsPostRequestBody.top = n.getNumberValue(); },
34
+ };
35
+ }
36
+ /**
37
+ * Serializes information the current object
38
+ * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
39
+ * @param RetrieveCloudPcRecommendationReportsPostRequestBody The instance to serialize from.
40
+ * @param writer Serialization writer to use to serialize this model
41
+ */
42
+ // @ts-ignore
43
+ export function serializeRetrieveCloudPcRecommendationReportsPostRequestBody(writer, retrieveCloudPcRecommendationReportsPostRequestBody = {}, isSerializingDerivedType = false) {
44
+ if (!retrieveCloudPcRecommendationReportsPostRequestBody || isSerializingDerivedType) {
45
+ return;
46
+ }
47
+ writer.writeStringValue("filter", retrieveCloudPcRecommendationReportsPostRequestBody.filter);
48
+ writer.writeCollectionOfPrimitiveValues("groupBy", retrieveCloudPcRecommendationReportsPostRequestBody.groupBy);
49
+ writer.writeCollectionOfPrimitiveValues("orderBy", retrieveCloudPcRecommendationReportsPostRequestBody.orderBy);
50
+ writer.writeEnumValue("reportType", retrieveCloudPcRecommendationReportsPostRequestBody.reportType);
51
+ writer.writeStringValue("search", retrieveCloudPcRecommendationReportsPostRequestBody.search);
52
+ writer.writeCollectionOfPrimitiveValues("select", retrieveCloudPcRecommendationReportsPostRequestBody.select);
53
+ writer.writeNumberValue("skip", retrieveCloudPcRecommendationReportsPostRequestBody.skip);
54
+ writer.writeNumberValue("top", retrieveCloudPcRecommendationReportsPostRequestBody.top);
55
+ writer.writeAdditionalData(retrieveCloudPcRecommendationReportsPostRequestBody.additionalData);
56
+ }
57
+ /**
58
+ * Uri template for the request builder.
59
+ */
60
+ export const RetrieveCloudPcRecommendationReportsRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/virtualEndpoint/report/retrieveCloudPcRecommendationReports";
61
+ /**
62
+ * Metadata for all the requests in the request builder.
63
+ */
64
+ export const RetrieveCloudPcRecommendationReportsRequestBuilderRequestsMetadata = {
65
+ post: {
66
+ uriTemplate: RetrieveCloudPcRecommendationReportsRequestBuilderUriTemplate,
67
+ responseBodyContentType: "application/octet-stream, application/json",
68
+ errorMappings: {
69
+ XXX: createODataErrorFromDiscriminatorValue,
70
+ },
71
+ adapterMethodName: "sendPrimitive",
72
+ responseBodyFactory: "ArrayBuffer",
73
+ requestBodyContentType: "application/json",
74
+ requestBodySerializer: serializeRetrieveCloudPcRecommendationReportsPostRequestBody,
75
+ requestInformationContentSetMethod: "setContentFromParsable",
76
+ },
77
+ };
78
+ /* tslint:enable */
79
+ /* eslint-enable */
80
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/msgraph-sdk-devicemanagement",
3
- "version": "1.0.0-preview.75",
3
+ "version": "1.0.0-preview.79",
4
4
  "description": "DeviceManagement fluent API for Microsoft Graph",
5
5
  "keywords": [
6
6
  "Microsoft",
@@ -36,6 +36,5 @@
36
36
  "devDependencies": {
37
37
  "typescript": "^5.3.3"
38
38
  },
39
- "type": "module",
40
- "gitHead": "3154d1fe7345850a78473ecf3ce8e4b46ca6d975"
39
+ "type": "module"
41
40
  }