Module: Pulp2to3MigrationClient
- Defined in:
- lib/pulp_2to3_migration_client/version.rb,
lib/pulp_2to3_migration_client.rb,
lib/pulp_2to3_migration_client/api_error.rb,
lib/pulp_2to3_migration_client/api_client.rb,
lib/pulp_2to3_migration_client/configuration.rb,
lib/pulp_2to3_migration_client/api/pulp2_content_api.rb,
lib/pulp_2to3_migration_client/api/migration_plans_api.rb,
lib/pulp_2to3_migration_client/models/migration_plan_run.rb,
lib/pulp_2to3_migration_client/api/pulp2_repositories_api.rb,
lib/pulp_2to3_migration_client/models/async_operation_response.rb,
lib/pulp_2to3_migration_client/models/pulp2to3_migration_migration_plan.rb,
lib/pulp_2to3_migration_client/models/pulp2to3_migration_pulp2_content_response.rb,
lib/pulp_2to3_migration_client/models/pulp2to3_migration_migration_plan_response.rb,
lib/pulp_2to3_migration_client/models/pulp2to3_migration_pulp2_repository_response.rb,
lib/pulp_2to3_migration_client/models/paginatedpulp2to3_migration_pulp2_content_response_list.rb,
lib/pulp_2to3_migration_client/models/paginatedpulp2to3_migration_migration_plan_response_list.rb,
lib/pulp_2to3_migration_client/models/paginatedpulp2to3_migration_pulp2_repository_response_list.rb
Overview
#Pulp 3 API
#Fetch, Upload, Organize, and Distribute Software Packages
The version of the OpenAPI document: v3 Contact: [email protected] Generated by: openapi-generator.tech OpenAPI Generator version: 4.3.1
Defined Under Namespace
Classes: ApiClient, ApiError, AsyncOperationResponse, Configuration, MigrationPlanRun, MigrationPlansApi, Paginatedpulp2to3MigrationMigrationPlanResponseList, Paginatedpulp2to3MigrationPulp2ContentResponseList, Paginatedpulp2to3MigrationPulp2RepositoryResponseList, Pulp2ContentApi, Pulp2RepositoriesApi, Pulp2to3MigrationMigrationPlan, Pulp2to3MigrationMigrationPlanResponse, Pulp2to3MigrationPulp2ContentResponse, Pulp2to3MigrationPulp2RepositoryResponse
Constant Summary collapse
- VERSION =
'0.17.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.
Pulp2to3MigrationClient.configure do |config|
config.username = "xxx"
config.password = "xxx"
end
If no block given, return the default Configuration object.
43 44 45 46 47 48 49 |
# File 'lib/pulp_2to3_migration_client.rb', line 43 def configure if block_given? yield(Configuration.default) else Configuration.default end end |