List Mobile Sdk Releases
wafv2_list_mobile_sdk_releases | R Documentation |
Retrieves a list of the available releases for the mobile SDK and the specified device platform¶
Description¶
Retrieves a list of the available releases for the mobile SDK and the specified device platform.
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¶
wafv2_list_mobile_sdk_releases(Platform, NextMarker, Limit)
Arguments¶
Platform |
[required] The device platform to retrieve the list for. |
NextMarker |
When you request a list of objects with a |
Limit |
The maximum number of objects that you want WAF to return for
this request. If more objects are available, in the response, WAF
provides a |
Value¶
A list with the following syntax:
list(
ReleaseSummaries = list(
list(
ReleaseVersion = "string",
Timestamp = as.POSIXct(
"2015-01-01"
)
)
),
NextMarker = "string"
)
Request syntax¶
svc$list_mobile_sdk_releases(
Platform = "IOS"|"ANDROID",
NextMarker = "string",
Limit = 123
)