Skip to content

Commit 73f6a16

Browse files
author
jiyungSong
committed
feat: add supported_providers in metadata
1 parent b5b7bdd commit 73f6a16

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)