github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/vnas/nas_volume_instance_rating.go (about)

     1  /*
     2   * vnas
     3   *
     4   * VPC NAS 관련 API<br/>https://ncloud.apigw.ntruss.com/vnas/v2
     5   *
     6   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     7   */
     8  
     9  package vnas
    10  
    11  type NasVolumeInstanceRating struct {
    12  
    13  	// 측정시간
    14  RatingTime *string `json:"ratingTime;,omitempty"`
    15  
    16  	// 볼륨사이즈
    17  VolumeSize *int64 `json:"volumeSize;,omitempty"`
    18  
    19  	// 볼륨사용사이즈
    20  VolumeUseSize *int64 `json:"volumeUseSize;,omitempty"`
    21  
    22  	// 볼륨사용비율
    23  VolumeUseRatio *float32 `json:"volumeUseRatio;,omitempty"`
    24  
    25  	// 평균볼륨사이즈
    26  AverageVolumeSize *int64 `json:"averageVolumeSize;,omitempty"`
    27  
    28  	// 평균볼륨사용사이즈
    29  AverageVolumeUseSize *int64 `json:"averageVolumeUseSize;,omitempty"`
    30  
    31  	// 평균볼륨사용비율
    32  AverageVolumeUseRatio *float32 `json:"averageVolumeUseRatio;,omitempty"`
    33  
    34  	// 최대볼륨사용사이즈
    35  MaxVolumeUseSize *int64 `json:"maxVolumeUseSize;,omitempty"`
    36  
    37  	// 최대볼륨사용비율
    38  MaxVolumeUseRatio *float32 `json:"maxVolumeUseRatio;,omitempty"`
    39  
    40  	// 최소볼륨사용사이즈
    41  MinVolumeUseSize *int64 `json:"minVolumeUseSize;,omitempty"`
    42  
    43  	// 최소볼륨사용비율
    44  MinVolumeUseRatio *float32 `json:"minVolumeUseRatio;,omitempty"`
    45  
    46  	// 스냅샷볼륨사이즈
    47  SnapshotVolumeSize *int64 `json:"snapshotVolumeSize;,omitempty"`
    48  
    49  	// 스냅샷볼륨사용사이즈
    50  SnapshotVolumeUseSize *int64 `json:"snapshotVolumeUseSize;,omitempty"`
    51  
    52  	// 스냅샷볼륨사용비율
    53  SnapshotVolumeUseRatio *float32 `json:"snapshotVolumeUseRatio;,omitempty"`
    54  
    55  	// 평균스냅샷볼륨사이즈
    56  SnapshotAverageVolumeSize *int64 `json:"snapshotAverageVolumeSize;,omitempty"`
    57  
    58  	// 평균스냅샷볼륨사용사이즈
    59  SnapshotAverageVolumeUseSize *int64 `json:"snapshotAverageVolumeUseSize;,omitempty"`
    60  
    61  	// 평균스냅샷볼륨사용비율
    62  SnapshotAverageVolumeUseRatio *float32 `json:"snapshotAverageVolumeUseRatio;,omitempty"`
    63  
    64  	// 최대스냅샷볼륨사용사이즈
    65  SnapshotMaxVolumeUseSize *int64 `json:"snapshotMaxVolumeUseSize;,omitempty"`
    66  
    67  	// 최대스냅샷볼륨사용비율
    68  SnapshotMaxVolumeUseRatio *float32 `json:"snapshotMaxVolumeUseRatio;,omitempty"`
    69  
    70  	// 최소스냅샷볼륨사용사이즈
    71  SnapshotMinVolumeUseSize *int64 `json:"snapshotMinVolumeUseSize;,omitempty"`
    72  
    73  	// 최소스냅샷볼륨사용비율
    74  SnapshotMinVolumeUseRatio *float32 `json:"snapshotMinVolumeUseRatio;,omitempty"`
    75  }