mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
* mark field as updatable Co-authored-by: upodroid <cy@borg.dev> * add proxy_bind Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
dbd5dbc2fb
commit
b7ec9fb848
6 changed files with 63 additions and 0 deletions
|
@ -74,6 +74,12 @@ options:
|
||||||
}}"'
|
}}"'
|
||||||
required: true
|
required: true
|
||||||
type: dict
|
type: dict
|
||||||
|
proxy_bind:
|
||||||
|
description:
|
||||||
|
- This field only applies when the forwarding rule that references this target
|
||||||
|
proxy has a loadBalancingScheme set to INTERNAL_SELF_MANAGED.
|
||||||
|
required: false
|
||||||
|
type: bool
|
||||||
project:
|
project:
|
||||||
description:
|
description:
|
||||||
- The Google Cloud Platform project to use.
|
- The Google Cloud Platform project to use.
|
||||||
|
@ -216,6 +222,12 @@ urlMap:
|
||||||
- A reference to the UrlMap resource that defines the mapping from URL to the BackendService.
|
- A reference to the UrlMap resource that defines the mapping from URL to the BackendService.
|
||||||
returned: success
|
returned: success
|
||||||
type: dict
|
type: dict
|
||||||
|
proxyBind:
|
||||||
|
description:
|
||||||
|
- This field only applies when the forwarding rule that references this target proxy
|
||||||
|
has a loadBalancingScheme set to INTERNAL_SELF_MANAGED.
|
||||||
|
returned: success
|
||||||
|
type: bool
|
||||||
'''
|
'''
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -240,6 +252,7 @@ def main():
|
||||||
description=dict(type='str'),
|
description=dict(type='str'),
|
||||||
name=dict(required=True, type='str'),
|
name=dict(required=True, type='str'),
|
||||||
url_map=dict(required=True, type='dict'),
|
url_map=dict(required=True, type='dict'),
|
||||||
|
proxy_bind=dict(type='bool'),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -308,6 +321,7 @@ def resource_to_request(module):
|
||||||
u'description': module.params.get('description'),
|
u'description': module.params.get('description'),
|
||||||
u'name': module.params.get('name'),
|
u'name': module.params.get('name'),
|
||||||
u'urlMap': replace_resource_dict(module.params.get(u'url_map', {}), 'selfLink'),
|
u'urlMap': replace_resource_dict(module.params.get(u'url_map', {}), 'selfLink'),
|
||||||
|
u'proxyBind': module.params.get('proxy_bind'),
|
||||||
}
|
}
|
||||||
return_vals = {}
|
return_vals = {}
|
||||||
for k, v in request.items():
|
for k, v in request.items():
|
||||||
|
@ -378,6 +392,7 @@ def response_to_hash(module, response):
|
||||||
u'id': response.get(u'id'),
|
u'id': response.get(u'id'),
|
||||||
u'name': response.get(u'name'),
|
u'name': response.get(u'name'),
|
||||||
u'urlMap': response.get(u'urlMap'),
|
u'urlMap': response.get(u'urlMap'),
|
||||||
|
u'proxyBind': response.get(u'proxyBind'),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -144,6 +144,12 @@ resources:
|
||||||
BackendService.
|
BackendService.
|
||||||
returned: success
|
returned: success
|
||||||
type: dict
|
type: dict
|
||||||
|
proxyBind:
|
||||||
|
description:
|
||||||
|
- This field only applies when the forwarding rule that references this target
|
||||||
|
proxy has a loadBalancingScheme set to INTERNAL_SELF_MANAGED.
|
||||||
|
returned: success
|
||||||
|
type: bool
|
||||||
'''
|
'''
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
|
@ -102,6 +102,12 @@ options:
|
||||||
}}"'
|
}}"'
|
||||||
required: true
|
required: true
|
||||||
type: dict
|
type: dict
|
||||||
|
proxy_bind:
|
||||||
|
description:
|
||||||
|
- This field only applies when the forwarding rule that references this target
|
||||||
|
proxy has a loadBalancingScheme set to INTERNAL_SELF_MANAGED.
|
||||||
|
required: false
|
||||||
|
type: bool
|
||||||
project:
|
project:
|
||||||
description:
|
description:
|
||||||
- The Google Cloud Platform project to use.
|
- The Google Cloud Platform project to use.
|
||||||
|
@ -301,6 +307,12 @@ urlMap:
|
||||||
- A reference to the UrlMap resource that defines the mapping from URL to the BackendService.
|
- A reference to the UrlMap resource that defines the mapping from URL to the BackendService.
|
||||||
returned: success
|
returned: success
|
||||||
type: dict
|
type: dict
|
||||||
|
proxyBind:
|
||||||
|
description:
|
||||||
|
- This field only applies when the forwarding rule that references this target proxy
|
||||||
|
has a loadBalancingScheme set to INTERNAL_SELF_MANAGED.
|
||||||
|
returned: success
|
||||||
|
type: bool
|
||||||
'''
|
'''
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -328,6 +340,7 @@ def main():
|
||||||
ssl_certificates=dict(required=True, type='list', elements='dict'),
|
ssl_certificates=dict(required=True, type='list', elements='dict'),
|
||||||
ssl_policy=dict(type='dict'),
|
ssl_policy=dict(type='dict'),
|
||||||
url_map=dict(required=True, type='dict'),
|
url_map=dict(required=True, type='dict'),
|
||||||
|
proxy_bind=dict(type='bool'),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -429,6 +442,7 @@ def resource_to_request(module):
|
||||||
u'sslCertificates': replace_resource_dict(module.params.get('ssl_certificates', []), 'selfLink'),
|
u'sslCertificates': replace_resource_dict(module.params.get('ssl_certificates', []), 'selfLink'),
|
||||||
u'sslPolicy': replace_resource_dict(module.params.get(u'ssl_policy', {}), 'selfLink'),
|
u'sslPolicy': replace_resource_dict(module.params.get(u'ssl_policy', {}), 'selfLink'),
|
||||||
u'urlMap': replace_resource_dict(module.params.get(u'url_map', {}), 'selfLink'),
|
u'urlMap': replace_resource_dict(module.params.get(u'url_map', {}), 'selfLink'),
|
||||||
|
u'proxyBind': module.params.get('proxy_bind'),
|
||||||
}
|
}
|
||||||
return_vals = {}
|
return_vals = {}
|
||||||
for k, v in request.items():
|
for k, v in request.items():
|
||||||
|
@ -502,6 +516,7 @@ def response_to_hash(module, response):
|
||||||
u'sslCertificates': response.get(u'sslCertificates'),
|
u'sslCertificates': response.get(u'sslCertificates'),
|
||||||
u'sslPolicy': response.get(u'sslPolicy'),
|
u'sslPolicy': response.get(u'sslPolicy'),
|
||||||
u'urlMap': response.get(u'urlMap'),
|
u'urlMap': response.get(u'urlMap'),
|
||||||
|
u'proxyBind': response.get(u'proxyBind'),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -166,6 +166,12 @@ resources:
|
||||||
BackendService.
|
BackendService.
|
||||||
returned: success
|
returned: success
|
||||||
type: dict
|
type: dict
|
||||||
|
proxyBind:
|
||||||
|
description:
|
||||||
|
- This field only applies when the forwarding rule that references this target
|
||||||
|
proxy has a loadBalancingScheme set to INTERNAL_SELF_MANAGED.
|
||||||
|
returned: success
|
||||||
|
type: bool
|
||||||
'''
|
'''
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
|
@ -79,6 +79,12 @@ options:
|
||||||
field to "{{ name-of-resource }}"'
|
field to "{{ name-of-resource }}"'
|
||||||
required: true
|
required: true
|
||||||
type: dict
|
type: dict
|
||||||
|
proxy_bind:
|
||||||
|
description:
|
||||||
|
- This field only applies when the forwarding rule that references this target
|
||||||
|
proxy has a loadBalancingScheme set to INTERNAL_SELF_MANAGED.
|
||||||
|
required: false
|
||||||
|
type: bool
|
||||||
project:
|
project:
|
||||||
description:
|
description:
|
||||||
- The Google Cloud Platform project to use.
|
- The Google Cloud Platform project to use.
|
||||||
|
@ -221,6 +227,12 @@ service:
|
||||||
- A reference to the BackendService resource.
|
- A reference to the BackendService resource.
|
||||||
returned: success
|
returned: success
|
||||||
type: dict
|
type: dict
|
||||||
|
proxyBind:
|
||||||
|
description:
|
||||||
|
- This field only applies when the forwarding rule that references this target proxy
|
||||||
|
has a loadBalancingScheme set to INTERNAL_SELF_MANAGED.
|
||||||
|
returned: success
|
||||||
|
type: bool
|
||||||
'''
|
'''
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -246,6 +258,7 @@ def main():
|
||||||
name=dict(required=True, type='str'),
|
name=dict(required=True, type='str'),
|
||||||
proxy_header=dict(type='str'),
|
proxy_header=dict(type='str'),
|
||||||
service=dict(required=True, type='dict'),
|
service=dict(required=True, type='dict'),
|
||||||
|
proxy_bind=dict(type='bool'),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -325,6 +338,7 @@ def resource_to_request(module):
|
||||||
u'name': module.params.get('name'),
|
u'name': module.params.get('name'),
|
||||||
u'proxyHeader': module.params.get('proxy_header'),
|
u'proxyHeader': module.params.get('proxy_header'),
|
||||||
u'service': replace_resource_dict(module.params.get(u'service', {}), 'selfLink'),
|
u'service': replace_resource_dict(module.params.get(u'service', {}), 'selfLink'),
|
||||||
|
u'proxyBind': module.params.get('proxy_bind'),
|
||||||
}
|
}
|
||||||
return_vals = {}
|
return_vals = {}
|
||||||
for k, v in request.items():
|
for k, v in request.items():
|
||||||
|
@ -396,6 +410,7 @@ def response_to_hash(module, response):
|
||||||
u'name': module.params.get('name'),
|
u'name': module.params.get('name'),
|
||||||
u'proxyHeader': response.get(u'proxyHeader'),
|
u'proxyHeader': response.get(u'proxyHeader'),
|
||||||
u'service': response.get(u'service'),
|
u'service': response.get(u'service'),
|
||||||
|
u'proxyBind': response.get(u'proxyBind'),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -148,6 +148,12 @@ resources:
|
||||||
- A reference to the BackendService resource.
|
- A reference to the BackendService resource.
|
||||||
returned: success
|
returned: success
|
||||||
type: dict
|
type: dict
|
||||||
|
proxyBind:
|
||||||
|
description:
|
||||||
|
- This field only applies when the forwarding rule that references this target
|
||||||
|
proxy has a loadBalancingScheme set to INTERNAL_SELF_MANAGED.
|
||||||
|
returned: success
|
||||||
|
type: bool
|
||||||
'''
|
'''
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
Loading…
Add table
Reference in a new issue