mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
* Added ForeNew on labels * set ForceNew on key & key_value * added a test Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
b84fd05309
commit
840a4db65e
1 changed files with 3 additions and 1 deletions
|
@ -726,7 +726,9 @@ class MetricLabelsArray(object):
|
|||
return remove_nones_from_dict({u'key': item.get('key'), u'description': item.get('description'), u'valueType': item.get('value_type')})
|
||||
|
||||
def _response_from_item(self, item):
|
||||
return remove_nones_from_dict({u'key': item.get(u'key'), u'description': item.get(u'description'), u'valueType': item.get(u'valueType')})
|
||||
return remove_nones_from_dict(
|
||||
{u'key': self.module.params.get('key'), u'description': item.get(u'description'), u'valueType': self.module.params.get('value_type')}
|
||||
)
|
||||
|
||||
|
||||
class MetricBucketoptions(object):
|
||||
|
|
Loading…
Add table
Reference in a new issue