Bug fixes for GCP modules (#54888)

pull/54916/head
The Magician 6 years ago committed by ansibot
parent c846501829
commit 78fe931327

@ -249,8 +249,9 @@ options:
description: description:
- Indicates whether the backend service will be used with internal or external - Indicates whether the backend service will be used with internal or external
load balancing. A backend service created for one type of load balancing cannot load balancing. A backend service created for one type of load balancing cannot
be used with the other. be used with the other. One of `INTERNAL` or `EXTERNAL`. Defaults to `EXTERNAL`.
required: false required: false
default: EXTERNAL
version_added: 2.7 version_added: 2.7
choices: choices:
- INTERNAL - INTERNAL
@ -578,7 +579,7 @@ loadBalancingScheme:
description: description:
- Indicates whether the backend service will be used with internal or external load - Indicates whether the backend service will be used with internal or external load
balancing. A backend service created for one type of load balancing cannot be balancing. A backend service created for one type of load balancing cannot be
used with the other. used with the other. One of `INTERNAL` or `EXTERNAL`. Defaults to `EXTERNAL`.
returned: success returned: success
type: str type: str
name: name:
@ -687,7 +688,7 @@ def main():
type='dict', type='dict',
options=dict(enabled=dict(type='bool'), oauth2_client_id=dict(required=True, type='str'), oauth2_client_secret=dict(required=True, type='str')), options=dict(enabled=dict(type='bool'), oauth2_client_id=dict(required=True, type='str'), oauth2_client_secret=dict(required=True, type='str')),
), ),
load_balancing_scheme=dict(type='str', choices=['INTERNAL', 'EXTERNAL']), load_balancing_scheme=dict(default='EXTERNAL', type='str', choices=['INTERNAL', 'EXTERNAL']),
name=dict(required=True, type='str'), name=dict(required=True, type='str'),
port_name=dict(type='str'), port_name=dict(type='str'),
protocol=dict(type='str', choices=['HTTP', 'HTTPS', 'TCP', 'SSL']), protocol=dict(type='str', choices=['HTTP', 'HTTPS', 'TCP', 'SSL']),

@ -295,7 +295,7 @@ items:
description: description:
- Indicates whether the backend service will be used with internal or external - Indicates whether the backend service will be used with internal or external
load balancing. A backend service created for one type of load balancing cannot load balancing. A backend service created for one type of load balancing cannot
be used with the other. be used with the other. One of `INTERNAL` or `EXTERNAL`. Defaults to `EXTERNAL`.
returned: success returned: success
type: str type: str
name: name:

@ -56,7 +56,6 @@ options:
description: description:
description: description:
- An optional description of this resource. - An optional description of this resource.
- Provide this property when you create the resource.
required: false required: false
name: name:
description: description:
@ -69,8 +68,8 @@ options:
required: true required: true
ip_version: ip_version:
description: description:
- The IP Version that will be used by this address. Valid options are IPV4 or - The IP Version that will be used by this address. Valid options are `IPV4` or
IPV6. The default value is IPV4. `IPV6`. The default value is `IPV4`.
required: false required: false
choices: choices:
- IPV4 - IPV4
@ -116,7 +115,6 @@ creationTimestamp:
description: description:
description: description:
- An optional description of this resource. - An optional description of this resource.
- Provide this property when you create the resource.
returned: success returned: success
type: str type: str
id: id:
@ -136,8 +134,8 @@ name:
type: str type: str
ipVersion: ipVersion:
description: description:
- The IP Version that will be used by this address. Valid options are IPV4 or IPV6. - The IP Version that will be used by this address. Valid options are `IPV4` or
The default value is IPV4. `IPV6`. The default value is `IPV4`.
returned: success returned: success
type: str type: str
region: region:

@ -78,7 +78,6 @@ items:
description: description:
description: description:
- An optional description of this resource. - An optional description of this resource.
- Provide this property when you create the resource.
returned: success returned: success
type: str type: str
id: id:
@ -99,8 +98,8 @@ items:
type: str type: str
ipVersion: ipVersion:
description: description:
- The IP Version that will be used by this address. Valid options are IPV4 or - The IP Version that will be used by this address. Valid options are `IPV4`
IPV6. The default value is IPV4. or `IPV6`. The default value is `IPV4`.
returned: success returned: success
type: str type: str
region: region:

Loading…
Cancel
Save