Googly.CloudStorage.Model.ComposeRequest (googly_cloud_storage v0.1.0)

Copy Markdown View Source

A Compose request.

Attributes

  • delete_source_objects (type: boolean()) - If true, the source objects will be deleted.
  • destination (type: Googly.CloudStorage.Model.Object.t()) - Properties of the resulting object.
  • kind (type: String.t()) - The kind of item this is.
  • source_objects (type: list(Googly.CloudStorage.Model.ComposeRequestSourceObjects.t())) - The list of source objects that will be concatenated into a single object.

Summary

Types

t()

@type t() :: %Googly.CloudStorage.Model.ComposeRequest{
  delete_source_objects: boolean() | nil,
  destination: Googly.CloudStorage.Model.Object.t() | nil,
  kind: String.t() | nil,
  source_objects:
    [Googly.CloudStorage.Model.ComposeRequestSourceObjects.t()] | nil
}