Module: EndOfLifeDateApiClient
- Defined in:
- lib/endoflife_date/version.rb,
lib/endoflife_date.rb,
lib/endoflife_date/api_error.rb,
lib/endoflife_date/api_client.rb,
lib/endoflife_date/models/cycle.rb,
lib/endoflife_date/configuration.rb,
lib/endoflife_date/api/default_api.rb,
lib/endoflife_date/models/cycle_eol.rb,
lib/endoflife_date/models/cycle_lts.rb,
lib/endoflife_date/models/cycle_cycle.rb,
lib/endoflife_date/models/cycle_support.rb,
lib/endoflife_date/models/cycle_discontinued.rb
Overview
#endoflife.date
#Documentation for the endoflife.date API. The API is currently in Alpha. Additional information about the API can be found on the [endoflife.date wiki](github.com/endoflife-date/endoflife.date/wiki)
The version of the OpenAPI document: 0.0.1 Contact: [email protected] Generated by: openapi-generator.tech Generator version: 7.4.0
Defined Under Namespace
Modules: CycleCycle, CycleDiscontinued, CycleEol, CycleLts, CycleSupport Classes: ApiClient, ApiError, Configuration, Cycle, DefaultApi
Constant Summary collapse
- VERSION =
'1.0.0'
Class Method Summary collapse
-
.configure ⇒ Object
Customize default settings for the SDK using block.
Class Method Details
.configure ⇒ Object
Customize default settings for the SDK using block.
EndOfLifeDateApiClient.configure do |config|
config.username = "xxx"
config.password = "xxx"
end
If no block given, return the default Configuration object.
38 39 40 41 42 43 44 |
# File 'lib/endoflife_date.rb', line 38 def configure if block_given? yield(Configuration.default) else Configuration.default end end |