ML Engine Models in Terraform (#316)

Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
The Magician 2019-08-19 10:08:50 -07:00 committed by Alex Stephen
parent 7085a06925
commit 75b2819fd9
2 changed files with 12 additions and 13 deletions

View file

@ -202,12 +202,6 @@ description:
- The description specified for the version when it was created.
returned: success
type: str
isDefault:
description:
- If true, this version will be used to handle prediction requests that do not specify
a version.
returned: success
type: bool
deploymentUri:
description:
- The Cloud Storage location of the trained model used to create the version.
@ -314,6 +308,12 @@ model:
- The model that this version belongs to.
returned: success
type: dict
isDefault:
description:
- If true, this version will be used to handle prediction requests that do not specify
a version.
returned: success
type: bool
'''
################################################################################
@ -486,7 +486,6 @@ def response_to_hash(module, response):
return {
u'name': response.get(u'name'),
u'description': response.get(u'description'),
u'isDefault': response.get(u'isDefault'),
u'deploymentUri': response.get(u'deploymentUri'),
u'createTime': response.get(u'createTime'),
u'lastUseTime': response.get(u'lastUseTime'),

View file

@ -79,12 +79,6 @@ resources:
- The description specified for the version when it was created.
returned: success
type: str
isDefault:
description:
- If true, this version will be used to handle prediction requests that do not
specify a version.
returned: success
type: bool
deploymentUri:
description:
- The Cloud Storage location of the trained model used to create the version.
@ -192,6 +186,12 @@ resources:
- The model that this version belongs to.
returned: success
type: dict
isDefault:
description:
- If true, this version will be used to handle prediction requests that do not
specify a version.
returned: success
type: bool
'''
################################################################################