GuideReference
TrainingSupportCommunity
Guide

Activation history

akamai_datastream_activation_history

Get activation status changes for a given data stream across all versions.

data "akamai_datastream_activation_history" "my_activation_history" {
  stream_id = 12345
}
Changes to Outputs:
  + my_activation_history = {
      + activations = [
          + {
              + modified_by    = "jsmith"
              + modified_date  = "2023-06-14T12:51:06Z"
              + status         = "ACTIVATED"
              + stream_id      = 12345
              + stream_version = 2
            },
          + {
              + modified_by    = "jsmith"
              + modified_date  = "2023-06-14T12:43:33Z"
              + status         = "DEACTIVATED"
              + stream_id      = 12345
              + stream_version = 1
            },
        ]
      + id          = "12345"
      + stream_id   = 12345
    }

Arguments

Pass a specific data stream's ID in the query body using the stream_id argument.

Attributes

Returned in the activations set are details about modifications made to your datas treams.

AttributeDescription
modified_byThe name of the user who activated or deactivated the stream.
modified_dateThe date and time of an activation status change.
stream_idThe stream's ID.
stream_versionThe stream's version.
statusThe current activation status.