From 3e84a6806645f427e23d6c3be80d568cdef5d5b5 Mon Sep 17 00:00:00 2001 From: Ziqi Huang Date: Thu, 18 Aug 2022 18:51:53 -0700 Subject: [PATCH] Move CloudProvider entity to OSS (#419) Summary: Pull Request resolved: https://github.com/facebookresearch/fbpcp/pull/419 We need to use the CloudProvider entity in the customized container project; but it's currently intern, move it to OSS in this diff. Reviewed By: zhuang-93 Differential Revision: D38848828 fbshipit-source-id: 9d5ba3a1ca353c88d6b349c7bb9676e27014bd1e --- fbpcp/entity/cloud_provider.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 fbpcp/entity/cloud_provider.py diff --git a/fbpcp/entity/cloud_provider.py b/fbpcp/entity/cloud_provider.py new file mode 100644 index 00000000..cee38b84 --- /dev/null +++ b/fbpcp/entity/cloud_provider.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python3 +# Copyright (c) Meta Platforms, Inc. and affiliates. +# +# This source code is licensed under the MIT license found in the +# LICENSE file in the root directory of this source tree. + +# pyre-strict +from enum import Enum + + +class CloudProvider(Enum): + AWS = "AWS" + GCP = "GCP" + AZURE = "AZURE"