mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-09 04:10:27 -07:00
ML Engine Models in Terraform (#316)
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
7085a06925
commit
75b2819fd9
2 changed files with 12 additions and 13 deletions
|
@ -202,12 +202,6 @@ description:
|
||||||
- The description specified for the version when it was created.
|
- The description specified for the version when it was created.
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
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:
|
deploymentUri:
|
||||||
description:
|
description:
|
||||||
- The Cloud Storage location of the trained model used to create the version.
|
- 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.
|
- The model that this version belongs to.
|
||||||
returned: success
|
returned: success
|
||||||
type: dict
|
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 {
|
return {
|
||||||
u'name': response.get(u'name'),
|
u'name': response.get(u'name'),
|
||||||
u'description': response.get(u'description'),
|
u'description': response.get(u'description'),
|
||||||
u'isDefault': response.get(u'isDefault'),
|
|
||||||
u'deploymentUri': response.get(u'deploymentUri'),
|
u'deploymentUri': response.get(u'deploymentUri'),
|
||||||
u'createTime': response.get(u'createTime'),
|
u'createTime': response.get(u'createTime'),
|
||||||
u'lastUseTime': response.get(u'lastUseTime'),
|
u'lastUseTime': response.get(u'lastUseTime'),
|
||||||
|
|
|
@ -79,12 +79,6 @@ resources:
|
||||||
- The description specified for the version when it was created.
|
- The description specified for the version when it was created.
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
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:
|
deploymentUri:
|
||||||
description:
|
description:
|
||||||
- The Cloud Storage location of the trained model used to create the version.
|
- 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.
|
- The model that this version belongs to.
|
||||||
returned: success
|
returned: success
|
||||||
type: dict
|
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
|
||||||
'''
|
'''
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
Loading…
Add table
Reference in a new issue