|
67 | 67 |
|
68 | 68 |
|
69 | 69 | class CloudPlatformValues(Enum): |
70 | | - ALIBABA_CLOUD_ECS: Final = "alibaba_cloud_ecs" |
| 70 | + ALIBABA_CLOUD_ECS = "alibaba_cloud_ecs" |
71 | 71 | """Alibaba Cloud Elastic Compute Service.""" |
72 | | - ALIBABA_CLOUD_FC: Final = "alibaba_cloud_fc" |
| 72 | + ALIBABA_CLOUD_FC = "alibaba_cloud_fc" |
73 | 73 | """Alibaba Cloud Function Compute.""" |
74 | | - ALIBABA_CLOUD_OPENSHIFT: Final = "alibaba_cloud_openshift" |
| 74 | + ALIBABA_CLOUD_OPENSHIFT = "alibaba_cloud_openshift" |
75 | 75 | """Red Hat OpenShift on Alibaba Cloud.""" |
76 | | - AWS_EC2: Final = "aws_ec2" |
| 76 | + AWS_EC2 = "aws_ec2" |
77 | 77 | """AWS Elastic Compute Cloud.""" |
78 | | - AWS_ECS: Final = "aws_ecs" |
| 78 | + AWS_ECS = "aws_ecs" |
79 | 79 | """AWS Elastic Container Service.""" |
80 | | - AWS_EKS: Final = "aws_eks" |
| 80 | + AWS_EKS = "aws_eks" |
81 | 81 | """AWS Elastic Kubernetes Service.""" |
82 | | - AWS_LAMBDA: Final = "aws_lambda" |
| 82 | + AWS_LAMBDA = "aws_lambda" |
83 | 83 | """AWS Lambda.""" |
84 | | - AWS_ELASTIC_BEANSTALK: Final = "aws_elastic_beanstalk" |
| 84 | + AWS_ELASTIC_BEANSTALK = "aws_elastic_beanstalk" |
85 | 85 | """AWS Elastic Beanstalk.""" |
86 | | - AWS_APP_RUNNER: Final = "aws_app_runner" |
| 86 | + AWS_APP_RUNNER = "aws_app_runner" |
87 | 87 | """AWS App Runner.""" |
88 | | - AWS_OPENSHIFT: Final = "aws_openshift" |
| 88 | + AWS_OPENSHIFT = "aws_openshift" |
89 | 89 | """Red Hat OpenShift on AWS (ROSA).""" |
90 | | - AZURE_VM: Final = "azure_vm" |
| 90 | + AZURE_VM = "azure_vm" |
91 | 91 | """Azure Virtual Machines.""" |
92 | | - AZURE_CONTAINER_APPS: Final = "azure_container_apps" |
| 92 | + AZURE_CONTAINER_APPS = "azure_container_apps" |
93 | 93 | """Azure Container Apps.""" |
94 | | - AZURE_CONTAINER_INSTANCES: Final = "azure_container_instances" |
| 94 | + AZURE_CONTAINER_INSTANCES = "azure_container_instances" |
95 | 95 | """Azure Container Instances.""" |
96 | | - AZURE_AKS: Final = "azure_aks" |
| 96 | + AZURE_AKS = "azure_aks" |
97 | 97 | """Azure Kubernetes Service.""" |
98 | | - AZURE_FUNCTIONS: Final = "azure_functions" |
| 98 | + AZURE_FUNCTIONS = "azure_functions" |
99 | 99 | """Azure Functions.""" |
100 | | - AZURE_APP_SERVICE: Final = "azure_app_service" |
| 100 | + AZURE_APP_SERVICE = "azure_app_service" |
101 | 101 | """Azure App Service.""" |
102 | | - AZURE_OPENSHIFT: Final = "azure_openshift" |
| 102 | + AZURE_OPENSHIFT = "azure_openshift" |
103 | 103 | """Azure Red Hat OpenShift.""" |
104 | | - GCP_BARE_METAL_SOLUTION: Final = "gcp_bare_metal_solution" |
| 104 | + GCP_BARE_METAL_SOLUTION = "gcp_bare_metal_solution" |
105 | 105 | """Google Bare Metal Solution (BMS).""" |
106 | | - GCP_COMPUTE_ENGINE: Final = "gcp_compute_engine" |
| 106 | + GCP_COMPUTE_ENGINE = "gcp_compute_engine" |
107 | 107 | """Google Cloud Compute Engine (GCE).""" |
108 | | - GCP_CLOUD_RUN: Final = "gcp_cloud_run" |
| 108 | + GCP_CLOUD_RUN = "gcp_cloud_run" |
109 | 109 | """Google Cloud Run.""" |
110 | | - GCP_KUBERNETES_ENGINE: Final = "gcp_kubernetes_engine" |
| 110 | + GCP_KUBERNETES_ENGINE = "gcp_kubernetes_engine" |
111 | 111 | """Google Cloud Kubernetes Engine (GKE).""" |
112 | | - GCP_CLOUD_FUNCTIONS: Final = "gcp_cloud_functions" |
| 112 | + GCP_CLOUD_FUNCTIONS = "gcp_cloud_functions" |
113 | 113 | """Google Cloud Functions (GCF).""" |
114 | | - GCP_APP_ENGINE: Final = "gcp_app_engine" |
| 114 | + GCP_APP_ENGINE = "gcp_app_engine" |
115 | 115 | """Google Cloud App Engine (GAE).""" |
116 | | - GCP_OPENSHIFT: Final = "gcp_openshift" |
| 116 | + GCP_OPENSHIFT = "gcp_openshift" |
117 | 117 | """Red Hat OpenShift on Google Cloud.""" |
118 | | - IBM_CLOUD_OPENSHIFT: Final = "ibm_cloud_openshift" |
| 118 | + IBM_CLOUD_OPENSHIFT = "ibm_cloud_openshift" |
119 | 119 | """Red Hat OpenShift on IBM Cloud.""" |
120 | | - TENCENT_CLOUD_CVM: Final = "tencent_cloud_cvm" |
| 120 | + TENCENT_CLOUD_CVM = "tencent_cloud_cvm" |
121 | 121 | """Tencent Cloud Cloud Virtual Machine (CVM).""" |
122 | | - TENCENT_CLOUD_EKS: Final = "tencent_cloud_eks" |
| 122 | + TENCENT_CLOUD_EKS = "tencent_cloud_eks" |
123 | 123 | """Tencent Cloud Elastic Kubernetes Service (EKS).""" |
124 | | - TENCENT_CLOUD_SCF: Final = "tencent_cloud_scf" |
| 124 | + TENCENT_CLOUD_SCF = "tencent_cloud_scf" |
125 | 125 | """Tencent Cloud Serverless Cloud Function (SCF).""" |
126 | 126 |
|
127 | 127 |
|
128 | 128 | class CloudProviderValues(Enum): |
129 | | - ALIBABA_CLOUD: Final = "alibaba_cloud" |
| 129 | + ALIBABA_CLOUD = "alibaba_cloud" |
130 | 130 | """Alibaba Cloud.""" |
131 | | - AWS: Final = "aws" |
| 131 | + AWS = "aws" |
132 | 132 | """Amazon Web Services.""" |
133 | | - AZURE: Final = "azure" |
| 133 | + AZURE = "azure" |
134 | 134 | """Microsoft Azure.""" |
135 | | - GCP: Final = "gcp" |
| 135 | + GCP = "gcp" |
136 | 136 | """Google Cloud Platform.""" |
137 | | - HEROKU: Final = "heroku" |
| 137 | + HEROKU = "heroku" |
138 | 138 | """Heroku Platform as a Service.""" |
139 | | - IBM_CLOUD: Final = "ibm_cloud" |
| 139 | + IBM_CLOUD = "ibm_cloud" |
140 | 140 | """IBM Cloud.""" |
141 | | - TENCENT_CLOUD: Final = "tencent_cloud" |
| 141 | + TENCENT_CLOUD = "tencent_cloud" |
142 | 142 | """Tencent Cloud.""" |
0 commit comments