@@ -28,7 +28,7 @@ module Accounts
2828 # @param model [Object] A request confirming that you wish to reset the license key of this account.
2929 # @return [Object]
3030 def account_reset_license_key ( id , model ) path = "/api/v2/accounts/#{ id } /resetlicensekey"
31- post ( path , model , { } , "22.11 .0" ) end
31+ post ( path , model , { } , "23.1 .0" ) end
3232
3333 # Activate an account by accepting terms and conditions
3434 #
@@ -51,7 +51,7 @@ def account_reset_license_key(id, model) path = "/api/v2/accounts/#{id}/r
5151 # @param model [Object] The activation request
5252 # @return [Object]
5353 def activate_account ( id , model ) path = "/api/v2/accounts/#{ id } /activate"
54- post ( path , model , { } , "22.11 .0" ) end
54+ post ( path , model , { } , "23.1 .0" ) end
5555
5656 # Retrieve audit history for an account.
5757 #
@@ -81,7 +81,7 @@ def activate_account(id, model) path = "/api/v2/accounts/#{id}/activate"
8181 # @param skip [Integer] If nonzero, skip this number of results before returning data. Used with `$top` to provide pagination for large datasets.
8282 # @return [FetchResult]
8383 def audit_account ( id , options = { } ) path = "/api/v2/accounts/#{ id } /audit"
84- get ( path , options , "22.11 .0" ) end
84+ get ( path , options , "23.1 .0" ) end
8585
8686 # Create license key for this account
8787 #
@@ -104,7 +104,7 @@ def audit_account(id, options={}) path = "/api/v2/accounts/#{id}/audit"
104104 # @param model [Object]
105105 # @return [Object]
106106 def create_license_key ( id , model ) path = "/api/v2/accounts/#{ id } /licensekey"
107- post ( path , model , { } , "22.11 .0" ) end
107+ post ( path , model , { } , "23.1 .0" ) end
108108
109109 # Delete license key for this account by license key name
110110 #
@@ -122,7 +122,7 @@ def create_license_key(id, model) path = "/api/v2/accounts/#{id}/licensek
122122 # @param licensekeyname [String] The license key name you wish to update.
123123 # @return [ErrorDetail[]]
124124 def delete_license_key ( id , licensekeyname ) path = "/api/v2/accounts/#{ id } /licensekey/#{ licensekeyname } "
125- delete ( path , { } , "22.11 .0" ) end
125+ delete ( path , { } , "23.1 .0" ) end
126126
127127 # Retrieve a single account
128128 #
@@ -140,7 +140,7 @@ def delete_license_key(id, licensekeyname) path = "/api/v2/accounts/#{id}
140140 # @param include [String] A comma separated list of special fetch options
141141 # @return [Object]
142142 def get_account ( id , options = { } ) path = "/api/v2/accounts/#{ id } "
143- get ( path , options , "22.11 .0" ) end
143+ get ( path , options , "23.1 .0" ) end
144144
145145 # Get configuration settings for this account
146146 #
@@ -164,7 +164,7 @@ def get_account(id, options={}) path = "/api/v2/accounts/#{id}"
164164 # @param id [Integer]
165165 # @return [AccountConfigurationModel[]]
166166 def get_account_configuration ( id ) path = "/api/v2/accounts/#{ id } /configuration"
167- get ( path , { } , "22.11 .0" ) end
167+ get ( path , { } , "23.1 .0" ) end
168168
169169 # Retrieve license key by license key name
170170 #
@@ -176,7 +176,7 @@ def get_account_configuration(id) path = "/api/v2/accounts/#{id}/configur
176176 # @param licensekeyname [String] The ID of the account to retrieve
177177 # @return [Object]
178178 def get_license_key ( id , licensekeyname ) path = "/api/v2/accounts/#{ id } /licensekey/#{ licensekeyname } "
179- get ( path , { } , "22.11 .0" ) end
179+ get ( path , { } , "23.1 .0" ) end
180180
181181 # Retrieve all license keys for this account
182182 #
@@ -189,7 +189,7 @@ def get_license_key(id, licensekeyname) path = "/api/v2/accounts/#{id}/li
189189 # @param id [Integer] The ID of the account to retrieve
190190 # @return [AccountLicenseKeyModel[]]
191191 def get_license_keys ( id ) path = "/api/v2/accounts/#{ id } /licensekeys"
192- get ( path , { } , "22.11 .0" ) end
192+ get ( path , { } , "23.1 .0" ) end
193193
194194 # Retrieve all accounts
195195 #
@@ -217,7 +217,7 @@ def get_license_keys(id) path = "/api/v2/accounts/#{id}/licensekeys"
217217 # @param orderBy [String] A comma separated list of sort statements in the format `(fieldname) [ASC|DESC]`, for example `id ASC`.
218218 # @return [FetchResult]
219219 def query_accounts ( options = { } ) path = "/api/v2/accounts"
220- get ( path , options , "22.11 .0" ) end
220+ get ( path , options , "23.1 .0" ) end
221221
222222 # Change configuration settings for this account
223223 #
@@ -242,7 +242,7 @@ def query_accounts(options={}) path = "/api/v2/accounts"
242242 # @param model [AccountConfigurationModel[]]
243243 # @return [AccountConfigurationModel[]]
244244 def set_account_configuration ( id , model ) path = "/api/v2/accounts/#{ id } /configuration"
245- post ( path , model , { } , "22.11 .0" ) end
245+ post ( path , model , { } , "23.1 .0" ) end
246246 end
247247 end
248248end
0 commit comments