ImageBuild
Result of an image build operation.
Attributes
| Attribute | Type | Description |
|---|---|---|
| uri | `str | None` |
| remote_run | Optional["remote.Run"] | The Run object that kicked off an image build job when using the remote builder, or None when using the local builder. |
Constructor
Signature
def ImageBuild(
uri: str | None,
remote_run: Optional[remote.Run]
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| uri | `str | None` |
| remote_run | Optional[remote.Run] | The Run object associated with a remote build job, or None if using a local builder. |
Signature
def ImageBuild(
uri: str | None = null,
remote_run: Optional[remote.Run] = null
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| uri | `str | None` = null |
| remote_run | Optional[remote.Run] = null | The remote Run object associated with the build job when using a remote builder |