mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
This change promotes custom_response_headers for google_compute_backend_service and google_compute_backend_bucket to GA. Signed-off-by: Gorka Lerchundi Osa glertxundi@gmail.com Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
fd1a361141
commit
9eadc4b7fc
4 changed files with 38 additions and 0 deletions
|
@ -73,6 +73,12 @@ options:
|
||||||
The actual headers served in responses will not be altered.'
|
The actual headers served in responses will not be altered.'
|
||||||
required: false
|
required: false
|
||||||
type: int
|
type: int
|
||||||
|
custom_response_headers:
|
||||||
|
description:
|
||||||
|
- Headers that the HTTP/S load balancer should add to proxied responses.
|
||||||
|
elements: str
|
||||||
|
required: false
|
||||||
|
type: list
|
||||||
description:
|
description:
|
||||||
description:
|
description:
|
||||||
- An optional textual description of the resource; provided by the client when
|
- An optional textual description of the resource; provided by the client when
|
||||||
|
@ -192,6 +198,11 @@ cdnPolicy:
|
||||||
actual headers served in responses will not be altered.'
|
actual headers served in responses will not be altered.'
|
||||||
returned: success
|
returned: success
|
||||||
type: int
|
type: int
|
||||||
|
customResponseHeaders:
|
||||||
|
description:
|
||||||
|
- Headers that the HTTP/S load balancer should add to proxied responses.
|
||||||
|
returned: success
|
||||||
|
type: list
|
||||||
creationTimestamp:
|
creationTimestamp:
|
||||||
description:
|
description:
|
||||||
- Creation timestamp in RFC3339 text format.
|
- Creation timestamp in RFC3339 text format.
|
||||||
|
@ -253,6 +264,7 @@ def main():
|
||||||
state=dict(default='present', choices=['present', 'absent'], type='str'),
|
state=dict(default='present', choices=['present', 'absent'], type='str'),
|
||||||
bucket_name=dict(required=True, type='str'),
|
bucket_name=dict(required=True, type='str'),
|
||||||
cdn_policy=dict(type='dict', options=dict(signed_url_cache_max_age_sec=dict(type='int'))),
|
cdn_policy=dict(type='dict', options=dict(signed_url_cache_max_age_sec=dict(type='int'))),
|
||||||
|
custom_response_headers=dict(type='list', elements='str'),
|
||||||
description=dict(type='str'),
|
description=dict(type='str'),
|
||||||
enable_cdn=dict(type='bool'),
|
enable_cdn=dict(type='bool'),
|
||||||
name=dict(required=True, type='str'),
|
name=dict(required=True, type='str'),
|
||||||
|
@ -310,6 +322,7 @@ def resource_to_request(module):
|
||||||
u'kind': 'compute#backendBucket',
|
u'kind': 'compute#backendBucket',
|
||||||
u'bucketName': module.params.get('bucket_name'),
|
u'bucketName': module.params.get('bucket_name'),
|
||||||
u'cdnPolicy': BackendBucketCdnpolicy(module.params.get('cdn_policy', {}), module).to_request(),
|
u'cdnPolicy': BackendBucketCdnpolicy(module.params.get('cdn_policy', {}), module).to_request(),
|
||||||
|
u'customResponseHeaders': module.params.get('custom_response_headers'),
|
||||||
u'description': module.params.get('description'),
|
u'description': module.params.get('description'),
|
||||||
u'enableCdn': module.params.get('enable_cdn'),
|
u'enableCdn': module.params.get('enable_cdn'),
|
||||||
u'name': module.params.get('name'),
|
u'name': module.params.get('name'),
|
||||||
|
@ -380,6 +393,7 @@ def response_to_hash(module, response):
|
||||||
return {
|
return {
|
||||||
u'bucketName': response.get(u'bucketName'),
|
u'bucketName': response.get(u'bucketName'),
|
||||||
u'cdnPolicy': BackendBucketCdnpolicy(response.get(u'cdnPolicy', {}), module).from_response(),
|
u'cdnPolicy': BackendBucketCdnpolicy(response.get(u'cdnPolicy', {}), module).from_response(),
|
||||||
|
u'customResponseHeaders': response.get(u'customResponseHeaders'),
|
||||||
u'creationTimestamp': response.get(u'creationTimestamp'),
|
u'creationTimestamp': response.get(u'creationTimestamp'),
|
||||||
u'description': response.get(u'description'),
|
u'description': response.get(u'description'),
|
||||||
u'enableCdn': response.get(u'enableCdn'),
|
u'enableCdn': response.get(u'enableCdn'),
|
||||||
|
|
|
@ -135,6 +135,11 @@ resources:
|
||||||
header. The actual headers served in responses will not be altered.'
|
header. The actual headers served in responses will not be altered.'
|
||||||
returned: success
|
returned: success
|
||||||
type: int
|
type: int
|
||||||
|
customResponseHeaders:
|
||||||
|
description:
|
||||||
|
- Headers that the HTTP/S load balancer should add to proxied responses.
|
||||||
|
returned: success
|
||||||
|
type: list
|
||||||
creationTimestamp:
|
creationTimestamp:
|
||||||
description:
|
description:
|
||||||
- Creation timestamp in RFC3339 text format.
|
- Creation timestamp in RFC3339 text format.
|
||||||
|
|
|
@ -352,6 +352,12 @@ options:
|
||||||
elements: str
|
elements: str
|
||||||
required: false
|
required: false
|
||||||
type: list
|
type: list
|
||||||
|
custom_response_headers:
|
||||||
|
description:
|
||||||
|
- Headers that the HTTP/S load balancer should add to proxied responses.
|
||||||
|
elements: str
|
||||||
|
required: false
|
||||||
|
type: list
|
||||||
description:
|
description:
|
||||||
description:
|
description:
|
||||||
- An optional description of this resource.
|
- An optional description of this resource.
|
||||||
|
@ -1000,6 +1006,11 @@ customRequestHeaders:
|
||||||
- Headers that the HTTP/S load balancer should add to proxied requests.
|
- Headers that the HTTP/S load balancer should add to proxied requests.
|
||||||
returned: success
|
returned: success
|
||||||
type: list
|
type: list
|
||||||
|
customResponseHeaders:
|
||||||
|
description:
|
||||||
|
- Headers that the HTTP/S load balancer should add to proxied responses.
|
||||||
|
returned: success
|
||||||
|
type: list
|
||||||
fingerprint:
|
fingerprint:
|
||||||
description:
|
description:
|
||||||
- Fingerprint of this resource. A hash of the contents stored in this object. This
|
- Fingerprint of this resource. A hash of the contents stored in this object. This
|
||||||
|
@ -1353,6 +1364,7 @@ def main():
|
||||||
),
|
),
|
||||||
connection_draining=dict(type='dict', options=dict(draining_timeout_sec=dict(default=300, type='int'))),
|
connection_draining=dict(type='dict', options=dict(draining_timeout_sec=dict(default=300, type='int'))),
|
||||||
custom_request_headers=dict(type='list', elements='str'),
|
custom_request_headers=dict(type='list', elements='str'),
|
||||||
|
custom_response_headers=dict(type='list', elements='str'),
|
||||||
description=dict(type='str'),
|
description=dict(type='str'),
|
||||||
enable_cdn=dict(type='bool'),
|
enable_cdn=dict(type='bool'),
|
||||||
health_checks=dict(type='list', elements='str'),
|
health_checks=dict(type='list', elements='str'),
|
||||||
|
@ -1462,6 +1474,7 @@ def resource_to_request(module):
|
||||||
u'cdnPolicy': BackendServiceCdnpolicy(module.params.get('cdn_policy', {}), module).to_request(),
|
u'cdnPolicy': BackendServiceCdnpolicy(module.params.get('cdn_policy', {}), module).to_request(),
|
||||||
u'connectionDraining': BackendServiceConnectiondraining(module.params.get('connection_draining', {}), module).to_request(),
|
u'connectionDraining': BackendServiceConnectiondraining(module.params.get('connection_draining', {}), module).to_request(),
|
||||||
u'customRequestHeaders': module.params.get('custom_request_headers'),
|
u'customRequestHeaders': module.params.get('custom_request_headers'),
|
||||||
|
u'customResponseHeaders': module.params.get('custom_response_headers'),
|
||||||
u'description': module.params.get('description'),
|
u'description': module.params.get('description'),
|
||||||
u'enableCDN': module.params.get('enable_cdn'),
|
u'enableCDN': module.params.get('enable_cdn'),
|
||||||
u'healthChecks': module.params.get('health_checks'),
|
u'healthChecks': module.params.get('health_checks'),
|
||||||
|
@ -1549,6 +1562,7 @@ def response_to_hash(module, response):
|
||||||
u'connectionDraining': BackendServiceConnectiondraining(response.get(u'connectionDraining', {}), module).from_response(),
|
u'connectionDraining': BackendServiceConnectiondraining(response.get(u'connectionDraining', {}), module).from_response(),
|
||||||
u'creationTimestamp': response.get(u'creationTimestamp'),
|
u'creationTimestamp': response.get(u'creationTimestamp'),
|
||||||
u'customRequestHeaders': response.get(u'customRequestHeaders'),
|
u'customRequestHeaders': response.get(u'customRequestHeaders'),
|
||||||
|
u'customResponseHeaders': response.get(u'customResponseHeaders'),
|
||||||
u'fingerprint': response.get(u'fingerprint'),
|
u'fingerprint': response.get(u'fingerprint'),
|
||||||
u'description': response.get(u'description'),
|
u'description': response.get(u'description'),
|
||||||
u'enableCDN': response.get(u'enableCDN'),
|
u'enableCDN': response.get(u'enableCDN'),
|
||||||
|
|
|
@ -408,6 +408,11 @@ resources:
|
||||||
- Headers that the HTTP/S load balancer should add to proxied requests.
|
- Headers that the HTTP/S load balancer should add to proxied requests.
|
||||||
returned: success
|
returned: success
|
||||||
type: list
|
type: list
|
||||||
|
customResponseHeaders:
|
||||||
|
description:
|
||||||
|
- Headers that the HTTP/S load balancer should add to proxied responses.
|
||||||
|
returned: success
|
||||||
|
type: list
|
||||||
fingerprint:
|
fingerprint:
|
||||||
description:
|
description:
|
||||||
- Fingerprint of this resource. A hash of the contents stored in this object.
|
- Fingerprint of this resource. A hash of the contents stored in this object.
|
||||||
|
|
Loading…
Add table
Reference in a new issue