Response message for ImportApplicationTemplateIaC method.
| JSON representation |
|---|
{ "applicationTemplate": { object ( |
| Fields | |
|---|---|
applicationTemplate |
Application template corresponding to the imported IaC. |
errors[] |
Errors encountered during import. |
state |
The state of the import. |
ImportIaCError
Message representing the error encountered during import. Example: A variable with name "name" is expected to be of type string, but is provided as number, inside a module named "my_module". { resourceAddress: "module.my_module.name" file: "gs://my_bucket/main.tf" range: { start: { line: 2 byteOffset: 1 column: 2 } end: { line: 2 byteOffset: 10 column: 10 } } description: "Error parsing field: "name". Expected type "string" but got "number"." type: INVALID }
| JSON representation |
|---|
{ "resourceAddress": string, "file": string, "range": { object ( |
| Fields | |
|---|---|
resourceAddress |
Output only. The resource address of the error. |
file |
Output only. The file where the error has occurred. |
range |
Output only. The code portion where this error occurs. |
description |
Output only. The description of the error. |
type |
Output only. The type of error. |