Skip to content

Commit

Permalink
Merge pull request #64 from youngmn/fix/vredis_omit
Browse files Browse the repository at this point in the history
fix(vredis): Change vredis request parameter type
  • Loading branch information
lee-yongtak authored Feb 8, 2024
2 parents 58278c9 + b1ad861 commit 177f4b3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions services/vredis/create_cloud_redis_instance_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,11 @@ type CreateCloudRedisInstanceRequest struct {
SubnetNo *string `json:"subnetNo"`

// 공공 Ncloud에만 사용되는 필드
CloudRedisUserName *string `json:"cloudRedisUserName"`
CloudRedisUserName *string `json:"cloudRedisUserName,omitempty"`

// 공공 Ncloud에만 사용되는 필드
CloudRedisUserPassword *string `json:"cloudRedisUserPassword"`
CloudRedisUserPassword *string `json:"cloudRedisUserPassword,omitempty"`

// Engine Version
EngineVersionCode *string `json:"engineVersionCode,omitempty"`
}

0 comments on commit 177f4b3

Please sign in to comment.