diff --git a/cloudcafe/cloudkeep/cli/clients.py b/cloudcafe/cloudkeep/cli/clients.py index deb4516d..732b0d3a 100644 --- a/cloudcafe/cloudkeep/cli/clients.py +++ b/cloudcafe/cloudkeep/cli/clients.py @@ -169,13 +169,6 @@ class OrdersCLIClient(BarbicanCLIClient): entity_type=BarbicanEntityType.ORDER, hateos_ref=hateos_ref) -class VerificationCLIClient(BarbicanCLIClient): - - def verify(self): - return self._action_command(BarbicanEntityType.VERIFICATION, 'verify') - - class BarbicanEntityType(object): SECRET = 'secret' ORDER = 'order' - VERIFICATION = 'verification' diff --git a/cloudcafe/cloudkeep/common/states.py b/cloudcafe/cloudkeep/common/states.py index fab27d2e..5a6c2c5b 100644 --- a/cloudcafe/cloudkeep/common/states.py +++ b/cloudcafe/cloudkeep/common/states.py @@ -22,7 +22,3 @@ class SecretsStates(object): class OrdersStates(SecretsStates): PENDING = "PENDING" - - -class VerificationsStates(SecretsStates): - PENDING = "PENDING" diff --git a/cloudcafe/cloudkeep/config.py b/cloudcafe/cloudkeep/config.py index db400b7f..d60c4ff5 100644 --- a/cloudcafe/cloudkeep/config.py +++ b/cloudcafe/cloudkeep/config.py @@ -162,23 +162,3 @@ class CloudKeepRBACRoleConfig(ConfigSectionInterface): @property def audit_password(self): return self.get('audit_password') - - -class CloudKeepVerificationsConfig(ConfigSectionInterface): - SECTION_NAME = 'cloudkeep-verifications' - - @property - def resource_type(self): - return self.get("resource_type") - - @property - def resource_ref(self): - return self.get("resource_ref") - - @property - def resource_action(self): - return self.get("resource_action") - - @property - def impersonation_allowed(self): - return self.get("impersonation_allowed") diff --git a/configs/cloudkeep/reference.config b/configs/cloudkeep/reference.config index 7b1afdba..e4bdcbb7 100644 --- a/configs/cloudkeep/reference.config +++ b/configs/cloudkeep/reference.config @@ -42,12 +42,6 @@ payload=testdata payload_content_type=application/octet-stream payload_content_encoding=base64 -[cloudkeep-verifications] -resource_ref= -resource_type=image -resource_action=vm_attach -impersonation_allowed=False - [cloudkeep-orders] name=secretname algorithm=aes @@ -68,4 +62,4 @@ token= repo=cloudkeep/barbican [LAUNCHPAD] -project=barbican \ No newline at end of file +project=barbican