1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* @Author: Jerry.Yang
* @Date: 2024-10-30 10:56:49
* @LastEditors: Jerry.Yang
* @LastEditTime: 2025-02-06 16:46:34
* @Description: operation name vpc
*/
/// Enum representing operation names for the Virtual Private Cloud (VPC) service.
/// This enum provides a type - safe way to define and refer to different operations
/// that can be performed on VPC resources. The `Debug` derive allows for easy debugging
/// by providing a default implementation of the `fmt::Debug` trait, enabling enum variants
/// to be printed in a human - readable format. The `Clone` derive allows creating copies
/// of the enum values.
/// Implementation of the `ToString` trait for the `OperationNameVpc` enum.
/// This implementation enables converting an `OperationNameVpc` instance into a string representation.
/// It is useful when passing the operation name as a parameter in API calls or for logging purposes.