diff --git a/plugins/modules/gcp_mlengine_version.py b/plugins/modules/gcp_mlengine_version.py index df328d9..478af73 100644 --- a/plugins/modules/gcp_mlengine_version.py +++ b/plugins/modules/gcp_mlengine_version.py @@ -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'), diff --git a/plugins/modules/gcp_mlengine_version_info.py b/plugins/modules/gcp_mlengine_version_info.py index 86eb878..c982268 100644 --- a/plugins/modules/gcp_mlengine_version_info.py +++ b/plugins/modules/gcp_mlengine_version_info.py @@ -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 ''' ################################################################################