]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/rook/rook-client-python/rook_client/edgefs/s3.py
import quincy beta 17.1.0
[ceph.git] / ceph / src / pybind / mgr / rook / rook-client-python / rook_client / edgefs / s3.py
diff --git a/ceph/src/pybind/mgr/rook/rook-client-python/rook_client/edgefs/s3.py b/ceph/src/pybind/mgr/rook/rook-client-python/rook_client/edgefs/s3.py
deleted file mode 100644 (file)
index a2995e1..0000000
+++ /dev/null
@@ -1,95 +0,0 @@
-"""
-This file is automatically generated.
-Do not modify.
-"""
-
-try:
-    from typing import Any, Optional, Union, List
-except ImportError:
-    pass
-
-from .._helper import _omit, CrdObject, CrdObjectList, CrdClass
-
-class Spec(CrdObject):
-    _properties = [
-        ('instances', 'instances', int, True, False)
-    ]        
-
-    def __init__(self,
-                 instances,  # type: int
-                 ):
-        super(Spec, self).__init__(
-            instances=instances,
-        )
-
-    @property
-    def instances(self):
-        # type: () -> int
-        return self._property_impl('instances')
-    
-    @instances.setter
-    def instances(self, new_val):
-        # type: (int) -> None
-        self._instances = new_val
-
-
-class S3(CrdClass):
-    _properties = [
-        ('apiVersion', 'apiVersion', str, True, False),
-        ('metadata', 'metadata', object, True, False),
-        ('status', 'status', object, False, False),
-        ('spec', 'spec', Spec, True, False)
-    ]        
-
-    def __init__(self,
-                 apiVersion,  # type: str
-                 metadata,  # type: Any
-                 spec,  # type: Spec
-                 status=_omit,  # type: Optional[Any]
-                 ):
-        super(S3, self).__init__(
-            apiVersion=apiVersion,
-            metadata=metadata,
-            spec=spec,
-            status=status,
-        )
-
-    @property
-    def apiVersion(self):
-        # type: () -> str
-        return self._property_impl('apiVersion')
-    
-    @apiVersion.setter
-    def apiVersion(self, new_val):
-        # type: (str) -> None
-        self._apiVersion = new_val
-    
-    @property
-    def metadata(self):
-        # type: () -> Any
-        return self._property_impl('metadata')
-    
-    @metadata.setter
-    def metadata(self, new_val):
-        # type: (Any) -> None
-        self._metadata = new_val
-    
-    @property
-    def status(self):
-        # type: () -> Any
-        return self._property_impl('status')
-    
-    @status.setter
-    def status(self, new_val):
-        # type: (Optional[Any]) -> None
-        self._status = new_val
-    
-    @property
-    def spec(self):
-        # type: () -> Spec
-        return self._property_impl('spec')
-    
-    @spec.setter
-    def spec(self, new_val):
-        # type: (Spec) -> None
-        self._spec = new_val