mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 02:40:29 -07:00
change exponential_buckets growth_factor from integer to double
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
561dddd734
commit
7325797fd8
2 changed files with 4 additions and 4 deletions
|
@ -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'))),
|
||||
),
|
||||
|
|
|
@ -257,7 +257,7 @@ resources:
|
|||
description:
|
||||
- Must be greater than 1.
|
||||
returned: success
|
||||
type: int
|
||||
type: str
|
||||
scale:
|
||||
description:
|
||||
- Must be greater than 0.
|
||||
|
|
Loading…
Add table
Reference in a new issue