@pnp/cli-microsoft365 11.9.0-beta.8c1ee05 → 11.9.0-beta.9bd71dd
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/.devcontainer/Dockerfile +2 -2
- package/.devproxy/api-specs/sharepoint.yaml +166 -0
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/m365/cli/commands/app/app-reconsent.js +8 -0
- package/dist/m365/cli/commands/cli-consent.js +8 -31
- package/dist/m365/cli/commands/cli-doctor.js +6 -1
- package/dist/m365/cli/commands/cli-issue.js +8 -36
- package/dist/m365/cli/commands/completion/completion-clink-update.js +8 -0
- package/dist/m365/cli/commands/completion/completion-pwsh-setup.js +8 -16
- package/dist/m365/cli/commands/completion/completion-pwsh-update.js +8 -0
- package/dist/m365/cli/commands/completion/completion-sh-setup.js +8 -0
- package/dist/m365/cli/commands/completion/completion-sh-update.js +8 -0
- package/dist/m365/cli/commands/config/config-get.js +9 -32
- package/dist/m365/cli/commands/config/config-list.js +8 -0
- package/dist/m365/cli/commands/config/config-reset.js +9 -34
- package/dist/m365/cli/commands/config/config-set.js +86 -70
- package/dist/m365/commands/request.js +26 -60
- package/dist/m365/commands/search.js +59 -77
- package/dist/m365/commands/setup.js +16 -31
- package/dist/m365/commands/version.js +6 -0
- package/dist/m365/connection/commands/connection-remove.js +9 -29
- package/dist/m365/connection/commands/connection-use.js +8 -26
- package/dist/m365/context/commands/context-init.js +6 -0
- package/dist/m365/context/commands/option/option-set.js +9 -18
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-add.js +32 -63
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-get.js +21 -45
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-list.js +32 -53
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-remove.js +34 -74
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-roleassignment-add.js +37 -57
- package/dist/m365/entra/commands/approleassignment/approleassignment-add.js +23 -48
- package/dist/m365/entra/commands/approleassignment/approleassignment-list.js +20 -43
- package/dist/m365/entra/commands/approleassignment/approleassignment-remove.js +24 -51
- package/dist/m365/entra/commands/enterpriseapp/enterpriseapp-add.js +20 -43
- package/dist/m365/entra/commands/enterpriseapp/enterpriseapp-get.js +20 -43
- package/dist/m365/entra/commands/enterpriseapp/enterpriseapp-list.js +9 -25
- package/dist/m365/entra/commands/enterpriseapp/enterpriseapp-remove.js +21 -50
- package/dist/m365/entra/commands/groupsetting/groupsetting-add.js +9 -25
- package/dist/m365/entra/commands/groupsetting/groupsetting-get.js +8 -24
- package/dist/m365/entra/commands/groupsetting/groupsetting-list.js +6 -0
- package/dist/m365/entra/commands/groupsetting/groupsetting-remove.js +9 -33
- package/dist/m365/entra/commands/groupsetting/groupsetting-set.js +8 -24
- package/dist/m365/entra/commands/groupsettingtemplate/groupsettingtemplate-get.js +19 -38
- package/dist/m365/entra/commands/groupsettingtemplate/groupsettingtemplate-list.js +6 -0
- package/dist/m365/entra/commands/multitenant/multitenant-get.js +8 -1
- package/dist/m365/entra/commands/multitenant/multitenant-remove.js +8 -22
- package/dist/m365/entra/commands/multitenant/multitenant-set.js +15 -36
- package/dist/m365/entra/commands/oauth2grant/oauth2grant-add.js +10 -31
- package/dist/m365/entra/commands/oauth2grant/oauth2grant-list.js +8 -24
- package/dist/m365/entra/commands/oauth2grant/oauth2grant-remove.js +9 -17
- package/dist/m365/entra/commands/oauth2grant/oauth2grant-set.js +9 -17
- package/dist/m365/entra/commands/pim/pim-role-assignment-add.js +68 -114
- package/dist/m365/entra/commands/pim/pim-role-assignment-eligibility-list.js +28 -55
- package/dist/m365/entra/commands/pim/pim-role-assignment-list.js +30 -57
- package/dist/m365/entra/commands/pim/pim-role-assignment-remove.js +50 -90
- package/dist/m365/entra/commands/pim/pim-role-request-list.js +36 -69
- package/dist/m365/entra/commands/policy/policy-list.js +13 -56
- package/dist/m365/entra/commands/user/user-add.js +39 -118
- package/dist/m365/entra/commands/user/user-get.js +24 -49
- package/dist/m365/entra/commands/user/user-groupmembership-list.js +25 -48
- package/dist/m365/entra/commands/user/user-guest-add.js +14 -39
- package/dist/m365/entra/commands/user/user-hibp.js +12 -34
- package/dist/m365/entra/commands/user/user-license-add.js +23 -42
- package/dist/m365/entra/commands/user/user-license-list.js +21 -42
- package/dist/m365/entra/commands/user/user-license-remove.js +25 -47
- package/dist/m365/entra/commands/user/user-list.js +12 -39
- package/dist/m365/entra/commands/user/user-password-validate.js +8 -15
- package/dist/m365/entra/commands/user/user-recyclebinitem-clear.js +8 -22
- package/dist/m365/entra/commands/user/user-recyclebinitem-remove.js +9 -33
- package/dist/m365/entra/commands/user/user-recyclebinitem-restore.js +8 -24
- package/dist/m365/entra/commands/user/user-registrationdetails-list.js +43 -113
- package/dist/m365/entra/commands/user/user-remove.js +22 -42
- package/dist/m365/entra/commands/user/user-set.js +69 -149
- package/dist/m365/entra/commands/user/user-signin-list.js +22 -51
- package/dist/m365/external/commands/connection/connection-add.js +40 -65
- package/dist/m365/external/commands/connection/connection-doctor.js +14 -30
- package/dist/m365/external/commands/connection/connection-get.js +19 -28
- package/dist/m365/external/commands/connection/connection-remove.js +20 -25
- package/dist/m365/external/commands/connection/connection-schema-add.js +53 -42
- package/dist/m365/external/commands/connection/connection-urltoitemresolver-add.js +12 -23
- package/dist/m365/external/commands/item/item-add.js +37 -60
- package/dist/m365/file/commands/convert/convert-pdf.js +18 -33
- package/dist/m365/file/commands/file-add.js +28 -34
- package/dist/m365/file/commands/file-copy.js +18 -34
- package/dist/m365/file/commands/file-list.js +18 -24
- package/dist/m365/file/commands/file-move.js +22 -35
- package/dist/m365/flow/commands/flow-disable.js +10 -26
- package/dist/m365/flow/commands/flow-enable.js +10 -26
- package/dist/m365/flow/commands/flow-export.js +45 -71
- package/dist/m365/flow/commands/flow-get.js +10 -26
- package/dist/m365/flow/commands/flow-list.js +17 -48
- package/dist/m365/flow/commands/flow-remove.js +11 -38
- package/dist/m365/flow/commands/owner/owner-ensure.js +30 -65
- package/dist/m365/flow/commands/owner/owner-list.js +10 -35
- package/dist/m365/flow/commands/owner/owner-remove.js +30 -61
- package/dist/m365/flow/commands/run/run-cancel.js +11 -37
- package/dist/m365/flow/commands/run/run-get.js +12 -43
- package/dist/m365/flow/commands/run/run-list.js +29 -61
- package/dist/m365/flow/commands/run/run-resubmit.js +11 -37
- package/dist/m365/graph/commands/changelog/changelog-list.js +68 -67
- package/dist/m365/graph/commands/schemaextension/schemaextension-add.js +25 -31
- package/dist/m365/graph/commands/schemaextension/schemaextension-get.js +8 -15
- package/dist/m365/graph/commands/schemaextension/schemaextension-list.js +26 -50
- package/dist/m365/graph/commands/schemaextension/schemaextension-remove.js +9 -24
- package/dist/m365/graph/commands/schemaextension/schemaextension-set.js +32 -53
- package/dist/m365/graph/commands/subscription/subscription-add.js +63 -89
- package/dist/m365/outlook/commands/calendar/calendar-get.js +1 -1
- package/dist/m365/outlook/commands/calendar/calendar-list.js +64 -0
- package/dist/m365/outlook/commands/mail/mail-send.js +55 -84
- package/dist/m365/outlook/commands/message/message-get.js +27 -27
- package/dist/m365/outlook/commands/message/message-list.js +53 -80
- package/dist/m365/outlook/commands/message/message-move.js +43 -40
- package/dist/m365/outlook/commands/message/message-remove.js +17 -45
- package/dist/m365/outlook/commands.js +1 -0
- package/dist/m365/spe/commands/container/container-get.js +54 -26
- package/dist/m365/spe/commands/container/container-permission-list.js +43 -4
- package/dist/m365/spe/commands/container/container-set.js +77 -0
- package/dist/m365/spe/commands.js +1 -0
- package/dist/m365/spo/commands/file/file-unarchive.js +83 -0
- package/dist/m365/spo/commands/folder/folder-archive.js +89 -0
- package/dist/m365/spo/commands/list/list-sensitivitylabel-remove.js +83 -0
- package/dist/m365/spo/commands.js +3 -0
- package/dist/m365/viva/commands/engage/engage-role-member-add.js +79 -0
- package/dist/m365/viva/commands.js +1 -0
- package/docs/docs/cmd/outlook/calendar/calendar-get.mdx +7 -7
- package/docs/docs/cmd/outlook/calendar/calendar-list.mdx +155 -0
- package/docs/docs/cmd/spe/container/container-get.mdx +24 -3
- package/docs/docs/cmd/spe/container/container-permission-list.mdx +24 -3
- package/docs/docs/cmd/spe/container/container-set.mdx +160 -0
- package/docs/docs/cmd/spo/app/app-add.mdx +19 -0
- package/docs/docs/cmd/spo/app/app-deploy.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-get.mdx +19 -0
- package/docs/docs/cmd/spo/app/app-install.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-instance-list.mdx +19 -0
- package/docs/docs/cmd/spo/app/app-list.mdx +19 -0
- package/docs/docs/cmd/spo/app/app-remove.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-retract.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-teamspackage-download.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-uninstall.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-upgrade.mdx +21 -0
- package/docs/docs/cmd/spo/apppage/apppage-add.mdx +19 -1
- package/docs/docs/cmd/spo/apppage/apppage-set.mdx +21 -0
- package/docs/docs/cmd/spo/commandset/commandset-add.mdx +19 -0
- package/docs/docs/cmd/spo/commandset/commandset-get.mdx +19 -0
- package/docs/docs/cmd/spo/commandset/commandset-list.mdx +19 -0
- package/docs/docs/cmd/spo/commandset/commandset-remove.mdx +21 -0
- package/docs/docs/cmd/spo/commandset/commandset-set.mdx +21 -0
- package/docs/docs/cmd/spo/file/file-unarchive.mdx +68 -0
- package/docs/docs/cmd/spo/folder/folder-archive.mdx +73 -0
- package/docs/docs/cmd/spo/list/list-sensitivitylabel-remove.mdx +77 -0
- package/docs/docs/cmd/viva/engage/engage-role-member-add.mdx +76 -0
- package/npm-shrinkwrap.json +280 -128
- package/package.json +18 -18
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
4
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
5
|
-
};
|
|
6
|
-
var _EntraOAuth2GrantSetCommand_instances, _EntraOAuth2GrantSetCommand_initOptions;
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { globalOptionsZod } from '../../../../Command.js';
|
|
7
3
|
import request from '../../../../request.js';
|
|
8
4
|
import { formatting } from '../../../../utils/formatting.js';
|
|
9
5
|
import GraphCommand from '../../../base/GraphCommand.js';
|
|
10
6
|
import commands from '../../commands.js';
|
|
7
|
+
export const options = globalOptionsZod
|
|
8
|
+
.extend({
|
|
9
|
+
grantId: z.string().alias('i'),
|
|
10
|
+
scope: z.string().alias('s')
|
|
11
|
+
}).strict();
|
|
11
12
|
class EntraOAuth2GrantSetCommand extends GraphCommand {
|
|
12
13
|
get name() {
|
|
13
14
|
return commands.OAUTH2GRANT_SET;
|
|
@@ -15,10 +16,8 @@ class EntraOAuth2GrantSetCommand extends GraphCommand {
|
|
|
15
16
|
get description() {
|
|
16
17
|
return 'Update OAuth2 permissions for the service principal';
|
|
17
18
|
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
_EntraOAuth2GrantSetCommand_instances.add(this);
|
|
21
|
-
__classPrivateFieldGet(this, _EntraOAuth2GrantSetCommand_instances, "m", _EntraOAuth2GrantSetCommand_initOptions).call(this);
|
|
19
|
+
get schema() {
|
|
20
|
+
return options;
|
|
22
21
|
}
|
|
23
22
|
async commandAction(logger, args) {
|
|
24
23
|
if (this.verbose) {
|
|
@@ -42,12 +41,5 @@ class EntraOAuth2GrantSetCommand extends GraphCommand {
|
|
|
42
41
|
}
|
|
43
42
|
}
|
|
44
43
|
}
|
|
45
|
-
_EntraOAuth2GrantSetCommand_instances = new WeakSet(), _EntraOAuth2GrantSetCommand_initOptions = function _EntraOAuth2GrantSetCommand_initOptions() {
|
|
46
|
-
this.options.unshift({
|
|
47
|
-
option: '-i, --grantId <grantId>'
|
|
48
|
-
}, {
|
|
49
|
-
option: '-s, --scope <scope>'
|
|
50
|
-
});
|
|
51
|
-
};
|
|
52
44
|
export default new EntraOAuth2GrantSetCommand();
|
|
53
45
|
//# sourceMappingURL=oauth2grant-set.js.map
|
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
4
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
5
|
-
};
|
|
6
|
-
var _EntraPimRoleAssignmentAddCommand_instances, _EntraPimRoleAssignmentAddCommand_initTelemetry, _EntraPimRoleAssignmentAddCommand_initOptions, _EntraPimRoleAssignmentAddCommand_initValidators, _EntraPimRoleAssignmentAddCommand_initOptionSets;
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { globalOptionsZod } from '../../../../Command.js';
|
|
7
3
|
import request from '../../../../request.js';
|
|
8
4
|
import GraphCommand from '../../../base/GraphCommand.js';
|
|
9
5
|
import commands from '../../commands.js';
|
|
@@ -13,6 +9,30 @@ import { entraUser } from '../../../../utils/entraUser.js';
|
|
|
13
9
|
import { entraGroup } from '../../../../utils/entraGroup.js';
|
|
14
10
|
import { accessToken } from '../../../../utils/accessToken.js';
|
|
15
11
|
import auth from '../../../../Auth.js';
|
|
12
|
+
export const options = z.strictObject({
|
|
13
|
+
...globalOptionsZod.shape,
|
|
14
|
+
roleDefinitionName: z.string().optional().alias('n'),
|
|
15
|
+
roleDefinitionId: z.uuid().optional().alias('i'),
|
|
16
|
+
userId: z.uuid().optional(),
|
|
17
|
+
userName: z.string().optional(),
|
|
18
|
+
groupId: z.uuid().optional(),
|
|
19
|
+
groupName: z.string().optional(),
|
|
20
|
+
administrativeUnitId: z.uuid().optional(),
|
|
21
|
+
applicationId: z.uuid().optional(),
|
|
22
|
+
justification: z.string().optional().alias('j'),
|
|
23
|
+
startDateTime: z.string().refine(date => validation.isValidISODateTime(date), {
|
|
24
|
+
error: e => `'${e.input}' is not a valid ISO 8601 date time string.`
|
|
25
|
+
}).optional().alias('s'),
|
|
26
|
+
endDateTime: z.string().refine(date => validation.isValidISODateTime(date), {
|
|
27
|
+
error: e => `'${e.input}' is not a valid ISO 8601 date time string.`
|
|
28
|
+
}).optional().alias('e'),
|
|
29
|
+
duration: z.string().refine(dur => validation.isValidISODuration(dur), {
|
|
30
|
+
error: e => `'${e.input}' is not a valid ISO 8601 duration.`
|
|
31
|
+
}).optional().alias('d'),
|
|
32
|
+
ticketNumber: z.string().optional(),
|
|
33
|
+
ticketSystem: z.string().optional(),
|
|
34
|
+
noExpiration: z.boolean().default(false)
|
|
35
|
+
});
|
|
16
36
|
class EntraPimRoleAssignmentAddCommand extends GraphCommand {
|
|
17
37
|
get name() {
|
|
18
38
|
return commands.PIM_ROLE_ASSIGNMENT_ADD;
|
|
@@ -20,13 +40,48 @@ class EntraPimRoleAssignmentAddCommand extends GraphCommand {
|
|
|
20
40
|
get description() {
|
|
21
41
|
return 'Request activation of an Entra role assignment for a user or group';
|
|
22
42
|
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
43
|
+
get schema() {
|
|
44
|
+
return options;
|
|
45
|
+
}
|
|
46
|
+
getRefinedSchema(schema) {
|
|
47
|
+
return schema
|
|
48
|
+
.refine(options => [options.roleDefinitionId, options.roleDefinitionName].filter(o => o !== undefined).length === 1, {
|
|
49
|
+
message: 'Specify either roleDefinitionId or roleDefinitionName',
|
|
50
|
+
params: {
|
|
51
|
+
customCode: 'optionSet',
|
|
52
|
+
options: ['roleDefinitionId', 'roleDefinitionName']
|
|
53
|
+
}
|
|
54
|
+
})
|
|
55
|
+
.refine(options => {
|
|
56
|
+
const specified = [options.noExpiration ? true : undefined, options.endDateTime, options.duration].filter(o => o !== undefined).length;
|
|
57
|
+
return specified <= 1;
|
|
58
|
+
}, {
|
|
59
|
+
message: 'Specify only one of the following options: noExpiration, endDateTime, duration',
|
|
60
|
+
params: {
|
|
61
|
+
customCode: 'optionSet',
|
|
62
|
+
options: ['noExpiration', 'endDateTime', 'duration']
|
|
63
|
+
}
|
|
64
|
+
})
|
|
65
|
+
.refine(options => {
|
|
66
|
+
const specified = [options.userId, options.userName, options.groupId, options.groupName].filter(o => o !== undefined).length;
|
|
67
|
+
return specified <= 1;
|
|
68
|
+
}, {
|
|
69
|
+
message: 'Specify only one of the following options: userId, userName, groupId, groupName',
|
|
70
|
+
params: {
|
|
71
|
+
customCode: 'optionSet',
|
|
72
|
+
options: ['userId', 'userName', 'groupId', 'groupName']
|
|
73
|
+
}
|
|
74
|
+
})
|
|
75
|
+
.refine(options => {
|
|
76
|
+
const specified = [options.administrativeUnitId, options.applicationId].filter(o => o !== undefined).length;
|
|
77
|
+
return specified <= 1;
|
|
78
|
+
}, {
|
|
79
|
+
message: 'Specify only one of the following options: administrativeUnitId, applicationId',
|
|
80
|
+
params: {
|
|
81
|
+
customCode: 'optionSet',
|
|
82
|
+
options: ['administrativeUnitId', 'applicationId']
|
|
83
|
+
}
|
|
84
|
+
});
|
|
30
85
|
}
|
|
31
86
|
async commandAction(logger, args) {
|
|
32
87
|
const { userId, userName, groupId, groupName, startDateTime, endDateTime, ticketNumber, ticketSystem } = args.options;
|
|
@@ -128,106 +183,5 @@ class EntraPimRoleAssignmentAddCommand extends GraphCommand {
|
|
|
128
183
|
return '/';
|
|
129
184
|
}
|
|
130
185
|
}
|
|
131
|
-
_EntraPimRoleAssignmentAddCommand_instances = new WeakSet(), _EntraPimRoleAssignmentAddCommand_initTelemetry = function _EntraPimRoleAssignmentAddCommand_initTelemetry() {
|
|
132
|
-
this.telemetry.push((args) => {
|
|
133
|
-
Object.assign(this.telemetryProperties, {
|
|
134
|
-
roleDefinitionName: typeof args.options.roleDefinitionName !== 'undefined',
|
|
135
|
-
roleDefinitionId: typeof args.options.roleDefinitionId !== 'undefined',
|
|
136
|
-
userId: typeof args.options.userId !== 'undefined',
|
|
137
|
-
userName: typeof args.options.userName !== 'undefined',
|
|
138
|
-
groupId: typeof args.options.groupId !== 'undefined',
|
|
139
|
-
groupName: typeof args.options.groupName !== 'undefined',
|
|
140
|
-
administrativeUnitId: typeof args.options.administrativeUnitId !== 'undefined',
|
|
141
|
-
applicationId: typeof args.options.applicationId !== 'undefined',
|
|
142
|
-
justification: typeof args.options.justification !== 'undefined',
|
|
143
|
-
startDateTime: typeof args.options.startDateTime !== 'undefined',
|
|
144
|
-
endDateTime: typeof args.options.endDateTime !== 'undefined',
|
|
145
|
-
duration: typeof args.options.duration !== 'undefined',
|
|
146
|
-
ticketNumber: typeof args.options.ticketNumber !== 'undefined',
|
|
147
|
-
ticketSystem: typeof args.options.ticketSystem !== 'undefined',
|
|
148
|
-
noExpiration: !!args.options.noExpiration
|
|
149
|
-
});
|
|
150
|
-
});
|
|
151
|
-
}, _EntraPimRoleAssignmentAddCommand_initOptions = function _EntraPimRoleAssignmentAddCommand_initOptions() {
|
|
152
|
-
this.options.unshift({
|
|
153
|
-
option: '-n, --roleDefinitionName [roleDefinitionName]'
|
|
154
|
-
}, {
|
|
155
|
-
option: '-i, --roleDefinitionId [roleDefinitionId]'
|
|
156
|
-
}, {
|
|
157
|
-
option: "--userId [userId]"
|
|
158
|
-
}, {
|
|
159
|
-
option: "--userName [userName]"
|
|
160
|
-
}, {
|
|
161
|
-
option: "--groupId [groupId]"
|
|
162
|
-
}, {
|
|
163
|
-
option: "--groupName [groupName]"
|
|
164
|
-
}, {
|
|
165
|
-
option: "--administrativeUnitId [administrativeUnitId]"
|
|
166
|
-
}, {
|
|
167
|
-
option: "--applicationId [applicationId]"
|
|
168
|
-
}, {
|
|
169
|
-
option: "-j, --justification [justification]"
|
|
170
|
-
}, {
|
|
171
|
-
option: "-s, --startDateTime [startDateTime]"
|
|
172
|
-
}, {
|
|
173
|
-
option: "-e, --endDateTime [endDateTime]"
|
|
174
|
-
}, {
|
|
175
|
-
option: "-d, --duration [duration]"
|
|
176
|
-
}, {
|
|
177
|
-
option: "--ticketNumber [ticketNumber]"
|
|
178
|
-
}, {
|
|
179
|
-
option: "--ticketSystem [ticketSystem]"
|
|
180
|
-
}, {
|
|
181
|
-
option: "--no-expiration"
|
|
182
|
-
});
|
|
183
|
-
}, _EntraPimRoleAssignmentAddCommand_initValidators = function _EntraPimRoleAssignmentAddCommand_initValidators() {
|
|
184
|
-
this.validators.push(async (args) => {
|
|
185
|
-
if (args.options.roleDefinitionId && !validation.isValidGuid(args.options.roleDefinitionId)) {
|
|
186
|
-
return `${args.options.roleDefinitionId} is not a valid GUID`;
|
|
187
|
-
}
|
|
188
|
-
if (args.options.userId && !validation.isValidGuid(args.options.userId)) {
|
|
189
|
-
return `${args.options.userId} is not a valid GUID`;
|
|
190
|
-
}
|
|
191
|
-
if (args.options.groupId && !validation.isValidGuid(args.options.groupId)) {
|
|
192
|
-
return `${args.options.groupId} is not a valid GUID`;
|
|
193
|
-
}
|
|
194
|
-
if (args.options.startDateTime && !validation.isValidISODateTime(args.options.startDateTime)) {
|
|
195
|
-
return `${args.options.startDateTime} is not a valid ISO 8601 date time string`;
|
|
196
|
-
}
|
|
197
|
-
if (args.options.endDateTime && !validation.isValidISODateTime(args.options.endDateTime)) {
|
|
198
|
-
return `${args.options.endDateTime} is not a valid ISO 8601 date time string`;
|
|
199
|
-
}
|
|
200
|
-
if (args.options.duration && !validation.isValidISODuration(args.options.duration)) {
|
|
201
|
-
return `${args.options.duration} is not a valid ISO 8601 duration`;
|
|
202
|
-
}
|
|
203
|
-
if (args.options.administrativeUnitId && !validation.isValidGuid(args.options.administrativeUnitId)) {
|
|
204
|
-
return `${args.options.administrativeUnitId} is not a valid GUID`;
|
|
205
|
-
}
|
|
206
|
-
if (args.options.applicationId && !validation.isValidGuid(args.options.applicationId)) {
|
|
207
|
-
return `${args.options.applicationId} is not a valid GUID`;
|
|
208
|
-
}
|
|
209
|
-
return true;
|
|
210
|
-
});
|
|
211
|
-
}, _EntraPimRoleAssignmentAddCommand_initOptionSets = function _EntraPimRoleAssignmentAddCommand_initOptionSets() {
|
|
212
|
-
this.optionSets.push({ options: ['roleDefinitionName', 'roleDefinitionId'] });
|
|
213
|
-
this.optionSets.push({
|
|
214
|
-
options: ['noExpiration', 'endDateTime', 'duration'],
|
|
215
|
-
runsWhen: (args) => {
|
|
216
|
-
return !!args.options.noExpiration || args.options.endDateTime !== undefined || args.options.duration !== undefined;
|
|
217
|
-
}
|
|
218
|
-
});
|
|
219
|
-
this.optionSets.push({
|
|
220
|
-
options: ['userId', 'userName', 'groupId', 'groupName'],
|
|
221
|
-
runsWhen: (args) => {
|
|
222
|
-
return args.options.userId !== undefined || args.options.userName !== undefined || args.options.groupId !== undefined || args.options.groupName !== undefined;
|
|
223
|
-
}
|
|
224
|
-
});
|
|
225
|
-
this.optionSets.push({
|
|
226
|
-
options: ['administrativeUnitId', 'applicationId'],
|
|
227
|
-
runsWhen: (args) => {
|
|
228
|
-
return args.options.administrativeUnitId !== undefined || args.options.applicationId !== undefined;
|
|
229
|
-
}
|
|
230
|
-
});
|
|
231
|
-
};
|
|
232
186
|
export default new EntraPimRoleAssignmentAddCommand();
|
|
233
187
|
//# sourceMappingURL=pim-role-assignment-add.js.map
|
|
@@ -1,15 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
4
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
5
|
-
};
|
|
6
|
-
var _EntraPimRoleAssignmentEligibilityListCommand_instances, _EntraPimRoleAssignmentEligibilityListCommand_initTelemetry, _EntraPimRoleAssignmentEligibilityListCommand_initOptions, _EntraPimRoleAssignmentEligibilityListCommand_initValidators, _EntraPimRoleAssignmentEligibilityListCommand_initOptionSets;
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { globalOptionsZod } from '../../../../Command.js';
|
|
7
3
|
import GraphCommand from '../../../base/GraphCommand.js';
|
|
8
4
|
import commands from '../../commands.js';
|
|
9
5
|
import { validation } from '../../../../utils/validation.js';
|
|
10
6
|
import { entraUser } from '../../../../utils/entraUser.js';
|
|
11
7
|
import { entraGroup } from '../../../../utils/entraGroup.js';
|
|
12
8
|
import { odata } from '../../../../utils/odata.js';
|
|
9
|
+
export const options = z.strictObject({
|
|
10
|
+
...globalOptionsZod.shape,
|
|
11
|
+
userId: z.uuid().optional(),
|
|
12
|
+
userName: z.string().refine(upn => validation.isValidUserPrincipalName(upn), {
|
|
13
|
+
error: e => `'${e.input}' is not a valid user principal name for option 'userName'.`
|
|
14
|
+
}).optional(),
|
|
15
|
+
groupId: z.uuid().optional(),
|
|
16
|
+
groupName: z.string().optional(),
|
|
17
|
+
withPrincipalDetails: z.boolean().default(false)
|
|
18
|
+
});
|
|
13
19
|
class EntraPimRoleAssignmentEligibilityListCommand extends GraphCommand {
|
|
14
20
|
get name() {
|
|
15
21
|
return commands.PIM_ROLE_ASSIGNMENT_ELIGIBILITY_LIST;
|
|
@@ -17,17 +23,25 @@ class EntraPimRoleAssignmentEligibilityListCommand extends GraphCommand {
|
|
|
17
23
|
get description() {
|
|
18
24
|
return 'Retrieves a list of eligible roles a user or group can be assigned to';
|
|
19
25
|
}
|
|
26
|
+
get schema() {
|
|
27
|
+
return options;
|
|
28
|
+
}
|
|
29
|
+
getRefinedSchema(schema) {
|
|
30
|
+
return schema
|
|
31
|
+
.refine(options => {
|
|
32
|
+
const specified = [options.userId, options.userName, options.groupId, options.groupName].filter(o => o !== undefined).length;
|
|
33
|
+
return specified <= 1;
|
|
34
|
+
}, {
|
|
35
|
+
message: 'Specify only one of the following options: userId, userName, groupId, groupName',
|
|
36
|
+
params: {
|
|
37
|
+
customCode: 'optionSet',
|
|
38
|
+
options: ['userId', 'userName', 'groupId', 'groupName']
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
}
|
|
20
42
|
defaultProperties() {
|
|
21
43
|
return ['roleDefinitionId', 'roleDefinitionName', 'principalId'];
|
|
22
44
|
}
|
|
23
|
-
constructor() {
|
|
24
|
-
super();
|
|
25
|
-
_EntraPimRoleAssignmentEligibilityListCommand_instances.add(this);
|
|
26
|
-
__classPrivateFieldGet(this, _EntraPimRoleAssignmentEligibilityListCommand_instances, "m", _EntraPimRoleAssignmentEligibilityListCommand_initTelemetry).call(this);
|
|
27
|
-
__classPrivateFieldGet(this, _EntraPimRoleAssignmentEligibilityListCommand_instances, "m", _EntraPimRoleAssignmentEligibilityListCommand_initOptions).call(this);
|
|
28
|
-
__classPrivateFieldGet(this, _EntraPimRoleAssignmentEligibilityListCommand_instances, "m", _EntraPimRoleAssignmentEligibilityListCommand_initValidators).call(this);
|
|
29
|
-
__classPrivateFieldGet(this, _EntraPimRoleAssignmentEligibilityListCommand_instances, "m", _EntraPimRoleAssignmentEligibilityListCommand_initOptionSets).call(this);
|
|
30
|
-
}
|
|
31
45
|
async commandAction(logger, args) {
|
|
32
46
|
if (this.verbose) {
|
|
33
47
|
await logger.logToStderr(`Retrieving list of eligible roles for ${args.options.userId || args.options.userName || args.options.groupId || args.options.groupName || 'all users'}...`);
|
|
@@ -79,46 +93,5 @@ class EntraPimRoleAssignmentEligibilityListCommand extends GraphCommand {
|
|
|
79
93
|
return principalId;
|
|
80
94
|
}
|
|
81
95
|
}
|
|
82
|
-
_EntraPimRoleAssignmentEligibilityListCommand_instances = new WeakSet(), _EntraPimRoleAssignmentEligibilityListCommand_initTelemetry = function _EntraPimRoleAssignmentEligibilityListCommand_initTelemetry() {
|
|
83
|
-
this.telemetry.push((args) => {
|
|
84
|
-
Object.assign(this.telemetryProperties, {
|
|
85
|
-
userId: typeof args.options.userId !== 'undefined',
|
|
86
|
-
userName: typeof args.options.userName !== 'undefined',
|
|
87
|
-
groupId: typeof args.options.groupId !== 'undefined',
|
|
88
|
-
groupName: typeof args.options.groupName !== 'undefined',
|
|
89
|
-
withPrincipalDetails: !!args.options.withPrincipalDetails
|
|
90
|
-
});
|
|
91
|
-
});
|
|
92
|
-
}, _EntraPimRoleAssignmentEligibilityListCommand_initOptions = function _EntraPimRoleAssignmentEligibilityListCommand_initOptions() {
|
|
93
|
-
this.options.unshift({
|
|
94
|
-
option: '--userId [userId]'
|
|
95
|
-
}, {
|
|
96
|
-
option: '--userName [userName]'
|
|
97
|
-
}, {
|
|
98
|
-
option: '--groupId [groupId]'
|
|
99
|
-
}, {
|
|
100
|
-
option: '--groupName [groupName]'
|
|
101
|
-
}, {
|
|
102
|
-
option: '--withPrincipalDetails'
|
|
103
|
-
});
|
|
104
|
-
}, _EntraPimRoleAssignmentEligibilityListCommand_initValidators = function _EntraPimRoleAssignmentEligibilityListCommand_initValidators() {
|
|
105
|
-
this.validators.push(async (args) => {
|
|
106
|
-
if (args.options.userId && !validation.isValidGuid(args.options.userId)) {
|
|
107
|
-
return `'${args.options.userId} is not a valid GUID for option 'userId'.`;
|
|
108
|
-
}
|
|
109
|
-
if (args.options.userName && !validation.isValidUserPrincipalName(args.options.userName)) {
|
|
110
|
-
return `'${args.options.userName} is not a valid user principal name for option 'userName'.`;
|
|
111
|
-
}
|
|
112
|
-
if (args.options.groupId && !validation.isValidGuid(args.options.groupId)) {
|
|
113
|
-
return `'${args.options.groupId}' is not a valid GUID for option 'groupId'.`;
|
|
114
|
-
}
|
|
115
|
-
return true;
|
|
116
|
-
});
|
|
117
|
-
}, _EntraPimRoleAssignmentEligibilityListCommand_initOptionSets = function _EntraPimRoleAssignmentEligibilityListCommand_initOptionSets() {
|
|
118
|
-
this.optionSets.push({
|
|
119
|
-
options: ['userId', 'userName', 'groupId', 'groupName'],
|
|
120
|
-
runsWhen: (args) => args.options.userId || args.options.userName || args.options.groupName || args.options.groupId
|
|
121
|
-
});
|
|
122
|
-
};
|
|
123
96
|
export default new EntraPimRoleAssignmentEligibilityListCommand();
|
|
124
97
|
//# sourceMappingURL=pim-role-assignment-eligibility-list.js.map
|
|
@@ -1,15 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
4
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
5
|
-
};
|
|
6
|
-
var _EntraPimRoleAssignmentListCommand_instances, _EntraPimRoleAssignmentListCommand_initTelemetry, _EntraPimRoleAssignmentListCommand_initOptions, _EntraPimRoleAssignmentListCommand_initValidators, _EntraPimRoleAssignmentListCommand_initOptionSets;
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { globalOptionsZod } from '../../../../Command.js';
|
|
7
3
|
import GraphCommand from '../../../base/GraphCommand.js';
|
|
8
4
|
import commands from '../../commands.js';
|
|
9
5
|
import { validation } from '../../../../utils/validation.js';
|
|
10
6
|
import { entraUser } from '../../../../utils/entraUser.js';
|
|
11
7
|
import { entraGroup } from '../../../../utils/entraGroup.js';
|
|
12
8
|
import { odata } from '../../../../utils/odata.js';
|
|
9
|
+
export const options = z.strictObject({
|
|
10
|
+
...globalOptionsZod.shape,
|
|
11
|
+
userId: z.uuid().optional(),
|
|
12
|
+
userName: z.string().refine(upn => validation.isValidUserPrincipalName(upn), {
|
|
13
|
+
error: e => `'${e.input}' is not a valid user principal name for option 'userName'.`
|
|
14
|
+
}).optional(),
|
|
15
|
+
groupId: z.uuid().optional(),
|
|
16
|
+
groupName: z.string().optional(),
|
|
17
|
+
startDateTime: z.string().refine(date => validation.isValidISODateTime(date), {
|
|
18
|
+
error: e => `'${e.input}' is not a valid ISO 8601 date time string.`
|
|
19
|
+
}).optional().alias('s'),
|
|
20
|
+
withPrincipalDetails: z.boolean().default(false)
|
|
21
|
+
});
|
|
13
22
|
class EntraPimRoleAssignmentListCommand extends GraphCommand {
|
|
14
23
|
get name() {
|
|
15
24
|
return commands.PIM_ROLE_ASSIGNMENT_LIST;
|
|
@@ -17,13 +26,21 @@ class EntraPimRoleAssignmentListCommand extends GraphCommand {
|
|
|
17
26
|
get description() {
|
|
18
27
|
return 'Retrieves a list of Entra role assignments for a user or group';
|
|
19
28
|
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
29
|
+
get schema() {
|
|
30
|
+
return options;
|
|
31
|
+
}
|
|
32
|
+
getRefinedSchema(schema) {
|
|
33
|
+
return schema
|
|
34
|
+
.refine(options => {
|
|
35
|
+
const specified = [options.userId, options.userName, options.groupId, options.groupName].filter(o => o !== undefined).length;
|
|
36
|
+
return specified <= 1;
|
|
37
|
+
}, {
|
|
38
|
+
message: 'Specify only one of the following options: userId, userName, groupId, groupName',
|
|
39
|
+
params: {
|
|
40
|
+
customCode: 'optionSet',
|
|
41
|
+
options: ['userId', 'userName', 'groupId', 'groupName']
|
|
42
|
+
}
|
|
43
|
+
});
|
|
27
44
|
}
|
|
28
45
|
async commandAction(logger, args) {
|
|
29
46
|
const queryParameters = [];
|
|
@@ -74,49 +91,5 @@ class EntraPimRoleAssignmentListCommand extends GraphCommand {
|
|
|
74
91
|
return principalId;
|
|
75
92
|
}
|
|
76
93
|
}
|
|
77
|
-
_EntraPimRoleAssignmentListCommand_instances = new WeakSet(), _EntraPimRoleAssignmentListCommand_initTelemetry = function _EntraPimRoleAssignmentListCommand_initTelemetry() {
|
|
78
|
-
this.telemetry.push((args) => {
|
|
79
|
-
Object.assign(this.telemetryProperties, {
|
|
80
|
-
userId: typeof args.options.userId !== 'undefined',
|
|
81
|
-
userName: typeof args.options.userName !== 'undefined',
|
|
82
|
-
groupId: typeof args.options.groupId !== 'undefined',
|
|
83
|
-
groupName: typeof args.options.groupName !== 'undefined',
|
|
84
|
-
startDateTime: typeof args.options.startDateTime !== 'undefined',
|
|
85
|
-
withPrincipalDetails: !!args.options.withPrincipalDetails
|
|
86
|
-
});
|
|
87
|
-
});
|
|
88
|
-
}, _EntraPimRoleAssignmentListCommand_initOptions = function _EntraPimRoleAssignmentListCommand_initOptions() {
|
|
89
|
-
this.options.unshift({
|
|
90
|
-
option: "--userId [userId]"
|
|
91
|
-
}, {
|
|
92
|
-
option: "--userName [userName]"
|
|
93
|
-
}, {
|
|
94
|
-
option: "--groupId [groupId]"
|
|
95
|
-
}, {
|
|
96
|
-
option: "--groupName [groupName]"
|
|
97
|
-
}, {
|
|
98
|
-
option: "-s, --startDateTime [startDateTime]"
|
|
99
|
-
}, {
|
|
100
|
-
option: "--withPrincipalDetails"
|
|
101
|
-
});
|
|
102
|
-
}, _EntraPimRoleAssignmentListCommand_initValidators = function _EntraPimRoleAssignmentListCommand_initValidators() {
|
|
103
|
-
this.validators.push(async (args) => {
|
|
104
|
-
if (args.options.userId && !validation.isValidGuid(args.options.userId)) {
|
|
105
|
-
return `${args.options.userId} is not a valid GUID`;
|
|
106
|
-
}
|
|
107
|
-
if (args.options.groupId && !validation.isValidGuid(args.options.groupId)) {
|
|
108
|
-
return `${args.options.groupId} is not a valid GUID`;
|
|
109
|
-
}
|
|
110
|
-
if (args.options.startDateTime && !validation.isValidISODateTime(args.options.startDateTime)) {
|
|
111
|
-
return `${args.options.startDateTime} is not a valid ISO 8601 date time string`;
|
|
112
|
-
}
|
|
113
|
-
return true;
|
|
114
|
-
});
|
|
115
|
-
}, _EntraPimRoleAssignmentListCommand_initOptionSets = function _EntraPimRoleAssignmentListCommand_initOptionSets() {
|
|
116
|
-
this.optionSets.push({
|
|
117
|
-
options: ['userId', 'userName', 'groupId', 'groupName'],
|
|
118
|
-
runsWhen: (args) => args.options.userId || args.options.userName || args.options.groupId || args.options.groupName
|
|
119
|
-
});
|
|
120
|
-
};
|
|
121
94
|
export default new EntraPimRoleAssignmentListCommand();
|
|
122
95
|
//# sourceMappingURL=pim-role-assignment-list.js.map
|
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
4
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
5
|
-
};
|
|
6
|
-
var _EntraPimRoleAssignmentRemoveCommand_instances, _EntraPimRoleAssignmentRemoveCommand_initTelemetry, _EntraPimRoleAssignmentRemoveCommand_initOptions, _EntraPimRoleAssignmentRemoveCommand_initValidators, _EntraPimRoleAssignmentRemoveCommand_initOptionSets, _EntraPimRoleAssignmentRemoveCommand_initTypes;
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { globalOptionsZod } from '../../../../Command.js';
|
|
7
3
|
import request from '../../../../request.js';
|
|
8
4
|
import GraphCommand from '../../../base/GraphCommand.js';
|
|
9
5
|
import commands from '../../commands.js';
|
|
@@ -13,6 +9,22 @@ import { entraUser } from '../../../../utils/entraUser.js';
|
|
|
13
9
|
import { entraGroup } from '../../../../utils/entraGroup.js';
|
|
14
10
|
import { accessToken } from '../../../../utils/accessToken.js';
|
|
15
11
|
import auth from '../../../../Auth.js';
|
|
12
|
+
export const options = z.strictObject({
|
|
13
|
+
...globalOptionsZod.shape,
|
|
14
|
+
roleDefinitionName: z.string().optional().alias('n'),
|
|
15
|
+
roleDefinitionId: z.uuid().optional().alias('i'),
|
|
16
|
+
userId: z.uuid().optional(),
|
|
17
|
+
userName: z.string().refine(upn => validation.isValidUserPrincipalName(upn), {
|
|
18
|
+
error: e => `'${e.input}' is not a valid user principal name for option 'userName'.`
|
|
19
|
+
}).optional(),
|
|
20
|
+
groupId: z.uuid().optional(),
|
|
21
|
+
groupName: z.string().optional(),
|
|
22
|
+
administrativeUnitId: z.uuid().optional(),
|
|
23
|
+
applicationId: z.uuid().optional(),
|
|
24
|
+
justification: z.string().optional().alias('j'),
|
|
25
|
+
ticketNumber: z.string().optional(),
|
|
26
|
+
ticketSystem: z.string().optional()
|
|
27
|
+
});
|
|
16
28
|
class EntraPimRoleAssignmentRemoveCommand extends GraphCommand {
|
|
17
29
|
get name() {
|
|
18
30
|
return commands.PIM_ROLE_ASSIGNMENT_REMOVE;
|
|
@@ -20,14 +32,38 @@ class EntraPimRoleAssignmentRemoveCommand extends GraphCommand {
|
|
|
20
32
|
get description() {
|
|
21
33
|
return 'Request deactivation of an Entra role assignment for a user or group';
|
|
22
34
|
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
35
|
+
get schema() {
|
|
36
|
+
return options;
|
|
37
|
+
}
|
|
38
|
+
getRefinedSchema(schema) {
|
|
39
|
+
return schema
|
|
40
|
+
.refine(options => [options.roleDefinitionId, options.roleDefinitionName].filter(o => o !== undefined).length === 1, {
|
|
41
|
+
message: 'Specify either roleDefinitionId or roleDefinitionName',
|
|
42
|
+
params: {
|
|
43
|
+
customCode: 'optionSet',
|
|
44
|
+
options: ['roleDefinitionId', 'roleDefinitionName']
|
|
45
|
+
}
|
|
46
|
+
})
|
|
47
|
+
.refine(options => {
|
|
48
|
+
const specified = [options.userId, options.userName, options.groupId, options.groupName].filter(o => o !== undefined).length;
|
|
49
|
+
return specified <= 1;
|
|
50
|
+
}, {
|
|
51
|
+
message: 'Specify only one of the following options: userId, userName, groupId, groupName',
|
|
52
|
+
params: {
|
|
53
|
+
customCode: 'optionSet',
|
|
54
|
+
options: ['userId', 'userName', 'groupId', 'groupName']
|
|
55
|
+
}
|
|
56
|
+
})
|
|
57
|
+
.refine(options => {
|
|
58
|
+
const specified = [options.administrativeUnitId, options.applicationId].filter(o => o !== undefined).length;
|
|
59
|
+
return specified <= 1;
|
|
60
|
+
}, {
|
|
61
|
+
message: 'Specify only one of the following options: administrativeUnitId, applicationId',
|
|
62
|
+
params: {
|
|
63
|
+
customCode: 'optionSet',
|
|
64
|
+
options: ['administrativeUnitId', 'applicationId']
|
|
65
|
+
}
|
|
66
|
+
});
|
|
31
67
|
}
|
|
32
68
|
async commandAction(logger, args) {
|
|
33
69
|
const { userId, userName, groupId, groupName, ticketNumber, ticketSystem } = args.options;
|
|
@@ -106,81 +142,5 @@ class EntraPimRoleAssignmentRemoveCommand extends GraphCommand {
|
|
|
106
142
|
return '/';
|
|
107
143
|
}
|
|
108
144
|
}
|
|
109
|
-
_EntraPimRoleAssignmentRemoveCommand_instances = new WeakSet(), _EntraPimRoleAssignmentRemoveCommand_initTelemetry = function _EntraPimRoleAssignmentRemoveCommand_initTelemetry() {
|
|
110
|
-
this.telemetry.push((args) => {
|
|
111
|
-
Object.assign(this.telemetryProperties, {
|
|
112
|
-
roleDefinitionName: typeof args.options.roleDefinitionName !== 'undefined',
|
|
113
|
-
roleDefinitionId: typeof args.options.roleDefinitionId !== 'undefined',
|
|
114
|
-
userId: typeof args.options.userId !== 'undefined',
|
|
115
|
-
userName: typeof args.options.userName !== 'undefined',
|
|
116
|
-
groupId: typeof args.options.groupId !== 'undefined',
|
|
117
|
-
groupName: typeof args.options.groupName !== 'undefined',
|
|
118
|
-
administrativeUnitId: typeof args.options.administrativeUnitId !== 'undefined',
|
|
119
|
-
applicationId: typeof args.options.applicationId !== 'undefined',
|
|
120
|
-
justification: typeof args.options.justification !== 'undefined',
|
|
121
|
-
ticketNumber: typeof args.options.ticketNumber !== 'undefined',
|
|
122
|
-
ticketSystem: typeof args.options.ticketSystem !== 'undefined'
|
|
123
|
-
});
|
|
124
|
-
});
|
|
125
|
-
}, _EntraPimRoleAssignmentRemoveCommand_initOptions = function _EntraPimRoleAssignmentRemoveCommand_initOptions() {
|
|
126
|
-
this.options.unshift({
|
|
127
|
-
option: '-n, --roleDefinitionName [roleDefinitionName]'
|
|
128
|
-
}, {
|
|
129
|
-
option: '-i, --roleDefinitionId [roleDefinitionId]'
|
|
130
|
-
}, {
|
|
131
|
-
option: "--userId [userId]"
|
|
132
|
-
}, {
|
|
133
|
-
option: "--userName [userName]"
|
|
134
|
-
}, {
|
|
135
|
-
option: "--groupId [groupId]"
|
|
136
|
-
}, {
|
|
137
|
-
option: "--groupName [groupName]"
|
|
138
|
-
}, {
|
|
139
|
-
option: "--administrativeUnitId [administrativeUnitId]"
|
|
140
|
-
}, {
|
|
141
|
-
option: "--applicationId [applicationId]"
|
|
142
|
-
}, {
|
|
143
|
-
option: "-j, --justification [justification]"
|
|
144
|
-
}, {
|
|
145
|
-
option: "--ticketNumber [ticketNumber]"
|
|
146
|
-
}, {
|
|
147
|
-
option: "--ticketSystem [ticketSystem]"
|
|
148
|
-
});
|
|
149
|
-
}, _EntraPimRoleAssignmentRemoveCommand_initValidators = function _EntraPimRoleAssignmentRemoveCommand_initValidators() {
|
|
150
|
-
this.validators.push(async (args) => {
|
|
151
|
-
if (args.options.roleDefinitionId && !validation.isValidGuid(args.options.roleDefinitionId)) {
|
|
152
|
-
return `${args.options.roleDefinitionId} is not a valid GUID`;
|
|
153
|
-
}
|
|
154
|
-
if (args.options.userId && !validation.isValidGuid(args.options.userId)) {
|
|
155
|
-
return `${args.options.userId} is not a valid GUID`;
|
|
156
|
-
}
|
|
157
|
-
if (args.options.groupId && !validation.isValidGuid(args.options.groupId)) {
|
|
158
|
-
return `${args.options.groupId} is not a valid GUID`;
|
|
159
|
-
}
|
|
160
|
-
if (args.options.administrativeUnitId && !validation.isValidGuid(args.options.administrativeUnitId)) {
|
|
161
|
-
return `${args.options.administrativeUnitId} is not a valid GUID`;
|
|
162
|
-
}
|
|
163
|
-
if (args.options.applicationId && !validation.isValidGuid(args.options.applicationId)) {
|
|
164
|
-
return `${args.options.applicationId} is not a valid GUID`;
|
|
165
|
-
}
|
|
166
|
-
return true;
|
|
167
|
-
});
|
|
168
|
-
}, _EntraPimRoleAssignmentRemoveCommand_initOptionSets = function _EntraPimRoleAssignmentRemoveCommand_initOptionSets() {
|
|
169
|
-
this.optionSets.push({ options: ['roleDefinitionName', 'roleDefinitionId'] });
|
|
170
|
-
this.optionSets.push({
|
|
171
|
-
options: ['userId', 'userName', 'groupId', 'groupName'],
|
|
172
|
-
runsWhen: (args) => {
|
|
173
|
-
return args.options.userId !== undefined || args.options.userName !== undefined || args.options.groupId !== undefined || args.options.groupName !== undefined;
|
|
174
|
-
}
|
|
175
|
-
});
|
|
176
|
-
this.optionSets.push({
|
|
177
|
-
options: ['administrativeUnitId', 'applicationId'],
|
|
178
|
-
runsWhen: (args) => {
|
|
179
|
-
return args.options.administrativeUnitId !== undefined || args.options.applicationId !== undefined;
|
|
180
|
-
}
|
|
181
|
-
});
|
|
182
|
-
}, _EntraPimRoleAssignmentRemoveCommand_initTypes = function _EntraPimRoleAssignmentRemoveCommand_initTypes() {
|
|
183
|
-
this.types.string.push('userId', 'userName', 'groupId', 'groupName', 'administrativeUnitId', 'applicationId', 'roleDefinitionName', 'roleDefinitionId', 'justification', 'ticketNumber', 'ticketSystem');
|
|
184
|
-
};
|
|
185
145
|
export default new EntraPimRoleAssignmentRemoveCommand();
|
|
186
146
|
//# sourceMappingURL=pim-role-assignment-remove.js.map
|