Skip to content

Commit 84cfbf1

Browse files
author
jiyungSong
committed
feat: add supported_providers in metadata
1 parent 221697e commit 84cfbf1

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.cloudwatch']
15+
_REQUIRED_PROVIDERS = ['aws']
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=_REQUIRED_PROVIDERS)
2022

2123

2224
class PluginInitResponse(Model):

0 commit comments

Comments
 (0)