Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
Sam Levenick 2020-01-02 22:27:40 +00:00 committed by Modular Magician
commit e02c58949e
5 changed files with 29 additions and 2 deletions

View file

@ -256,6 +256,14 @@ users:
- The URLs of the resources that are using this address.
returned: success
type: list
status:
description:
- The status of the address, which can be one of RESERVING, RESERVED, or IN_USE.
- An address that is RESERVING is currently in the process of being reserved.
- A RESERVED address is currently reserved and available to use. An IN_USE address
is currently being used by another resource and is not available.
returned: success
type: str
region:
description:
- URL of the region where the regional address resides.
@ -425,6 +433,7 @@ def response_to_hash(module, response):
u'networkTier': response.get(u'networkTier'),
u'subnetwork': response.get(u'subnetwork'),
u'users': response.get(u'users'),
u'status': response.get(u'status'),
}