allowActions

@JvmName(name = "ionfmmoibgtoqlur")
suspend fun allowActions(value: Output<List<String>>)
@JvmName(name = "cmbawqbfauevlnfg")
suspend fun allowActions(value: List<String>)

Parameters

value

A list of allowed actions that an API key resource grants permissions to perform. You must have at least one action for each type of resource. For example, if you have a place resource, you must include at least one place action. The following are valid values for the actions.

  • Map actions

  • geo:GetMap* - Allows all actions needed for map rendering.

  • Enhanced Maps actions

  • geo-maps:GetTile - Allows getting map tiles for rendering.

  • geo-maps:GetStaticMap - Allows getting static map images.

  • Place actions

  • geo:SearchPlaceIndexForText - Allows finding geo coordinates of a known place.

  • geo:SearchPlaceIndexForPosition - Allows getting nearest address to geo coordinates.

  • geo:SearchPlaceIndexForSuggestions - Allows suggestions based on an incomplete or misspelled query.

  • geo:GetPlace - Allows getting details of a place.

  • Enhanced Places actions

  • geo-places:Autcomplete - Allows auto-completion of search text.

  • geo-places:Geocode - Allows finding geo coordinates of a known place.

  • geo-places:GetPlace - Allows getting details of a place.

  • geo-places:ReverseGeocode - Allows getting nearest address to geo coordinates.

  • geo-places:SearchNearby - Allows category based places search around geo coordinates.

  • geo-places:SearchText - Allows place or address search based on free-form text.

  • geo-places:Suggest - Allows suggestions based on an incomplete or misspelled query.

  • Route actions

  • geo:CalculateRoute - Allows point to point routing.

  • geo:CalculateRouteMatrix - Allows matrix routing.

  • Enhanced Routes actions

  • geo-routes:CalculateIsolines - Allows isoline calculation.

  • geo-routes:CalculateRoutes - Allows point to point routing.

  • geo-routes:CalculateRouteMatrix - Allows matrix routing.

  • geo-routes:OptimizeWaypoints - Allows computing the best sequence of waypoints.

  • geo-routes:SnapToRoads - Allows snapping GPS points to a likely route.

You must use these strings exactly. For example, to provide access to map rendering, the only valid action is geo:GetMap* as an input to the list. ["geo:GetMap*"] is valid but ["geo:GetTile"] is not. Similarly, you cannot use ["geo:SearchPlaceIndexFor*"] - you must list each of the Place actions separately.


@JvmName(name = "fvgkcjxweayhdlao")
suspend fun allowActions(vararg values: Output<String>)


@JvmName(name = "myrgwqcssdgktbqm")
suspend fun allowActions(values: List<Output<String>>)
@JvmName(name = "soqayhcdxbngcuof")
suspend fun allowActions(vararg values: String)

Parameters

values

A list of allowed actions that an API key resource grants permissions to perform. You must have at least one action for each type of resource. For example, if you have a place resource, you must include at least one place action. The following are valid values for the actions.

  • Map actions

  • geo:GetMap* - Allows all actions needed for map rendering.

  • Enhanced Maps actions

  • geo-maps:GetTile - Allows getting map tiles for rendering.

  • geo-maps:GetStaticMap - Allows getting static map images.

  • Place actions

  • geo:SearchPlaceIndexForText - Allows finding geo coordinates of a known place.

  • geo:SearchPlaceIndexForPosition - Allows getting nearest address to geo coordinates.

  • geo:SearchPlaceIndexForSuggestions - Allows suggestions based on an incomplete or misspelled query.

  • geo:GetPlace - Allows getting details of a place.

  • Enhanced Places actions

  • geo-places:Autcomplete - Allows auto-completion of search text.

  • geo-places:Geocode - Allows finding geo coordinates of a known place.

  • geo-places:GetPlace - Allows getting details of a place.

  • geo-places:ReverseGeocode - Allows getting nearest address to geo coordinates.

  • geo-places:SearchNearby - Allows category based places search around geo coordinates.

  • geo-places:SearchText - Allows place or address search based on free-form text.

  • geo-places:Suggest - Allows suggestions based on an incomplete or misspelled query.

  • Route actions

  • geo:CalculateRoute - Allows point to point routing.

  • geo:CalculateRouteMatrix - Allows matrix routing.

  • Enhanced Routes actions

  • geo-routes:CalculateIsolines - Allows isoline calculation.

  • geo-routes:CalculateRoutes - Allows point to point routing.

  • geo-routes:CalculateRouteMatrix - Allows matrix routing.

  • geo-routes:OptimizeWaypoints - Allows computing the best sequence of waypoints.

  • geo-routes:SnapToRoads - Allows snapping GPS points to a likely route.

You must use these strings exactly. For example, to provide access to map rendering, the only valid action is geo:GetMap* as an input to the list. ["geo:GetMap*"] is valid but ["geo:GetTile"] is not. Similarly, you cannot use ["geo:SearchPlaceIndexFor*"] - you must list each of the Place actions separately.