@pnp/cli-microsoft365 11.0.0-beta.4abfd23 → 11.0.0-beta.677f8d3
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/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/Command.js +0 -4
- package/dist/m365/adaptivecard/commands/adaptivecard-send.js +1 -1
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-add.js +27 -13
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-get.js +43 -18
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-list.js +21 -10
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-remove.js +49 -25
- package/dist/m365/entra/commands/group/group-member-add.js +27 -6
- package/dist/m365/entra/commands/group/group-member-set.js +26 -5
- package/dist/m365/entra/commands/m365group/m365group-get.js +7 -1
- package/dist/m365/entra/commands/m365group/m365group-list.js +7 -1
- package/dist/m365/entra/commands/pim/pim-role-assignment-eligibility-list.js +7 -1
- package/dist/m365/entra/commands/pim/pim-role-assignment-list.js +7 -1
- package/dist/m365/entra/commands/pim/pim-role-request-list.js +7 -1
- package/dist/m365/flow/commands/flow-list.js +14 -7
- package/dist/m365/flow/commands/run/run-get.js +7 -1
- package/dist/m365/graph/commands/openextension/openextension-add.js +2 -2
- package/dist/m365/graph/commands/openextension/openextension-set.js +6 -2
- package/dist/m365/graph/commands/subscription/subscription-add.js +10 -3
- package/dist/m365/pp/commands/solution/solution-publisher-list.js +8 -1
- package/dist/m365/purview/commands/threatassessment/threatassessment-get.js +7 -1
- package/dist/m365/spo/commands/file/file-move.js +8 -2
- package/dist/m365/spo/commands/hubsite/hubsite-get.js +13 -4
- package/dist/m365/spo/commands/hubsite/hubsite-list.js +8 -1
- package/dist/m365/spo/commands/tenant/SPOTenantSitePropertiesEnumerable.js +2 -0
- package/dist/m365/spo/commands/tenant/TenantSiteProperties.js +2 -0
- package/dist/m365/spo/commands/{site/site-archive.js → tenant/tenant-site-archive.js} +14 -14
- package/dist/m365/spo/commands/{site/site-list.js → tenant/tenant-site-list.js} +27 -16
- package/dist/m365/spo/commands/{site/site-membership-list.js → tenant/tenant-site-membership-list.js} +15 -15
- package/dist/m365/spo/commands/{site/site-rename.js → tenant/tenant-site-rename.js} +14 -14
- package/dist/m365/spo/commands/{site/site-unarchive.js → tenant/tenant-site-unarchive.js} +14 -14
- package/dist/m365/spo/commands/term/term-list.js +7 -1
- package/dist/m365/spo/commands.js +5 -4
- package/dist/m365/teams/commands/chat/chat-member-add.js +9 -3
- package/dist/m365/viva/commands/engage/engage-network-list.js +7 -1
- package/docs/docs/cmd/entra/group/group-member-add.mdx +26 -7
- package/docs/docs/cmd/entra/group/group-member-set.mdx +23 -5
- package/docs/docs/cmd/entra/m365group/m365group-get.mdx +3 -0
- package/docs/docs/cmd/entra/m365group/m365group-list.mdx +3 -0
- package/docs/docs/cmd/entra/pim/pim-role-assignment-eligibility-list.mdx +3 -0
- package/docs/docs/cmd/entra/pim/pim-role-assignment-list.mdx +3 -0
- package/docs/docs/cmd/entra/pim/pim-role-request-list.mdx +3 -0
- package/docs/docs/cmd/flow/flow-list.mdx +3 -0
- package/docs/docs/cmd/flow/run/run-get.mdx +3 -0
- package/docs/docs/cmd/graph/subscription/subscription-add.mdx +3 -0
- package/docs/docs/cmd/pp/solution/solution-publisher-list.mdx +3 -0
- package/docs/docs/cmd/purview/threatassessment/threatassessment-get.mdx +3 -0
- package/docs/docs/cmd/spo/file/file-move.mdx +3 -0
- package/docs/docs/cmd/spo/homesite/homesite-set.mdx +1 -1
- package/docs/docs/cmd/spo/hubsite/hubsite-get.mdx +3 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-list.mdx +3 -0
- package/docs/docs/cmd/spo/{site/site-archive.mdx → tenant/tenant-site-archive.mdx} +4 -4
- package/docs/docs/cmd/spo/{site/site-list.mdx → tenant/tenant-site-list.mdx} +16 -7
- package/docs/docs/cmd/spo/{site/site-membership-list.mdx → tenant/tenant-site-membership-list.mdx} +5 -5
- package/docs/docs/cmd/spo/{site/site-rename.mdx → tenant/tenant-site-rename.mdx} +7 -7
- package/docs/docs/cmd/spo/{site/site-unarchive.mdx → tenant/tenant-site-unarchive.mdx} +4 -4
- package/docs/docs/cmd/spo/term/term-list.mdx +3 -0
- package/docs/docs/cmd/teams/chat/chat-member-add.mdx +5 -2
- package/docs/docs/cmd/viva/engage/engage-network-list.mdx +3 -0
- package/package.json +1 -1
|
@@ -3,15 +3,15 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
3
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
4
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
5
5
|
};
|
|
6
|
-
var
|
|
6
|
+
var _SpoTenantSiteMembershipListCommand_instances, _a, _SpoTenantSiteMembershipListCommand_initTelemetry, _SpoTenantSiteMembershipListCommand_initOptions, _SpoTenantSiteMembershipListCommand_initValidators, _SpoTenantSiteMembershipListCommand_initTypes;
|
|
7
7
|
import { odata } from '../../../../utils/odata.js';
|
|
8
8
|
import { spo } from '../../../../utils/spo.js';
|
|
9
9
|
import { validation } from '../../../../utils/validation.js';
|
|
10
10
|
import SpoCommand from '../../../base/SpoCommand.js';
|
|
11
11
|
import commands from '../../commands.js';
|
|
12
|
-
class
|
|
12
|
+
class SpoTenantSiteMembershipListCommand extends SpoCommand {
|
|
13
13
|
get name() {
|
|
14
|
-
return commands.
|
|
14
|
+
return commands.TENANT_SITE_MEMBERSHIP_LIST;
|
|
15
15
|
}
|
|
16
16
|
get description() {
|
|
17
17
|
return `Retrieves information about default site groups' membership`;
|
|
@@ -21,11 +21,11 @@ class SpoSiteMembershipListCommand extends SpoCommand {
|
|
|
21
21
|
}
|
|
22
22
|
constructor() {
|
|
23
23
|
super();
|
|
24
|
-
|
|
25
|
-
__classPrivateFieldGet(this,
|
|
26
|
-
__classPrivateFieldGet(this,
|
|
27
|
-
__classPrivateFieldGet(this,
|
|
28
|
-
__classPrivateFieldGet(this,
|
|
24
|
+
_SpoTenantSiteMembershipListCommand_instances.add(this);
|
|
25
|
+
__classPrivateFieldGet(this, _SpoTenantSiteMembershipListCommand_instances, "m", _SpoTenantSiteMembershipListCommand_initTelemetry).call(this);
|
|
26
|
+
__classPrivateFieldGet(this, _SpoTenantSiteMembershipListCommand_instances, "m", _SpoTenantSiteMembershipListCommand_initOptions).call(this);
|
|
27
|
+
__classPrivateFieldGet(this, _SpoTenantSiteMembershipListCommand_instances, "m", _SpoTenantSiteMembershipListCommand_initValidators).call(this);
|
|
28
|
+
__classPrivateFieldGet(this, _SpoTenantSiteMembershipListCommand_instances, "m", _SpoTenantSiteMembershipListCommand_initTypes).call(this);
|
|
29
29
|
}
|
|
30
30
|
;
|
|
31
31
|
async commandAction(logger, args) {
|
|
@@ -90,29 +90,29 @@ class SpoSiteMembershipListCommand extends SpoCommand {
|
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
|
-
_a =
|
|
93
|
+
_a = SpoTenantSiteMembershipListCommand, _SpoTenantSiteMembershipListCommand_instances = new WeakSet(), _SpoTenantSiteMembershipListCommand_initTelemetry = function _SpoTenantSiteMembershipListCommand_initTelemetry() {
|
|
94
94
|
this.telemetry.push((args) => {
|
|
95
95
|
Object.assign(this.telemetryProperties, {
|
|
96
96
|
role: typeof args.options.role !== 'undefined'
|
|
97
97
|
});
|
|
98
98
|
});
|
|
99
|
-
},
|
|
99
|
+
}, _SpoTenantSiteMembershipListCommand_initOptions = function _SpoTenantSiteMembershipListCommand_initOptions() {
|
|
100
100
|
this.options.unshift({
|
|
101
101
|
option: '-u, --siteUrl <siteUrl>'
|
|
102
102
|
}, {
|
|
103
103
|
option: '-r, --role [role]',
|
|
104
104
|
autocomplete: _a.RoleNames
|
|
105
105
|
});
|
|
106
|
-
},
|
|
106
|
+
}, _SpoTenantSiteMembershipListCommand_initValidators = function _SpoTenantSiteMembershipListCommand_initValidators() {
|
|
107
107
|
this.validators.push(async (args) => {
|
|
108
108
|
if (args.options.role && !_a.RoleNames.some(roleName => roleName.toLocaleLowerCase() === args.options.role.toLocaleLowerCase())) {
|
|
109
109
|
return `'${args.options.role}' is not a valid value for option 'role'. Valid values are: ${_a.RoleNames.join(', ')}`;
|
|
110
110
|
}
|
|
111
111
|
return validation.isValidSharePointUrl(args.options.siteUrl);
|
|
112
112
|
});
|
|
113
|
-
},
|
|
113
|
+
}, _SpoTenantSiteMembershipListCommand_initTypes = function _SpoTenantSiteMembershipListCommand_initTypes() {
|
|
114
114
|
this.types.string.push('role', 'siteUrl');
|
|
115
115
|
};
|
|
116
|
-
|
|
117
|
-
export default new
|
|
118
|
-
//# sourceMappingURL=site-membership-list.js.map
|
|
116
|
+
SpoTenantSiteMembershipListCommand.RoleNames = ['Owner', 'Member', 'Visitor'];
|
|
117
|
+
export default new SpoTenantSiteMembershipListCommand();
|
|
118
|
+
//# sourceMappingURL=tenant-site-membership-list.js.map
|
|
@@ -3,26 +3,26 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
3
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
4
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
5
5
|
};
|
|
6
|
-
var
|
|
6
|
+
var _SpoTenantSiteRenameCommand_instances, _SpoTenantSiteRenameCommand_initTelemetry, _SpoTenantSiteRenameCommand_initOptions, _SpoTenantSiteRenameCommand_initValidators;
|
|
7
7
|
import request from '../../../../request.js';
|
|
8
8
|
import { formatting } from '../../../../utils/formatting.js';
|
|
9
9
|
import { spo } from '../../../../utils/spo.js';
|
|
10
10
|
import { timersUtil } from '../../../../utils/timersUtil.js';
|
|
11
11
|
import SpoCommand from '../../../base/SpoCommand.js';
|
|
12
12
|
import commands from '../../commands.js';
|
|
13
|
-
class
|
|
13
|
+
class SpoTenantSiteRenameCommand extends SpoCommand {
|
|
14
14
|
get name() {
|
|
15
|
-
return commands.
|
|
15
|
+
return commands.TENANT_SITE_RENAME;
|
|
16
16
|
}
|
|
17
17
|
get description() {
|
|
18
18
|
return 'Renames the URL and title of a site collection';
|
|
19
19
|
}
|
|
20
20
|
constructor() {
|
|
21
21
|
super();
|
|
22
|
-
|
|
23
|
-
__classPrivateFieldGet(this,
|
|
24
|
-
__classPrivateFieldGet(this,
|
|
25
|
-
__classPrivateFieldGet(this,
|
|
22
|
+
_SpoTenantSiteRenameCommand_instances.add(this);
|
|
23
|
+
__classPrivateFieldGet(this, _SpoTenantSiteRenameCommand_instances, "m", _SpoTenantSiteRenameCommand_initTelemetry).call(this);
|
|
24
|
+
__classPrivateFieldGet(this, _SpoTenantSiteRenameCommand_instances, "m", _SpoTenantSiteRenameCommand_initOptions).call(this);
|
|
25
|
+
__classPrivateFieldGet(this, _SpoTenantSiteRenameCommand_instances, "m", _SpoTenantSiteRenameCommand_initValidators).call(this);
|
|
26
26
|
}
|
|
27
27
|
async commandAction(logger, args) {
|
|
28
28
|
try {
|
|
@@ -92,11 +92,11 @@ class SpoSiteRenameCommand extends SpoCommand {
|
|
|
92
92
|
if (this.operationData.JobState === "Success") {
|
|
93
93
|
return;
|
|
94
94
|
}
|
|
95
|
-
await timersUtil.setTimeout(
|
|
95
|
+
await timersUtil.setTimeout(SpoTenantSiteRenameCommand.checkIntervalInMs);
|
|
96
96
|
await command.waitForRenameCompletion(command, isVerbose, spoAdminUrl, siteUrl, iteration);
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
|
-
|
|
99
|
+
_SpoTenantSiteRenameCommand_instances = new WeakSet(), _SpoTenantSiteRenameCommand_initTelemetry = function _SpoTenantSiteRenameCommand_initTelemetry() {
|
|
100
100
|
this.telemetry.push((args) => {
|
|
101
101
|
Object.assign(this.telemetryProperties, {
|
|
102
102
|
newTitle: typeof args.options.newTitle !== 'undefined',
|
|
@@ -105,7 +105,7 @@ _SpoSiteRenameCommand_instances = new WeakSet(), _SpoSiteRenameCommand_initTelem
|
|
|
105
105
|
wait: !!args.options.wait
|
|
106
106
|
});
|
|
107
107
|
});
|
|
108
|
-
},
|
|
108
|
+
}, _SpoTenantSiteRenameCommand_initOptions = function _SpoTenantSiteRenameCommand_initOptions() {
|
|
109
109
|
this.options.unshift({
|
|
110
110
|
option: '-u, --url <url>'
|
|
111
111
|
}, {
|
|
@@ -119,7 +119,7 @@ _SpoSiteRenameCommand_instances = new WeakSet(), _SpoSiteRenameCommand_initTelem
|
|
|
119
119
|
}, {
|
|
120
120
|
option: '--wait'
|
|
121
121
|
});
|
|
122
|
-
},
|
|
122
|
+
}, _SpoTenantSiteRenameCommand_initValidators = function _SpoTenantSiteRenameCommand_initValidators() {
|
|
123
123
|
this.validators.push(async (args) => {
|
|
124
124
|
if (args.options.url.toLowerCase() === args.options.newUrl.toLowerCase()) {
|
|
125
125
|
return 'The new URL cannot be the same as the target URL.';
|
|
@@ -127,6 +127,6 @@ _SpoSiteRenameCommand_instances = new WeakSet(), _SpoSiteRenameCommand_initTelem
|
|
|
127
127
|
return true;
|
|
128
128
|
});
|
|
129
129
|
};
|
|
130
|
-
|
|
131
|
-
export default new
|
|
132
|
-
//# sourceMappingURL=site-rename.js.map
|
|
130
|
+
SpoTenantSiteRenameCommand.checkIntervalInMs = 5000;
|
|
131
|
+
export default new SpoTenantSiteRenameCommand();
|
|
132
|
+
//# sourceMappingURL=tenant-site-rename.js.map
|
|
@@ -3,7 +3,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
3
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
4
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
5
5
|
};
|
|
6
|
-
var
|
|
6
|
+
var _SpoTenantSiteUnarchiveCommand_instances, _SpoTenantSiteUnarchiveCommand_initTelemetry, _SpoTenantSiteUnarchiveCommand_initOptions, _SpoTenantSiteUnarchiveCommand_initValidators, _SpoTenantSiteUnarchiveCommand_initTypes;
|
|
7
7
|
import { cli } from '../../../../cli/cli.js';
|
|
8
8
|
import config from '../../../../config.js';
|
|
9
9
|
import request from '../../../../request.js';
|
|
@@ -11,20 +11,20 @@ import { spo } from '../../../../utils/spo.js';
|
|
|
11
11
|
import { validation } from '../../../../utils/validation.js';
|
|
12
12
|
import SpoCommand from '../../../base/SpoCommand.js';
|
|
13
13
|
import commands from '../../commands.js';
|
|
14
|
-
class
|
|
14
|
+
class SpoTenantSiteUnarchiveCommand extends SpoCommand {
|
|
15
15
|
get name() {
|
|
16
|
-
return commands.
|
|
16
|
+
return commands.TENANT_SITE_UNARCHIVE;
|
|
17
17
|
}
|
|
18
18
|
get description() {
|
|
19
19
|
return 'Unarchives a site collection';
|
|
20
20
|
}
|
|
21
21
|
constructor() {
|
|
22
22
|
super();
|
|
23
|
-
|
|
24
|
-
__classPrivateFieldGet(this,
|
|
25
|
-
__classPrivateFieldGet(this,
|
|
26
|
-
__classPrivateFieldGet(this,
|
|
27
|
-
__classPrivateFieldGet(this,
|
|
23
|
+
_SpoTenantSiteUnarchiveCommand_instances.add(this);
|
|
24
|
+
__classPrivateFieldGet(this, _SpoTenantSiteUnarchiveCommand_instances, "m", _SpoTenantSiteUnarchiveCommand_initTelemetry).call(this);
|
|
25
|
+
__classPrivateFieldGet(this, _SpoTenantSiteUnarchiveCommand_instances, "m", _SpoTenantSiteUnarchiveCommand_initOptions).call(this);
|
|
26
|
+
__classPrivateFieldGet(this, _SpoTenantSiteUnarchiveCommand_instances, "m", _SpoTenantSiteUnarchiveCommand_initValidators).call(this);
|
|
27
|
+
__classPrivateFieldGet(this, _SpoTenantSiteUnarchiveCommand_instances, "m", _SpoTenantSiteUnarchiveCommand_initTypes).call(this);
|
|
28
28
|
}
|
|
29
29
|
async commandAction(logger, args) {
|
|
30
30
|
if (args.options.force) {
|
|
@@ -76,23 +76,23 @@ class SpoSiteUnarchiveCommand extends SpoCommand {
|
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
|
-
|
|
79
|
+
_SpoTenantSiteUnarchiveCommand_instances = new WeakSet(), _SpoTenantSiteUnarchiveCommand_initTelemetry = function _SpoTenantSiteUnarchiveCommand_initTelemetry() {
|
|
80
80
|
this.telemetry.push((args) => {
|
|
81
81
|
Object.assign(this.telemetryProperties, {
|
|
82
82
|
force: !!args.options.force
|
|
83
83
|
});
|
|
84
84
|
});
|
|
85
|
-
},
|
|
85
|
+
}, _SpoTenantSiteUnarchiveCommand_initOptions = function _SpoTenantSiteUnarchiveCommand_initOptions() {
|
|
86
86
|
this.options.unshift({
|
|
87
87
|
option: '-u, --url <url>'
|
|
88
88
|
}, {
|
|
89
89
|
option: '-f, --force'
|
|
90
90
|
});
|
|
91
|
-
},
|
|
91
|
+
}, _SpoTenantSiteUnarchiveCommand_initValidators = function _SpoTenantSiteUnarchiveCommand_initValidators() {
|
|
92
92
|
this.validators.push(async (args) => validation.isValidSharePointUrl(args.options.url));
|
|
93
|
-
},
|
|
93
|
+
}, _SpoTenantSiteUnarchiveCommand_initTypes = function _SpoTenantSiteUnarchiveCommand_initTypes() {
|
|
94
94
|
this.types.string.push('url');
|
|
95
95
|
this.types.boolean.push('force');
|
|
96
96
|
};
|
|
97
|
-
export default new
|
|
98
|
-
//# sourceMappingURL=site-unarchive.js.map
|
|
97
|
+
export default new SpoTenantSiteUnarchiveCommand();
|
|
98
|
+
//# sourceMappingURL=tenant-site-unarchive.js.map
|
|
@@ -31,6 +31,9 @@ class SpoTermListCommand extends SpoCommand {
|
|
|
31
31
|
__classPrivateFieldGet(this, _SpoTermListCommand_instances, "m", _SpoTermListCommand_initOptionSets).call(this);
|
|
32
32
|
}
|
|
33
33
|
async commandAction(logger, args) {
|
|
34
|
+
if (args.options.includeChildTerms) {
|
|
35
|
+
await this.warn(logger, `Parameter 'includeChildTerms' is deprecated. Please use 'withChildTerms' instead`);
|
|
36
|
+
}
|
|
34
37
|
try {
|
|
35
38
|
const spoWebUrl = args.options.webUrl ? args.options.webUrl : await spo.getSpoAdminUrl(logger, this.debug);
|
|
36
39
|
const res = await spo.getRequestDigest(spoWebUrl);
|
|
@@ -40,7 +43,7 @@ class SpoTermListCommand extends SpoCommand {
|
|
|
40
43
|
const termGroupQuery = args.options.termGroupId ? `<Method Id="77" ParentId="75" Name="GetById"><Parameters><Parameter Type="Guid">{${args.options.termGroupId}}</Parameter></Parameters></Method>` : `<Method Id="77" ParentId="75" Name="GetByName"><Parameters><Parameter Type="String">${formatting.escapeXml(args.options.termGroupName)}</Parameter></Parameters></Method>`;
|
|
41
44
|
const termSetQuery = args.options.termSetId ? `<Method Id="82" ParentId="80" Name="GetById"><Parameters><Parameter Type="Guid">{${args.options.termSetId}}</Parameter></Parameters></Method>` : `<Method Id="82" ParentId="80" Name="GetByName"><Parameters><Parameter Type="String">${formatting.escapeXml(args.options.termSetName)}</Parameter></Parameters></Method>`;
|
|
42
45
|
const data = `<Request AddExpandoFieldTypeSuffix="true" SchemaVersion="15.0.0.0" LibraryVersion="16.0.0.0" ApplicationName="${config.applicationName}" xmlns="http://schemas.microsoft.com/sharepoint/clientquery/2009"><Actions><ObjectPath Id="70" ObjectPathId="69" /><ObjectIdentityQuery Id="71" ObjectPathId="69" /><ObjectPath Id="73" ObjectPathId="72" /><ObjectIdentityQuery Id="74" ObjectPathId="72" /><ObjectPath Id="76" ObjectPathId="75" /><ObjectPath Id="78" ObjectPathId="77" /><ObjectIdentityQuery Id="79" ObjectPathId="77" /><ObjectPath Id="81" ObjectPathId="80" /><ObjectPath Id="83" ObjectPathId="82" /><ObjectIdentityQuery Id="84" ObjectPathId="82" /><ObjectPath Id="86" ObjectPathId="85" /><Query Id="87" ObjectPathId="85"><Query SelectAllProperties="false"><Properties /></Query><ChildItemQuery SelectAllProperties="true"><Properties><Property Name="Name" ScalarProperty="true" /><Property Name="Id" ScalarProperty="true" /></Properties></ChildItemQuery></Query></Actions><ObjectPaths><StaticMethod Id="69" Name="GetTaxonomySession" TypeId="{981cbc68-9edc-4f8d-872f-71146fcbb84f}" /><Method Id="72" ParentId="69" Name="GetDefaultSiteCollectionTermStore" /><Property Id="75" ParentId="72" Name="Groups" />${termGroupQuery}<Property Id="80" ParentId="77" Name="TermSets" />${termSetQuery}<Property Id="85" ParentId="82" Name="Terms" /></ObjectPaths></Request>`;
|
|
43
|
-
const shouldIncludeChildTerms = args.options.withChildTerms;
|
|
46
|
+
const shouldIncludeChildTerms = args.options.includeChildTerms || args.options.withChildTerms;
|
|
44
47
|
const result = await this.executeCsomCall(data, spoWebUrl, res);
|
|
45
48
|
const terms = [];
|
|
46
49
|
if (result._Child_Items_ && result._Child_Items_.length > 0) {
|
|
@@ -143,6 +146,7 @@ _SpoTermListCommand_instances = new WeakSet(), _SpoTermListCommand_initTelemetry
|
|
|
143
146
|
termGroupName: typeof args.options.termGroupName !== 'undefined',
|
|
144
147
|
termSetId: typeof args.options.termSetId !== 'undefined',
|
|
145
148
|
termSetName: typeof args.options.termSetName !== 'undefined',
|
|
149
|
+
includeChildTerms: !!args.options.includeChildTerms,
|
|
146
150
|
withChildTerms: !!args.options.withChildTerms
|
|
147
151
|
});
|
|
148
152
|
});
|
|
@@ -157,6 +161,8 @@ _SpoTermListCommand_instances = new WeakSet(), _SpoTermListCommand_initTelemetry
|
|
|
157
161
|
option: '--termSetId [termSetId]'
|
|
158
162
|
}, {
|
|
159
163
|
option: '--termSetName [termSetName]'
|
|
164
|
+
}, {
|
|
165
|
+
option: '--includeChildTerms'
|
|
160
166
|
}, {
|
|
161
167
|
option: '--withChildTerms'
|
|
162
168
|
});
|
|
@@ -265,7 +265,6 @@ export default {
|
|
|
265
265
|
SITE_APPPERMISSION_LIST: `${prefix} site apppermission list`,
|
|
266
266
|
SITE_APPPERMISSION_REMOVE: `${prefix} site apppermission remove`,
|
|
267
267
|
SITE_APPPERMISSION_SET: `${prefix} site apppermission set`,
|
|
268
|
-
SITE_ARCHIVE: `${prefix} site archive`,
|
|
269
268
|
SITE_COMMSITE_ENABLE: `${prefix} site commsite enable`,
|
|
270
269
|
SITE_ENSURE: `${prefix} site ensure`,
|
|
271
270
|
SITE_GET: `${prefix} site get`,
|
|
@@ -274,7 +273,6 @@ export default {
|
|
|
274
273
|
SITE_HUBSITE_DISCONNECT: `${prefix} site hubsite disconnect`,
|
|
275
274
|
SITE_HUBSITE_THEME_SYNC: `${prefix} site hubsite theme sync`,
|
|
276
275
|
SITE_LIST: `${prefix} site list`,
|
|
277
|
-
SITE_MEMBERSHIP_LIST: `${prefix} site membership list`,
|
|
278
276
|
SITE_INPLACERECORDSMANAGEMENT_SET: `${prefix} site inplacerecordsmanagement set`,
|
|
279
277
|
SITE_RECYCLEBINITEM_CLEAR: `${prefix} site recyclebinitem clear`,
|
|
280
278
|
SITE_RECYCLEBINITEM_LIST: `${prefix} site recyclebinitem list`,
|
|
@@ -282,11 +280,9 @@ export default {
|
|
|
282
280
|
SITE_RECYCLEBINITEM_REMOVE: `${prefix} site recyclebinitem remove`,
|
|
283
281
|
SITE_RECYCLEBINITEM_RESTORE: `${prefix} site recyclebinitem restore`,
|
|
284
282
|
SITE_REMOVE: `${prefix} site remove`,
|
|
285
|
-
SITE_RENAME: `${prefix} site rename`,
|
|
286
283
|
SITE_SET: `${prefix} site set`,
|
|
287
284
|
SITE_SHARINGPERMISSION_SET: `${prefix} site sharingpermission set`,
|
|
288
285
|
SITE_CHROME_SET: `${prefix} site chrome set`,
|
|
289
|
-
SITE_UNARCHIVE: `${prefix} site unarchive`,
|
|
290
286
|
SITEDESIGN_ADD: `${prefix} sitedesign add`,
|
|
291
287
|
SITEDESIGN_APPLY: `${prefix} sitedesign apply`,
|
|
292
288
|
SITEDESIGN_GET: `${prefix} sitedesign get`,
|
|
@@ -334,6 +330,11 @@ export default {
|
|
|
334
330
|
TENANT_RECYCLEBINITEM_RESTORE: `${prefix} tenant recyclebinitem restore`,
|
|
335
331
|
TENANT_SETTINGS_LIST: `${prefix} tenant settings list`,
|
|
336
332
|
TENANT_SETTINGS_SET: `${prefix} tenant settings set`,
|
|
333
|
+
TENANT_SITE_ARCHIVE: `${prefix} tenant site archive`,
|
|
334
|
+
TENANT_SITE_LIST: `${prefix} tenant site list`,
|
|
335
|
+
TENANT_SITE_RENAME: `${prefix} tenant site rename`,
|
|
336
|
+
TENANT_SITE_MEMBERSHIP_LIST: `${prefix} tenant site membership list`,
|
|
337
|
+
TENANT_SITE_UNARCHIVE: `${prefix} tenant site unarchive`,
|
|
337
338
|
TERM_ADD: `${prefix} term add`,
|
|
338
339
|
TERM_GET: `${prefix} term get`,
|
|
339
340
|
TERM_LIST: `${prefix} term list`,
|
|
@@ -29,6 +29,9 @@ class TeamsChatMemberAddCommand extends GraphCommand {
|
|
|
29
29
|
if (this.verbose) {
|
|
30
30
|
await logger.logToStderr(`Adding member ${args.options.userId || args.options.userName} to chat with id ${args.options.chatId}...`);
|
|
31
31
|
}
|
|
32
|
+
if (args.options.includeAllHistory) {
|
|
33
|
+
await this.warn(logger, `Parameter 'includeAllHistory' is deprecated. Please use 'withAllHistory' instead`);
|
|
34
|
+
}
|
|
32
35
|
const chatMemberAddOptions = {
|
|
33
36
|
url: `${this.resource}/v1.0/chats/${args.options.chatId}/members`,
|
|
34
37
|
headers: {
|
|
@@ -38,7 +41,7 @@ class TeamsChatMemberAddCommand extends GraphCommand {
|
|
|
38
41
|
data: {
|
|
39
42
|
'@odata.type': '#microsoft.graph.aadUserConversationMember',
|
|
40
43
|
'user@odata.bind': `https://graph.microsoft.com/v1.0/users/${args.options.userId || formatting.encodeQueryParameter(args.options.userName)}`,
|
|
41
|
-
visibleHistoryStartDateTime: args.options.withAllHistory ? '0001-01-01T00:00:00Z' : args.options.visibleHistoryStartDateTime,
|
|
44
|
+
visibleHistoryStartDateTime: (args.options.includeAllHistory || args.options.withAllHistory) ? '0001-01-01T00:00:00Z' : args.options.visibleHistoryStartDateTime,
|
|
42
45
|
roles: [args.options.role || 'owner']
|
|
43
46
|
}
|
|
44
47
|
};
|
|
@@ -56,6 +59,7 @@ _a = TeamsChatMemberAddCommand, _TeamsChatMemberAddCommand_instances = new WeakS
|
|
|
56
59
|
userName: typeof args.options.userName !== 'undefined',
|
|
57
60
|
role: typeof args.options.role !== 'undefined',
|
|
58
61
|
visibleHistoryStartDateTime: typeof args.options.visibleHistoryStartDateTime !== 'undefined',
|
|
62
|
+
includeAllHistory: !!args.options.includeAllHistory,
|
|
59
63
|
withAllHistory: !!args.options.withAllHistory
|
|
60
64
|
});
|
|
61
65
|
});
|
|
@@ -71,6 +75,8 @@ _a = TeamsChatMemberAddCommand, _TeamsChatMemberAddCommand_instances = new WeakS
|
|
|
71
75
|
autocomplete: _a.roles
|
|
72
76
|
}, {
|
|
73
77
|
option: '--visibleHistoryStartDateTime [visibleHistoryStartDateTime]'
|
|
78
|
+
}, {
|
|
79
|
+
option: '--includeAllHistory'
|
|
74
80
|
}, {
|
|
75
81
|
option: '--withAllHistory'
|
|
76
82
|
});
|
|
@@ -95,8 +101,8 @@ _a = TeamsChatMemberAddCommand, _TeamsChatMemberAddCommand_instances = new WeakS
|
|
|
95
101
|
});
|
|
96
102
|
}, _TeamsChatMemberAddCommand_initOptionSets = function _TeamsChatMemberAddCommand_initOptionSets() {
|
|
97
103
|
this.optionSets.push({ options: ['userId', 'userName'] }, {
|
|
98
|
-
options: ['visibleHistoryStartDateTime', 'withAllHistory'],
|
|
99
|
-
runsWhen: (args) => args.options.visibleHistoryStartDateTime || args.options.withAllHistory
|
|
104
|
+
options: ['visibleHistoryStartDateTime', 'includeAllHistory', 'withAllHistory'],
|
|
105
|
+
runsWhen: (args) => args.options.visibleHistoryStartDateTime || args.options.includeAllHistory || args.options.withAllHistory
|
|
100
106
|
});
|
|
101
107
|
};
|
|
102
108
|
TeamsChatMemberAddCommand.roles = ['owner', 'guest'];
|
|
@@ -24,6 +24,9 @@ class VivaEngageNetworkListCommand extends VivaEngageCommand {
|
|
|
24
24
|
__classPrivateFieldGet(this, _VivaEngageNetworkListCommand_instances, "m", _VivaEngageNetworkListCommand_initOptions).call(this);
|
|
25
25
|
}
|
|
26
26
|
async commandAction(logger, args) {
|
|
27
|
+
if (args.options.includeSuspended) {
|
|
28
|
+
await this.warn(logger, `Parameter 'includeSuspended' is deprecated. Please use 'withSuspended' instead`);
|
|
29
|
+
}
|
|
27
30
|
const requestOptions = {
|
|
28
31
|
url: `${this.resource}/v1/networks/current.json`,
|
|
29
32
|
headers: {
|
|
@@ -32,7 +35,7 @@ class VivaEngageNetworkListCommand extends VivaEngageCommand {
|
|
|
32
35
|
},
|
|
33
36
|
responseType: 'json',
|
|
34
37
|
data: {
|
|
35
|
-
includeSuspended: (args.options.withSuspended !== undefined && args.options.withSuspended !== false)
|
|
38
|
+
includeSuspended: (args.options.includeSuspended !== undefined && args.options.includeSuspended !== false) || (args.options.withSuspended !== undefined && args.options.withSuspended !== false)
|
|
36
39
|
}
|
|
37
40
|
};
|
|
38
41
|
try {
|
|
@@ -47,11 +50,14 @@ class VivaEngageNetworkListCommand extends VivaEngageCommand {
|
|
|
47
50
|
_VivaEngageNetworkListCommand_instances = new WeakSet(), _VivaEngageNetworkListCommand_initTelemetry = function _VivaEngageNetworkListCommand_initTelemetry() {
|
|
48
51
|
this.telemetry.push((args) => {
|
|
49
52
|
Object.assign(this.telemetryProperties, {
|
|
53
|
+
includeSuspended: args.options.includeSuspended,
|
|
50
54
|
withSuspended: args.options.withSuspended
|
|
51
55
|
});
|
|
52
56
|
});
|
|
53
57
|
}, _VivaEngageNetworkListCommand_initOptions = function _VivaEngageNetworkListCommand_initOptions() {
|
|
54
58
|
this.options.unshift({
|
|
59
|
+
option: '--includeSuspended'
|
|
60
|
+
}, {
|
|
55
61
|
option: '--withSuspended'
|
|
56
62
|
});
|
|
57
63
|
};
|
|
@@ -14,21 +14,28 @@ m365 entra group member add [options]
|
|
|
14
14
|
|
|
15
15
|
```md definition-list
|
|
16
16
|
`-i, --groupId [groupId]`
|
|
17
|
-
: The ID of the Microsoft Entra group. Specify `groupId` or `groupName` but not
|
|
17
|
+
: The ID of the Microsoft Entra group. Specify `groupId`, `groupDisplayName` or `groupName` but not multiple.
|
|
18
|
+
|
|
19
|
+
`-n, --groupDisplayName [groupDisplayName]`
|
|
20
|
+
: (deprecated. Use option `groupName` instead) The display name of the Microsoft Entra group. Specify `groupId`, `groupDisplayName` or `groupName` but not multiple.
|
|
21
|
+
|
|
22
|
+
`--groupName [groupName]`
|
|
23
|
+
: The display name of the Microsoft Entra group. Specify `groupId`, `groupDisplayName` or `groupName` but not multiple.
|
|
24
|
+
|
|
25
|
+
`--ids [ids]`
|
|
26
|
+
: (deprecated. Use option `userIds` instead) Microsoft Entra IDs of users. You can also pass a comma-separated list of IDs. Specify either `ids`, `userIds`,`userNames`, `subgroupIds`, or `subgroupNames` but not multiple.
|
|
18
27
|
|
|
19
|
-
`-n, --groupName [groupName]`
|
|
20
|
-
: The display name of the Microsoft Entra group. Specify `groupId` or `groupName` but not both.
|
|
21
28
|
`--userIds [userIds]`
|
|
22
|
-
: Microsoft Entra IDs of users. You can also pass a comma-separated list of IDs. Specify either `userIds`,`userNames`, `subgroupIds`, or `subgroupNames` but not multiple.
|
|
29
|
+
: Microsoft Entra IDs of users. You can also pass a comma-separated list of IDs. Specify either `ids`, `userIds`,`userNames`, `subgroupIds`, or `subgroupNames` but not multiple.
|
|
23
30
|
|
|
24
31
|
`--userNames [userNames]`
|
|
25
|
-
: The user principal names of users. You can also pass a comma-separated list of UPNs. Specify either `userIds`,`userNames`, `subgroupIds`, or `subgroupNames` but not multiple.
|
|
32
|
+
: The user principal names of users. You can also pass a comma-separated list of UPNs. Specify either `ids`, `userIds`,`userNames`, `subgroupIds`, or `subgroupNames` but not multiple.
|
|
26
33
|
|
|
27
34
|
`--subgroupIds [subgroupIds]`
|
|
28
|
-
: Comma-separated list of Microsoft Entra group IDs to add. Specify either `userIds`,`userNames`, `subgroupIds`, or `subgroupNames` but not multiple.
|
|
35
|
+
: Comma-separated list of Microsoft Entra group IDs to add. Specify either `ids`, `userIds`,`userNames`, `subgroupIds`, or `subgroupNames` but not multiple.
|
|
29
36
|
|
|
30
37
|
`--subgroupNames [subgroupNames]`
|
|
31
|
-
: Comma-separated list of Microsoft Entra group titles to add. Specify either `userIds`,`userNames`, `subgroupIds`, or `subgroupNames` but not multiple.
|
|
38
|
+
: Comma-separated list of Microsoft Entra group titles to add. Specify either `ids`, `userIds`,`userNames`, `subgroupIds`, or `subgroupNames` but not multiple.
|
|
32
39
|
|
|
33
40
|
`-r, --role <role>`
|
|
34
41
|
: The role to be assigned to the new users. Valid values: `Owner`, `Member`.
|
|
@@ -38,6 +45,12 @@ m365 entra group member add [options]
|
|
|
38
45
|
|
|
39
46
|
## Examples
|
|
40
47
|
|
|
48
|
+
Add a single member specified by ID as a member to a group specified by display name.
|
|
49
|
+
|
|
50
|
+
```sh
|
|
51
|
+
m365 entra group member add --groupDisplayName Developers --userIds 098b9f52-f48c-4401-819f-29c33794c3f5 --role Member
|
|
52
|
+
```
|
|
53
|
+
|
|
41
54
|
Add a single member specified by ID as a member to a group specified by group name.
|
|
42
55
|
|
|
43
56
|
```sh
|
|
@@ -50,6 +63,12 @@ Add multiple members specified by ID as members to a group specified by ID.
|
|
|
50
63
|
m365 entra group member add --groupId a03c0c35-ef9a-419b-8cab-f89e0a8d2d2a --userIds "098b9f52-f48c-4401-819f-29c33794c3f5,f1e06e31-3abf-4746-83c2-1513d71f38b8" --role Member
|
|
51
64
|
```
|
|
52
65
|
|
|
66
|
+
Add a single member specified by UPN as an owner to a group specified by display name.
|
|
67
|
+
|
|
68
|
+
```sh
|
|
69
|
+
m365 entra group member add --groupDisplayName Developers --userNames john.doe@contoso.com --role Owner
|
|
70
|
+
```
|
|
71
|
+
|
|
53
72
|
Add a single member specified by UPN as an owner to a group specified by group name.
|
|
54
73
|
|
|
55
74
|
```sh
|
|
@@ -14,16 +14,22 @@ m365 entra group member set [options]
|
|
|
14
14
|
|
|
15
15
|
```md definition-list
|
|
16
16
|
`-i, --groupId [groupId]`
|
|
17
|
-
: The ID of the Entra ID group. Specify `groupId`, or `groupName` but not
|
|
17
|
+
: The ID of the Entra ID group. Specify `groupId`, `groupDisplayName` or `groupName` but not multiple.
|
|
18
18
|
|
|
19
|
-
`-n, --
|
|
20
|
-
: The display name of the
|
|
19
|
+
`-n, --groupDisplayName [groupDisplayName]`
|
|
20
|
+
: (deprecated. Use option `groupName` instead) The display name of the Entra ID group. Specify `groupId`, `groupDisplayName` or `groupName` but not multiple.
|
|
21
|
+
|
|
22
|
+
`--groupName [groupName]`
|
|
23
|
+
: The display name of the Microsoft Entra group. Specify `groupId`, `groupDisplayName` or `groupName` but not multiple.
|
|
24
|
+
|
|
25
|
+
`--ids [ids]`
|
|
26
|
+
: (deprecated. Use option `userIds` instead) Comma-separated list of user IDs. Specify either `ids`, `userIds` or `userNames` but not multiple.
|
|
21
27
|
|
|
22
28
|
`--userIds [userIds]`
|
|
23
|
-
: Comma-separated list of user IDs. Specify either `userIds` or `userNames` but not multiple.
|
|
29
|
+
: Comma-separated list of user IDs. Specify either `ids`, `userIds` or `userNames` but not multiple.
|
|
24
30
|
|
|
25
31
|
`--userNames [userNames]`
|
|
26
|
-
: The user principal names of users. You can also pass a comma-separated list of UPNs. Specify either `
|
|
32
|
+
: The user principal names of users. You can also pass a comma-separated list of UPNs. Specify either `ids` or `userNames` but not both.
|
|
27
33
|
|
|
28
34
|
`-r, --role <role>`
|
|
29
35
|
: The new role to be assigned to the members. Valid values: `Owner`, `Member`.
|
|
@@ -33,6 +39,12 @@ m365 entra group member set [options]
|
|
|
33
39
|
|
|
34
40
|
## Examples
|
|
35
41
|
|
|
42
|
+
Update a single member specified by ID to a member of a group specified by display name
|
|
43
|
+
|
|
44
|
+
```sh
|
|
45
|
+
m365 entra group member set --groupDisplayName Developers --userIds 098b9f52-f48c-4401-819f-29c33794c3f5 --role Member
|
|
46
|
+
```
|
|
47
|
+
|
|
36
48
|
Update a single member specified by ID to a member of a group specified by group name
|
|
37
49
|
|
|
38
50
|
```sh
|
|
@@ -45,6 +57,12 @@ Update multiple members specified by ID to members of a group specified by ID
|
|
|
45
57
|
m365 entra group member set --groupId a03c0c35-ef9a-419b-8cab-f89e0a8d2d2a --userIds "098b9f52-f48c-4401-819f-29c33794c3f5,f1e06e31-3abf-4746-83c2-1513d71f38b8" --role Member
|
|
46
58
|
```
|
|
47
59
|
|
|
60
|
+
Update a single member specified by UPN to an owner of a group specified by display name
|
|
61
|
+
|
|
62
|
+
```sh
|
|
63
|
+
m365 entra group member set --groupDisplayName Developers --userNames john.doe@contoso.com --role Owner
|
|
64
|
+
```
|
|
65
|
+
|
|
48
66
|
Update a single member specified by UPN to an owner of a group specified by group name
|
|
49
67
|
|
|
50
68
|
```sh
|
|
@@ -21,6 +21,9 @@ m365 entra m365group get [options]
|
|
|
21
21
|
`-n, --displayName [displayName]`
|
|
22
22
|
: Display name of the Microsoft 365 Group or Microsoft Teams team to retrieve information for. Specify either `id` or `displayName`, but not both.
|
|
23
23
|
|
|
24
|
+
`--includeSiteUrl`
|
|
25
|
+
: (deprecated. Use option `withSiteUrl` instead) Set to retrieve the site URL for the group.
|
|
26
|
+
|
|
24
27
|
`--withSiteUrl`
|
|
25
28
|
: Set to retrieve the site URL for the group.
|
|
26
29
|
```
|
|
@@ -21,6 +21,9 @@ m365 entra m365group list [options]
|
|
|
21
21
|
`-m, --mailNickname [displayName]`
|
|
22
22
|
: Retrieve only groups with mailNickname starting with the specified value.
|
|
23
23
|
|
|
24
|
+
`--includeSiteUrl`
|
|
25
|
+
: (deprecated. Use option `withSiteUrl` instead) Set to retrieve the site URL for each group.
|
|
26
|
+
|
|
24
27
|
`--withSiteUrl`
|
|
25
28
|
: Set to retrieve the site URL for each group.
|
|
26
29
|
|
|
@@ -27,6 +27,9 @@ m365 entra pim role assignment eligibility list [options]
|
|
|
27
27
|
`--groupName [groupName]`
|
|
28
28
|
: Display name of the group for which to list eligible roles. Specify either `userId`, `userName`, `groupId` or `groupName`. If not specified, all eligible roles will be listed.
|
|
29
29
|
|
|
30
|
+
`--includePrincipalDetails`
|
|
31
|
+
: (deprecated. Use option `withPrincipalDetails` instead) An optional flag to include details of the principals that were eligible for a role.
|
|
32
|
+
|
|
30
33
|
`--withPrincipalDetails`
|
|
31
34
|
: An optional flag to include details of the principals that were eligible for a role.
|
|
32
35
|
```
|
|
@@ -30,6 +30,9 @@ m365 entra pim role assignment list [options]
|
|
|
30
30
|
`-s, --startDateTime [startDateTime]`
|
|
31
31
|
: An optional ISO 8601 formatted date filter to search from.
|
|
32
32
|
|
|
33
|
+
`--includePrincipalDetails`
|
|
34
|
+
: (deprecated. Use option `withPrincipalDetails` instead) An optional flag to include details of the principals that were assigned a role.
|
|
35
|
+
|
|
33
36
|
`--withPrincipalDetails`
|
|
34
37
|
: An optional flag to include details of the principals that were assigned a role.
|
|
35
38
|
```
|
|
@@ -33,6 +33,9 @@ m365 entra pim role request list [options]
|
|
|
33
33
|
`-s, --status [status]`
|
|
34
34
|
: An optional value to filter the list of requests. Allowed values are: `Canceled`, `Denied`, `Failed`, `Granted`, `PendingAdminDecision`, `PendingApproval`, `PendingProvisioning`, `PendingScheduleCreation`, `Provisioned`, `Revoked`, and `ScheduleCreated`.
|
|
35
35
|
|
|
36
|
+
`--includePrincipalDetails`
|
|
37
|
+
: (deprecated. Use option `withPrincipalDetails` instead) An optional flag to include details of the principals that were assigned a role.
|
|
38
|
+
|
|
36
39
|
`--withPrincipalDetails`
|
|
37
40
|
: An optional flag to include details of the principals that were assigned a role.
|
|
38
41
|
```
|
|
@@ -21,6 +21,9 @@ m365 flow list [options]
|
|
|
21
21
|
`--sharingStatus [sharingStatus]`
|
|
22
22
|
: List a specific type of flows. Valid values: `ownedByMe`, `personal`, `sharedWithMe`, `all`. Defaults to `ownedByMe`. Don't specify this option when using asAdmin.
|
|
23
23
|
|
|
24
|
+
`--includeSolutions`
|
|
25
|
+
: (deprecated. Use option `withSolutions` instead) Include flows from solutions.
|
|
26
|
+
|
|
24
27
|
`--withSolutions`
|
|
25
28
|
: Include flows from solutions.
|
|
26
29
|
|
|
@@ -24,6 +24,9 @@ m365 flow run get [options]
|
|
|
24
24
|
`-e, --environmentName <environmentName>`
|
|
25
25
|
: The name of the environment where the flow is located.
|
|
26
26
|
|
|
27
|
+
`--includeTriggerInformation`
|
|
28
|
+
: (deprecated. Use option `withTrigger` instead) If specified, include information about the trigger details.
|
|
29
|
+
|
|
27
30
|
`--withTrigger`
|
|
28
31
|
: If specified, include information about the trigger details.
|
|
29
32
|
|
|
@@ -39,6 +39,9 @@ m365 graph subscription add [options]
|
|
|
39
39
|
`--latestTLSVersion [latestTLSVersion]`
|
|
40
40
|
: The latest version of TLS that the notification endpoint supports. Allowed values are `v1_0`, `v1_1`, `v1_2`, `v1_3`. Default is `v1_2`.
|
|
41
41
|
|
|
42
|
+
`--includeResourceData`
|
|
43
|
+
: (deprecated. Use option `withResourceData` instead) When set, the change notifications will include the changed resource data.
|
|
44
|
+
|
|
42
45
|
`--withResourceData`
|
|
43
46
|
: When set, the change notifications will include the changed resource data.
|
|
44
47
|
|
|
@@ -18,6 +18,9 @@ m365 pp solution publisher list [options]
|
|
|
18
18
|
`-e, --environmentName <environmentName>`
|
|
19
19
|
: The name of the environment.
|
|
20
20
|
|
|
21
|
+
`--includeMicrosoftPublishers`
|
|
22
|
+
: (deprecated. Use option `withMicrosoftPublishers` instead) Include the Microsoft Publishers.
|
|
23
|
+
|
|
21
24
|
`--withMicrosoftPublishers`
|
|
22
25
|
: Include the Microsoft Publishers.
|
|
23
26
|
|
|
@@ -18,6 +18,9 @@ m365 purview threatassessment get [options]
|
|
|
18
18
|
`-i, --id <id>`
|
|
19
19
|
: The Id of the threat assessment.
|
|
20
20
|
|
|
21
|
+
`--includeResults`
|
|
22
|
+
: (deprecated. Use option `withResults` instead) Include the threat assessment results.
|
|
23
|
+
|
|
21
24
|
`--withResults`
|
|
22
25
|
: Include the threat assessment results.
|
|
23
26
|
```
|
|
@@ -33,6 +33,9 @@ m365 spo file move [options]
|
|
|
33
33
|
`--nameConflictBehavior [nameConflictBehavior]`
|
|
34
34
|
: Behavior when a file or folder with the same name is already present at the destination. Allowed values: `fail`, `replace`, `rename`. Defaults to `fail`.
|
|
35
35
|
|
|
36
|
+
`--includeItemPermissions`
|
|
37
|
+
: (deprecated. Use option `withItemPermissions` instead) Ensure that item-level permissions are preserved during the move.
|
|
38
|
+
|
|
36
39
|
`--withItemPermissions`
|
|
37
40
|
: Ensure that item-level permissions are preserved during the move.
|
|
38
41
|
|