Skip to content

Commit

Permalink
Merge pull request #58 from NaverCloudPlatform/fix-mongodb
Browse files Browse the repository at this point in the history
fix: chnage ConfigServerCount type to int32
  • Loading branch information
lee-yongtak authored Sep 27, 2023
2 parents 5ea6f41 + 68f8a5f commit db4e8a7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ package vmongodb
type ChangeCloudMongoDbConfigCountRequest struct {

// REGION코드
RegionCode *string `json:"regionCode,omitempty"`
RegionCode *string `json:"regionCode,omitempty"`

// CloudMongoDb 인스턴스번호
CloudMongoDbInstanceNo *string `json:"cloudMongoDbInstanceNo"`
CloudMongoDbInstanceNo *string `json:"cloudMongoDbInstanceNo"`

// Cloud DB for MongoDB config 서버 대수
ConfigServerCount *string `json:"configServerCount"`
ConfigServerCount *int32 `json:"configServerCount"`
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ type CreateCloudMongoDbInstanceRequest struct {
MongosServerCount *int32 `json:"mongosServerCount,omitempty"`

// CloudMongoDb Config 서버 대수
ConfigServerCount *string `json:"configServerCount,omitempty"`
ConfigServerCount *int32 `json:"configServerCount,omitempty"`

// CloudMongoDb User 이름
CloudMongoDbUserName *string `json:"cloudMongoDbUserName,omitempty"`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**RegionCode** | ***string** | REGION코드 | [optional] [default to null]
**CloudMongoDbInstanceNo** | ***string** | CloudMongoDb 인스턴스번호 | [default to null]
**ConfigServerCount** | ***string** | Cloud DB for MongoDB config 서버 대수 | [default to null]
**ConfigServerCount** | ***int32** | Cloud DB for MongoDB config 서버 대수 | [default to null]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Name | Type | Description | Notes
**MemberServerCount** | ***int32** | CloudMongoDb Member 서버 대수 | [optional] [default to null]
**ArbiterServerCount** | ***int32** | CloudMongoDb Arbiter 서버 대수 | [optional] [default to null]
**MongosServerCount** | ***int32** | CloudMongoDb Mongos 서버 대수 | [optional] [default to null]
**ConfigServerCount** | ***string** | CloudMongoDb Config 서버 대수 | [optional] [default to null]
**ConfigServerCount** | ***int32** | CloudMongoDb Config 서버 대수 | [optional] [default to null]
**BackupFileRetentionPeriod** | ***int32** | 백업파일보관기간 | [optional] [default to null]
**BackupTime** | ***string** | 백업시간 | [optional] [default to null]
**DataStorageTypeCode** | ***string** | 데이터 스토리지 타입 코드 | [optional] [default to null]
Expand Down

0 comments on commit db4e8a7

Please sign in to comment.