Top
Cloud Services Management V1.0.0 Operation Guide
FUJITSU Software

5.2.5 Platform Operation Commands

Command Name

fscsm_bizsystem

Format
fscsm_bizsystem create -file input-file
fscsm_bizsystem modify -file input-file
fscsm_bizsystem delete -bizsystemId PlatformID
fscsm_bizsystem export [-bizsystemId PlatformID | -orgId OrganizationID | -menuId MenuID] -file output-file
fscsm_bizsystem list [-orgId OrganizationID | -menuId MenuID]
Description

Performs registration, modification, deletion, and outputting of platform information.

Subcommands
create -file input-file

Registers platform information.

In input-file, enter the name of the file containing the platform information to be registered. For details on the format of the file, refer to "5.3.5 Platform Information".

modify -file input-file

Updates platform information. Only information for a single platform can be modified at one time.

In input-file, enter the name of the file containing the menu information to be modified. For details on the format of the file, refer to "5.3.5 Platform Information".

delete -bizsystemId PlatformID

Deletes platform information.

In PlatformID, specify the platform ID to be deleted.

export [-bizsystemId PlatformID | -orgId OrganizationID | -menuId MenuID] -file output-file

Outputs the platform information as an XML file.

All of PlatformID, OrganizationID, and MenuID can be omitted. However, it is possible to narrow down the target platform information by specifying one of them.

In PlatformID, OrganizationID, and MenuID, specify the platform ID, the organization ID, and the menu ID, respectively.

In output-file, specify the file name using a character string containing alphanumeric characters, hyphens, underscores, and periods. For details on the format of the file, refer to "5.3.5 Platform Information".

When the specified file already exists, an error occurs.

list [-orgId OrganizationID | -menuId MenuID]

Displays the registered platform information in the prompt window.

Both OrganizationID and MenuID can be omitted. However, it is possible to narrow down the target platform information by specifying one of them.

In OrganizationID and MenuID, specify the organization ID and the menu ID, respectively.

The following items are displayed in the ascending order of platform IDs.

  • Platform ID

  • Platform name

  • Organization ID

  • Menu ID


Example
  • When registering platform information

    >fscsm_bizsystem create -file addbizsys.xml<RETURN>
  • When modifying platform information

    >fscsm_bizsystem modify -file updbizsys.xml<RETURN>
  • When deleting the platform information whose platform ID is 533

    >fscsm_bizsystem delete -bizsystemId 533<RETURN>
  • When outputting the platform information whose platform ID is 533 as a file

    >fscsm_bizsystem export -bizsystemId 533 -file bizsysdata_533.xml<RETURN>
  • When outputting the platform information whose organization ID is 101 as a file

    >fscsm_bizsystem export -orgId 101 -file bizsysdata_A.xml<RETURN>
  • When outputting the platform information whose menu ID is aws-2015-001 as a file

    >fscsm_bizsystem export -menuId aws-2015-001 -file bizsysdata_AWS.xml<RETURN>
  • When outputting all platform information as a file

    >fscsm_bizsystem export -file bizsysdata_ALL.xml<RETURN>
  • When outputting the platform information whose organization ID is 101 to the screen

    >fscsm_bizsystem list -orgId 101<RETURN>
    bizSystemId         bizSystemName       orgId               menuId
    ----------------------------------------------------------------------------------------------
    501                 SystemA            101                 ror-2015-001
    502                 SystemB            101                 aws-2015-001
  • When outputting the platform information whose menu ID is aws-2015-001 to the screen

    >fscsm_bizsystem list -menuId aws-2015-001<RETURN>
    bizSystemId         bizSystemName       orgId               menuId
    ----------------------------------------------------------------------------------------------
    502                 SystemB            101                 aws-2015-001
    801                 SystemG            501                 aws-2015-001