UNPKG

2.2 kBJavaScriptView Raw
1/*
2 * ---------------------------------------------------------
3 * Copyright(C) Microsoft Corporation. All rights reserved.
4 * ---------------------------------------------------------
5 *
6 * ---------------------------------------------------------
7 * Generated file, DO NOT EDIT
8 * ---------------------------------------------------------
9 */
10"use strict";
11Object.defineProperty(exports, "__esModule", { value: true });
12exports.TypeInfo = exports.GraphTraversalDirection = void 0;
13const IdentitiesInterfaces = require("../interfaces/IdentitiesInterfaces");
14var GraphTraversalDirection;
15(function (GraphTraversalDirection) {
16 GraphTraversalDirection[GraphTraversalDirection["Unknown"] = 0] = "Unknown";
17 GraphTraversalDirection[GraphTraversalDirection["Down"] = 1] = "Down";
18 GraphTraversalDirection[GraphTraversalDirection["Up"] = 2] = "Up";
19})(GraphTraversalDirection = exports.GraphTraversalDirection || (exports.GraphTraversalDirection = {}));
20exports.TypeInfo = {
21 AadGraphMember: {},
22 GraphScope: {},
23 GraphScopeCreationContext: {},
24 GraphServicePrincipal: {},
25 GraphTraversalDirection: {
26 enumValues: {
27 "unknown": 0,
28 "down": 1,
29 "up": 2
30 }
31 },
32 GraphUser: {},
33 PagedGraphServicePrincipals: {},
34 PagedGraphUsers: {},
35};
36exports.TypeInfo.AadGraphMember.fields = {
37 metadataUpdateDate: {
38 isDate: true,
39 }
40};
41exports.TypeInfo.GraphScope.fields = {
42 scopeType: {
43 enumType: IdentitiesInterfaces.TypeInfo.GroupScopeType
44 }
45};
46exports.TypeInfo.GraphScopeCreationContext.fields = {
47 scopeType: {
48 enumType: IdentitiesInterfaces.TypeInfo.GroupScopeType
49 }
50};
51exports.TypeInfo.GraphServicePrincipal.fields = {
52 metadataUpdateDate: {
53 isDate: true,
54 }
55};
56exports.TypeInfo.GraphUser.fields = {
57 metadataUpdateDate: {
58 isDate: true,
59 }
60};
61exports.TypeInfo.PagedGraphServicePrincipals.fields = {
62 graphServicePrincipals: {
63 isArray: true,
64 typeInfo: exports.TypeInfo.GraphServicePrincipal
65 }
66};
67exports.TypeInfo.PagedGraphUsers.fields = {
68 graphUsers: {
69 isArray: true,
70 typeInfo: exports.TypeInfo.GraphUser
71 }
72};