Organization command has three sub commands which helps you to retrieve the organization information, health of the particular organization at that time and retrieve license file.
In order to quickly update cloud plugin, you can just remove and add it by executing the following in terminal.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remove XM Cloud Plugin | |
dotnet sitecore plugin remove -n Sitecore.DevEx.Extensibility.XMCloud | |
# Add XM Cloud Plugin with the latest version | |
dotnet sitecore plugin add -n Sitecore.DevEx.Extensibility.XMCloud |
cloud organization info
This sub command helps you to retrieve the currently logged in Organization details.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xmcloud-nehem> dotnet sitecore cloud organization info --organization-id org_xxxxxxxxxxxxxxxx | |
Id : org_xxxxxxxxxxxxxxxx | |
Name : epam-xxxx | |
Region : eus | |
CreatedAt : 5/8/2023 11:45:50 PM | |
CreatedBy : Automation | |
Tier : Corporate |
cloud organization health
This sub command helps you to display the status of the organization. You can view the health in Sitecore Deploy Portal --> System Health.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xmcloud-nehem> dotnet sitecore cloud organization health --organization-id org_xxxxxxxxxxxxx | |
Organization resources health status: Healthy |
cloud organization license
This sub command helps you to download the organization's license. This can be used for your local development.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xmcloud-nehem> dotnet sitecore cloud organization license --organization-id org_xxxxxxxxxxxxxxxx | |
Organization license has been saved to C:\Project\GitHub\xmcloud-nehem. |