Get Mobile Sdk Release
wafv2_get_mobile_sdk_release | R Documentation |
Retrieves information for the specified mobile SDK release, including release notes and tags¶
Description¶
Retrieves information for the specified mobile SDK release, including release notes and tags.
The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see WAF client application integration in the WAF Developer Guide.
Usage¶
Arguments¶
Platform
[required] The device platform.
ReleaseVersion
[required] The release version. For the latest available version, specify
LATEST
.
Value¶
A list with the following syntax:
list(
MobileSdkRelease = list(
ReleaseVersion = "string",
Timestamp = as.POSIXct(
"2015-01-01"
),
ReleaseNotes = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
)