mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
16 lines
508 B
Go
16 lines
508 B
Go
// Copyright IBM Corp. 2014, 2026
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package json
|
|
|
|
// Importing contains metadata about a resource change that includes an import
|
|
// action.
|
|
//
|
|
// Every field in here should be treated as optional as future versions do not
|
|
// make a guarantee that they will retain the format of this change.
|
|
//
|
|
// Consumers should be capable of rendering/parsing the Importing struct even
|
|
// if it does not have the ID field set.
|
|
type Importing struct {
|
|
ID string `json:"id,omitempty"`
|
|
}
|