mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-09 04:10:27 -07:00
* cloud_tasks_queue - add logging config * add example for cloud task fields * fix tab vs spaces in rb files. Added required to solitary nested field Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
c0f747b910
commit
94c2d40382
2 changed files with 59 additions and 0 deletions
|
@ -151,6 +151,19 @@ options:
|
||||||
of maxBackoff up to maxAttempts times.
|
of maxBackoff up to maxAttempts times.
|
||||||
required: false
|
required: false
|
||||||
type: int
|
type: int
|
||||||
|
stackdriver_logging_config:
|
||||||
|
description:
|
||||||
|
- Configuration options for writing logs to Stackdriver Logging.
|
||||||
|
required: false
|
||||||
|
type: dict
|
||||||
|
suboptions:
|
||||||
|
sampling_ratio:
|
||||||
|
description:
|
||||||
|
- Specifies the fraction of operations to write to Stackdriver Logging.
|
||||||
|
- This field may contain any value between 0.0 and 1.0, inclusive. 0.0 is
|
||||||
|
the default and means that no operations are logged.
|
||||||
|
required: true
|
||||||
|
type: str
|
||||||
status:
|
status:
|
||||||
description:
|
description:
|
||||||
- The current state of the queue.
|
- The current state of the queue.
|
||||||
|
@ -336,6 +349,19 @@ retryConfig:
|
||||||
- The last time this queue was purged.
|
- The last time this queue was purged.
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
type: str
|
||||||
|
stackdriverLoggingConfig:
|
||||||
|
description:
|
||||||
|
- Configuration options for writing logs to Stackdriver Logging.
|
||||||
|
returned: success
|
||||||
|
type: complex
|
||||||
|
contains:
|
||||||
|
samplingRatio:
|
||||||
|
description:
|
||||||
|
- Specifies the fraction of operations to write to Stackdriver Logging.
|
||||||
|
- This field may contain any value between 0.0 and 1.0, inclusive. 0.0 is the
|
||||||
|
default and means that no operations are logged.
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
status:
|
status:
|
||||||
description:
|
description:
|
||||||
- The current state of the queue.
|
- The current state of the queue.
|
||||||
|
@ -387,6 +413,7 @@ def main():
|
||||||
max_doublings=dict(type='int'),
|
max_doublings=dict(type='int'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
stackdriver_logging_config=dict(type='dict', options=dict(sampling_ratio=dict(required=True, type='str'))),
|
||||||
status=dict(type='str'),
|
status=dict(type='str'),
|
||||||
location=dict(required=True, type='str'),
|
location=dict(required=True, type='str'),
|
||||||
)
|
)
|
||||||
|
@ -448,6 +475,8 @@ def updateMask(request, response):
|
||||||
update_mask.append('rateLimits')
|
update_mask.append('rateLimits')
|
||||||
if request.get('retryConfig') != response.get('retryConfig'):
|
if request.get('retryConfig') != response.get('retryConfig'):
|
||||||
update_mask.append('retryConfig')
|
update_mask.append('retryConfig')
|
||||||
|
if request.get('stackdriverLoggingConfig') != response.get('stackdriverLoggingConfig'):
|
||||||
|
update_mask.append('stackdriverLoggingConfig')
|
||||||
if request.get('status') != response.get('status'):
|
if request.get('status') != response.get('status'):
|
||||||
update_mask.append('status')
|
update_mask.append('status')
|
||||||
return ','.join(update_mask)
|
return ','.join(update_mask)
|
||||||
|
@ -465,6 +494,7 @@ def resource_to_request(module):
|
||||||
u'appEngineRoutingOverride': QueueAppengineroutingoverride(module.params.get('app_engine_routing_override', {}), module).to_request(),
|
u'appEngineRoutingOverride': QueueAppengineroutingoverride(module.params.get('app_engine_routing_override', {}), module).to_request(),
|
||||||
u'rateLimits': QueueRatelimits(module.params.get('rate_limits', {}), module).to_request(),
|
u'rateLimits': QueueRatelimits(module.params.get('rate_limits', {}), module).to_request(),
|
||||||
u'retryConfig': QueueRetryconfig(module.params.get('retry_config', {}), module).to_request(),
|
u'retryConfig': QueueRetryconfig(module.params.get('retry_config', {}), module).to_request(),
|
||||||
|
u'stackdriverLoggingConfig': QueueStackdriverloggingconfig(module.params.get('stackdriver_logging_config', {}), module).to_request(),
|
||||||
}
|
}
|
||||||
return_vals = {}
|
return_vals = {}
|
||||||
for k, v in request.items():
|
for k, v in request.items():
|
||||||
|
@ -534,6 +564,7 @@ def response_to_hash(module, response):
|
||||||
u'appEngineRoutingOverride': QueueAppengineroutingoverride(response.get(u'appEngineRoutingOverride', {}), module).from_response(),
|
u'appEngineRoutingOverride': QueueAppengineroutingoverride(response.get(u'appEngineRoutingOverride', {}), module).from_response(),
|
||||||
u'rateLimits': QueueRatelimits(response.get(u'rateLimits', {}), module).from_response(),
|
u'rateLimits': QueueRatelimits(response.get(u'rateLimits', {}), module).from_response(),
|
||||||
u'retryConfig': QueueRetryconfig(response.get(u'retryConfig', {}), module).from_response(),
|
u'retryConfig': QueueRetryconfig(response.get(u'retryConfig', {}), module).from_response(),
|
||||||
|
u'stackdriverLoggingConfig': QueueStackdriverloggingconfig(response.get(u'stackdriverLoggingConfig', {}), module).from_response(),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -651,5 +682,20 @@ class QueueRetryconfig(object):
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class QueueStackdriverloggingconfig(object):
|
||||||
|
def __init__(self, request, module):
|
||||||
|
self.module = module
|
||||||
|
if request:
|
||||||
|
self.request = request
|
||||||
|
else:
|
||||||
|
self.request = {}
|
||||||
|
|
||||||
|
def to_request(self):
|
||||||
|
return remove_nones_from_dict({u'samplingRatio': self.request.get('sampling_ratio')})
|
||||||
|
|
||||||
|
def from_response(self):
|
||||||
|
return remove_nones_from_dict({u'samplingRatio': self.request.get(u'samplingRatio')})
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -235,6 +235,19 @@ resources:
|
||||||
- The last time this queue was purged.
|
- The last time this queue was purged.
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
type: str
|
||||||
|
stackdriverLoggingConfig:
|
||||||
|
description:
|
||||||
|
- Configuration options for writing logs to Stackdriver Logging.
|
||||||
|
returned: success
|
||||||
|
type: complex
|
||||||
|
contains:
|
||||||
|
samplingRatio:
|
||||||
|
description:
|
||||||
|
- Specifies the fraction of operations to write to Stackdriver Logging.
|
||||||
|
- This field may contain any value between 0.0 and 1.0, inclusive. 0.0 is
|
||||||
|
the default and means that no operations are logged.
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
status:
|
status:
|
||||||
description:
|
description:
|
||||||
- The current state of the queue.
|
- The current state of the queue.
|
||||||
|
|
Loading…
Add table
Reference in a new issue