mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-18 17:01:22 -07:00
adding ansible types in documentation (#303)
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
72e4cc7214
commit
43536a1e38
81 changed files with 844 additions and 0 deletions
|
@ -55,10 +55,12 @@ options:
|
|||
be a lowercase letter, and all following characters must be a dash, lowercase
|
||||
letter, or digit, except the last character, which cannot be a dash.
|
||||
required: true
|
||||
type: str
|
||||
description:
|
||||
description:
|
||||
- An optional description of this resource.
|
||||
required: false
|
||||
type: str
|
||||
network:
|
||||
description:
|
||||
- A reference to the network to which this router belongs.
|
||||
|
@ -68,10 +70,12 @@ options:
|
|||
to a gcp_compute_network task and then set this network field to "{{ name-of-resource
|
||||
}}"'
|
||||
required: true
|
||||
type: dict
|
||||
bgp:
|
||||
description:
|
||||
- BGP information specific to this router.
|
||||
required: false
|
||||
type: dict
|
||||
suboptions:
|
||||
asn:
|
||||
description:
|
||||
|
@ -79,6 +83,7 @@ options:
|
|||
either 16-bit or 32-bit. The value will be fixed for this router resource.
|
||||
All VPN tunnels that link to this router will have the same local ASN.
|
||||
required: true
|
||||
type: int
|
||||
advertise_mode:
|
||||
description:
|
||||
- User-specified flag to indicate which mode to use for advertisement.
|
||||
|
@ -86,6 +91,7 @@ options:
|
|||
- 'Some valid choices include: "DEFAULT", "CUSTOM"'
|
||||
required: false
|
||||
default: DEFAULT
|
||||
type: str
|
||||
advertised_groups:
|
||||
description:
|
||||
- User-specified list of prefix groups to advertise in custom mode.
|
||||
|
@ -95,6 +101,7 @@ options:
|
|||
groups.
|
||||
- 'This enum field has the one valid value: ALL_SUBNETS .'
|
||||
required: false
|
||||
type: list
|
||||
advertised_ip_ranges:
|
||||
description:
|
||||
- User-specified list of individual IP ranges to advertise in custom mode.
|
||||
|
@ -103,19 +110,23 @@ options:
|
|||
to any specified groups.
|
||||
- Leave this field blank to advertise no custom IP ranges.
|
||||
required: false
|
||||
type: list
|
||||
suboptions:
|
||||
range:
|
||||
description:
|
||||
- The IP range to advertise. The value must be a CIDR-formatted string.
|
||||
required: false
|
||||
type: str
|
||||
description:
|
||||
description:
|
||||
- User-specified description for the IP range.
|
||||
required: false
|
||||
type: str
|
||||
region:
|
||||
description:
|
||||
- Region where the router resides.
|
||||
required: true
|
||||
type: str
|
||||
extends_documentation_fragment: gcp
|
||||
notes:
|
||||
- 'API Reference: U(https://cloud.google.com/compute/docs/reference/rest/v1/routers)'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue