mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-07-27 15:11:33 -07:00
[DO NOT MERGE] 3.0.0 staging branch
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
f526d210f6
commit
bafefea662
24 changed files with 57 additions and 133 deletions
|
@ -162,7 +162,7 @@ options:
|
|||
networks:
|
||||
description:
|
||||
- The list of VPC networks that can see this zone.
|
||||
required: false
|
||||
required: true
|
||||
type: list
|
||||
suboptions:
|
||||
network_url:
|
||||
|
@ -170,7 +170,7 @@ options:
|
|||
- The fully qualified URL of the VPC network to bind to.
|
||||
- This should be formatted like `U(https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`)
|
||||
.
|
||||
required: false
|
||||
required: true
|
||||
type: str
|
||||
project:
|
||||
description:
|
||||
|
@ -412,7 +412,9 @@ def main():
|
|||
name_server_set=dict(type='str'),
|
||||
labels=dict(type='dict'),
|
||||
visibility=dict(default='public', type='str'),
|
||||
private_visibility_config=dict(type='dict', options=dict(networks=dict(type='list', elements='dict', options=dict(network_url=dict(type='str'))))),
|
||||
private_visibility_config=dict(
|
||||
type='dict', options=dict(networks=dict(required=True, type='list', elements='dict', options=dict(network_url=dict(required=True, type='str'))))
|
||||
),
|
||||
)
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue