@pnp/cli-microsoft365 6.9.0-beta.f6054b4 → 6.10.0-beta.81a81c0
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 +12 -19
- package/.devcontainer/devcontainer.json +24 -17
- package/Dockerfile +3 -1
- package/dist/Auth.js +2 -8
- package/dist/AuthServer.js +2 -4
- package/dist/cli/Cli.js +2 -2
- package/dist/m365/aad/commands/app/app-add.js +258 -249
- package/dist/m365/aad/commands/app/app-get.js +65 -62
- package/dist/m365/aad/commands/app/app-remove.js +22 -23
- package/dist/m365/aad/commands/app/app-role-add.js +35 -34
- package/dist/m365/aad/commands/app/app-role-list.js +22 -23
- package/dist/m365/aad/commands/app/app-role-remove.js +76 -73
- package/dist/m365/aad/commands/app/app-set.js +103 -103
- package/dist/m365/aad/commands/approleassignment/approleassignment-add.js +16 -14
- package/dist/m365/aad/commands/approleassignment/approleassignment-list.js +43 -52
- package/dist/m365/aad/commands/approleassignment/approleassignment-remove.js +20 -16
- package/dist/m365/aad/commands/o365group/o365group-add.js +40 -37
- package/dist/m365/aad/commands/o365group/o365group-conversation-post-list.js +7 -6
- package/dist/m365/aad/commands/o365group/o365group-list.js +6 -11
- package/dist/m365/aad/commands/o365group/o365group-recyclebinitem-clear.js +7 -8
- package/dist/m365/aad/commands/o365group/o365group-recyclebinitem-restore.js +23 -24
- package/dist/m365/aad/commands/o365group/o365group-set.js +15 -20
- package/dist/m365/aad/commands/o365group/o365group-teamify.js +15 -16
- package/dist/m365/aad/commands/o365group/o365group-user-list.js +17 -10
- package/dist/m365/aad/commands/o365group/o365group-user-set.js +17 -10
- package/dist/m365/aad/commands/policy/policy-list.js +12 -13
- package/dist/m365/aad/commands/siteclassification/siteclassification-enable.js +1 -3
- package/dist/m365/aad/commands/siteclassification/siteclassification-set.js +19 -20
- package/dist/m365/aad/commands/sp/sp-add.js +22 -23
- package/dist/m365/aad/commands/sp/sp-get.js +22 -23
- package/dist/m365/aad/commands/sp/sp-list.js +78 -0
- package/dist/m365/aad/commands.js +1 -0
- package/dist/m365/app/commands/app-open.js +4 -14
- package/dist/m365/base/AzmgmtItemsListCommand.js +31 -33
- package/dist/m365/cli/commands/cli-issue.js +4 -10
- package/dist/m365/cli/commands/cli-reconsent.js +2 -8
- package/dist/m365/cli/commands/config/config-set.js +0 -1
- package/dist/m365/commands/docs.js +2 -8
- package/dist/m365/commands/login.js +20 -0
- package/dist/m365/file/commands/convert/convert-pdf.js +147 -143
- package/dist/m365/file/commands/file-add.js +87 -93
- package/dist/m365/file/commands/file-list.js +49 -55
- package/dist/m365/flow/commands/flow-list.js +30 -12
- package/dist/m365/flow/commands/flow-remove.js +2 -3
- package/dist/m365/flow/commands/run/run-resubmit.js +11 -10
- package/dist/m365/onedrive/commands/onedrive-list.js +21 -32
- package/dist/m365/outlook/commands/message/message-list.js +18 -23
- package/dist/m365/outlook/commands/message/message-move.js +15 -20
- package/dist/m365/pa/commands/app/app-export.js +3 -4
- package/dist/m365/pa/commands/app/app-get.js +11 -9
- package/dist/m365/pa/commands/app/app-remove.js +1 -1
- package/dist/m365/pa/commands/pcf/pcf-init.js +1 -2
- package/dist/m365/pa/commands/solution/solution-init.js +1 -2
- package/dist/m365/pa/commands/solution/solution-reference-add.js +1 -2
- package/dist/m365/planner/commands/bucket/bucket-add.js +15 -13
- package/dist/m365/planner/commands/bucket/bucket-get.js +27 -28
- package/dist/m365/planner/commands/bucket/bucket-list.js +15 -13
- package/dist/m365/planner/commands/bucket/bucket-remove.js +33 -34
- package/dist/m365/planner/commands/bucket/bucket-set.js +33 -34
- package/dist/m365/planner/commands/plan/plan-add.js +49 -52
- package/dist/m365/planner/commands/plan/plan-set.js +19 -20
- package/dist/m365/planner/commands/task/task-add.js +75 -78
- package/dist/m365/planner/commands/task/task-checklistitem-add.js +11 -10
- package/dist/m365/planner/commands/task/task-checklistitem-remove.js +10 -8
- package/dist/m365/planner/commands/task/task-get.js +53 -56
- package/dist/m365/planner/commands/task/task-list.js +23 -24
- package/dist/m365/planner/commands/task/task-reference-add.js +11 -10
- package/dist/m365/planner/commands/task/task-reference-remove.js +13 -14
- package/dist/m365/planner/commands/task/task-remove.js +44 -48
- package/dist/m365/planner/commands/task/task-set.js +83 -87
- package/dist/m365/pp/commands/managementapp/managementapp-add.js +19 -20
- package/dist/m365/purview/commands/retentionevent/retentionevent-add.js +3 -8
- package/dist/m365/purview/commands/retentionevent/retentionevent-get.js +1 -6
- package/dist/m365/purview/commands/retentionevent/retentionevent-list.js +1 -6
- package/dist/m365/purview/commands/retentionevent/retentionevent-remove.js +1 -6
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-add.js +1 -6
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-get.js +1 -6
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-list.js +1 -6
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-remove.js +1 -6
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-set.js +1 -6
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-add.js +0 -5
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-get.js +0 -5
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-list.js +0 -5
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-remove.js +19 -22
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-set.js +0 -5
- package/dist/m365/spfx/commands/project/JsonRule.js +1 -1
- package/dist/m365/spfx/commands/project/project-doctor/doctor-1.17.3.js +25 -0
- package/dist/m365/spfx/commands/project/project-doctor/doctor-1.17.4.js +25 -0
- package/dist/m365/spfx/commands/project/project-doctor.js +3 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN002027_DEVDEP_fluentui_react.js +14 -0
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN021003_PKG_engines_node.js +1 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.17.3.js +59 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.17.4.js +55 -0
- package/dist/m365/spfx/commands/project/project-upgrade.js +3 -1
- package/dist/m365/spfx/commands/spfx-doctor.js +30 -0
- package/dist/m365/spo/commands/app/app-teamspackage-download.js +17 -24
- package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-set.js +154 -0
- package/dist/m365/spo/commands/apppage/apppage-set.js +1 -1
- package/dist/m365/spo/commands/commandset/commandset-set.js +11 -2
- package/dist/m365/spo/commands/contenttype/contenttype-field-set.js +65 -94
- package/dist/m365/spo/commands/customaction/customaction-clear.js +4 -12
- package/dist/m365/spo/commands/customaction/customaction-remove.js +12 -23
- package/dist/m365/spo/commands/customaction/customaction-set.js +21 -29
- package/dist/m365/spo/commands/file/file-add.js +133 -133
- package/dist/m365/spo/commands/file/file-checkout-undo.js +119 -0
- package/dist/m365/spo/commands/file/file-rename.js +11 -9
- package/dist/m365/spo/commands/file/file-retentionlabel-ensure.js +2 -2
- package/dist/m365/spo/commands/file/file-roleassignment-add.js +41 -61
- package/dist/m365/spo/commands/file/file-roleassignment-remove.js +3 -0
- package/dist/m365/spo/commands/file/file-roleinheritance-break.js +3 -0
- package/dist/m365/spo/commands/file/file-roleinheritance-reset.js +3 -0
- package/dist/m365/spo/commands/file/file-sharinginfo-get.js +23 -21
- package/dist/m365/spo/commands/file/file-version-clear.js +1 -1
- package/dist/m365/spo/commands/file/file-version-remove.js +1 -1
- package/dist/m365/spo/commands/file/file-version-restore.js +1 -1
- package/dist/m365/spo/commands/folder/folder-roleassignment-add.js +3 -3
- package/dist/m365/spo/commands/folder/folder-roleassignment-remove.js +1 -1
- package/dist/m365/spo/commands/group/group-member-add.js +17 -16
- package/dist/m365/spo/commands/group/group-set.js +20 -20
- package/dist/m365/spo/commands/homesite/homesite-remove.js +1 -1
- package/dist/m365/spo/commands/hubsite/hubsite-get.js +33 -31
- package/dist/m365/spo/commands/hubsite/hubsite-list.js +18 -29
- package/dist/m365/spo/commands/hubsite/hubsite-unregister.js +3 -0
- package/dist/m365/spo/commands/list/list-add.js +1 -1
- package/dist/m365/spo/commands/list/list-contenttype-default-set.js +1 -1
- package/dist/m365/spo/commands/list/list-roleassignment-add.js +45 -52
- package/dist/m365/spo/commands/list/list-roleassignment-remove.js +33 -38
- package/dist/m365/spo/commands/list/list-sensitivitylabel-ensure.js +137 -0
- package/dist/m365/spo/commands/list/list-view-field-add.js +12 -10
- package/dist/m365/spo/commands/list/list-view-field-remove.js +12 -10
- package/dist/m365/spo/commands/list/list-view-field-set.js +12 -10
- package/dist/m365/spo/commands/list/list-view-remove.js +3 -0
- package/dist/m365/spo/commands/listitem/listitem-roleassignment-add.js +41 -61
- package/dist/m365/spo/commands/listitem/listitem-roleassignment-remove.js +71 -74
- package/dist/m365/spo/commands/listitem/listitem-roleinheritance-break.js +36 -34
- package/dist/m365/spo/commands/listitem/listitem-roleinheritance-reset.js +32 -30
- package/dist/m365/spo/commands/navigation/navigation-node-remove.js +24 -22
- package/dist/m365/spo/commands/orgassetslibrary/orgassetslibrary-remove.js +29 -27
- package/dist/m365/spo/commands/orgnewssite/orgnewssite-remove.js +26 -24
- package/dist/m365/spo/commands/page/page-clientsidewebpart-add.js +34 -40
- package/dist/m365/spo/commands/sitedesign/sitedesign-task-remove.js +23 -21
- package/dist/m365/spo/commands/sitescript/sitescript-remove.js +24 -22
- package/dist/m365/spo/commands/spo-search.js +7 -15
- package/dist/m365/spo/commands/storageentity/storageentity-remove.js +29 -27
- package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-set.js +156 -0
- package/dist/m365/spo/commands/tenant/tenant-commandset-list.js +50 -0
- package/dist/m365/spo/commands/tenant/tenant-commandset-set.js +1 -1
- package/dist/m365/spo/commands.js +5 -0
- package/dist/m365/teams/commands/app/app-install.js +23 -21
- package/dist/m365/teams/commands/app/app-remove.js +3 -0
- package/dist/m365/teams/commands/app/app-uninstall.js +3 -0
- package/dist/m365/teams/commands/app/app-update.js +15 -16
- package/dist/m365/teams/commands/channel/channel-add.js +40 -39
- package/dist/m365/teams/commands/channel/channel-get.js +23 -25
- package/dist/m365/teams/commands/channel/channel-list.js +6 -7
- package/dist/m365/teams/commands/channel/channel-member-add.js +61 -60
- package/dist/m365/teams/commands/channel/channel-member-list.js +20 -22
- package/dist/m365/teams/commands/channel/channel-member-remove.js +43 -48
- package/dist/m365/teams/commands/channel/channel-member-set.js +36 -39
- package/dist/m365/teams/commands/channel/channel-remove.js +4 -1
- package/dist/m365/teams/commands/funsettings/funsettings-list.js +3 -0
- package/dist/m365/teams/commands/funsettings/funsettings-set.js +3 -0
- package/dist/m365/teams/commands/tab/tab-get.js +34 -37
- package/dist/m365/teams/commands/team/team-archive.js +6 -7
- package/dist/m365/teams/commands/team/team-get.js +6 -7
- package/dist/m365/teams/commands/team/team-list.js +9 -11
- package/dist/m365/teams/commands/team/team-remove.js +6 -7
- package/dist/m365/teams/commands/team/team-unarchive.js +6 -7
- package/dist/m365/teams/commands/user/user-app-list.js +13 -11
- package/dist/m365/teams/commands/user/user-list.js +7 -4
- package/dist/m365/tenant/commands/security/security-alerts-list.js +25 -26
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-health-list.js +13 -14
- package/dist/m365/todo/commands/list/list-remove.js +39 -36
- package/dist/m365/todo/commands/list/list-set.js +16 -14
- package/dist/m365/todo/commands/task/task-add.js +14 -14
- package/dist/m365/util/commands/accesstoken/accesstoken-get.js +10 -7
- package/dist/settingsNames.js +0 -1
- package/dist/utils/browserUtil.js +23 -0
- package/dist/utils/md.js +1 -3
- package/docs/docs/cmd/aad/app/app-add.mdx +113 -0
- package/docs/docs/cmd/aad/app/app-get.mdx +217 -0
- package/docs/docs/cmd/aad/app/app-list.mdx +21 -0
- package/docs/docs/cmd/aad/app/app-role-add.mdx +4 -0
- package/docs/docs/cmd/aad/app/app-role-list.mdx +63 -0
- package/docs/docs/cmd/aad/app/app-role-remove.mdx +4 -0
- package/docs/docs/cmd/aad/app/app-set.mdx +4 -0
- package/docs/docs/cmd/aad/approleassignment/approleassignment-add.mdx +61 -0
- package/docs/docs/cmd/aad/approleassignment/approleassignment-list.mdx +59 -0
- package/docs/docs/cmd/aad/approleassignment/approleassignment-remove.mdx +4 -0
- package/docs/docs/cmd/aad/group/group-get.mdx +24 -0
- package/docs/docs/cmd/aad/group/group-list.mdx +98 -0
- package/docs/docs/cmd/aad/groupsetting/groupsetting-add.mdx +114 -0
- package/docs/docs/cmd/aad/groupsetting/groupsetting-get.mdx +115 -0
- package/docs/docs/cmd/aad/groupsetting/groupsetting-list.mdx +115 -0
- package/docs/docs/cmd/aad/groupsetting/groupsetting-remove.mdx +4 -0
- package/docs/docs/cmd/aad/groupsetting/groupsetting-set.mdx +4 -0
- package/docs/docs/cmd/aad/groupsettingtemplate/groupsettingtemplate-get.mdx +63 -0
- package/docs/docs/cmd/aad/groupsettingtemplate/groupsettingtemplate-list.mdx +63 -0
- package/docs/docs/cmd/aad/o365group/o365group-add.mdx +122 -0
- package/docs/docs/cmd/aad/o365group/o365group-conversation-list.mdx +68 -0
- package/docs/docs/cmd/aad/o365group/o365group-conversation-post-list.mdx +77 -0
- package/docs/docs/cmd/aad/o365group/o365group-get.mdx +122 -0
- package/docs/docs/cmd/aad/o365group/o365group-list.mdx +99 -0
- package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-clear.mdx +4 -0
- package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-list.mdx +96 -0
- package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-remove.mdx +4 -0
- package/docs/docs/cmd/aad/o365group/o365group-recyclebinitem-restore.mdx +4 -0
- package/docs/docs/cmd/aad/o365group/o365group-remove.mdx +4 -0
- package/docs/docs/cmd/aad/o365group/o365group-renew.mdx +4 -0
- package/docs/docs/cmd/aad/o365group/o365group-report-activitycounts.mdx +48 -0
- package/docs/docs/cmd/aad/o365group/o365group-report-activitydetail.mdx +60 -0
- package/docs/docs/cmd/aad/o365group/o365group-report-activityfilecounts.mdx +46 -0
- package/docs/docs/cmd/aad/o365group/o365group-report-activitygroupcounts.mdx +46 -0
- package/docs/docs/cmd/aad/o365group/o365group-report-activitystorage.mdx +46 -0
- package/docs/docs/cmd/aad/o365group/o365group-set.mdx +4 -0
- package/docs/docs/cmd/aad/o365group/o365group-teamify.mdx +4 -0
- package/docs/docs/cmd/aad/o365group/o365group-user-add.mdx +4 -0
- package/docs/docs/cmd/aad/o365group/o365group-user-list.mdx +56 -0
- package/docs/docs/cmd/aad/o365group/o365group-user-remove.mdx +4 -0
- package/docs/docs/cmd/aad/o365group/o365group-user-set.mdx +8 -4
- package/docs/docs/cmd/aad/oauth2grant/oauth2grant-add.mdx +4 -0
- package/docs/docs/cmd/aad/oauth2grant/oauth2grant-list.mdx +59 -0
- package/docs/docs/cmd/aad/oauth2grant/oauth2grant-remove.mdx +4 -0
- package/docs/docs/cmd/aad/oauth2grant/oauth2grant-set.mdx +4 -0
- package/docs/docs/cmd/aad/policy/policy-list.mdx +77 -0
- package/docs/docs/cmd/aad/siteclassification/siteclassification-disable.mdx +4 -0
- package/docs/docs/cmd/aad/siteclassification/siteclassification-enable.mdx +4 -0
- package/docs/docs/cmd/aad/siteclassification/siteclassification-get.mdx +57 -0
- package/docs/docs/cmd/aad/siteclassification/siteclassification-set.mdx +4 -0
- package/docs/docs/cmd/aad/sp/sp-add.mdx +136 -0
- package/docs/docs/cmd/aad/sp/sp-get.mdx +166 -0
- package/docs/docs/cmd/aad/sp/sp-list.mdx +162 -0
- package/docs/docs/cmd/aad/user/user-get.mdx +75 -0
- package/docs/docs/cmd/aad/user/user-guest-add.mdx +23 -0
- package/docs/docs/cmd/aad/user/user-hibp.mdx +82 -0
- package/docs/docs/cmd/aad/user/user-license-add.mdx +2 -2
- package/docs/docs/cmd/aad/user/user-license-remove.mdx +2 -2
- package/docs/docs/cmd/aad/user/user-list.mdx +52 -0
- package/docs/docs/cmd/aad/user/user-password-validate.mdx +67 -0
- package/docs/docs/cmd/aad/user/user-signin-list.mdx +131 -0
- package/docs/docs/cmd/flow/flow-list.mdx +15 -0
- package/docs/docs/cmd/login.mdx +39 -0
- package/docs/docs/cmd/purview/retentionevent/retentionevent-add.mdx +0 -6
- package/docs/docs/cmd/purview/retentionevent/retentionevent-get.mdx +0 -6
- package/docs/docs/cmd/purview/retentionevent/retentionevent-list.mdx +0 -7
- package/docs/docs/cmd/purview/retentionevent/retentionevent-remove.mdx +0 -6
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-add.mdx +0 -6
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-get.mdx +0 -6
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-list.mdx +0 -6
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-remove.mdx +0 -6
- package/docs/docs/cmd/purview/retentioneventtype/retentioneventtype-set.mdx +0 -6
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-add.mdx +0 -6
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-get.mdx +0 -6
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-list.mdx +0 -6
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-remove.mdx +0 -6
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-set.mdx +0 -6
- package/docs/docs/cmd/setup.mdx +2 -0
- package/docs/docs/cmd/spfx/project/project-upgrade.mdx +1 -1
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-set.mdx +72 -0
- package/docs/docs/cmd/spo/commandset/commandset-set.mdx +12 -3
- package/docs/docs/cmd/spo/file/file-checkout-undo.mdx +55 -0
- package/docs/docs/cmd/spo/file/file-retentionlabel-ensure.mdx +1 -1
- package/docs/docs/cmd/spo/folder/folder-retentionlabel-ensure.mdx +1 -1
- package/docs/docs/cmd/spo/list/list-sensitivitylabel-ensure.mdx +73 -0
- package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-set.mdx +81 -0
- package/docs/docs/cmd/spo/tenant/tenant-commandset-add.mdx +1 -1
- package/docs/docs/cmd/spo/tenant/tenant-commandset-get.mdx +1 -1
- package/docs/docs/cmd/spo/tenant/tenant-commandset-list.mdx +114 -0
- package/docs/docs/cmd/spo/tenant/tenant-commandset-set.mdx +1 -1
- package/docs/docs/cmd/spo/tenant/tenant-settings-set.mdx +6 -0
- package/docs/docs/cmd/status.mdx +6 -3
- package/docs/docs/cmd/util/accesstoken/accesstoken-get.mdx +12 -2
- package/npm-shrinkwrap.json +301 -274
- package/package.json +18 -17
- package/dist/m365/aad/commands/approleassignment/AppRoleAssignment.js +0 -3
- package/dist/m365/aad/commands/approleassignment/ServicePrincipal.js +0 -3
- package/dist/m365/aad/commands/groupsetting/GroupSetting.js +0 -3
- package/dist/m365/aad/commands/groupsettingtemplate/GroupSettingTemplate.js +0 -3
- package/dist/m365/aad/commands/siteclassification/DirectorySetting.js +0 -10
- package/dist/m365/aad/commands/siteclassification/DirectorySettingTemplatesRsp.js +0 -3
- package/dist/m365/aad/commands/siteclassification/DirectorySettingValue.js +0 -3
- package/dist/m365/outlook/Message.js +0 -3
- package/dist/m365/spo/commands/site/SitePermission.js +0 -3
- package/dist/m365/teams/Channel.js +0 -3
- package/dist/m365/teams/ConversationMember.js +0 -3
- package/dist/m365/teams/Message.js +0 -3
- package/dist/m365/teams/Reply.js +0 -3
- package/dist/m365/teams/Tab.js +0 -3
- package/dist/m365/teams/Team.js +0 -3
- package/dist/m365/teams/TeamsApp.js +0 -3
- package/dist/m365/teams/TeamsAppInstallation.js +0 -3
- package/dist/m365/teams/TeamsTabConfiguration.js +0 -3
- package/dist/m365/teams/commands/Meeting.js +0 -3
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import Global from '/docs/cmd/_global.mdx';
|
|
2
|
+
import Tabs from '@theme/Tabs';
|
|
3
|
+
import TabItem from '@theme/TabItem';
|
|
2
4
|
|
|
3
5
|
# aad groupsetting add
|
|
4
6
|
|
|
@@ -38,3 +40,115 @@ Configure classification for modern SharePoint sites
|
|
|
38
40
|
```sh
|
|
39
41
|
m365 aad groupsetting add --templateId 62375ab9-6b52-47ed-826b-58e47e0e304b --UsageGuidelinesUrl https://contoso.sharepoint.com/sites/compliance --ClassificationList 'HBI, MBI, LBI, GDPR' --DefaultClassification MBI
|
|
40
42
|
```
|
|
43
|
+
|
|
44
|
+
## Response
|
|
45
|
+
|
|
46
|
+
<Tabs>
|
|
47
|
+
<TabItem value="JSON">
|
|
48
|
+
|
|
49
|
+
```json
|
|
50
|
+
{
|
|
51
|
+
"id": "c01f5e50-aabf-4851-983b-dd7d59b8f07c",
|
|
52
|
+
"displayName": null,
|
|
53
|
+
"templateId": "62375ab9-6b52-47ed-826b-58e47e0e304b",
|
|
54
|
+
"values": [
|
|
55
|
+
{
|
|
56
|
+
"name": "UsageGuidelinesUrl",
|
|
57
|
+
"value": "https://contoso.sharepoint.com/sites/compliance"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "ClassificationList",
|
|
61
|
+
"value": "HBI, MBI, LBI, GDPR"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "DefaultClassification",
|
|
65
|
+
"value": "MBI"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "NewUnifiedGroupWritebackDefault",
|
|
69
|
+
"value": "true"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "EnableMIPLabels",
|
|
73
|
+
"value": "false"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "CustomBlockedWordsList",
|
|
77
|
+
"value": ""
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "EnableMSStandardBlockedWords",
|
|
81
|
+
"value": "false"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "ClassificationDescriptions",
|
|
85
|
+
"value": ""
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "PrefixSuffixNamingRequirement",
|
|
89
|
+
"value": ""
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "AllowGuestsToBeGroupOwner",
|
|
93
|
+
"value": "false"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "AllowGuestsToAccessGroups",
|
|
97
|
+
"value": "true"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "GuestUsageGuidelinesUrl",
|
|
101
|
+
"value": ""
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "GroupCreationAllowedGroupId",
|
|
105
|
+
"value": ""
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "AllowToAddGuests",
|
|
109
|
+
"value": "true"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "EnableGroupCreation",
|
|
113
|
+
"value": "true"
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
}
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
</TabItem>
|
|
120
|
+
<TabItem value="Text">
|
|
121
|
+
|
|
122
|
+
```text
|
|
123
|
+
displayName: null
|
|
124
|
+
id : 01cb3b73-3387-4dec-af09-71cf0de65f0b
|
|
125
|
+
templateId : 62375ab9-6b52-47ed-826b-58e47e0e304b
|
|
126
|
+
values : [{"name":"UsageGuidelinesUrl","value":"https://contoso.sharepoint.com/sites/compliance"},{"name":"ClassificationList","value":"HBI, MBI, LBI, GDPR"},{"name":"DefaultClassification","value":"MBI"},{"name":"NewUnifiedGroupWritebackDefault","value":"true"},{"name":"EnableMIPLabels","value":"false"},{"name":"CustomBlockedWordsList","value":""},{"name":"EnableMSStandardBlockedWords","value":"false"},{"name":"ClassificationDescriptions","value":""},{"name":"PrefixSuffixNamingRequirement","value":""},{"name":"AllowGuestsToBeGroupOwner","value":"false"},{"name":"AllowGuestsToAccessGroups","value":"true"},{"name":"GuestUsageGuidelinesUrl","value":""},{"name":"GroupCreationAllowedGroupId","value":""},{"name":"AllowToAddGuests","value":"true"},{"name":"EnableGroupCreation","value":"true"}]
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
</TabItem>
|
|
130
|
+
<TabItem value="CSV">
|
|
131
|
+
|
|
132
|
+
```csv
|
|
133
|
+
id,templateId
|
|
134
|
+
689ac304-6628-4b69-9e86-2ebd99f29da3,62375ab9-6b52-47ed-826b-58e47e0e304b
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
</TabItem>
|
|
138
|
+
<TabItem value="Markdown">
|
|
139
|
+
|
|
140
|
+
```md
|
|
141
|
+
# aad groupsetting add --templateId "62375ab9-6b52-47ed-826b-58e47e0e304b" --UsageGuidelinesUrl "https://contoso.sharepoint.com/sites/compliance" --ClassificationList "HBI, MBI, LBI, GDPR" --DefaultClassification "MBI"
|
|
142
|
+
|
|
143
|
+
Date: 2023-06-01
|
|
144
|
+
|
|
145
|
+
## 14b492fc-5cbe-456c-b083-ee62638c627c
|
|
146
|
+
|
|
147
|
+
Property | Value
|
|
148
|
+
---------|-------
|
|
149
|
+
id | 14b492fc-5cbe-456c-b083-ee62638c627c
|
|
150
|
+
templateId | 62375ab9-6b52-47ed-826b-58e47e0e304b
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
</TabItem>
|
|
154
|
+
</Tabs>
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import Global from '/docs/cmd/_global.mdx';
|
|
2
|
+
import Tabs from '@theme/Tabs';
|
|
3
|
+
import TabItem from '@theme/TabItem';
|
|
2
4
|
|
|
3
5
|
# aad groupsetting get
|
|
4
6
|
|
|
@@ -26,3 +28,116 @@ Get information about the group setting with id _1caf7dcd-7e83-4c3a-94f7-932a129
|
|
|
26
28
|
```sh
|
|
27
29
|
m365 aad groupsetting get --id 1caf7dcd-7e83-4c3a-94f7-932a1299c844
|
|
28
30
|
```
|
|
31
|
+
|
|
32
|
+
## Response
|
|
33
|
+
|
|
34
|
+
<Tabs>
|
|
35
|
+
<TabItem value="JSON">
|
|
36
|
+
|
|
37
|
+
```json
|
|
38
|
+
{
|
|
39
|
+
"id": "14b492fc-5cbe-456c-b083-ee62638c627c",
|
|
40
|
+
"displayName": "Group.Unified",
|
|
41
|
+
"templateId": "62375ab9-6b52-47ed-826b-58e47e0e304b",
|
|
42
|
+
"values": [
|
|
43
|
+
{
|
|
44
|
+
"name": "NewUnifiedGroupWritebackDefault",
|
|
45
|
+
"value": "true"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "EnableMIPLabels",
|
|
49
|
+
"value": "false"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "CustomBlockedWordsList",
|
|
53
|
+
"value": ""
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "EnableMSStandardBlockedWords",
|
|
57
|
+
"value": "false"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "ClassificationDescriptions",
|
|
61
|
+
"value": ""
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "DefaultClassification",
|
|
65
|
+
"value": "MBI"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "PrefixSuffixNamingRequirement",
|
|
69
|
+
"value": ""
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "AllowGuestsToBeGroupOwner",
|
|
73
|
+
"value": "false"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "AllowGuestsToAccessGroups",
|
|
77
|
+
"value": "true"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "GuestUsageGuidelinesUrl",
|
|
81
|
+
"value": ""
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "GroupCreationAllowedGroupId",
|
|
85
|
+
"value": ""
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "AllowToAddGuests",
|
|
89
|
+
"value": "true"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "UsageGuidelinesUrl",
|
|
93
|
+
"value": "https://contoso.sharepoint.com/sites/compliance"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "ClassificationList",
|
|
97
|
+
"value": "HBI,MBI,LBI,GDPR"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "EnableGroupCreation",
|
|
101
|
+
"value": "true"
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
}
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
</TabItem>
|
|
108
|
+
<TabItem value="Text">
|
|
109
|
+
|
|
110
|
+
```text
|
|
111
|
+
displayName: Group.Unified
|
|
112
|
+
id : 14b492fc-5cbe-456c-b083-ee62638c627c
|
|
113
|
+
templateId : 62375ab9-6b52-47ed-826b-58e47e0e304b
|
|
114
|
+
values : [{"name":"NewUnifiedGroupWritebackDefault","value":"true"},{"name":"EnableMIPLabels","value":"false"},{"name":"CustomBlockedWordsList","value":""},{"name":"EnableMSStandardBlockedWords","value":"false"},{"name":"ClassificationDescriptions","value":""},{"name":"DefaultClassification","value":"MBI"},{"name":"PrefixSuffixNamingRequirement","value":""},{"name":"AllowGuestsToBeGroupOwner","value":"false"},{"name":"AllowGuestsToAccessGroups","value":"true"},{"name":"GuestUsageGuidelinesUrl","value":""},{"name":"GroupCreationAllowedGroupId","value":""},{"name":"AllowToAddGuests","value":"true"},{"name":"UsageGuidelinesUrl","value":"https://contoso.sharepoint.com/sites/compliance"},{"name":"ClassificationList","value":"HBI,MBI,LBI,GDPR"},{"name":"EnableGroupCreation","value":"true"}]
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
</TabItem>
|
|
118
|
+
<TabItem value="CSV">
|
|
119
|
+
|
|
120
|
+
```csv
|
|
121
|
+
id,displayName,templateId
|
|
122
|
+
14b492fc-5cbe-456c-b083-ee62638c627c,Group.Unified,62375ab9-6b52-47ed-826b-58e47e0e304b
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
</TabItem>
|
|
126
|
+
<TabItem value="Markdown">
|
|
127
|
+
|
|
128
|
+
```md
|
|
129
|
+
# aad groupsetting get --id "14b492fc-5cbe-456c-b083-ee62638c627c"
|
|
130
|
+
|
|
131
|
+
Date: 2023-06-01
|
|
132
|
+
|
|
133
|
+
## Group.Unified (14b492fc-5cbe-456c-b083-ee62638c627c)
|
|
134
|
+
|
|
135
|
+
Property | Value
|
|
136
|
+
---------|-------
|
|
137
|
+
id | 14b492fc-5cbe-456c-b083-ee62638c627c
|
|
138
|
+
displayName | Group.Unified
|
|
139
|
+
templateId | 62375ab9-6b52-47ed-826b-58e47e0e304b
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
</TabItem>
|
|
143
|
+
</Tabs>
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import Global from '/docs/cmd/_global.mdx';
|
|
2
|
+
import Tabs from '@theme/Tabs';
|
|
3
|
+
import TabItem from '@theme/TabItem';
|
|
2
4
|
|
|
3
5
|
# aad groupsetting list
|
|
4
6
|
|
|
@@ -21,3 +23,116 @@ List all group settings in the tenant
|
|
|
21
23
|
```sh
|
|
22
24
|
m365 aad groupsetting list
|
|
23
25
|
```
|
|
26
|
+
|
|
27
|
+
## Response
|
|
28
|
+
|
|
29
|
+
<Tabs>
|
|
30
|
+
<TabItem value="JSON">
|
|
31
|
+
|
|
32
|
+
```json
|
|
33
|
+
[
|
|
34
|
+
{
|
|
35
|
+
"id": "bce6212c-0810-459f-9635-8d9ba78d2c49",
|
|
36
|
+
"displayName": "Group.Unified",
|
|
37
|
+
"templateId": "62375ab9-6b52-47ed-826b-58e47e0e304b",
|
|
38
|
+
"values": [
|
|
39
|
+
{
|
|
40
|
+
"name": "NewUnifiedGroupWritebackDefault",
|
|
41
|
+
"value": "True"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "EnableMIPLabels",
|
|
45
|
+
"value": "True"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "CustomBlockedWordsList",
|
|
49
|
+
"value": ""
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "EnableMSStandardBlockedWords",
|
|
53
|
+
"value": "False"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "ClassificationDescriptions",
|
|
57
|
+
"value": ""
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "DefaultClassification",
|
|
61
|
+
"value": ""
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "PrefixSuffixNamingRequirement",
|
|
65
|
+
"value": ""
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "AllowGuestsToBeGroupOwner",
|
|
69
|
+
"value": "False"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "AllowGuestsToAccessGroups",
|
|
73
|
+
"value": "True"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "GuestUsageGuidelinesUrl",
|
|
77
|
+
"value": ""
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "GroupCreationAllowedGroupId",
|
|
81
|
+
"value": ""
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "AllowToAddGuests",
|
|
85
|
+
"value": "True"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "UsageGuidelinesUrl",
|
|
89
|
+
"value": "https://guideline.example.com"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "ClassificationList",
|
|
93
|
+
"value": ""
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "EnableGroupCreation",
|
|
97
|
+
"value": "True"
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
</TabItem>
|
|
105
|
+
<TabItem value="Text">
|
|
106
|
+
|
|
107
|
+
```text
|
|
108
|
+
displayName: Group.Unified
|
|
109
|
+
id : bce6212c-0810-459f-9635-8d9ba78d2c49
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
</TabItem>
|
|
113
|
+
<TabItem value="CSV">
|
|
114
|
+
|
|
115
|
+
```csv
|
|
116
|
+
id,displayName,templateId
|
|
117
|
+
bce6212c-0810-459f-9635-8d9ba78d2c49,Group.Unified,62375ab9-6b52-47ed-826b-58e47e0e304b
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
</TabItem>
|
|
121
|
+
<TabItem value="Markdown">
|
|
122
|
+
|
|
123
|
+
```md
|
|
124
|
+
# aad groupsetting list
|
|
125
|
+
|
|
126
|
+
Date: 2023-06-01
|
|
127
|
+
|
|
128
|
+
## Group.Unified (bce6212c-0810-459f-9635-8d9ba78d2c49)
|
|
129
|
+
|
|
130
|
+
Property | Value
|
|
131
|
+
---------|-------
|
|
132
|
+
id | bce6212c-0810-459f-9635-8d9ba78d2c49
|
|
133
|
+
displayName | Group.Unified
|
|
134
|
+
templateId | 62375ab9-6b52-47ed-826b-58e47e0e304b
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
</TabItem>
|
|
138
|
+
</Tabs>
|
|
@@ -36,3 +36,7 @@ Configure classification for modern SharePoint sites
|
|
|
36
36
|
```sh
|
|
37
37
|
m365 aad groupsetting set --id c391b57d-5783-4c53-9236-cefb5c6ef323 --UsageGuidelinesUrl https://contoso.sharepoint.com/sites/compliance --ClassificationList 'HBI, MBI, LBI, GDPR' --DefaultClassification MBI
|
|
38
38
|
```
|
|
39
|
+
|
|
40
|
+
## Response
|
|
41
|
+
|
|
42
|
+
The command won't return a response on success.
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import Global from '/docs/cmd/_global.mdx';
|
|
2
|
+
import Tabs from '@theme/Tabs';
|
|
3
|
+
import TabItem from '@theme/TabItem';
|
|
2
4
|
|
|
3
5
|
# aad groupsettingtemplate get
|
|
4
6
|
|
|
@@ -35,3 +37,64 @@ Get information about the group setting template with display name _Group.Unifie
|
|
|
35
37
|
```sh
|
|
36
38
|
m365 aad groupsettingtemplate get --displayName Group.Unified
|
|
37
39
|
```
|
|
40
|
+
|
|
41
|
+
## Response
|
|
42
|
+
|
|
43
|
+
<Tabs>
|
|
44
|
+
<TabItem value="JSON">
|
|
45
|
+
|
|
46
|
+
```json
|
|
47
|
+
{
|
|
48
|
+
"id": "08d542b9-071f-4e16-94b0-74abb372e3d9",
|
|
49
|
+
"deletedDateTime": null,
|
|
50
|
+
"displayName": "Group.Unified.Guest",
|
|
51
|
+
"description": "Settings for a specific Unified Group",
|
|
52
|
+
"values": [
|
|
53
|
+
{
|
|
54
|
+
"name": "AllowToAddGuests",
|
|
55
|
+
"type": "System.Boolean",
|
|
56
|
+
"defaultValue": "true",
|
|
57
|
+
"description": "Flag indicating if guests are allowed in a specific Unified Group."
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
</TabItem>
|
|
64
|
+
<TabItem value="Text">
|
|
65
|
+
|
|
66
|
+
```text
|
|
67
|
+
deletedDateTime: null
|
|
68
|
+
description : Settings for a specific Unified Group
|
|
69
|
+
displayName : Group.Unified.Guest
|
|
70
|
+
id : 08d542b9-071f-4e16-94b0-74abb372e3d9
|
|
71
|
+
values : [{"name":"AllowToAddGuests","type":"System.Boolean","defaultValue":"true","description":"Flag indicating if guests are allowed in a specific Unified Group."}]
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
</TabItem>
|
|
75
|
+
<TabItem value="CSV">
|
|
76
|
+
|
|
77
|
+
```csv
|
|
78
|
+
id,displayName,description
|
|
79
|
+
08d542b9-071f-4e16-94b0-74abb372e3d9,Group.Unified.Guest,Settings for a specific Unified Group
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
</TabItem>
|
|
83
|
+
<TabItem value="Markdown">
|
|
84
|
+
|
|
85
|
+
```md
|
|
86
|
+
# aad groupsettingtemplate get --id "08d542b9-071f-4e16-94b0-74abb372e3d9"
|
|
87
|
+
|
|
88
|
+
Date: 2023-06-01
|
|
89
|
+
|
|
90
|
+
## Group.Unified.Guest (08d542b9-071f-4e16-94b0-74abb372e3d9)
|
|
91
|
+
|
|
92
|
+
Property | Value
|
|
93
|
+
---------|-------
|
|
94
|
+
id | 08d542b9-071f-4e16-94b0-74abb372e3d9
|
|
95
|
+
displayName | Group.Unified.Guest
|
|
96
|
+
description | Settings for a specific Unified Group
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
</TabItem>
|
|
100
|
+
</Tabs>
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import Global from '/docs/cmd/_global.mdx';
|
|
2
|
+
import Tabs from '@theme/Tabs';
|
|
3
|
+
import TabItem from '@theme/TabItem';
|
|
2
4
|
|
|
3
5
|
# aad groupsettingtemplate list
|
|
4
6
|
|
|
@@ -21,3 +23,64 @@ List all group setting templates in the tenant
|
|
|
21
23
|
```sh
|
|
22
24
|
m365 aad groupsettingtemplate list
|
|
23
25
|
```
|
|
26
|
+
|
|
27
|
+
## Response
|
|
28
|
+
|
|
29
|
+
<Tabs>
|
|
30
|
+
<TabItem value="JSON">
|
|
31
|
+
|
|
32
|
+
```json
|
|
33
|
+
[
|
|
34
|
+
{
|
|
35
|
+
"id": "08d542b9-071f-4e16-94b0-74abb372e3d9",
|
|
36
|
+
"deletedDateTime": null,
|
|
37
|
+
"displayName": "Group.Unified.Guest",
|
|
38
|
+
"description": "Settings for a specific Unified Group",
|
|
39
|
+
"values": [
|
|
40
|
+
{
|
|
41
|
+
"name": "AllowToAddGuests",
|
|
42
|
+
"type": "System.Boolean",
|
|
43
|
+
"defaultValue": "true",
|
|
44
|
+
"description": "Flag indicating if guests are allowed in a specific Unified Group."
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
</TabItem>
|
|
52
|
+
<TabItem value="Text">
|
|
53
|
+
|
|
54
|
+
```text
|
|
55
|
+
id displayName
|
|
56
|
+
------------------------------------ ------------------------------------
|
|
57
|
+
08d542b9-071f-4e16-94b0-74abb372e3d9 Group.Unified.Guest
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
</TabItem>
|
|
61
|
+
<TabItem value="CSV">
|
|
62
|
+
|
|
63
|
+
```csv
|
|
64
|
+
id,displayName,description
|
|
65
|
+
08d542b9-071f-4e16-94b0-74abb372e3d9,Group.Unified.Guest,Settings for a specific Unified Group
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
</TabItem>
|
|
69
|
+
<TabItem value="Markdown">
|
|
70
|
+
|
|
71
|
+
```md
|
|
72
|
+
# aad groupsettingtemplate list
|
|
73
|
+
|
|
74
|
+
Date: 2023-06-01
|
|
75
|
+
|
|
76
|
+
## Group.Unified.Guest (08d542b9-071f-4e16-94b0-74abb372e3d9)
|
|
77
|
+
|
|
78
|
+
Property | Value
|
|
79
|
+
---------|-------
|
|
80
|
+
id | 08d542b9-071f-4e16-94b0-74abb372e3d9
|
|
81
|
+
displayName | Group.Unified.Guest
|
|
82
|
+
description | Settings for a specific Unified Group
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
</TabItem>
|
|
86
|
+
</Tabs>
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import Global from '/docs/cmd/_global.mdx';
|
|
2
|
+
import Tabs from '@theme/Tabs';
|
|
3
|
+
import TabItem from '@theme/TabItem';
|
|
2
4
|
|
|
3
5
|
# aad o365group add
|
|
4
6
|
|
|
@@ -109,3 +111,123 @@ Create a public Microsoft 365 Group and set its logo
|
|
|
109
111
|
```sh
|
|
110
112
|
m365 aad o365group add --displayName Finance --description "This is the Contoso Finance Group. Please come here and check out the latest news, posts, files, and more." --mailNickname finance --logoPath images/logo.png
|
|
111
113
|
```
|
|
114
|
+
|
|
115
|
+
## Response
|
|
116
|
+
|
|
117
|
+
<Tabs>
|
|
118
|
+
<TabItem value="JSON">
|
|
119
|
+
|
|
120
|
+
```json
|
|
121
|
+
{
|
|
122
|
+
"id": "43159e46-373c-4151-84bd-a8cc82cee345",
|
|
123
|
+
"deletedDateTime": null,
|
|
124
|
+
"classification": null,
|
|
125
|
+
"createdDateTime": "2023-06-01T20:15:18Z",
|
|
126
|
+
"creationOptions": [],
|
|
127
|
+
"description": "This is the Contoso Finance Group. Please come here and check out the latest news, posts, files, and more.",
|
|
128
|
+
"displayName": "Finance",
|
|
129
|
+
"expirationDateTime": null,
|
|
130
|
+
"groupTypes": [
|
|
131
|
+
"Unified"
|
|
132
|
+
],
|
|
133
|
+
"isAssignableToRole": null,
|
|
134
|
+
"mail": "finance@contoso.onmicrosoft.com",
|
|
135
|
+
"mailEnabled": true,
|
|
136
|
+
"mailNickname": "finance",
|
|
137
|
+
"membershipRule": null,
|
|
138
|
+
"membershipRuleProcessingState": null,
|
|
139
|
+
"onPremisesDomainName": null,
|
|
140
|
+
"onPremisesLastSyncDateTime": null,
|
|
141
|
+
"onPremisesNetBiosName": null,
|
|
142
|
+
"onPremisesSamAccountName": null,
|
|
143
|
+
"onPremisesSecurityIdentifier": null,
|
|
144
|
+
"onPremisesSyncEnabled": null,
|
|
145
|
+
"preferredDataLocation": null,
|
|
146
|
+
"preferredLanguage": null,
|
|
147
|
+
"proxyAddresses": [
|
|
148
|
+
"SMTP:finance@contoso.onmicrosoft.com"
|
|
149
|
+
],
|
|
150
|
+
"renewedDateTime": "2023-06-01T20:15:18Z",
|
|
151
|
+
"resourceBehaviorOptions": [],
|
|
152
|
+
"resourceProvisioningOptions": [],
|
|
153
|
+
"securityEnabled": false,
|
|
154
|
+
"securityIdentifier": "S-1-12-1-1125490246-1095841596-3433610628-1172557442",
|
|
155
|
+
"theme": null,
|
|
156
|
+
"visibility": "Public",
|
|
157
|
+
"onPremisesProvisioningErrors": []
|
|
158
|
+
}
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
</TabItem>
|
|
162
|
+
<TabItem value="Text">
|
|
163
|
+
|
|
164
|
+
```text
|
|
165
|
+
classification : null
|
|
166
|
+
createdDateTime : 2023-06-01T20:16:56Z
|
|
167
|
+
creationOptions : []
|
|
168
|
+
deletedDateTime : null
|
|
169
|
+
description : This is the Contoso Finance Group. Please come here and check out the latest news, posts, files, and more.
|
|
170
|
+
displayName : Finance
|
|
171
|
+
expirationDateTime : null
|
|
172
|
+
groupTypes : ["Unified"]
|
|
173
|
+
id : 1b21f2fa-a104-45a9-b6f4-5348c2c695d5
|
|
174
|
+
isAssignableToRole : null
|
|
175
|
+
mail : finance@contoso.onmicrosoft.com
|
|
176
|
+
mailEnabled : true
|
|
177
|
+
mailNickname : finance
|
|
178
|
+
membershipRule : null
|
|
179
|
+
membershipRuleProcessingState: null
|
|
180
|
+
onPremisesDomainName : null
|
|
181
|
+
onPremisesLastSyncDateTime : null
|
|
182
|
+
onPremisesNetBiosName : null
|
|
183
|
+
onPremisesProvisioningErrors : []
|
|
184
|
+
onPremisesSamAccountName : null
|
|
185
|
+
onPremisesSecurityIdentifier : null
|
|
186
|
+
onPremisesSyncEnabled : null
|
|
187
|
+
preferredDataLocation : null
|
|
188
|
+
preferredLanguage : null
|
|
189
|
+
proxyAddresses : ["SMTP:finance@contoso.onmicrosoft.com"]
|
|
190
|
+
renewedDateTime : 2023-06-01T20:16:56Z
|
|
191
|
+
resourceBehaviorOptions : []
|
|
192
|
+
resourceProvisioningOptions : []
|
|
193
|
+
securityEnabled : false
|
|
194
|
+
securityIdentifier : S-1-12-1-455209722-1168744708-1213461686-3583362754
|
|
195
|
+
theme : null
|
|
196
|
+
visibility : Public
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
</TabItem>
|
|
200
|
+
<TabItem value="CSV">
|
|
201
|
+
|
|
202
|
+
```csv
|
|
203
|
+
id,createdDateTime,description,displayName,mail,mailEnabled,mailNickname,renewedDateTime,securityEnabled,securityIdentifier,visibility
|
|
204
|
+
62b7b02f-ea88-4e9a-a763-410067bae20e,2023-06-01T20:17:45Z,"This is the Contoso Finance Group. Please come here and check out the latest news, posts, files, and more.",Finance,finance@contoso.onmicrosoft.com,1,finance,2023-06-01T20:17:45Z,,S-1-12-1-1656205359-1318775432-4285351-249739879,Public
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
</TabItem>
|
|
208
|
+
<TabItem value="Markdown">
|
|
209
|
+
|
|
210
|
+
```md
|
|
211
|
+
# aad o365group add --displayName "Finance" --description "This is the Contoso Finance Group. Please come here and check out the latest news, posts, files, and more." --mailNickname "finance"
|
|
212
|
+
|
|
213
|
+
Date: 2023-06-01
|
|
214
|
+
|
|
215
|
+
## Finance (ff99b38f-0a4b-4fbb-a034-b86988061e6d)
|
|
216
|
+
|
|
217
|
+
Property | Value
|
|
218
|
+
---------|-------
|
|
219
|
+
id | ff99b38f-0a4b-4fbb-a034-b86988061e6d
|
|
220
|
+
createdDateTime | 2023-06-01T20:18:30Z
|
|
221
|
+
description | This is the Contoso Finance Group. Please come here and check out the latest news, posts, files, and more.
|
|
222
|
+
displayName | Finance
|
|
223
|
+
mail | finance@contoso.onmicrosoft.com
|
|
224
|
+
mailEnabled | true
|
|
225
|
+
mailNickname | finance
|
|
226
|
+
renewedDateTime | 2023-06-01T20:18:30Z
|
|
227
|
+
securityEnabled | false
|
|
228
|
+
securityIdentifier | S-1-12-1-4288263055-1337657931-1773679776-1830684296
|
|
229
|
+
visibility | Public
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
</TabItem>
|
|
233
|
+
</Tabs>
|