-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* types.AutoScaleTriggerType * AutoScale: ScheduleTrigger
- Loading branch information
1 parent
b341d3c
commit a036f57
Showing
7 changed files
with
318 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright 2022-2023 The sacloud/iaas-api-go Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package types | ||
|
||
type EAutoScaleAction string | ||
|
||
// AutoScaleActions サーバプランCPUコミットメント | ||
var AutoScaleActions = struct { | ||
// Up . | ||
Up EAutoScaleAction | ||
// Down . | ||
Down EAutoScaleAction | ||
}{ | ||
Up: EAutoScaleAction("up"), | ||
Down: EAutoScaleAction("down"), | ||
} | ||
|
||
// String EAutoScaleActionの文字列表現 | ||
func (c EAutoScaleAction) String() string { | ||
return string(c) | ||
} | ||
|
||
// AutoScaleActionStrings サーバプランCPUコミットメントを表す文字列 | ||
var AutoScaleActionStrings = []string{"cpu", "router", "schedule"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// Copyright 2022-2023 The sacloud/iaas-api-go Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package types | ||
|
||
type EAutoScaleTriggerType string | ||
|
||
// AutoScaleTriggerTypes サーバプランCPUコミットメント | ||
var AutoScaleTriggerTypes = struct { | ||
// Default CPUトリガーがデフォルト | ||
Default EAutoScaleTriggerType | ||
// Standard 通常 | ||
CPU EAutoScaleTriggerType | ||
// DedicatedCPU コア専有 | ||
Router EAutoScaleTriggerType | ||
// DedicatedCPU コア専有 | ||
Schedule EAutoScaleTriggerType | ||
}{ | ||
Default: EAutoScaleTriggerType(""), | ||
CPU: EAutoScaleTriggerType("cpu"), | ||
Router: EAutoScaleTriggerType("router"), | ||
Schedule: EAutoScaleTriggerType("schedule"), | ||
} | ||
|
||
// String EAutoScaleTriggerTypeの文字列表現 | ||
func (c EAutoScaleTriggerType) String() string { | ||
return string(c) | ||
} | ||
|
||
// AutoScaleTriggerTypeStrings サーバプランCPUコミットメントを表す文字列 | ||
var AutoScaleTriggerTypeStrings = []string{"cpu", "router", "schedule"} |
Oops, something went wrong.