Skip to content

Commit 205eddd

Browse files
authored
Merge pull request #3 from jihyungSong/master
Add supported_providers in metadata
2 parents d11beb5 + 73f6a16 commit 205eddd

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/spaceone/monitoring/model/data_source_response_model.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@
1212
]
1313

1414
_REQUIRED_KEYS = ['data.google_cloud_monitoring']
15+
_SUPPORTED_PROVIDERS = ['google_cloud']
1516

1617

1718
class PluginMetadata(Model):
1819
supported_stat = ListType(StringType, default=_SUPPORTED_STAT)
1920
required_keys = ListType(StringType, default=_REQUIRED_KEYS)
21+
supported_providers = ListType(StringType, default=_SUPPORTED_PROVIDERS)
2022

2123

2224
class PluginInitResponse(Model):

0 commit comments

Comments
 (0)