Added ForceNew on labels (#4734) (#412)

* 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:
The Magician 2021-05-03 13:40:31 -07:00 committed by GitHub
parent b84fd05309
commit 840a4db65e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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):