Sha256: f14154ee58a40b5ca20e1047659c2784bbf38db1dd31493dbd90c4585c08b933
Contents?: true
Size: 1.38 KB
Versions: 1
Compression:
Stored size: 1.38 KB
Contents
# frozen_string_literal: true require "peddler/api" module Peddler class << self def application_management_2023_11_30(...) APIs::ApplicationManagement20231130.new(...) end end module APIs # Selling Partner API for Application Management # # The Selling Partner API for Application Management lets you programmatically update the client secret on # registered applications. class ApplicationManagement20231130 < API # Rotates application client secrets for a developer application. Developers must register a destination queue in # the developer console before calling this operation. When this operation is called a new client secret is # generated and sent to the developer-registered queue. For more information, refer to [Rotate your application # client # secret](https://developer-docs.amazon.com/sp-api/v0/docs/application-management-api-v2023-11-30-use-case-guide#tutorial-rotate-your-applications-client-secret). # # @param rate_limit [Float] Requests per second # @param tries [Integer] Total request attempts, including retries # @return [Peddler::Response] The API response def rotate_application_client_secret(rate_limit: 0.0167, tries: 2) cannot_sandbox! path = "/applications/2023-11-30/clientSecret" meter(rate_limit, tries:).post(path) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
peddler-4.1.0 | lib/peddler/apis/application_management_2023_11_30.rb |