Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions waterbutler/providers/googlecloud/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ class BaseGoogleCloudMetadata(metadata.BaseMetadata, metaclass=abc.ABCMeta):
def provider(self) -> str:
return 'googlecloud'

@property
def id(self) -> str:
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add GoogleCloud to pass tests.

return self.path

@property
def path(self) -> str:
return self.build_path(self.raw.get('object_name', None))
Expand Down