change exponential_buckets growth_factor from integer to double

Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
megan07 2019-12-09 15:56:37 +00:00 committed by Modular Magician
parent 561dddd734
commit 7325797fd8
2 changed files with 4 additions and 4 deletions

View file

@ -208,7 +208,7 @@ options:
description:
- Must be greater than 1.
required: false
type: int
type: str
scale:
description:
- Must be greater than 0.
@ -456,7 +456,7 @@ bucketOptions:
description:
- Must be greater than 1.
returned: success
type: int
type: str
scale:
description:
- Must be greater than 0.
@ -525,7 +525,7 @@ def main():
options=dict(
linear_buckets=dict(type='dict', options=dict(num_finite_buckets=dict(type='int'), width=dict(type='int'), offset=dict(type='str'))),
exponential_buckets=dict(
type='dict', options=dict(num_finite_buckets=dict(type='int'), growth_factor=dict(type='int'), scale=dict(type='str'))
type='dict', options=dict(num_finite_buckets=dict(type='int'), growth_factor=dict(type='str'), scale=dict(type='str'))
),
explicit_buckets=dict(type='dict', options=dict(bounds=dict(required=True, type='list', elements='str'))),
),

View file

@ -257,7 +257,7 @@ resources:
description:
- Must be greater than 1.
returned: success
type: int
type: str
scale:
description:
- Must be greater than 0.