mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
Co-authored-by: upodroid <cy@borg.dev> Co-authored-by: Cameron Thornton <camthornton@google.com> Signed-off-by: Modular Magician <magic-modules@google.com> Co-authored-by: upodroid <cy@borg.dev> Co-authored-by: Cameron Thornton <camthornton@google.com>
This commit is contained in:
parent
fe79a8b1e1
commit
ff2ac11bea
2 changed files with 29 additions and 6 deletions
|
@ -71,9 +71,15 @@ options:
|
||||||
type: str
|
type: str
|
||||||
node_count:
|
node_count:
|
||||||
description:
|
description:
|
||||||
- The number of nodes allocated to this instance.
|
- The number of nodes allocated to this instance. At most one of either node_count
|
||||||
|
or processing_units can be present in terraform. .
|
||||||
|
required: false
|
||||||
|
type: int
|
||||||
|
processing_units:
|
||||||
|
description:
|
||||||
|
- The number of processing units allocated to this instance. At most one of processing_units
|
||||||
|
or node_count can be present in terraform. .
|
||||||
required: false
|
required: false
|
||||||
default: '1'
|
|
||||||
type: int
|
type: int
|
||||||
labels:
|
labels:
|
||||||
description:
|
description:
|
||||||
|
@ -174,7 +180,14 @@ displayName:
|
||||||
type: str
|
type: str
|
||||||
nodeCount:
|
nodeCount:
|
||||||
description:
|
description:
|
||||||
- The number of nodes allocated to this instance.
|
- The number of nodes allocated to this instance. At most one of either node_count
|
||||||
|
or processing_units can be present in terraform. .
|
||||||
|
returned: success
|
||||||
|
type: int
|
||||||
|
processingUnits:
|
||||||
|
description:
|
||||||
|
- The number of processing units allocated to this instance. At most one of processing_units
|
||||||
|
or node_count can be present in terraform. .
|
||||||
returned: success
|
returned: success
|
||||||
type: int
|
type: int
|
||||||
labels:
|
labels:
|
||||||
|
@ -207,7 +220,8 @@ def main():
|
||||||
name=dict(required=True, type='str'),
|
name=dict(required=True, type='str'),
|
||||||
config=dict(required=True, type='str'),
|
config=dict(required=True, type='str'),
|
||||||
display_name=dict(required=True, type='str'),
|
display_name=dict(required=True, type='str'),
|
||||||
node_count=dict(default=1, type='int'),
|
node_count=dict(type='int'),
|
||||||
|
processing_units=dict(type='int'),
|
||||||
labels=dict(type='dict'),
|
labels=dict(type='dict'),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -262,6 +276,7 @@ def resource_to_request(module):
|
||||||
u'config': module.params.get('config'),
|
u'config': module.params.get('config'),
|
||||||
u'displayName': module.params.get('display_name'),
|
u'displayName': module.params.get('display_name'),
|
||||||
u'nodeCount': module.params.get('node_count'),
|
u'nodeCount': module.params.get('node_count'),
|
||||||
|
u'processingUnits': module.params.get('processing_units'),
|
||||||
u'labels': module.params.get('labels'),
|
u'labels': module.params.get('labels'),
|
||||||
}
|
}
|
||||||
return_vals = {}
|
return_vals = {}
|
||||||
|
@ -335,6 +350,7 @@ def response_to_hash(module, response):
|
||||||
u'config': module.params.get('config'),
|
u'config': module.params.get('config'),
|
||||||
u'displayName': response.get(u'displayName'),
|
u'displayName': response.get(u'displayName'),
|
||||||
u'nodeCount': response.get(u'nodeCount'),
|
u'nodeCount': response.get(u'nodeCount'),
|
||||||
|
u'processingUnits': response.get(u'processingUnits'),
|
||||||
u'labels': response.get(u'labels'),
|
u'labels': response.get(u'labels'),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -386,7 +402,7 @@ def resource_to_update(module):
|
||||||
instance = resource_to_request(module)
|
instance = resource_to_request(module)
|
||||||
instance['name'] = "projects/{0}/instances/{1}".format(module.params['project'], module.params['name'])
|
instance['name'] = "projects/{0}/instances/{1}".format(module.params['project'], module.params['name'])
|
||||||
instance['config'] = "projects/{0}/instanceConfigs/{1}".format(module.params['project'], instance['config'])
|
instance['config'] = "projects/{0}/instanceConfigs/{1}".format(module.params['project'], instance['config'])
|
||||||
return {'instance': instance, 'fieldMask': "'name' ,'config' ,'displayName' ,'nodeCount' ,'labels'"}
|
return {'instance': instance, 'fieldMask': "'name' ,'config' ,'displayName' ,'nodeCount' ,'processingUnits' ,'labels'"}
|
||||||
|
|
||||||
|
|
||||||
def decode_response(response, module):
|
def decode_response(response, module):
|
||||||
|
|
|
@ -128,7 +128,14 @@ resources:
|
||||||
type: str
|
type: str
|
||||||
nodeCount:
|
nodeCount:
|
||||||
description:
|
description:
|
||||||
- The number of nodes allocated to this instance.
|
- The number of nodes allocated to this instance. At most one of either node_count
|
||||||
|
or processing_units can be present in terraform. .
|
||||||
|
returned: success
|
||||||
|
type: int
|
||||||
|
processingUnits:
|
||||||
|
description:
|
||||||
|
- The number of processing units allocated to this instance. At most one of
|
||||||
|
processing_units or node_count can be present in terraform. .
|
||||||
returned: success
|
returned: success
|
||||||
type: int
|
type: int
|
||||||
labels:
|
labels:
|
||||||
|
|
Loading…
Add table
Reference in a new issue