archive.go raw
1 // Copyright 2022-2025 The sacloud/iaas-api-go Authors
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 package naked
16
17 import (
18 "time"
19
20 "github.com/sacloud/iaas-api-go/types"
21 )
22
23 // Archive アーカイブ
24 type Archive struct {
25 ID types.ID `json:",omitempty" yaml:"id,omitempty" structs:",omitempty"`
26 Name string `json:",omitempty" yaml:"name,omitempty" structs:",omitempty"`
27 Description string `yaml:"description"`
28 Tags types.Tags `yaml:"tags"`
29 Icon *Icon `json:",omitempty" yaml:"icon,omitempty" structs:",omitempty"`
30 CreatedAt *time.Time `json:",omitempty" yaml:"created_at,omitempty" structs:",omitempty"`
31 ModifiedAt *time.Time `json:",omitempty" yaml:"modified_at,omitempty" structs:",omitempty"`
32 Availability types.EAvailability `json:",omitempty" yaml:"availability,omitempty" structs:",omitempty"`
33 DisplayOrder int `json:",omitempty" yaml:"display_order,omitempty" structs:",omitempty"`
34 ServiceClass string `json:",omitempty" yaml:"service_class,omitempty" structs:",omitempty"`
35 SizeMB int `json:",omitempty" yaml:"size_mb,omitempty" structs:",omitempty"`
36 MigratedMB int `json:",omitempty" yaml:"migrated_mb,omitempty" structs:",omitempty"`
37 JobStatus *MigrationJobStatus `json:",omitempty" yaml:"job_status,omitempty" structs:",omitempty"`
38 Plan *DiskPlan `json:",omitempty" yaml:"plan,omitempty" structs:",omitempty"`
39 SourceDisk *Disk `json:",omitempty" yaml:"source_disk,omitempty" structs:",omitempty"`
40 SourceArchive *Archive `json:",omitempty" yaml:"source_archive,omitempty" structs:",omitempty"`
41 BundleInfo *BundleInfo `json:",omitempty" yaml:"bundle_info,omitempty" structs:",omitempty"`
42 Storage *Storage `json:",omitempty" yaml:"storage,omitempty" structs:",omitempty"`
43 Scope types.EScope `json:",omitempty" yaml:"scope,omitempty" structs:",omitempty"`
44 OriginalArchive *OriginalArchive `json:",omitempty" yaml:"original_archive,omitempty" structs:",omitempty"`
45 SourceInfo *SourceArchive `json:",omitempty" yaml:"source_info,omitempty" structs:",omitempty"`
46 SourceSharedKey types.ArchiveShareKey `json:",omitempty" yaml:"source_shared_key,omitempty" structs:",omitempty"`
47 }
48
49 // SourceArchive 他ゾーンから転送したアーカイブの情報
50 type SourceArchive struct {
51 ArchiveUnderZone *SourceArchiveInfo `json:",omitempty" yaml:"archive_under_zone,omitempty" structs:",omitempty"`
52 }
53
54 // SourceArchiveInfo 他ゾーンから転送したアーカイブの情報
55 type SourceArchiveInfo struct {
56 ID types.ID `json:",omitempty" yaml:"id,omitempty" structs:",omitempty"`
57 Account *struct {
58 ID types.ID `json:",omitempty" yaml:"id,omitempty" structs:",omitempty"`
59 } `json:",omitempty" yaml:"account,omitempty" structs:",omitempty"`
60 Zone *struct {
61 ID types.ID `json:",omitempty" yaml:"id,omitempty" structs:",omitempty"`
62 Name string `json:",omitempty" yaml:"name,omitempty" structs:",omitempty"`
63 } `json:",omitempty" yaml:"zone,omitempty" structs:",omitempty"`
64 }
65
66 // OriginalArchive オリジナルアーカイブ
67 type OriginalArchive struct {
68 ID types.ID `json:",omitempty" yaml:"id,omitempty" structs:",omitempty"`
69 }
70
71 // SharedArchiveCreateRequest 共有アーカイブ作成リクエスト
72 type SharedArchiveCreateRequest struct {
73 Shared bool `yaml:"shared"`
74 }
75
76 // ArchiveShareInfo 共有アーカイブ作成レスポンス
77 type ArchiveShareInfo struct {
78 SharedKey types.ArchiveShareKey `yaml:"shared_key"`
79 }
80