createCloudMongoDbInstance
    • PDF

    createCloudMongoDbInstance

    • PDF

    Article summary

    Available in VPC

    Overview

    Create a Cloud DB for MongoDB instance.

    Request

    Request parameters

    Parameter nameRequiredTypeRestrictionsDescription
    regionCodeNoString- Region code
    Determine the Region in which the Cloud DB for MongoDB instance will be created
    regionCode can be obtained through the getRegionList action
    Default: Select the first Region of the getRegionList search result
    vpcNoYesString- VPC number
    Determine the VPC in which the Cloud DB for MongoDB instance will be created
    vpcNo can be obtained through the getCloudMongoDbTargetVpcList action
    cloudMongoDbImageProductCodeNoString- Cloud DB for MongoDB image product code
    cloudMongoDbImageProductCode can be obtained through the getCloudMongoDbImageProductList action's productCode
    It is created with the default value if not entered
    memberProductCodeNoString- Cloud DB for MongoDB member server product code
    - Determine the server specifications for the Cloud DB for MongoDB instance to create
    memberProductCode can be obtained when calling the getCloudMongoDbProductList action by setting its infraResourceDetailTypeCode to "MNGOD"
    Default: The minimum specification is selected, where the minimum specification is based on 1. memory and 2. CPU
    arbiterProductCodeNoString- Cloud DB for MongoDB arbiter server product code
    Determine the server specifications for the Cloud DB for MongoDB instance to create
    arbiterProductCode can be obtained when calling the getCloudMongoDbProductList action by setting its infraResourceDetailTypeCode to "ARBIT"
    Default: The minimum specification is selected, where the minimum specification is based on 1. memory and 2. CPU
    mongosProductCodeNoString- Cloud DB for MongoDB mongos server product code
    Determine the server specifications for the Cloud DB for MongoDB instance to create
    mongosProductCode can be obtained when calling the getCloudMongoDbProductList action by setting its infraResourceDetailTypeCode to "MNGOS"
    Default: The minimum specification is selected, where the minimum specification is based on 1. memory and 2. CPU
    configProductCodeNoString- Cloud DB for MongoDB config server product code
    Determine the server specifications for the Cloud DB for MongoDB instance to create
    configProductCode can be obtained when calling the getCloudMongoDbProductList action by setting its infraResourceDetailTypeCode to "CFGSV"
    Default: The minimum specification is selected, where the minimum specification is based on 1. memory and 2. CPU
    shardCountNoIntegerMin: 2, Max: 3- Number of shards for Cloud DB for MongoDB
    - When using sharding, you can select the number of shards
    - For the initial configuration, you can only select 2 or 3
    - Enter only when the ClusterType is sharding
    Default: 2
    memberServerCountNoIntegerMin: 2, Max: 7- Number of Cloud DB for MongoDB member servers
    You can select the number of member servers per replica set (for each shard in case of sharding)
    You can select between 3 to 7, including arbiter servers
    Default: 3
    arbiterServerCountNoIntegerMin: 0, Max: 1- Number of Cloud DB for MongoDB arbiter servers
    You can select the number of arbiter servers per replica set (for each shard in case of sharding)
    You can only select a maximum of one arbiter server
    Arbiter servers are provided with the minimum configurable specifications
    Default: 0
    mongosServerCountNoIntegerMin:2, Max: 5- Number of Cloud DB for MongoDB mongos servers
    When using sharding, you can select the number of mongos servers
    Default: 2
    configServerCountNoIntegerMin:3, Max: 3- Number of Cloud DB for MongoDB config servers
    When using sharding, you can select the number of config servers
    Default: 3
    cloudMongoDbUserNameYesStringOnly English letters, numbers, underscores (_), and hyphens (-) are allowed. It must start with an English letter
    Min: 4, Max: 16
    - Access user name
    You need to enter the username to use as the DB admin
    cloudMongoDbUserPasswordYesStringIt must have at least one English letter, one special character, and one number.
    \ ` & + \ " ' / and spaces can't be used in passwords
    Min: 8, Max: 20
    - Access password
    Enter the user's password to be used for the DB admin
    backupFileRetentionPeriodNoIntegerMin: 1, Max: 30- Backup file retention period
    Backup is performed every day, and the backup file is stored in a separate backup storage
    Fees are charged for the space you use
    Default: 1 (1 day)
    backupTimeNoStringHHMM format. You can only enter in increments of 15 minutes- Backup time
    Set the time when the backup runs
    Default: 02:00
    dataStorageTypeCodeNoString- Data storage type code
    The data storage type can't be changed after installation
    Options:
    When the generationCode of cloudMongoDbImageProductCode is G2: SSD | HDD
    When the generationCode of cloudMongoDbImageProductCode is G3: CB1
    Default:
    When the generationCode of cloudMongoDbImageProductCode is G2: SSD
    When the generationCode of cloudMongoDbImageProductCode is G3: CB1
    memberPortNoInteger10000 ~ 65535- Cloud DB for MongoDB member server port
    TCP port number for the MongoDB member server access
    "27017," which is the default port number of MongoDB, is not recommended for use due to its security vulnerabilities
    Default: 17017
    mongosPortNoInteger10000 ~ 65535- Cloud DB for MongoDB mongos server port
    TCP port number for the MongoDB mongos server access
    "27017," which is the default port number of MongoDB, is not recommended for use due to its security vulnerabilities
    Default: 17017
    configPortNoInteger10000 ~ 65535- Cloud DB for MongoDB config server port
    TCP port number for the MongoDB config server access
    "27017," which is the default port number of MongoDB, is not recommended for use due to its security vulnerabilities
    Default: 17017
    cloudMongoDbServiceNameYesStringOnly Korean and English letters, numbers, and the special character (-) are allowed
    Using duplicates or changing it after creation is not possible
    Min: 3, Max: 15
    - Cloud DB for MongoDB service name
    Enter the group name of the DB server
    Specify the replica set name with the entered DB service name
    cloudMongoDbServerNamePrefixYesStringOnly lowercase English letters, numbers, and hyphens (-) can be used
    The first character must be an English letter, and the last character must be an English letter or a number
    Min: 3, Max: 15
    - Cloud DB for MongoDB server name prefix
    It is created with additional random text after the passed cloudMongoDbServerNamePrefix value to prevent host name duplicates
    subnetNoYesString- Subnet subnet
    Determine the subnet for the Cloud DB for MongoDB instance to create
    subnetNo can be obtained through the getCloudMongoDbTargetSubnetList action
    Subscription to public domains can only be done in a DB server created in public subnet
    Subnet migrations are not available after creating the Cloud DB for MongoDB instance
    compressCodeNoString- Cloud DB for MongoDB data compression algorithm code
    You can select data compression algorithms provided by MongoDB
    Options: SNPP | ZLIB | ZSTD | NONE
    Default: SNPP
    clusterTypeCodeYesString- Cloud DB for MongoDB cluster type code
    Determine the cluster type of Cloud DB for MongoDB
    Options: STAND_ALONE | SINGLE_REPLICA_SET | SHARDED_CLUSTER
    engineVersionCodeNoString- Engine version
    It can be obtained through the getCloudMongoDbImageProductList action
    If not entered, it is created with the latest version currently available
    outputNoString- Respond result's format type
    Options: xml | json
    Default: json

    Response

    Response data type

    • CloudMongoDbInstanceList type
    CloudMongoDbInstanceList extends CommonResponse
    private Integer totalRows;
    private List<CloudMongoDbInstance> cloudMongoDbInstanceList = new ArrayList<>();
    CloudMongoDbInstance
    private String cloudMongoDbInstanceNo;
    private String cloudMongoDbServiceName;
    private String cloudMongoDbInstanceStatusName;
    private CommonCode cloudMongoDbInstanceStatus;
    private CommonCode cloudMongoDbInstanceOperation;
    private String generationCode;
    private String engineVersion;
    private CommonCode licence;
    private Integer backupFileRetentionPeriod;
    private String backupTime;
    private Integer backupParallel;
    private String cloudMongoDbImageProductCode;
    private AccessControlGroupNoList accessControlGroupNoList;
    private Integer shardCount;
    private CommonCode compress;
    private CommonCode clusterType;
    private Integer memberPort;
    private Integer arbiterPort;
    private Integer mongosPort;
    private Integer configPort;
    private Date createDate;
    private List<CloudMongoDbInstance> cloudMongoDbServerInstanceList;
    AccessControlGroupNoList
    private List<String> accessControlGroupNoList = new ArrayList<>();
    CloudMongoDbServerInstance
    private String cloudMongoDbServerInstanceNo;
    private String cloudMongoDbServerName;
    private CommonCode clusterRole;
    private String cloudMongoDbServerInstanceStatusName;
    private CommonCode cloudMongoDbServerInstanceStatus;
    private CommonCode cloudMongoDbServerInstanceOperation;
    private CommonCode cloudMongoDbServerRole;
    private String regionCode;
    private String vpcNo;
    private String subnetNo;
    private Date createDate;
    private Date uptime;
    private String zoneCode;
    private String privateDomain;
    private String publicDomain;
    private Long memorySize;
    private Integer cpuCount;
    private Long dataStorageSize;
    private Long usedDataStorageSize;
    private String cloudMongoDbProductCode;
    private String replicaSetName;
    private CommonCode dataStorageType;

    Examples

    Request example

    ncloud vmongodb createCloudMongoDbInstance --regionCode KR --vpcNo ****83 --cloudMongoDbImageProductCode SW.VMGDB.LNX64.CNTOS.0708.MNGDB.402.CE.B050 --memberProductCode SVR.VMGDB.MNGOD.HICPU.C002.M004.NET.SSD.B050.G002 --mongosProductCode SVR.VMGDB.MNGOS.STAND.C002.M008.NET.SSD.B050.G002 --arbiterProductCode SVR.VMGDB.ARBIT.HICPU.C002.M004.NET.SSD.B050.G002 --configProductCode SVR.VMGDB.CFGSV.STAND.C002.M008.NET.SSD.B050.G002 --shardCount 2 --backupFileRetentionPeriod 1 --backupTime 02:00 --cloudMongoDbServiceName test-*** --cloudMongoDbServerNamePrefix test-*** --cloudMongoDbUserName test --cloudMongoDbUserPassword **** --compressCode SNPP  --dataStorageTypeCode SSD  --memberPort 17017 --mongosPort 17017 --configPort 17017 --memberServerCount 3 --arbiterServerCount 0 --mongosServerCount 2 --configServerCount 3 --subnetNo ****91 --clusterTypeCode SHARDED_CLUSTER
    

    Response example

    {
      "createCloudMongoDbInstanceResponse": {
        "requestId": "c1361a49-7093-4e7c-8923-c1ec91536d19",
        "returnCode": 0,
        "returnMessage": "success",
        "totalRows": 1,
        "cloudMongoDbInstanceList": [
          {
            "cloudMongoDbInstanceNo": "178***",
            "cloudMongoDbServiceName": "mongodb-****",
            "cloudMongoDbInstanceStatusName": "creating",
            "cloudMongoDbInstanceStatus": {
              "code": "INIT",
              "codeName": "CLOUD DATABASE(VPC) Init State"
            },
            "cloudMongoDbInstanceOperation": {
              "code": "CREAT",
              "codeName": "CLOUD DATABASE(VPC) Creat OP"
            },
            "generationCode": "G2",
            "clusterType": {
              "code": "SHARDED_CLUSTER",
              "codeName": "Sharding"
            },
            "engineVersion": "MongoDB 4.2 Community Edition",
            "licence": {
              "code": "OEM",
              "codeName": "Original Equipment Manufacturer"
            },
            "backupFileRetentionPeriod": 1,
            "backupTime": "02:00",
            "backupParallel": "10",
            "cloudMongoDbImageProductCode": "SW.VMGDB.LNX64.CNTOS.0708.MNGDB.402.CE.B050",
            "accessControlGroupNoList": [
              "****48"
            ],
            "shardCount": 2,
            "compress": {
              "code": "SNPP",
              "codeName": "Snappy"
            },
            "memberPort": 17017,
            "arbiterPort": 17017,
            "mongosPort": 17017,
            "configPort": 17017,
            "createDate": "2022-05-26T19:00:00+0900",
            "cloudMongoDbServerInstanceList": [
              {
                "cloudMongoDbServerName": "mg-****310-ab001-vyi",
                "clusterRole": {
                  "code": "SHARD",
                  "codeName": "Shard Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "AB",
                  "codeName": "Arbiter"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 4294967296,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "cloudMongoDbProductCode": "SVR.VMGDB.ARBIT.HICPU.C002.M004.NET.SSD.B050.G002",
                "replicaSetName": "mongodb-****",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              },
              {
                "cloudMongoDbServerName": "mg-****310-ab002-vyj",
                "clusterRole": {
                  "code": "SHARD",
                  "codeName": "Shard Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "AB",
                  "codeName": "Arbiter"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 4294967296,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "cloudMongoDbProductCode": "SVR.VMGDB.ARBIT.HICPU.C002.M004.NET.SSD.B050.G002",
                "replicaSetName": "mongodb-****",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              },
              {
                "cloudMongoDbServerName": "mg-****310-c-vwo",
                "clusterRole": {
                  "code": "CONFIG_SERVER",
                  "codeName": "Config Server Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "C",
                  "codeName": "Config Server"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 8589934592,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "usedDataStorageSize": 899700352,
                "cloudMongoDbProductCode": "SVR.VMGDB.CFGSV.STAND.C002.M008.NET.SSD.B050.G002",
                "replicaSetName": "mongodb-****",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              },
              {
                "cloudMongoDbServerName": "mg-****310-c-vwp",
                "clusterRole": {
                  "code": "CONFIG_SERVER",
                  "codeName": "Config Server Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "C",
                  "codeName": "Config Server"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 8589934592,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "usedDataStorageSize": 898524800,
                "cloudMongoDbProductCode": "SVR.VMGDB.CFGSV.STAND.C002.M008.NET.SSD.B050.G002",
                "replicaSetName": "mongodb-****",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              },
              {
                "cloudMongoDbServerName": "mg-****310-c-vwq",
                "clusterRole": {
                  "code": "CONFIG_SERVER",
                  "codeName": "Config Server Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "C",
                  "codeName": "Config Server"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 8589934592,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "usedDataStorageSize": 898262656,
                "cloudMongoDbProductCode": "SVR.VMGDB.CFGSV.STAND.C002.M008.NET.SSD.B050.G002",
                "replicaSetName": "mongodb-****",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              },
              {
                "cloudMongoDbServerName": "mg-****310-mb001-vwg",
                "clusterRole": {
                  "code": "SHARD",
                  "codeName": "Shard Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "MB",
                  "codeName": "Member"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 8589934592,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "usedDataStorageSize": 902620800,
                "cloudMongoDbProductCode": "SVR.VMGDB.MNGOD.STAND.C002.M008.NET.SSD.B050.G002",
                "replicaSetName": "mongodb-****",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              },
              {
                "cloudMongoDbServerName": "mg-****310-mb001-vwh",
                "clusterRole": {
                  "code": "SHARD",
                  "codeName": "Shard Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "MB",
                  "codeName": "Member"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 8589934592,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "usedDataStorageSize": 896349824,
                "cloudMongoDbProductCode": "SVR.VMGDB.MNGOD.STAND.C002.M008.NET.SSD.B050.G002",
                "replicaSetName": "mongodb-****",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              },
              {
                "cloudMongoDbServerName": "mg-****310-mb001-vwi",
                "clusterRole": {
                  "code": "SHARD",
                  "codeName": "Shard Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "MB",
                  "codeName": "Member"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 8589934592,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "usedDataStorageSize": 897825152,
                "cloudMongoDbProductCode": "SVR.VMGDB.MNGOD.STAND.C002.M008.NET.SSD.B050.G002",
                "replicaSetName": "mongodb-****",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              },
              {
                "cloudMongoDbServerName": "mg-****310-mb002-vwj",
                "clusterRole": {
                  "code": "SHARD",
                  "codeName": "Shard Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "MB",
                  "codeName": "Member"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 8589934592,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "usedDataStorageSize": 899758464,
                "cloudMongoDbProductCode": "SVR.VMGDB.MNGOD.STAND.C002.M008.NET.SSD.B050.G002",
                "replicaSetName": "mongodb-****",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              },
              {
                "cloudMongoDbServerName": "mg-****310-mb002-vwk",
                "clusterRole": {
                  "code": "SHARD",
                  "codeName": "Shard Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "MB",
                  "codeName": "Member"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 8589934592,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "usedDataStorageSize": 896248192,
                "cloudMongoDbProductCode": "SVR.VMGDB.MNGOD.STAND.C002.M008.NET.SSD.B050.G002",
                "replicaSetName": "mongodb-****",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              },
              {
                "cloudMongoDbServerName": "mg-****310-mb002-vwl",
                "clusterRole": {
                  "code": "SHARD",
                  "codeName": "Shard Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "MB",
                  "codeName": "Member"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 8589934592,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "usedDataStorageSize": 896227712,
                "cloudMongoDbProductCode": "SVR.VMGDB.MNGOD.STAND.C002.M008.NET.SSD.B050.G002",
                "replicaSetName": "mongodb-****",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              },
              {
                "cloudMongoDbServerName": "mg-****310-rt-vwm",
                "clusterRole": {
                  "code": "MONGOS",
                  "codeName": "Mongos Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "RT",
                  "codeName": "Mongos"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 8589934592,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "usedDataStorageSize": 578430592,
                "cloudMongoDbProductCode": "SVR.VMGDB.MNGOS.STAND.C002.M008.NET.SSD.B050.G002",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              },
              {
                "cloudMongoDbServerName": "mg-****310-rt-vwn",
                "clusterRole": {
                  "code": "MONGOS",
                  "codeName": "Mongos Cluster Role - Cloud DB For MongoDB"
                },
                "cloudMongoDbServerInstanceStatusName": "creating",
                "cloudMongoDbServerInstanceStatus": {
                  "code": "PEND",
                  "codeName": "CLOUD DATABASE(VPC) Server Pending State"
                },
                "cloudMongoDbServerInstanceOperation": {
                  "code": "CREAT",
                  "codeName": "CLOUD DATABASE(VPC) Server Create OP"
                },
                "cloudMongoDbServerRole": {
                  "code": "RT",
                  "codeName": "Mongos"
                },
                "regionCode": "KR",
                "vpcNo": "****87",
                "subnetNo": "****32",
                "createDate": "2022-05-26T19:00:00+0900",
                "uptime": "2022-05-26T19:10:00+0900",
                "zoneCode": "KR-1",
                "memorySize": 8589934592,
                "cpuCount": 2,
                "dataStorageSize": 10737418240,
                "usedDataStorageSize": 578564928,
                "cloudMongoDbProductCode": "SVR.VMGDB.MNGOS.STAND.C002.M008.NET.SSD.B050.G002",
                "dataStorageType": {
                  "code": "SSD",
                  "codeName": "SSD"
                }
              }
            ]
          }
        ]
      }
    }
    
    
    <createCloudMongoDbInstanceResponse>
        <requestId>c1361a49-7093-4e7c-8923-c1ec91536d19</requestId>
        <returnCode>0</returnCode>
        <returnMessage>success</returnMessage>
        <totalRows>1</totalRows>
        <cloudMongoDbInstanceList>
            <cloudMongoDbInstance>
                <cloudMongoDbInstanceNo>178***</cloudMongoDbInstanceNo>
                <cloudMongoDbServiceName>mongodb-****</cloudMongoDbServiceName>
                <cloudMongoDbInstanceStatusName>creating</cloudMongoDbInstanceStatusName>
                <cloudMongoDbInstanceStatus>
                    <code>INIT</code>
                    <codeName>CLOUD DATABASE(VPC) Init State</codeName>
                </cloudMongoDbInstanceStatus>
                <cloudMongoDbInstanceOperation>
                    <code>CREAT</code>
                    <codeName>CLOUD DATABASE(VPC) Creat OP</codeName>
                </cloudMongoDbInstanceOperation>
                <generationCode>G2</generationCode>
                <clusterType>
                    <code>SHARDED_CLUSTER</code>
                    <codeName>Sharding</codeName>
                </clusterType>
                <engineVersion>MongoDB 4.2 Community Edition</engineVersion>
                <licence>
                    <code>OEM</code>
                    <codeName>Original Equipment Manufacturer</codeName>
                </licence>
                <backupFileRetentionPeriod>1</backupFileRetentionPeriod>
                <backupTime>02:00</backupTime>
                <backupParallel>10</backupParallel>
                <cloudMongoDbImageProductCode>SW.VMGDB.LNX64.CNTOS.0708.MNGDB.402.CE.B050</cloudMongoDbImageProductCode>
                <accessControlGroupNoList>
                    <accessControlGroupNo>****48</accessControlGroupNo>
                </accessControlGroupNoList>
                <shardCount>2</shardCount>
                <compress>
                    <code>SNPP</code>
                    <codeName>Snappy</codeName>
                </compress>
                <memberPort>17017</memberPort>
                <arbiterPort>17017</arbiterPort>
                <mongosPort>17017</mongosPort>
                <configPort>17017</configPort>
                <createDate>2022-05-26T19:00:00+0900</createDate>
                <cloudMongoDbServerInstanceList>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-ab001-vyi</cloudMongoDbServerName>
                        <clusterRole>
                            <code>SHARD</code>
                            <codeName>Shard Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>AB</code>
                            <codeName>Arbiter</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>4294967296</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.ARBIT.HICPU.C002.M004.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <replicaSetName>mongodb-****</replicaSetName>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-ab002-vyj</cloudMongoDbServerName>
                        <clusterRole>
                            <code>SHARD</code>
                            <codeName>Shard Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>AB</code>
                            <codeName>Arbiter</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>4294967296</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.ARBIT.HICPU.C002.M004.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <replicaSetName>mongodb-****</replicaSetName>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-c-vwo</cloudMongoDbServerName>
                        <clusterRole>
                            <code>CONFIG_SERVER</code>
                            <codeName>Config Server Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>C</code>
                            <codeName>Config Server</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>8589934592</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <usedDataStorageSize>899700352</usedDataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.CFGSV.STAND.C002.M008.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <replicaSetName>mongodb-****</replicaSetName>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-c-vwp</cloudMongoDbServerName>
                        <clusterRole>
                            <code>CONFIG_SERVER</code>
                            <codeName>Config Server Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>C</code>
                            <codeName>Config Server</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>8589934592</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <usedDataStorageSize>898524800</usedDataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.CFGSV.STAND.C002.M008.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <replicaSetName>mongodb-****</replicaSetName>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-c-vwq</cloudMongoDbServerName>
                        <clusterRole>
                            <code>CONFIG_SERVER</code>
                            <codeName>Config Server Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>C</code>
                            <codeName>Config Server</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>8589934592</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <usedDataStorageSize>898262656</usedDataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.CFGSV.STAND.C002.M008.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <replicaSetName>mongodb-****</replicaSetName>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-mb001-vwg</cloudMongoDbServerName>
                        <clusterRole>
                            <code>SHARD</code>
                            <codeName>Shard Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>MB</code>
                            <codeName>Member</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>8589934592</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <usedDataStorageSize>902620800</usedDataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.MNGOD.STAND.C002.M008.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <replicaSetName>mongodb-****</replicaSetName>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-mb001-vwh</cloudMongoDbServerName>
                        <clusterRole>
                            <code>SHARD</code>
                            <codeName>Shard Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>MB</code>
                            <codeName>Member</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>8589934592</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <usedDataStorageSize>896349824</usedDataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.MNGOD.STAND.C002.M008.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <replicaSetName>mongodb-****</replicaSetName>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-mb001-vwi</cloudMongoDbServerName>
                        <clusterRole>
                            <code>SHARD</code>
                            <codeName>Shard Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>MB</code>
                            <codeName>Member</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>8589934592</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <usedDataStorageSize>897825152</usedDataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.MNGOD.STAND.C002.M008.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <replicaSetName>mongodb-****</replicaSetName>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-mb002-vwj</cloudMongoDbServerName>
                        <clusterRole>
                            <code>SHARD</code>
                            <codeName>Shard Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>MB</code>
                            <codeName>Member</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>8589934592</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <usedDataStorageSize>899758464</usedDataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.MNGOD.STAND.C002.M008.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <replicaSetName>mongodb-****</replicaSetName>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-mb002-vwk</cloudMongoDbServerName>
                        <clusterRole>
                            <code>SHARD</code>
                            <codeName>Shard Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>MB</code>
                            <codeName>Member</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>8589934592</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <usedDataStorageSize>896248192</usedDataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.MNGOD.STAND.C002.M008.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <replicaSetName>mongodb-****</replicaSetName>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-mb002-vwl</cloudMongoDbServerName>
                        <clusterRole>
                            <code>SHARD</code>
                            <codeName>Shard Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>MB</code>
                            <codeName>Member</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>8589934592</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <usedDataStorageSize>896227712</usedDataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.MNGOD.STAND.C002.M008.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <replicaSetName>mongodb-****</replicaSetName>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-rt-vwm</cloudMongoDbServerName>
                        <clusterRole>
                            <code>MONGOS</code>
                            <codeName>Mongos Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>RT</code>
                            <codeName>Mongos</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>8589934592</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <usedDataStorageSize>578430592</usedDataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.MNGOS.STAND.C002.M008.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                    <cloudMongoDbServerInstance>
                        <cloudMongoDbServerName>mg-****310-rt-vwn</cloudMongoDbServerName>
                        <clusterRole>
                            <code>MONGOS</code>
                            <codeName>Mongos Cluster Role - Cloud DB For MongoDB</codeName>
                        </clusterRole>
                        <cloudMongoDbServerInstanceStatusName>creating</cloudMongoDbServerInstanceStatusName>
                        <cloudMongoDbServerInstanceStatus>
                            <code>PEND</code>
                            <codeName>CLOUD DATABASE(VPC) Server Pending State</codeName>
                        </cloudMongoDbServerInstanceStatus>
                        <cloudMongoDbServerInstanceOperation>
                            <code>CREAT</code>
                            <codeName>CLOUD DATABASE(VPC) Server Create OP</codeName>
                        </cloudMongoDbServerInstanceOperation>
                        <cloudMongoDbServerRole>
                            <code>RT</code>
                            <codeName>Mongos</codeName>
                        </cloudMongoDbServerRole>
                        <regionCode>KR</regionCode>
                        <vpcNo>****87</vpcNo>
                        <subnetNo>****32</subnetNo>
                        <createDate>2022-05-26T19:00:00+0900</createDate>
                        <uptime>2022-05-26T19:10:00+0900</uptime>
                        <zoneCode>KR-1</zoneCode>
                        <memorySize>8589934592</memorySize>
                        <cpuCount>2</cpuCount>
                        <dataStorageSize>10737418240</dataStorageSize>
                        <usedDataStorageSize>578564928</usedDataStorageSize>
                        <cloudMongoDbProductCode>SVR.VMGDB.MNGOS.STAND.C002.M008.NET.SSD.B050.G002</cloudMongoDbProductCode>
                        <dataStorageType>
                            <code>SSD</code>
                            <codeName>SSD</codeName>
                        </dataStorageType>
                    </cloudMongoDbServerInstance>
                </cloudMongoDbServerInstanceList>
            </cloudMongoDbInstance>
        </cloudMongoDbInstanceList>
    </createCloudMongoDbInstanceResponse>
    

    Was this article helpful?

    Changing your password will log you out immediately. Use the new password to log back in.
    First name must have atleast 2 characters. Numbers and special characters are not allowed.
    Last name must have atleast 1 characters. Numbers and special characters are not allowed.
    Enter a valid email
    Enter a valid password
    Your profile has been successfully updated.