Skip to content

Commit

Permalink
Merge pull request #68 from gimmetm/feature/vnks-nodecount-optional
Browse files Browse the repository at this point in the history
update: vnks
  • Loading branch information
jj41 authored May 20, 2024
2 parents 770bf1a + c8e5f7d commit ce0e570
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion services/vnks/docs/NodePoolCreationBody.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | ***string** | 노드풀 이름 | [default to null]
**NodeCount** | ***int32** | 등록 될 노드 개수 | [default to null]
**NodeCount** | ***int32** | 등록 될 노드 개수 | [optional] [default to null]
**SubnetNo** | ***int32** | Subnet 번호 | [optional] [default to null]
**SubnetNoList** | **[]\*int32** | Subnet 번호 | [optional] [default to null]
**SoftwareCode** | ***string** | Server image code | [optional] [default to null]
Expand Down
2 changes: 1 addition & 1 deletion services/vnks/node_pool_creation_body.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type NodePoolCreationBody struct {
Name *string `json:"name"`

// 등록 될 노드 개수
NodeCount *int32 `json:"nodeCount"`
NodeCount *int32 `json:"nodeCount,omitempty"`

// Subnet 번호
SubnetNo *int32 `json:"subnetNo,omitempty"`
Expand Down

0 comments on commit ce0e570

Please sign in to comment.