mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-23 11:21:22 -07:00
remove client side validation on enums (#256)
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
cae62bd7c4
commit
b1795cda83
30 changed files with 76 additions and 91 deletions
|
@ -448,10 +448,10 @@ def main():
|
|||
state=dict(default='present', choices=['present', 'absent'], type='str'),
|
||||
description=dict(type='str'),
|
||||
ip_address=dict(type='str'),
|
||||
ip_protocol=dict(type='str', choices=['TCP', 'UDP', 'ESP', 'AH', 'SCTP', 'ICMP']),
|
||||
ip_protocol=dict(type='str'),
|
||||
backend_service=dict(type='dict'),
|
||||
ip_version=dict(type='str', choices=['IPV4', 'IPV6']),
|
||||
load_balancing_scheme=dict(type='str', choices=['INTERNAL', 'EXTERNAL']),
|
||||
ip_version=dict(type='str'),
|
||||
load_balancing_scheme=dict(type='str'),
|
||||
name=dict(required=True, type='str'),
|
||||
network=dict(type='dict'),
|
||||
port_range=dict(type='str'),
|
||||
|
@ -459,7 +459,7 @@ def main():
|
|||
subnetwork=dict(type='dict'),
|
||||
target=dict(type='dict'),
|
||||
all_ports=dict(type='bool'),
|
||||
network_tier=dict(type='str', choices=['PREMIUM', 'STANDARD']),
|
||||
network_tier=dict(type='str'),
|
||||
service_label=dict(type='str'),
|
||||
region=dict(required=True, type='str'),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue