pulp_container_client 2.21.0 → 2.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +125 -543
- data/docs/ContainerBlobResponse.md +2 -0
- data/docs/ContainerContainerDistribution.md +8 -8
- data/docs/ContainerContainerDistributionResponse.md +16 -12
- data/docs/ContainerContainerNamespaceResponse.md +2 -0
- data/docs/ContainerContainerPullThroughDistribution.md +8 -8
- data/docs/ContainerContainerPullThroughDistributionResponse.md +16 -12
- data/docs/ContainerContainerPullThroughRemoteResponse.md +3 -1
- data/docs/{RemoteResponseHiddenFields.md → ContainerContainerPullThroughRemoteResponseHiddenFields.md} +2 -2
- data/docs/ContainerContainerPushRepository.md +6 -6
- data/docs/ContainerContainerPushRepositoryResponse.md +16 -14
- data/docs/ContainerContainerRemoteResponse.md +3 -1
- data/docs/ContainerContainerRepositoryResponse.md +2 -0
- data/docs/ContainerManifestResponse.md +15 -5
- data/docs/ContainerManifestSignatureResponse.md +2 -0
- data/docs/ContainerTagResponse.md +2 -0
- data/docs/ContentBlobsApi.md +20 -18
- data/docs/ContentManifestsApi.md +22 -20
- data/docs/ContentSignaturesApi.md +20 -18
- data/docs/ContentTagsApi.md +20 -18
- data/docs/DistributionsContainerApi.md +64 -62
- data/docs/DistributionsPullThroughApi.md +64 -62
- data/docs/OCIBuildImage.md +4 -4
- data/docs/PatchedcontainerContainerDistribution.md +8 -8
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -8
- data/docs/PatchedcontainerContainerPushRepository.md +6 -6
- data/docs/PulpContainerNamespacesApi.md +44 -42
- data/docs/RemotesContainerApi.md +64 -62
- data/docs/RemotesPullThroughApi.md +64 -62
- data/docs/RepositoriesContainerApi.md +121 -119
- data/docs/RepositoriesContainerPushApi.md +73 -71
- data/docs/RepositoriesContainerPushVersionsApi.md +28 -26
- data/docs/RepositoriesContainerVersionsApi.md +28 -26
- data/docs/RepositoryVersionResponse.md +2 -0
- data/docs/TokenApi.md +5 -5
- data/lib/pulp_container_client/api/content_blobs_api.rb +22 -19
- data/lib/pulp_container_client/api/content_manifests_api.rb +25 -22
- data/lib/pulp_container_client/api/content_signatures_api.rb +22 -19
- data/lib/pulp_container_client/api/content_tags_api.rb +22 -19
- data/lib/pulp_container_client/api/distributions_container_api.rb +82 -79
- data/lib/pulp_container_client/api/distributions_pull_through_api.rb +82 -79
- data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +54 -51
- data/lib/pulp_container_client/api/remotes_container_api.rb +82 -79
- data/lib/pulp_container_client/api/remotes_pull_through_api.rb +82 -79
- data/lib/pulp_container_client/api/repositories_container_api.rb +155 -152
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +95 -92
- data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +35 -32
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +35 -32
- data/lib/pulp_container_client/api/token_api.rb +5 -5
- data/lib/pulp_container_client/models/container_blob_response.rb +11 -1
- data/lib/pulp_container_client/models/container_container_distribution.rb +62 -62
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +70 -50
- data/lib/pulp_container_client/models/container_container_namespace_response.rb +11 -1
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +62 -62
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +70 -50
- data/lib/pulp_container_client/models/container_container_pull_through_remote_response.rb +12 -2
- data/lib/pulp_container_client/models/{remote_response_hidden_fields.rb → container_container_pull_through_remote_response_hidden_fields.rb} +3 -3
- data/lib/pulp_container_client/models/container_container_push_repository.rb +41 -41
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +71 -61
- data/lib/pulp_container_client/models/container_container_remote_response.rb +12 -2
- data/lib/pulp_container_client/models/container_container_repository_response.rb +11 -1
- data/lib/pulp_container_client/models/container_manifest_response.rb +58 -8
- data/lib/pulp_container_client/models/container_manifest_signature_response.rb +11 -1
- data/lib/pulp_container_client/models/container_tag_response.rb +11 -1
- data/lib/pulp_container_client/models/oci_build_image.rb +16 -15
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +53 -53
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +53 -53
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +41 -41
- data/lib/pulp_container_client/models/repository_version_response.rb +12 -2
- data/lib/pulp_container_client/version.rb +1 -1
- data/lib/pulp_container_client.rb +1 -214
- data/spec/api/content_blobs_api_spec.rb +9 -8
- data/spec/api/content_manifests_api_spec.rb +10 -9
- data/spec/api/content_signatures_api_spec.rb +9 -8
- data/spec/api/content_tags_api_spec.rb +9 -8
- data/spec/api/distributions_container_api_spec.rb +26 -25
- data/spec/api/distributions_pull_through_api_spec.rb +26 -25
- data/spec/api/pulp_container_namespaces_api_spec.rb +18 -17
- data/spec/api/remotes_container_api_spec.rb +26 -25
- data/spec/api/remotes_pull_through_api_spec.rb +26 -25
- data/spec/api/repositories_container_api_spec.rb +48 -47
- data/spec/api/repositories_container_push_api_spec.rb +30 -29
- data/spec/api/repositories_container_push_versions_api_spec.rb +12 -11
- data/spec/api/repositories_container_versions_api_spec.rb +12 -11
- data/spec/api/token_api_spec.rb +2 -2
- data/spec/models/container_blob_response_spec.rb +6 -0
- data/spec/models/container_container_distribution_response_spec.rb +18 -6
- data/spec/models/container_container_distribution_spec.rb +6 -6
- data/spec/models/container_container_namespace_response_spec.rb +6 -0
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +18 -6
- data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/{composite_content_guard_spec.rb → container_container_pull_through_remote_response_hidden_fields_spec.rb} +7 -13
- data/spec/models/container_container_pull_through_remote_response_spec.rb +6 -0
- data/spec/models/container_container_push_repository_response_spec.rb +16 -10
- data/spec/models/container_container_push_repository_spec.rb +4 -4
- data/spec/models/container_container_remote_response_spec.rb +6 -0
- data/spec/models/container_container_repository_response_spec.rb +6 -0
- data/spec/models/container_manifest_response_spec.rb +30 -0
- data/spec/models/container_manifest_signature_response_spec.rb +6 -0
- data/spec/models/container_tag_response_spec.rb +6 -0
- data/spec/models/oci_build_image_spec.rb +2 -2
- data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
- data/spec/models/repository_version_response_spec.rb +6 -0
- metadata +63 -915
- data/docs/AccessPoliciesApi.md +0 -323
- data/docs/AccessPolicy.md +0 -23
- data/docs/AccessPolicyResponse.md +0 -33
- data/docs/AcsFileApi.md +0 -662
- data/docs/ApiAppStatusResponse.md +0 -21
- data/docs/Artifact.md +0 -31
- data/docs/ArtifactDistributionResponse.md +0 -33
- data/docs/ArtifactResponse.md +0 -37
- data/docs/ArtifactsApi.md +0 -277
- data/docs/CertguardRHSMCertGuard.md +0 -21
- data/docs/CertguardRHSMCertGuardResponse.md +0 -27
- data/docs/CertguardX509CertGuard.md +0 -21
- data/docs/CertguardX509CertGuardResponse.md +0 -27
- data/docs/CompositeContentGuard.md +0 -21
- data/docs/CompositeContentGuardResponse.md +0 -27
- data/docs/ContentApi.md +0 -90
- data/docs/ContentAppStatusResponse.md +0 -21
- data/docs/ContentFilesApi.md +0 -214
- data/docs/ContentGuardResponse.md +0 -25
- data/docs/ContentRedirectContentGuard.md +0 -19
- data/docs/ContentRedirectContentGuardResponse.md +0 -25
- data/docs/ContentSettingsResponse.md +0 -19
- data/docs/ContentguardsApi.md +0 -100
- data/docs/ContentguardsCompositeApi.md +0 -607
- data/docs/ContentguardsContentRedirectApi.md +0 -607
- data/docs/ContentguardsHeaderApi.md +0 -607
- data/docs/ContentguardsRbacApi.md +0 -607
- data/docs/ContentguardsRhsmApi.md +0 -375
- data/docs/ContentguardsX509Api.md +0 -375
- data/docs/DatabaseConnectionResponse.md +0 -17
- data/docs/DistributionResponse.md +0 -35
- data/docs/DistributionsApi.md +0 -116
- data/docs/DistributionsArtifactsApi.md +0 -172
- data/docs/DistributionsFileApi.md +0 -736
- data/docs/DocsApiJsonApi.md +0 -61
- data/docs/DocsApiYamlApi.md +0 -61
- data/docs/Domain.md +0 -27
- data/docs/DomainResponse.md +0 -33
- data/docs/DomainsApi.md +0 -376
- data/docs/EvaluationResponse.md +0 -21
- data/docs/ExportersFilesystemApi.md +0 -376
- data/docs/ExportersFilesystemExportsApi.md +0 -241
- data/docs/ExportersPulpApi.md +0 -376
- data/docs/ExportersPulpExportsApi.md +0 -241
- data/docs/FileFileAlternateContentSource.md +0 -23
- data/docs/FileFileAlternateContentSourceResponse.md +0 -29
- data/docs/FileFileContent.md +0 -25
- data/docs/FileFileContentResponse.md +0 -37
- data/docs/FileFileDistribution.md +0 -29
- data/docs/FileFileDistributionResponse.md +0 -37
- data/docs/FileFilePublication.md +0 -21
- data/docs/FileFilePublicationResponse.md +0 -29
- data/docs/FileFileRemote.md +0 -57
- data/docs/FileFileRemoteResponse.md +0 -55
- data/docs/FileFileRepository.md +0 -29
- data/docs/FileFileRepositoryResponse.md +0 -39
- data/docs/FilesystemExport.md +0 -23
- data/docs/FilesystemExportResponse.md +0 -27
- data/docs/FilesystemExporter.md +0 -21
- data/docs/FilesystemExporterResponse.md +0 -27
- data/docs/Group.md +0 -17
- data/docs/GroupProgressReportResponse.md +0 -25
- data/docs/GroupResponse.md +0 -21
- data/docs/GroupRole.md +0 -21
- data/docs/GroupRoleResponse.md +0 -31
- data/docs/GroupUser.md +0 -17
- data/docs/GroupUserResponse.md +0 -19
- data/docs/GroupsApi.md +0 -603
- data/docs/GroupsRolesApi.md +0 -263
- data/docs/GroupsUsersApi.md +0 -181
- data/docs/HeaderContentGuard.md +0 -25
- data/docs/HeaderContentGuardResponse.md +0 -31
- data/docs/ImportResponse.md +0 -25
- data/docs/ImportersPulpApi.md +0 -375
- data/docs/ImportersPulpImportCheckApi.md +0 -62
- data/docs/ImportersPulpImportsApi.md +0 -241
- data/docs/LivezApi.md +0 -51
- data/docs/MethodEnum.md +0 -16
- data/docs/MinimalTaskResponse.md +0 -33
- data/docs/MultipleArtifactContentResponse.md +0 -23
- data/docs/OrphansApi.md +0 -58
- data/docs/OrphansCleanup.md +0 -19
- data/docs/OrphansCleanupApi.md +0 -61
- data/docs/PaginatedAccessPolicyResponseList.md +0 -23
- data/docs/PaginatedArtifactDistributionResponseList.md +0 -23
- data/docs/PaginatedArtifactResponseList.md +0 -23
- data/docs/PaginatedCompositeContentGuardResponseList.md +0 -23
- data/docs/PaginatedContentGuardResponseList.md +0 -23
- data/docs/PaginatedContentRedirectContentGuardResponseList.md +0 -23
- data/docs/PaginatedDistributionResponseList.md +0 -23
- data/docs/PaginatedDomainResponseList.md +0 -23
- data/docs/PaginatedFilesystemExportResponseList.md +0 -23
- data/docs/PaginatedFilesystemExporterResponseList.md +0 -23
- data/docs/PaginatedGroupResponseList.md +0 -23
- data/docs/PaginatedGroupRoleResponseList.md +0 -23
- data/docs/PaginatedGroupUserResponseList.md +0 -23
- data/docs/PaginatedHeaderContentGuardResponseList.md +0 -23
- data/docs/PaginatedImportResponseList.md +0 -23
- data/docs/PaginatedMultipleArtifactContentResponseList.md +0 -23
- data/docs/PaginatedPublicationResponseList.md +0 -23
- data/docs/PaginatedPulpExportResponseList.md +0 -23
- data/docs/PaginatedPulpExporterResponseList.md +0 -23
- data/docs/PaginatedPulpImporterResponseList.md +0 -23
- data/docs/PaginatedRBACContentGuardResponseList.md +0 -23
- data/docs/PaginatedRemoteResponseList.md +0 -23
- data/docs/PaginatedRepositoryResponseList.md +0 -23
- data/docs/PaginatedRoleResponseList.md +0 -23
- data/docs/PaginatedSigningServiceResponseList.md +0 -23
- data/docs/PaginatedTaskGroupResponseList.md +0 -23
- data/docs/PaginatedTaskResponseList.md +0 -23
- data/docs/PaginatedTaskScheduleResponseList.md +0 -23
- data/docs/PaginatedUploadResponseList.md +0 -23
- data/docs/PaginatedUpstreamPulpResponseList.md +0 -23
- data/docs/PaginatedUserResponseList.md +0 -23
- data/docs/PaginatedUserRoleResponseList.md +0 -23
- data/docs/PaginatedWorkerResponseList.md +0 -23
- data/docs/PaginatedcertguardRHSMCertGuardResponseList.md +0 -23
- data/docs/PaginatedcertguardX509CertGuardResponseList.md +0 -23
- data/docs/PaginatedfileFileAlternateContentSourceResponseList.md +0 -23
- data/docs/PaginatedfileFileContentResponseList.md +0 -23
- data/docs/PaginatedfileFileDistributionResponseList.md +0 -23
- data/docs/PaginatedfileFilePublicationResponseList.md +0 -23
- data/docs/PaginatedfileFileRemoteResponseList.md +0 -23
- data/docs/PaginatedfileFileRepositoryResponseList.md +0 -23
- data/docs/PatchedAccessPolicy.md +0 -23
- data/docs/PatchedCompositeContentGuard.md +0 -21
- data/docs/PatchedContentRedirectContentGuard.md +0 -19
- data/docs/PatchedDomain.md +0 -27
- data/docs/PatchedFilesystemExporter.md +0 -21
- data/docs/PatchedGroup.md +0 -17
- data/docs/PatchedHeaderContentGuard.md +0 -25
- data/docs/PatchedPulpExporter.md +0 -23
- data/docs/PatchedPulpImporter.md +0 -19
- data/docs/PatchedRBACContentGuard.md +0 -19
- data/docs/PatchedRole.md +0 -21
- data/docs/PatchedTaskCancel.md +0 -17
- data/docs/PatchedUpstreamPulp.md +0 -37
- data/docs/PatchedUser.md +0 -29
- data/docs/PatchedcertguardRHSMCertGuard.md +0 -21
- data/docs/PatchedcertguardX509CertGuard.md +0 -21
- data/docs/PatchedfileFileAlternateContentSource.md +0 -23
- data/docs/PatchedfileFileDistribution.md +0 -29
- data/docs/PatchedfileFileRemote.md +0 -57
- data/docs/PatchedfileFileRepository.md +0 -29
- data/docs/ProgressReportResponse.md +0 -27
- data/docs/PublicationResponse.md +0 -25
- data/docs/PublicationsApi.md +0 -102
- data/docs/PublicationsFileApi.md +0 -497
- data/docs/PulpExport.md +0 -27
- data/docs/PulpExportResponse.md +0 -31
- data/docs/PulpExporter.md +0 -23
- data/docs/PulpExporterResponse.md +0 -29
- data/docs/PulpImport.md +0 -21
- data/docs/PulpImportCheck.md +0 -21
- data/docs/PulpImportCheckResponse.md +0 -21
- data/docs/PulpImporter.md +0 -19
- data/docs/PulpImporterResponse.md +0 -25
- data/docs/Purge.md +0 -19
- data/docs/RBACContentGuard.md +0 -19
- data/docs/RBACContentGuardResponse.md +0 -29
- data/docs/ReclaimSpace.md +0 -19
- data/docs/RedisConnectionResponse.md +0 -17
- data/docs/RemoteResponse.md +0 -55
- data/docs/RemoteResponsePolicyEnum.md +0 -16
- data/docs/RemotesApi.md +0 -114
- data/docs/RemotesFileApi.md +0 -734
- data/docs/RepairApi.md +0 -62
- data/docs/RepositoriesApi.md +0 -124
- data/docs/RepositoriesFileApi.md +0 -856
- data/docs/RepositoriesFileVersionsApi.md +0 -275
- data/docs/RepositoriesReclaimSpaceApi.md +0 -61
- data/docs/RepositoryAddRemoveContent.md +0 -21
- data/docs/RepositoryResponse.md +0 -35
- data/docs/RepositorySyncURL.md +0 -19
- data/docs/RepositoryVersionsApi.md +0 -104
- data/docs/Role.md +0 -21
- data/docs/RoleResponse.md +0 -29
- data/docs/RolesApi.md +0 -389
- data/docs/SigningServiceResponse.md +0 -29
- data/docs/SigningServicesApi.md +0 -140
- data/docs/StatesEnum.md +0 -16
- data/docs/StatusApi.md +0 -52
- data/docs/StatusResponse.md +0 -33
- data/docs/StorageClassEnum.md +0 -16
- data/docs/StorageResponse.md +0 -21
- data/docs/TaskGroupOperationResponse.md +0 -17
- data/docs/TaskGroupResponse.md +0 -39
- data/docs/TaskGroupsApi.md +0 -130
- data/docs/TaskResponse.md +0 -51
- data/docs/TaskScheduleResponse.md +0 -31
- data/docs/TaskSchedulesApi.md +0 -378
- data/docs/TasksApi.md +0 -601
- data/docs/Upload.md +0 -17
- data/docs/UploadChunk.md +0 -19
- data/docs/UploadChunkResponse.md +0 -19
- data/docs/UploadCommit.md +0 -17
- data/docs/UploadDetailResponse.md +0 -27
- data/docs/UploadResponse.md +0 -25
- data/docs/UploadsApi.md +0 -603
- data/docs/UpstreamPulp.md +0 -37
- data/docs/UpstreamPulpResponse.md +0 -39
- data/docs/UpstreamPulpsApi.md +0 -635
- data/docs/User.md +0 -29
- data/docs/UserGroup.md +0 -17
- data/docs/UserGroupResponse.md +0 -19
- data/docs/UserResponse.md +0 -37
- data/docs/UserRole.md +0 -21
- data/docs/UserRoleResponse.md +0 -31
- data/docs/UsersApi.md +0 -401
- data/docs/UsersRolesApi.md +0 -263
- data/docs/VersionResponse.md +0 -25
- data/docs/WorkerResponse.md +0 -29
- data/docs/WorkersApi.md +0 -172
- data/lib/pulp_container_client/api/access_policies_api.rb +0 -404
- data/lib/pulp_container_client/api/acs_file_api.rb +0 -805
- data/lib/pulp_container_client/api/artifacts_api.rb +0 -368
- data/lib/pulp_container_client/api/content_api.rb +0 -132
- data/lib/pulp_container_client/api/content_files_api.rb +0 -273
- data/lib/pulp_container_client/api/contentguards_api.rb +0 -147
- data/lib/pulp_container_client/api/contentguards_composite_api.rb +0 -741
- data/lib/pulp_container_client/api/contentguards_content_redirect_api.rb +0 -741
- data/lib/pulp_container_client/api/contentguards_header_api.rb +0 -741
- data/lib/pulp_container_client/api/contentguards_rbac_api.rb +0 -741
- data/lib/pulp_container_client/api/contentguards_rhsm_api.rb +0 -465
- data/lib/pulp_container_client/api/contentguards_x509_api.rb +0 -465
- data/lib/pulp_container_client/api/distributions_api.rb +0 -171
- data/lib/pulp_container_client/api/distributions_artifacts_api.rb +0 -225
- data/lib/pulp_container_client/api/distributions_file_api.rb +0 -907
- data/lib/pulp_container_client/api/docs_api_json_api.rb +0 -89
- data/lib/pulp_container_client/api/docs_api_yaml_api.rb +0 -89
- data/lib/pulp_container_client/api/domains_api.rb +0 -467
- data/lib/pulp_container_client/api/exporters_filesystem_api.rb +0 -467
- data/lib/pulp_container_client/api/exporters_filesystem_exports_api.rb +0 -294
- data/lib/pulp_container_client/api/exporters_pulp_api.rb +0 -467
- data/lib/pulp_container_client/api/exporters_pulp_exports_api.rb +0 -294
- data/lib/pulp_container_client/api/groups_api.rb +0 -735
- data/lib/pulp_container_client/api/groups_roles_api.rb +0 -331
- data/lib/pulp_container_client/api/groups_users_api.rb +0 -226
- data/lib/pulp_container_client/api/importers_pulp_api.rb +0 -465
- data/lib/pulp_container_client/api/importers_pulp_import_check_api.rb +0 -86
- data/lib/pulp_container_client/api/importers_pulp_imports_api.rb +0 -294
- data/lib/pulp_container_client/api/livez_api.rb +0 -76
- data/lib/pulp_container_client/api/orphans_api.rb +0 -78
- data/lib/pulp_container_client/api/orphans_cleanup_api.rb +0 -84
- data/lib/pulp_container_client/api/publications_api.rb +0 -150
- data/lib/pulp_container_client/api/publications_file_api.rb +0 -604
- data/lib/pulp_container_client/api/remotes_api.rb +0 -168
- data/lib/pulp_container_client/api/remotes_file_api.rb +0 -904
- data/lib/pulp_container_client/api/repair_api.rb +0 -86
- data/lib/pulp_container_client/api/repositories_api.rb +0 -183
- data/lib/pulp_container_client/api/repositories_file_api.rb +0 -1059
- data/lib/pulp_container_client/api/repositories_file_versions_api.rb +0 -349
- data/lib/pulp_container_client/api/repositories_reclaim_space_api.rb +0 -84
- data/lib/pulp_container_client/api/repository_versions_api.rb +0 -145
- data/lib/pulp_container_client/api/roles_api.rb +0 -486
- data/lib/pulp_container_client/api/signing_services_api.rb +0 -177
- data/lib/pulp_container_client/api/status_api.rb +0 -78
- data/lib/pulp_container_client/api/task_groups_api.rb +0 -158
- data/lib/pulp_container_client/api/task_schedules_api.rb +0 -462
- data/lib/pulp_container_client/api/tasks_api.rb +0 -750
- data/lib/pulp_container_client/api/uploads_api.rb +0 -741
- data/lib/pulp_container_client/api/upstream_pulps_api.rb +0 -760
- data/lib/pulp_container_client/api/users_api.rb +0 -504
- data/lib/pulp_container_client/api/users_roles_api.rb +0 -331
- data/lib/pulp_container_client/api/workers_api.rb +0 -225
- data/lib/pulp_container_client/models/access_policy.rb +0 -249
- data/lib/pulp_container_client/models/access_policy_response.rb +0 -298
- data/lib/pulp_container_client/models/api_app_status_response.rb +0 -230
- data/lib/pulp_container_client/models/artifact.rb +0 -379
- data/lib/pulp_container_client/models/artifact_distribution_response.rb +0 -301
- data/lib/pulp_container_client/models/artifact_response.rb +0 -318
- data/lib/pulp_container_client/models/certguard_rhsm_cert_guard.rb +0 -292
- data/lib/pulp_container_client/models/certguard_rhsm_cert_guard_response.rb +0 -268
- data/lib/pulp_container_client/models/certguard_x509_cert_guard.rb +0 -292
- data/lib/pulp_container_client/models/certguard_x509_cert_guard_response.rb +0 -268
- data/lib/pulp_container_client/models/composite_content_guard.rb +0 -270
- data/lib/pulp_container_client/models/composite_content_guard_response.rb +0 -265
- data/lib/pulp_container_client/models/content_app_status_response.rb +0 -230
- data/lib/pulp_container_client/models/content_guard_response.rb +0 -253
- data/lib/pulp_container_client/models/content_redirect_content_guard.rb +0 -258
- data/lib/pulp_container_client/models/content_redirect_content_guard_response.rb +0 -253
- data/lib/pulp_container_client/models/content_settings_response.rb +0 -228
- data/lib/pulp_container_client/models/database_connection_response.rb +0 -213
- data/lib/pulp_container_client/models/distribution_response.rb +0 -312
- data/lib/pulp_container_client/models/domain.rb +0 -332
- data/lib/pulp_container_client/models/domain_response.rb +0 -337
- data/lib/pulp_container_client/models/evaluation_response.rb +0 -245
- data/lib/pulp_container_client/models/file_file_alternate_content_source.rb +0 -270
- data/lib/pulp_container_client/models/file_file_alternate_content_source_response.rb +0 -280
- data/lib/pulp_container_client/models/file_file_content.rb +0 -272
- data/lib/pulp_container_client/models/file_file_content_response.rb +0 -312
- data/lib/pulp_container_client/models/file_file_distribution.rb +0 -322
- data/lib/pulp_container_client/models/file_file_distribution_response.rb +0 -323
- data/lib/pulp_container_client/models/file_file_publication.rb +0 -245
- data/lib/pulp_container_client/models/file_file_publication_response.rb +0 -271
- data/lib/pulp_container_client/models/file_file_remote.rb +0 -669
- data/lib/pulp_container_client/models/file_file_remote_response.rb +0 -497
- data/lib/pulp_container_client/models/file_file_repository.rb +0 -346
- data/lib/pulp_container_client/models/file_file_repository_response.rb +0 -344
- data/lib/pulp_container_client/models/filesystem_export.rb +0 -239
- data/lib/pulp_container_client/models/filesystem_export_response.rb +0 -260
- data/lib/pulp_container_client/models/filesystem_exporter.rb +0 -276
- data/lib/pulp_container_client/models/filesystem_exporter_response.rb +0 -267
- data/lib/pulp_container_client/models/group.rb +0 -241
- data/lib/pulp_container_client/models/group_progress_report_response.rb +0 -249
- data/lib/pulp_container_client/models/group_response.rb +0 -250
- data/lib/pulp_container_client/models/group_role.rb +0 -268
- data/lib/pulp_container_client/models/group_role_response.rb +0 -283
- data/lib/pulp_container_client/models/group_user.rb +0 -241
- data/lib/pulp_container_client/models/group_user_response.rb +0 -241
- data/lib/pulp_container_client/models/header_content_guard.rb +0 -352
- data/lib/pulp_container_client/models/header_content_guard_response.rb +0 -294
- data/lib/pulp_container_client/models/import_response.rb +0 -257
- data/lib/pulp_container_client/models/method_enum.rb +0 -37
- data/lib/pulp_container_client/models/minimal_task_response.rb +0 -292
- data/lib/pulp_container_client/models/multiple_artifact_content_response.rb +0 -242
- data/lib/pulp_container_client/models/orphans_cleanup.rb +0 -220
- data/lib/pulp_container_client/models/paginated_access_policy_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_artifact_distribution_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_artifact_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_composite_content_guard_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_content_guard_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_content_redirect_content_guard_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_distribution_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_domain_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_filesystem_export_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_filesystem_exporter_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_group_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_group_role_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_group_user_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_header_content_guard_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_import_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_multiple_artifact_content_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_publication_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_pulp_export_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_pulp_exporter_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_pulp_importer_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_rbac_content_guard_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_remote_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_repository_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_role_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_signing_service_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_task_group_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_task_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_task_schedule_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_upload_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_upstream_pulp_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_user_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_user_role_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginated_worker_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginatedcertguard_rhsm_cert_guard_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginatedcertguard_x509_cert_guard_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginatedfile_file_alternate_content_source_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginatedfile_file_content_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginatedfile_file_distribution_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginatedfile_file_publication_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginatedfile_file_remote_response_list.rb +0 -247
- data/lib/pulp_container_client/models/paginatedfile_file_repository_response_list.rb +0 -247
- data/lib/pulp_container_client/models/patched_access_policy.rb +0 -244
- data/lib/pulp_container_client/models/patched_composite_content_guard.rb +0 -261
- data/lib/pulp_container_client/models/patched_content_redirect_content_guard.rb +0 -249
- data/lib/pulp_container_client/models/patched_domain.rb +0 -313
- data/lib/pulp_container_client/models/patched_filesystem_exporter.rb +0 -258
- data/lib/pulp_container_client/models/patched_group.rb +0 -232
- data/lib/pulp_container_client/models/patched_header_content_guard.rb +0 -325
- data/lib/pulp_container_client/models/patched_pulp_exporter.rb +0 -270
- data/lib/pulp_container_client/models/patched_pulp_importer.rb +0 -235
- data/lib/pulp_container_client/models/patched_rbac_content_guard.rb +0 -249
- data/lib/pulp_container_client/models/patched_role.rb +0 -261
- data/lib/pulp_container_client/models/patched_task_cancel.rb +0 -223
- data/lib/pulp_container_client/models/patched_upstream_pulp.rb +0 -450
- data/lib/pulp_container_client/models/patched_user.rb +0 -342
- data/lib/pulp_container_client/models/patchedcertguard_rhsm_cert_guard.rb +0 -274
- data/lib/pulp_container_client/models/patchedcertguard_x509_cert_guard.rb +0 -274
- data/lib/pulp_container_client/models/patchedfile_file_alternate_content_source.rb +0 -256
- data/lib/pulp_container_client/models/patchedfile_file_distribution.rb +0 -304
- data/lib/pulp_container_client/models/patchedfile_file_remote.rb +0 -651
- data/lib/pulp_container_client/models/patchedfile_file_repository.rb +0 -337
- data/lib/pulp_container_client/models/progress_report_response.rb +0 -259
- data/lib/pulp_container_client/models/publication_response.rb +0 -246
- data/lib/pulp_container_client/models/pulp_export.rb +0 -282
- data/lib/pulp_container_client/models/pulp_export_response.rb +0 -280
- data/lib/pulp_container_client/models/pulp_exporter.rb +0 -293
- data/lib/pulp_container_client/models/pulp_exporter_response.rb +0 -284
- data/lib/pulp_container_client/models/pulp_import.rb +0 -260
- data/lib/pulp_container_client/models/pulp_import_check.rb +0 -273
- data/lib/pulp_container_client/models/pulp_import_check_response.rb +0 -228
- data/lib/pulp_container_client/models/pulp_importer.rb +0 -244
- data/lib/pulp_container_client/models/pulp_importer_response.rb +0 -254
- data/lib/pulp_container_client/models/purge.rb +0 -219
- data/lib/pulp_container_client/models/rbac_content_guard.rb +0 -258
- data/lib/pulp_container_client/models/rbac_content_guard_response.rb +0 -275
- data/lib/pulp_container_client/models/reclaim_space.rb +0 -227
- data/lib/pulp_container_client/models/redis_connection_response.rb +0 -213
- data/lib/pulp_container_client/models/remote_response.rb +0 -497
- data/lib/pulp_container_client/models/remote_response_policy_enum.rb +0 -36
- data/lib/pulp_container_client/models/repository_add_remove_content.rb +0 -232
- data/lib/pulp_container_client/models/repository_response.rb +0 -319
- data/lib/pulp_container_client/models/repository_sync_url.rb +0 -220
- data/lib/pulp_container_client/models/role.rb +0 -275
- data/lib/pulp_container_client/models/role_response.rb +0 -280
- data/lib/pulp_container_client/models/signing_service_response.rb +0 -287
- data/lib/pulp_container_client/models/states_enum.rb +0 -38
- data/lib/pulp_container_client/models/status_response.rb +0 -331
- data/lib/pulp_container_client/models/storage_class_enum.rb +0 -37
- data/lib/pulp_container_client/models/storage_response.rb +0 -276
- data/lib/pulp_container_client/models/task_group_operation_response.rb +0 -213
- data/lib/pulp_container_client/models/task_group_response.rb +0 -329
- data/lib/pulp_container_client/models/task_response.rb +0 -396
- data/lib/pulp_container_client/models/task_schedule_response.rb +0 -289
- data/lib/pulp_container_client/models/upload.rb +0 -213
- data/lib/pulp_container_client/models/upload_chunk.rb +0 -239
- data/lib/pulp_container_client/models/upload_chunk_response.rb +0 -216
- data/lib/pulp_container_client/models/upload_commit.rb +0 -232
- data/lib/pulp_container_client/models/upload_detail_response.rb +0 -263
- data/lib/pulp_container_client/models/upload_response.rb +0 -252
- data/lib/pulp_container_client/models/upstream_pulp.rb +0 -477
- data/lib/pulp_container_client/models/upstream_pulp_response.rb +0 -338
- data/lib/pulp_container_client/models/user.rb +0 -351
- data/lib/pulp_container_client/models/user_group.rb +0 -241
- data/lib/pulp_container_client/models/user_group_response.rb +0 -241
- data/lib/pulp_container_client/models/user_response.rb +0 -367
- data/lib/pulp_container_client/models/user_role.rb +0 -268
- data/lib/pulp_container_client/models/user_role_response.rb +0 -283
- data/lib/pulp_container_client/models/version_response.rb +0 -273
- data/lib/pulp_container_client/models/worker_response.rb +0 -269
- data/spec/api/access_policies_api_spec.rb +0 -115
- data/spec/api/acs_file_api_spec.rb +0 -193
- data/spec/api/artifacts_api_spec.rb +0 -107
- data/spec/api/content_api_spec.rb +0 -60
- data/spec/api/content_files_api_spec.rb +0 -90
- data/spec/api/contentguards_api_spec.rb +0 -65
- data/spec/api/contentguards_composite_api_spec.rb +0 -181
- data/spec/api/contentguards_content_redirect_api_spec.rb +0 -181
- data/spec/api/contentguards_header_api_spec.rb +0 -181
- data/spec/api/contentguards_rbac_api_spec.rb +0 -181
- data/spec/api/contentguards_rhsm_api_spec.rb +0 -127
- data/spec/api/contentguards_x509_api_spec.rb +0 -127
- data/spec/api/distributions_api_spec.rb +0 -73
- data/spec/api/distributions_artifacts_api_spec.rb +0 -85
- data/spec/api/distributions_file_api_spec.rb +0 -215
- data/spec/api/docs_api_json_api_spec.rb +0 -48
- data/spec/api/docs_api_yaml_api_spec.rb +0 -48
- data/spec/api/domains_api_spec.rb +0 -127
- data/spec/api/exporters_filesystem_api_spec.rb +0 -127
- data/spec/api/exporters_filesystem_exports_api_spec.rb +0 -90
- data/spec/api/exporters_pulp_api_spec.rb +0 -127
- data/spec/api/exporters_pulp_exports_api_spec.rb +0 -90
- data/spec/api/groups_api_spec.rb +0 -179
- data/spec/api/groups_roles_api_spec.rb +0 -101
- data/spec/api/groups_users_api_spec.rb +0 -76
- data/spec/api/importers_pulp_api_spec.rb +0 -127
- data/spec/api/importers_pulp_import_check_api_spec.rb +0 -47
- data/spec/api/importers_pulp_imports_api_spec.rb +0 -90
- data/spec/api/livez_api_spec.rb +0 -46
- data/spec/api/orphans_api_spec.rb +0 -46
- data/spec/api/orphans_cleanup_api_spec.rb +0 -46
- data/spec/api/publications_api_spec.rb +0 -66
- data/spec/api/publications_file_api_spec.rb +0 -156
- data/spec/api/remotes_api_spec.rb +0 -72
- data/spec/api/remotes_file_api_spec.rb +0 -214
- data/spec/api/repair_api_spec.rb +0 -47
- data/spec/api/repositories_api_spec.rb +0 -77
- data/spec/api/repositories_file_api_spec.rb +0 -245
- data/spec/api/repositories_file_versions_api_spec.rb +0 -106
- data/spec/api/repositories_reclaim_space_api_spec.rb +0 -46
- data/spec/api/repository_versions_api_spec.rb +0 -67
- data/spec/api/roles_api_spec.rb +0 -134
- data/spec/api/signing_services_api_spec.rb +0 -69
- data/spec/api/status_api_spec.rb +0 -46
- data/spec/api/task_groups_api_spec.rb +0 -64
- data/spec/api/task_schedules_api_spec.rb +0 -126
- data/spec/api/tasks_api_spec.rb +0 -193
- data/spec/api/uploads_api_spec.rb +0 -178
- data/spec/api/upstream_pulps_api_spec.rb +0 -180
- data/spec/api/users_api_spec.rb +0 -140
- data/spec/api/users_roles_api_spec.rb +0 -101
- data/spec/api/workers_api_spec.rb +0 -85
- data/spec/models/access_policy_response_spec.rb +0 -89
- data/spec/models/access_policy_spec.rb +0 -59
- data/spec/models/api_app_status_response_spec.rb +0 -53
- data/spec/models/artifact_distribution_response_spec.rb +0 -89
- data/spec/models/artifact_response_spec.rb +0 -101
- data/spec/models/artifact_spec.rb +0 -83
- data/spec/models/certguard_rhsm_cert_guard_response_spec.rb +0 -71
- data/spec/models/certguard_rhsm_cert_guard_spec.rb +0 -53
- data/spec/models/certguard_x509_cert_guard_response_spec.rb +0 -71
- data/spec/models/certguard_x509_cert_guard_spec.rb +0 -53
- data/spec/models/composite_content_guard_response_spec.rb +0 -71
- data/spec/models/content_app_status_response_spec.rb +0 -53
- data/spec/models/content_guard_response_spec.rb +0 -65
- data/spec/models/content_redirect_content_guard_response_spec.rb +0 -65
- data/spec/models/content_redirect_content_guard_spec.rb +0 -47
- data/spec/models/content_settings_response_spec.rb +0 -47
- data/spec/models/database_connection_response_spec.rb +0 -41
- data/spec/models/distribution_response_spec.rb +0 -95
- data/spec/models/domain_response_spec.rb +0 -89
- data/spec/models/domain_spec.rb +0 -71
- data/spec/models/evaluation_response_spec.rb +0 -53
- data/spec/models/file_file_alternate_content_source_response_spec.rb +0 -77
- data/spec/models/file_file_alternate_content_source_spec.rb +0 -59
- data/spec/models/file_file_content_response_spec.rb +0 -101
- data/spec/models/file_file_content_spec.rb +0 -65
- data/spec/models/file_file_distribution_response_spec.rb +0 -101
- data/spec/models/file_file_distribution_spec.rb +0 -77
- data/spec/models/file_file_publication_response_spec.rb +0 -77
- data/spec/models/file_file_publication_spec.rb +0 -53
- data/spec/models/file_file_remote_response_spec.rb +0 -155
- data/spec/models/file_file_remote_spec.rb +0 -161
- data/spec/models/file_file_repository_response_spec.rb +0 -107
- data/spec/models/file_file_repository_spec.rb +0 -77
- data/spec/models/filesystem_export_response_spec.rb +0 -71
- data/spec/models/filesystem_export_spec.rb +0 -59
- data/spec/models/filesystem_exporter_response_spec.rb +0 -71
- data/spec/models/filesystem_exporter_spec.rb +0 -53
- data/spec/models/group_progress_report_response_spec.rb +0 -65
- data/spec/models/group_response_spec.rb +0 -53
- data/spec/models/group_role_response_spec.rb +0 -83
- data/spec/models/group_role_spec.rb +0 -53
- data/spec/models/group_spec.rb +0 -41
- data/spec/models/group_user_response_spec.rb +0 -47
- data/spec/models/group_user_spec.rb +0 -41
- data/spec/models/header_content_guard_response_spec.rb +0 -83
- data/spec/models/header_content_guard_spec.rb +0 -65
- data/spec/models/import_response_spec.rb +0 -65
- data/spec/models/method_enum_spec.rb +0 -35
- data/spec/models/minimal_task_response_spec.rb +0 -89
- data/spec/models/multiple_artifact_content_response_spec.rb +0 -59
- data/spec/models/orphans_cleanup_spec.rb +0 -47
- data/spec/models/paginated_access_policy_response_list_spec.rb +0 -59
- data/spec/models/paginated_artifact_distribution_response_list_spec.rb +0 -59
- data/spec/models/paginated_artifact_response_list_spec.rb +0 -59
- data/spec/models/paginated_composite_content_guard_response_list_spec.rb +0 -59
- data/spec/models/paginated_content_guard_response_list_spec.rb +0 -59
- data/spec/models/paginated_content_redirect_content_guard_response_list_spec.rb +0 -59
- data/spec/models/paginated_distribution_response_list_spec.rb +0 -59
- data/spec/models/paginated_domain_response_list_spec.rb +0 -59
- data/spec/models/paginated_filesystem_export_response_list_spec.rb +0 -59
- data/spec/models/paginated_filesystem_exporter_response_list_spec.rb +0 -59
- data/spec/models/paginated_group_response_list_spec.rb +0 -59
- data/spec/models/paginated_group_role_response_list_spec.rb +0 -59
- data/spec/models/paginated_group_user_response_list_spec.rb +0 -59
- data/spec/models/paginated_header_content_guard_response_list_spec.rb +0 -59
- data/spec/models/paginated_import_response_list_spec.rb +0 -59
- data/spec/models/paginated_multiple_artifact_content_response_list_spec.rb +0 -59
- data/spec/models/paginated_publication_response_list_spec.rb +0 -59
- data/spec/models/paginated_pulp_export_response_list_spec.rb +0 -59
- data/spec/models/paginated_pulp_exporter_response_list_spec.rb +0 -59
- data/spec/models/paginated_pulp_importer_response_list_spec.rb +0 -59
- data/spec/models/paginated_rbac_content_guard_response_list_spec.rb +0 -59
- data/spec/models/paginated_remote_response_list_spec.rb +0 -59
- data/spec/models/paginated_repository_response_list_spec.rb +0 -59
- data/spec/models/paginated_role_response_list_spec.rb +0 -59
- data/spec/models/paginated_signing_service_response_list_spec.rb +0 -59
- data/spec/models/paginated_task_group_response_list_spec.rb +0 -59
- data/spec/models/paginated_task_response_list_spec.rb +0 -59
- data/spec/models/paginated_task_schedule_response_list_spec.rb +0 -59
- data/spec/models/paginated_upload_response_list_spec.rb +0 -59
- data/spec/models/paginated_upstream_pulp_response_list_spec.rb +0 -59
- data/spec/models/paginated_user_response_list_spec.rb +0 -59
- data/spec/models/paginated_user_role_response_list_spec.rb +0 -59
- data/spec/models/paginated_worker_response_list_spec.rb +0 -59
- data/spec/models/paginatedcertguard_rhsm_cert_guard_response_list_spec.rb +0 -59
- data/spec/models/paginatedcertguard_x509_cert_guard_response_list_spec.rb +0 -59
- data/spec/models/paginatedfile_file_alternate_content_source_response_list_spec.rb +0 -59
- data/spec/models/paginatedfile_file_content_response_list_spec.rb +0 -59
- data/spec/models/paginatedfile_file_distribution_response_list_spec.rb +0 -59
- data/spec/models/paginatedfile_file_publication_response_list_spec.rb +0 -59
- data/spec/models/paginatedfile_file_remote_response_list_spec.rb +0 -59
- data/spec/models/paginatedfile_file_repository_response_list_spec.rb +0 -59
- data/spec/models/patched_access_policy_spec.rb +0 -59
- data/spec/models/patched_composite_content_guard_spec.rb +0 -53
- data/spec/models/patched_content_redirect_content_guard_spec.rb +0 -47
- data/spec/models/patched_domain_spec.rb +0 -71
- data/spec/models/patched_filesystem_exporter_spec.rb +0 -53
- data/spec/models/patched_group_spec.rb +0 -41
- data/spec/models/patched_header_content_guard_spec.rb +0 -65
- data/spec/models/patched_pulp_exporter_spec.rb +0 -59
- data/spec/models/patched_pulp_importer_spec.rb +0 -47
- data/spec/models/patched_rbac_content_guard_spec.rb +0 -47
- data/spec/models/patched_role_spec.rb +0 -53
- data/spec/models/patched_task_cancel_spec.rb +0 -41
- data/spec/models/patched_upstream_pulp_spec.rb +0 -101
- data/spec/models/patched_user_spec.rb +0 -77
- data/spec/models/patchedcertguard_rhsm_cert_guard_spec.rb +0 -53
- data/spec/models/patchedcertguard_x509_cert_guard_spec.rb +0 -53
- data/spec/models/patchedfile_file_alternate_content_source_spec.rb +0 -59
- data/spec/models/patchedfile_file_distribution_spec.rb +0 -77
- data/spec/models/patchedfile_file_remote_spec.rb +0 -161
- data/spec/models/patchedfile_file_repository_spec.rb +0 -77
- data/spec/models/progress_report_response_spec.rb +0 -71
- data/spec/models/publication_response_spec.rb +0 -65
- data/spec/models/pulp_export_response_spec.rb +0 -83
- data/spec/models/pulp_export_spec.rb +0 -71
- data/spec/models/pulp_exporter_response_spec.rb +0 -77
- data/spec/models/pulp_exporter_spec.rb +0 -59
- data/spec/models/pulp_import_check_response_spec.rb +0 -53
- data/spec/models/pulp_import_check_spec.rb +0 -53
- data/spec/models/pulp_import_spec.rb +0 -53
- data/spec/models/pulp_importer_response_spec.rb +0 -65
- data/spec/models/pulp_importer_spec.rb +0 -47
- data/spec/models/purge_spec.rb +0 -47
- data/spec/models/rbac_content_guard_response_spec.rb +0 -77
- data/spec/models/rbac_content_guard_spec.rb +0 -47
- data/spec/models/reclaim_space_spec.rb +0 -47
- data/spec/models/redis_connection_response_spec.rb +0 -41
- data/spec/models/remote_response_hidden_fields_spec.rb +0 -47
- data/spec/models/remote_response_policy_enum_spec.rb +0 -35
- data/spec/models/remote_response_spec.rb +0 -155
- data/spec/models/repository_add_remove_content_spec.rb +0 -53
- data/spec/models/repository_response_spec.rb +0 -95
- data/spec/models/repository_sync_url_spec.rb +0 -47
- data/spec/models/role_response_spec.rb +0 -77
- data/spec/models/role_spec.rb +0 -53
- data/spec/models/signing_service_response_spec.rb +0 -77
- data/spec/models/states_enum_spec.rb +0 -35
- data/spec/models/status_response_spec.rb +0 -89
- data/spec/models/storage_class_enum_spec.rb +0 -35
- data/spec/models/storage_response_spec.rb +0 -53
- data/spec/models/task_group_operation_response_spec.rb +0 -41
- data/spec/models/task_group_response_spec.rb +0 -107
- data/spec/models/task_response_spec.rb +0 -143
- data/spec/models/task_schedule_response_spec.rb +0 -83
- data/spec/models/upload_chunk_response_spec.rb +0 -47
- data/spec/models/upload_chunk_spec.rb +0 -47
- data/spec/models/upload_commit_spec.rb +0 -41
- data/spec/models/upload_detail_response_spec.rb +0 -71
- data/spec/models/upload_response_spec.rb +0 -65
- data/spec/models/upload_spec.rb +0 -41
- data/spec/models/upstream_pulp_response_spec.rb +0 -107
- data/spec/models/upstream_pulp_spec.rb +0 -101
- data/spec/models/user_group_response_spec.rb +0 -47
- data/spec/models/user_group_spec.rb +0 -41
- data/spec/models/user_response_spec.rb +0 -101
- data/spec/models/user_role_response_spec.rb +0 -83
- data/spec/models/user_role_spec.rb +0 -53
- data/spec/models/user_spec.rb +0 -77
- data/spec/models/version_response_spec.rb +0 -65
- data/spec/models/worker_response_spec.rb +0 -77
|
@@ -25,8 +25,8 @@ module PulpContainerClient
|
|
|
25
25
|
# @param recursive_manage [RecursiveManage]
|
|
26
26
|
# @param [Hash] opts the optional parameters
|
|
27
27
|
# @return [AsyncOperationResponse]
|
|
28
|
-
def
|
|
29
|
-
data, _status_code, _headers =
|
|
28
|
+
def add(container_container_repository_href, recursive_manage, opts = {})
|
|
29
|
+
data, _status_code, _headers = add_with_http_info(container_container_repository_href, recursive_manage, opts)
|
|
30
30
|
data
|
|
31
31
|
end
|
|
32
32
|
|
|
@@ -36,17 +36,17 @@ module PulpContainerClient
|
|
|
36
36
|
# @param recursive_manage [RecursiveManage]
|
|
37
37
|
# @param [Hash] opts the optional parameters
|
|
38
38
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
39
|
-
def
|
|
39
|
+
def add_with_http_info(container_container_repository_href, recursive_manage, opts = {})
|
|
40
40
|
if @api_client.config.debugging
|
|
41
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
41
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.add ...'
|
|
42
42
|
end
|
|
43
43
|
# verify the required parameter 'container_container_repository_href' is set
|
|
44
44
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
45
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
45
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.add"
|
|
46
46
|
end
|
|
47
47
|
# verify the required parameter 'recursive_manage' is set
|
|
48
48
|
if @api_client.config.client_side_validation && recursive_manage.nil?
|
|
49
|
-
fail ArgumentError, "Missing the required parameter 'recursive_manage' when calling RepositoriesContainerApi.
|
|
49
|
+
fail ArgumentError, "Missing the required parameter 'recursive_manage' when calling RepositoriesContainerApi.add"
|
|
50
50
|
end
|
|
51
51
|
# resource path
|
|
52
52
|
local_var_path = '{container_container_repository_href}add/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -84,7 +84,7 @@ module PulpContainerClient
|
|
|
84
84
|
|
|
85
85
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
86
86
|
if @api_client.config.debugging
|
|
87
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
87
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#add\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
88
88
|
end
|
|
89
89
|
return data, status_code, headers
|
|
90
90
|
end
|
|
@@ -95,8 +95,8 @@ module PulpContainerClient
|
|
|
95
95
|
# @param nested_role [NestedRole]
|
|
96
96
|
# @param [Hash] opts the optional parameters
|
|
97
97
|
# @return [NestedRoleResponse]
|
|
98
|
-
def
|
|
99
|
-
data, _status_code, _headers =
|
|
98
|
+
def add_role(container_container_repository_href, nested_role, opts = {})
|
|
99
|
+
data, _status_code, _headers = add_role_with_http_info(container_container_repository_href, nested_role, opts)
|
|
100
100
|
data
|
|
101
101
|
end
|
|
102
102
|
|
|
@@ -106,17 +106,17 @@ module PulpContainerClient
|
|
|
106
106
|
# @param nested_role [NestedRole]
|
|
107
107
|
# @param [Hash] opts the optional parameters
|
|
108
108
|
# @return [Array<(NestedRoleResponse, Integer, Hash)>] NestedRoleResponse data, response status code and response headers
|
|
109
|
-
def
|
|
109
|
+
def add_role_with_http_info(container_container_repository_href, nested_role, opts = {})
|
|
110
110
|
if @api_client.config.debugging
|
|
111
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
111
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.add_role ...'
|
|
112
112
|
end
|
|
113
113
|
# verify the required parameter 'container_container_repository_href' is set
|
|
114
114
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
115
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
115
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.add_role"
|
|
116
116
|
end
|
|
117
117
|
# verify the required parameter 'nested_role' is set
|
|
118
118
|
if @api_client.config.client_side_validation && nested_role.nil?
|
|
119
|
-
fail ArgumentError, "Missing the required parameter 'nested_role' when calling RepositoriesContainerApi.
|
|
119
|
+
fail ArgumentError, "Missing the required parameter 'nested_role' when calling RepositoriesContainerApi.add_role"
|
|
120
120
|
end
|
|
121
121
|
# resource path
|
|
122
122
|
local_var_path = '{container_container_repository_href}add_role/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -154,7 +154,7 @@ module PulpContainerClient
|
|
|
154
154
|
|
|
155
155
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
156
156
|
if @api_client.config.debugging
|
|
157
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
157
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#add_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
158
158
|
end
|
|
159
159
|
return data, status_code, headers
|
|
160
160
|
end
|
|
@@ -163,13 +163,13 @@ module PulpContainerClient
|
|
|
163
163
|
# Trigger an asynchronous task to build an OCI image from a Containerfile. A new repository version is created with the new image and tag. This API is in tech preview. Backwards compatibility when upgrading is not guaranteed.
|
|
164
164
|
# @param container_container_repository_href [String]
|
|
165
165
|
# @param [Hash] opts the optional parameters
|
|
166
|
-
# @option opts [String] :
|
|
166
|
+
# @option opts [String] :containerfile_name Name of the Containerfile, from build_context, that should be used to run podman-build.
|
|
167
167
|
# @option opts [File] :containerfile An uploaded Containerfile that should be used to run podman-build.
|
|
168
168
|
# @option opts [String] :tag A tag name for the new image being built. (default to 'latest')
|
|
169
|
-
# @option opts [
|
|
169
|
+
# @option opts [String] :build_context RepositoryVersion to be used as the build context for container images.
|
|
170
170
|
# @return [AsyncOperationResponse]
|
|
171
|
-
def
|
|
172
|
-
data, _status_code, _headers =
|
|
171
|
+
def build_image(container_container_repository_href, opts = {})
|
|
172
|
+
data, _status_code, _headers = build_image_with_http_info(container_container_repository_href, opts)
|
|
173
173
|
data
|
|
174
174
|
end
|
|
175
175
|
|
|
@@ -177,21 +177,21 @@ module PulpContainerClient
|
|
|
177
177
|
# Trigger an asynchronous task to build an OCI image from a Containerfile. A new repository version is created with the new image and tag. This API is in tech preview. Backwards compatibility when upgrading is not guaranteed.
|
|
178
178
|
# @param container_container_repository_href [String]
|
|
179
179
|
# @param [Hash] opts the optional parameters
|
|
180
|
-
# @option opts [String] :
|
|
180
|
+
# @option opts [String] :containerfile_name Name of the Containerfile, from build_context, that should be used to run podman-build.
|
|
181
181
|
# @option opts [File] :containerfile An uploaded Containerfile that should be used to run podman-build.
|
|
182
182
|
# @option opts [String] :tag A tag name for the new image being built.
|
|
183
|
-
# @option opts [
|
|
183
|
+
# @option opts [String] :build_context RepositoryVersion to be used as the build context for container images.
|
|
184
184
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
185
|
-
def
|
|
185
|
+
def build_image_with_http_info(container_container_repository_href, opts = {})
|
|
186
186
|
if @api_client.config.debugging
|
|
187
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
187
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.build_image ...'
|
|
188
188
|
end
|
|
189
189
|
# verify the required parameter 'container_container_repository_href' is set
|
|
190
190
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
191
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
191
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.build_image"
|
|
192
192
|
end
|
|
193
193
|
if @api_client.config.client_side_validation && !opts[:'tag'].nil? && opts[:'tag'].to_s.length < 1
|
|
194
|
-
fail ArgumentError, 'invalid value for "opts[:"tag"]" when calling RepositoriesContainerApi.
|
|
194
|
+
fail ArgumentError, 'invalid value for "opts[:"tag"]" when calling RepositoriesContainerApi.build_image, the character length must be great than or equal to 1.'
|
|
195
195
|
end
|
|
196
196
|
|
|
197
197
|
# resource path
|
|
@@ -209,10 +209,10 @@ module PulpContainerClient
|
|
|
209
209
|
|
|
210
210
|
# form parameters
|
|
211
211
|
form_params = opts[:form_params] || {}
|
|
212
|
-
form_params['
|
|
212
|
+
form_params['containerfile_name'] = opts[:'containerfile_name'] if !opts[:'containerfile_name'].nil?
|
|
213
213
|
form_params['containerfile'] = opts[:'containerfile'] if !opts[:'containerfile'].nil?
|
|
214
214
|
form_params['tag'] = opts[:'tag'] if !opts[:'tag'].nil?
|
|
215
|
-
form_params['
|
|
215
|
+
form_params['build_context'] = opts[:'build_context'] if !opts[:'build_context'].nil?
|
|
216
216
|
|
|
217
217
|
# http body (model)
|
|
218
218
|
post_body = opts[:body]
|
|
@@ -234,7 +234,7 @@ module PulpContainerClient
|
|
|
234
234
|
|
|
235
235
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
236
236
|
if @api_client.config.debugging
|
|
237
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
237
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#build_image\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
238
238
|
end
|
|
239
239
|
return data, status_code, headers
|
|
240
240
|
end
|
|
@@ -245,8 +245,8 @@ module PulpContainerClient
|
|
|
245
245
|
# @param manifest_copy [ManifestCopy]
|
|
246
246
|
# @param [Hash] opts the optional parameters
|
|
247
247
|
# @return [AsyncOperationResponse]
|
|
248
|
-
def
|
|
249
|
-
data, _status_code, _headers =
|
|
248
|
+
def copy_manifests(container_container_repository_href, manifest_copy, opts = {})
|
|
249
|
+
data, _status_code, _headers = copy_manifests_with_http_info(container_container_repository_href, manifest_copy, opts)
|
|
250
250
|
data
|
|
251
251
|
end
|
|
252
252
|
|
|
@@ -256,17 +256,17 @@ module PulpContainerClient
|
|
|
256
256
|
# @param manifest_copy [ManifestCopy]
|
|
257
257
|
# @param [Hash] opts the optional parameters
|
|
258
258
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
259
|
-
def
|
|
259
|
+
def copy_manifests_with_http_info(container_container_repository_href, manifest_copy, opts = {})
|
|
260
260
|
if @api_client.config.debugging
|
|
261
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
261
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.copy_manifests ...'
|
|
262
262
|
end
|
|
263
263
|
# verify the required parameter 'container_container_repository_href' is set
|
|
264
264
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
265
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
265
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.copy_manifests"
|
|
266
266
|
end
|
|
267
267
|
# verify the required parameter 'manifest_copy' is set
|
|
268
268
|
if @api_client.config.client_side_validation && manifest_copy.nil?
|
|
269
|
-
fail ArgumentError, "Missing the required parameter 'manifest_copy' when calling RepositoriesContainerApi.
|
|
269
|
+
fail ArgumentError, "Missing the required parameter 'manifest_copy' when calling RepositoriesContainerApi.copy_manifests"
|
|
270
270
|
end
|
|
271
271
|
# resource path
|
|
272
272
|
local_var_path = '{container_container_repository_href}copy_manifests/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -304,7 +304,7 @@ module PulpContainerClient
|
|
|
304
304
|
|
|
305
305
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
306
306
|
if @api_client.config.debugging
|
|
307
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
307
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#copy_manifests\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
308
308
|
end
|
|
309
309
|
return data, status_code, headers
|
|
310
310
|
end
|
|
@@ -315,8 +315,8 @@ module PulpContainerClient
|
|
|
315
315
|
# @param tag_copy [TagCopy]
|
|
316
316
|
# @param [Hash] opts the optional parameters
|
|
317
317
|
# @return [AsyncOperationResponse]
|
|
318
|
-
def
|
|
319
|
-
data, _status_code, _headers =
|
|
318
|
+
def copy_tags(container_container_repository_href, tag_copy, opts = {})
|
|
319
|
+
data, _status_code, _headers = copy_tags_with_http_info(container_container_repository_href, tag_copy, opts)
|
|
320
320
|
data
|
|
321
321
|
end
|
|
322
322
|
|
|
@@ -326,17 +326,17 @@ module PulpContainerClient
|
|
|
326
326
|
# @param tag_copy [TagCopy]
|
|
327
327
|
# @param [Hash] opts the optional parameters
|
|
328
328
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
329
|
-
def
|
|
329
|
+
def copy_tags_with_http_info(container_container_repository_href, tag_copy, opts = {})
|
|
330
330
|
if @api_client.config.debugging
|
|
331
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
331
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.copy_tags ...'
|
|
332
332
|
end
|
|
333
333
|
# verify the required parameter 'container_container_repository_href' is set
|
|
334
334
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
335
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
335
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.copy_tags"
|
|
336
336
|
end
|
|
337
337
|
# verify the required parameter 'tag_copy' is set
|
|
338
338
|
if @api_client.config.client_side_validation && tag_copy.nil?
|
|
339
|
-
fail ArgumentError, "Missing the required parameter 'tag_copy' when calling RepositoriesContainerApi.
|
|
339
|
+
fail ArgumentError, "Missing the required parameter 'tag_copy' when calling RepositoriesContainerApi.copy_tags"
|
|
340
340
|
end
|
|
341
341
|
# resource path
|
|
342
342
|
local_var_path = '{container_container_repository_href}copy_tags/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -374,7 +374,7 @@ module PulpContainerClient
|
|
|
374
374
|
|
|
375
375
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
376
376
|
if @api_client.config.debugging
|
|
377
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
377
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#copy_tags\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
378
378
|
end
|
|
379
379
|
return data, status_code, headers
|
|
380
380
|
end
|
|
@@ -384,8 +384,8 @@ module PulpContainerClient
|
|
|
384
384
|
# @param container_container_repository [ContainerContainerRepository]
|
|
385
385
|
# @param [Hash] opts the optional parameters
|
|
386
386
|
# @return [ContainerContainerRepositoryResponse]
|
|
387
|
-
def
|
|
388
|
-
data, _status_code, _headers =
|
|
387
|
+
def create(container_container_repository, opts = {})
|
|
388
|
+
data, _status_code, _headers = create_with_http_info(container_container_repository, opts)
|
|
389
389
|
data
|
|
390
390
|
end
|
|
391
391
|
|
|
@@ -394,13 +394,13 @@ module PulpContainerClient
|
|
|
394
394
|
# @param container_container_repository [ContainerContainerRepository]
|
|
395
395
|
# @param [Hash] opts the optional parameters
|
|
396
396
|
# @return [Array<(ContainerContainerRepositoryResponse, Integer, Hash)>] ContainerContainerRepositoryResponse data, response status code and response headers
|
|
397
|
-
def
|
|
397
|
+
def create_with_http_info(container_container_repository, opts = {})
|
|
398
398
|
if @api_client.config.debugging
|
|
399
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
399
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.create ...'
|
|
400
400
|
end
|
|
401
401
|
# verify the required parameter 'container_container_repository' is set
|
|
402
402
|
if @api_client.config.client_side_validation && container_container_repository.nil?
|
|
403
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository' when calling RepositoriesContainerApi.
|
|
403
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository' when calling RepositoriesContainerApi.create"
|
|
404
404
|
end
|
|
405
405
|
# resource path
|
|
406
406
|
local_var_path = '/pulp/api/v3/repositories/container/container/'
|
|
@@ -438,7 +438,7 @@ module PulpContainerClient
|
|
|
438
438
|
|
|
439
439
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
440
440
|
if @api_client.config.debugging
|
|
441
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
441
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#create\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
442
442
|
end
|
|
443
443
|
return data, status_code, headers
|
|
444
444
|
end
|
|
@@ -448,8 +448,8 @@ module PulpContainerClient
|
|
|
448
448
|
# @param container_container_repository_href [String]
|
|
449
449
|
# @param [Hash] opts the optional parameters
|
|
450
450
|
# @return [AsyncOperationResponse]
|
|
451
|
-
def
|
|
452
|
-
data, _status_code, _headers =
|
|
451
|
+
def delete(container_container_repository_href, opts = {})
|
|
452
|
+
data, _status_code, _headers = delete_with_http_info(container_container_repository_href, opts)
|
|
453
453
|
data
|
|
454
454
|
end
|
|
455
455
|
|
|
@@ -458,13 +458,13 @@ module PulpContainerClient
|
|
|
458
458
|
# @param container_container_repository_href [String]
|
|
459
459
|
# @param [Hash] opts the optional parameters
|
|
460
460
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
461
|
-
def
|
|
461
|
+
def delete_with_http_info(container_container_repository_href, opts = {})
|
|
462
462
|
if @api_client.config.debugging
|
|
463
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
463
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.delete ...'
|
|
464
464
|
end
|
|
465
465
|
# verify the required parameter 'container_container_repository_href' is set
|
|
466
466
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
467
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
467
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.delete"
|
|
468
468
|
end
|
|
469
469
|
# resource path
|
|
470
470
|
local_var_path = '{container_container_repository_href}'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -500,7 +500,7 @@ module PulpContainerClient
|
|
|
500
500
|
|
|
501
501
|
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
|
|
502
502
|
if @api_client.config.debugging
|
|
503
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
503
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
504
504
|
end
|
|
505
505
|
return data, status_code, headers
|
|
506
506
|
end
|
|
@@ -508,7 +508,7 @@ module PulpContainerClient
|
|
|
508
508
|
# List container repositorys
|
|
509
509
|
# ViewSet for container repo.
|
|
510
510
|
# @param [Hash] opts the optional parameters
|
|
511
|
-
# @option opts [String] :latest_with_content Content Unit referenced by HREF
|
|
511
|
+
# @option opts [String] :latest_with_content Content Unit referenced by HREF/PRN
|
|
512
512
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
513
513
|
# @option opts [String] :name Filter results where name matches value
|
|
514
514
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
@@ -521,10 +521,11 @@ module PulpContainerClient
|
|
|
521
521
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
522
522
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
523
523
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
524
|
+
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
|
524
525
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
525
526
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
526
527
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
527
|
-
# @option opts [String] :q
|
|
528
|
+
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
528
529
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
|
529
530
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
|
530
531
|
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
|
@@ -534,19 +535,19 @@ module PulpContainerClient
|
|
|
534
535
|
# @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
|
|
535
536
|
# @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
|
|
536
537
|
# @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
|
|
537
|
-
# @option opts [String] :with_content Content Unit referenced by HREF
|
|
538
|
+
# @option opts [String] :with_content Content Unit referenced by HREF/PRN
|
|
538
539
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
539
540
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
540
541
|
# @return [PaginatedcontainerContainerRepositoryResponseList]
|
|
541
|
-
def
|
|
542
|
-
data, _status_code, _headers =
|
|
542
|
+
def list(opts = {})
|
|
543
|
+
data, _status_code, _headers = list_with_http_info(opts)
|
|
543
544
|
data
|
|
544
545
|
end
|
|
545
546
|
|
|
546
547
|
# List container repositorys
|
|
547
548
|
# ViewSet for container repo.
|
|
548
549
|
# @param [Hash] opts the optional parameters
|
|
549
|
-
# @option opts [String] :latest_with_content Content Unit referenced by HREF
|
|
550
|
+
# @option opts [String] :latest_with_content Content Unit referenced by HREF/PRN
|
|
550
551
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
551
552
|
# @option opts [String] :name Filter results where name matches value
|
|
552
553
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
@@ -559,10 +560,11 @@ module PulpContainerClient
|
|
|
559
560
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
560
561
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
561
562
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
563
|
+
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
|
562
564
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
563
565
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
564
566
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
565
|
-
# @option opts [String] :q
|
|
567
|
+
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
566
568
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
|
567
569
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
|
568
570
|
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
|
@@ -572,13 +574,13 @@ module PulpContainerClient
|
|
|
572
574
|
# @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
|
|
573
575
|
# @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
|
|
574
576
|
# @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
|
|
575
|
-
# @option opts [String] :with_content Content Unit referenced by HREF
|
|
577
|
+
# @option opts [String] :with_content Content Unit referenced by HREF/PRN
|
|
576
578
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
577
579
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
578
580
|
# @return [Array<(PaginatedcontainerContainerRepositoryResponseList, Integer, Hash)>] PaginatedcontainerContainerRepositoryResponseList data, response status code and response headers
|
|
579
|
-
def
|
|
581
|
+
def list_with_http_info(opts = {})
|
|
580
582
|
if @api_client.config.debugging
|
|
581
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
583
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.list ...'
|
|
582
584
|
end
|
|
583
585
|
allowable_values = ["-description", "-name", "-next_version", "-pk", "-pulp_created", "-pulp_id", "-pulp_labels", "-pulp_last_updated", "-pulp_type", "-retain_repo_versions", "-user_hidden", "description", "name", "next_version", "pk", "pulp_created", "pulp_id", "pulp_labels", "pulp_last_updated", "pulp_type", "retain_repo_versions", "user_hidden"]
|
|
584
586
|
if @api_client.config.client_side_validation && opts[:'ordering'] && !opts[:'ordering'].all? { |item| allowable_values.include?(item) }
|
|
@@ -602,6 +604,7 @@ module PulpContainerClient
|
|
|
602
604
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
|
603
605
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
|
604
606
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
607
|
+
query_params[:'prn__in'] = @api_client.build_collection_param(opts[:'prn__in'], :csv) if !opts[:'prn__in'].nil?
|
|
605
608
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
|
606
609
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
|
607
610
|
query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
|
|
@@ -647,7 +650,7 @@ module PulpContainerClient
|
|
|
647
650
|
|
|
648
651
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
|
649
652
|
if @api_client.config.debugging
|
|
650
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
653
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
651
654
|
end
|
|
652
655
|
return data, status_code, headers
|
|
653
656
|
end
|
|
@@ -659,8 +662,8 @@ module PulpContainerClient
|
|
|
659
662
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
660
663
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
661
664
|
# @return [ObjectRolesResponse]
|
|
662
|
-
def
|
|
663
|
-
data, _status_code, _headers =
|
|
665
|
+
def list_roles(container_container_repository_href, opts = {})
|
|
666
|
+
data, _status_code, _headers = list_roles_with_http_info(container_container_repository_href, opts)
|
|
664
667
|
data
|
|
665
668
|
end
|
|
666
669
|
|
|
@@ -671,13 +674,13 @@ module PulpContainerClient
|
|
|
671
674
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
672
675
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
673
676
|
# @return [Array<(ObjectRolesResponse, Integer, Hash)>] ObjectRolesResponse data, response status code and response headers
|
|
674
|
-
def
|
|
677
|
+
def list_roles_with_http_info(container_container_repository_href, opts = {})
|
|
675
678
|
if @api_client.config.debugging
|
|
676
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
679
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.list_roles ...'
|
|
677
680
|
end
|
|
678
681
|
# verify the required parameter 'container_container_repository_href' is set
|
|
679
682
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
680
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
683
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.list_roles"
|
|
681
684
|
end
|
|
682
685
|
# resource path
|
|
683
686
|
local_var_path = '{container_container_repository_href}list_roles/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -715,7 +718,7 @@ module PulpContainerClient
|
|
|
715
718
|
|
|
716
719
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
|
717
720
|
if @api_client.config.debugging
|
|
718
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
721
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#list_roles\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
719
722
|
end
|
|
720
723
|
return data, status_code, headers
|
|
721
724
|
end
|
|
@@ -727,8 +730,8 @@ module PulpContainerClient
|
|
|
727
730
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
728
731
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
729
732
|
# @return [MyPermissionsResponse]
|
|
730
|
-
def
|
|
731
|
-
data, _status_code, _headers =
|
|
733
|
+
def my_permissions(container_container_repository_href, opts = {})
|
|
734
|
+
data, _status_code, _headers = my_permissions_with_http_info(container_container_repository_href, opts)
|
|
732
735
|
data
|
|
733
736
|
end
|
|
734
737
|
|
|
@@ -739,13 +742,13 @@ module PulpContainerClient
|
|
|
739
742
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
740
743
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
741
744
|
# @return [Array<(MyPermissionsResponse, Integer, Hash)>] MyPermissionsResponse data, response status code and response headers
|
|
742
|
-
def
|
|
745
|
+
def my_permissions_with_http_info(container_container_repository_href, opts = {})
|
|
743
746
|
if @api_client.config.debugging
|
|
744
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
747
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.my_permissions ...'
|
|
745
748
|
end
|
|
746
749
|
# verify the required parameter 'container_container_repository_href' is set
|
|
747
750
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
748
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
751
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.my_permissions"
|
|
749
752
|
end
|
|
750
753
|
# resource path
|
|
751
754
|
local_var_path = '{container_container_repository_href}my_permissions/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -783,7 +786,7 @@ module PulpContainerClient
|
|
|
783
786
|
|
|
784
787
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
|
785
788
|
if @api_client.config.debugging
|
|
786
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
789
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#my_permissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
787
790
|
end
|
|
788
791
|
return data, status_code, headers
|
|
789
792
|
end
|
|
@@ -794,8 +797,8 @@ module PulpContainerClient
|
|
|
794
797
|
# @param patchedcontainer_container_repository [PatchedcontainerContainerRepository]
|
|
795
798
|
# @param [Hash] opts the optional parameters
|
|
796
799
|
# @return [AsyncOperationResponse]
|
|
797
|
-
def
|
|
798
|
-
data, _status_code, _headers =
|
|
800
|
+
def partial_update(container_container_repository_href, patchedcontainer_container_repository, opts = {})
|
|
801
|
+
data, _status_code, _headers = partial_update_with_http_info(container_container_repository_href, patchedcontainer_container_repository, opts)
|
|
799
802
|
data
|
|
800
803
|
end
|
|
801
804
|
|
|
@@ -805,17 +808,17 @@ module PulpContainerClient
|
|
|
805
808
|
# @param patchedcontainer_container_repository [PatchedcontainerContainerRepository]
|
|
806
809
|
# @param [Hash] opts the optional parameters
|
|
807
810
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
808
|
-
def
|
|
811
|
+
def partial_update_with_http_info(container_container_repository_href, patchedcontainer_container_repository, opts = {})
|
|
809
812
|
if @api_client.config.debugging
|
|
810
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
813
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.partial_update ...'
|
|
811
814
|
end
|
|
812
815
|
# verify the required parameter 'container_container_repository_href' is set
|
|
813
816
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
814
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
817
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.partial_update"
|
|
815
818
|
end
|
|
816
819
|
# verify the required parameter 'patchedcontainer_container_repository' is set
|
|
817
820
|
if @api_client.config.client_side_validation && patchedcontainer_container_repository.nil?
|
|
818
|
-
fail ArgumentError, "Missing the required parameter 'patchedcontainer_container_repository' when calling RepositoriesContainerApi.
|
|
821
|
+
fail ArgumentError, "Missing the required parameter 'patchedcontainer_container_repository' when calling RepositoriesContainerApi.partial_update"
|
|
819
822
|
end
|
|
820
823
|
# resource path
|
|
821
824
|
local_var_path = '{container_container_repository_href}'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -853,7 +856,7 @@ module PulpContainerClient
|
|
|
853
856
|
|
|
854
857
|
data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, new_options)
|
|
855
858
|
if @api_client.config.debugging
|
|
856
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
859
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#partial_update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
857
860
|
end
|
|
858
861
|
return data, status_code, headers
|
|
859
862
|
end
|
|
@@ -865,8 +868,8 @@ module PulpContainerClient
|
|
|
865
868
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
866
869
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
867
870
|
# @return [ContainerContainerRepositoryResponse]
|
|
868
|
-
def
|
|
869
|
-
data, _status_code, _headers =
|
|
871
|
+
def read(container_container_repository_href, opts = {})
|
|
872
|
+
data, _status_code, _headers = read_with_http_info(container_container_repository_href, opts)
|
|
870
873
|
data
|
|
871
874
|
end
|
|
872
875
|
|
|
@@ -877,13 +880,13 @@ module PulpContainerClient
|
|
|
877
880
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
878
881
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
879
882
|
# @return [Array<(ContainerContainerRepositoryResponse, Integer, Hash)>] ContainerContainerRepositoryResponse data, response status code and response headers
|
|
880
|
-
def
|
|
883
|
+
def read_with_http_info(container_container_repository_href, opts = {})
|
|
881
884
|
if @api_client.config.debugging
|
|
882
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
885
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.read ...'
|
|
883
886
|
end
|
|
884
887
|
# verify the required parameter 'container_container_repository_href' is set
|
|
885
888
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
886
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
889
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.read"
|
|
887
890
|
end
|
|
888
891
|
# resource path
|
|
889
892
|
local_var_path = '{container_container_repository_href}'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -921,7 +924,7 @@ module PulpContainerClient
|
|
|
921
924
|
|
|
922
925
|
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
|
923
926
|
if @api_client.config.debugging
|
|
924
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
927
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#read\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
925
928
|
end
|
|
926
929
|
return data, status_code, headers
|
|
927
930
|
end
|
|
@@ -932,8 +935,8 @@ module PulpContainerClient
|
|
|
932
935
|
# @param recursive_manage [RecursiveManage]
|
|
933
936
|
# @param [Hash] opts the optional parameters
|
|
934
937
|
# @return [AsyncOperationResponse]
|
|
935
|
-
def
|
|
936
|
-
data, _status_code, _headers =
|
|
938
|
+
def remove(container_container_repository_href, recursive_manage, opts = {})
|
|
939
|
+
data, _status_code, _headers = remove_with_http_info(container_container_repository_href, recursive_manage, opts)
|
|
937
940
|
data
|
|
938
941
|
end
|
|
939
942
|
|
|
@@ -943,17 +946,17 @@ module PulpContainerClient
|
|
|
943
946
|
# @param recursive_manage [RecursiveManage]
|
|
944
947
|
# @param [Hash] opts the optional parameters
|
|
945
948
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
946
|
-
def
|
|
949
|
+
def remove_with_http_info(container_container_repository_href, recursive_manage, opts = {})
|
|
947
950
|
if @api_client.config.debugging
|
|
948
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
951
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.remove ...'
|
|
949
952
|
end
|
|
950
953
|
# verify the required parameter 'container_container_repository_href' is set
|
|
951
954
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
952
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
955
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.remove"
|
|
953
956
|
end
|
|
954
957
|
# verify the required parameter 'recursive_manage' is set
|
|
955
958
|
if @api_client.config.client_side_validation && recursive_manage.nil?
|
|
956
|
-
fail ArgumentError, "Missing the required parameter 'recursive_manage' when calling RepositoriesContainerApi.
|
|
959
|
+
fail ArgumentError, "Missing the required parameter 'recursive_manage' when calling RepositoriesContainerApi.remove"
|
|
957
960
|
end
|
|
958
961
|
# resource path
|
|
959
962
|
local_var_path = '{container_container_repository_href}remove/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -991,7 +994,7 @@ module PulpContainerClient
|
|
|
991
994
|
|
|
992
995
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
993
996
|
if @api_client.config.debugging
|
|
994
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
997
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#remove\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
995
998
|
end
|
|
996
999
|
return data, status_code, headers
|
|
997
1000
|
end
|
|
@@ -1002,8 +1005,8 @@ module PulpContainerClient
|
|
|
1002
1005
|
# @param nested_role [NestedRole]
|
|
1003
1006
|
# @param [Hash] opts the optional parameters
|
|
1004
1007
|
# @return [NestedRoleResponse]
|
|
1005
|
-
def
|
|
1006
|
-
data, _status_code, _headers =
|
|
1008
|
+
def remove_role(container_container_repository_href, nested_role, opts = {})
|
|
1009
|
+
data, _status_code, _headers = remove_role_with_http_info(container_container_repository_href, nested_role, opts)
|
|
1007
1010
|
data
|
|
1008
1011
|
end
|
|
1009
1012
|
|
|
@@ -1013,17 +1016,17 @@ module PulpContainerClient
|
|
|
1013
1016
|
# @param nested_role [NestedRole]
|
|
1014
1017
|
# @param [Hash] opts the optional parameters
|
|
1015
1018
|
# @return [Array<(NestedRoleResponse, Integer, Hash)>] NestedRoleResponse data, response status code and response headers
|
|
1016
|
-
def
|
|
1019
|
+
def remove_role_with_http_info(container_container_repository_href, nested_role, opts = {})
|
|
1017
1020
|
if @api_client.config.debugging
|
|
1018
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
1021
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.remove_role ...'
|
|
1019
1022
|
end
|
|
1020
1023
|
# verify the required parameter 'container_container_repository_href' is set
|
|
1021
1024
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
1022
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
1025
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.remove_role"
|
|
1023
1026
|
end
|
|
1024
1027
|
# verify the required parameter 'nested_role' is set
|
|
1025
1028
|
if @api_client.config.client_side_validation && nested_role.nil?
|
|
1026
|
-
fail ArgumentError, "Missing the required parameter 'nested_role' when calling RepositoriesContainerApi.
|
|
1029
|
+
fail ArgumentError, "Missing the required parameter 'nested_role' when calling RepositoriesContainerApi.remove_role"
|
|
1027
1030
|
end
|
|
1028
1031
|
# resource path
|
|
1029
1032
|
local_var_path = '{container_container_repository_href}remove_role/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -1061,7 +1064,7 @@ module PulpContainerClient
|
|
|
1061
1064
|
|
|
1062
1065
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
1063
1066
|
if @api_client.config.debugging
|
|
1064
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
1067
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#remove_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
1065
1068
|
end
|
|
1066
1069
|
return data, status_code, headers
|
|
1067
1070
|
end
|
|
@@ -1072,8 +1075,8 @@ module PulpContainerClient
|
|
|
1072
1075
|
# @param set_label [SetLabel]
|
|
1073
1076
|
# @param [Hash] opts the optional parameters
|
|
1074
1077
|
# @return [SetLabelResponse]
|
|
1075
|
-
def
|
|
1076
|
-
data, _status_code, _headers =
|
|
1078
|
+
def set_label(container_container_repository_href, set_label, opts = {})
|
|
1079
|
+
data, _status_code, _headers = set_label_with_http_info(container_container_repository_href, set_label, opts)
|
|
1077
1080
|
data
|
|
1078
1081
|
end
|
|
1079
1082
|
|
|
@@ -1083,17 +1086,17 @@ module PulpContainerClient
|
|
|
1083
1086
|
# @param set_label [SetLabel]
|
|
1084
1087
|
# @param [Hash] opts the optional parameters
|
|
1085
1088
|
# @return [Array<(SetLabelResponse, Integer, Hash)>] SetLabelResponse data, response status code and response headers
|
|
1086
|
-
def
|
|
1089
|
+
def set_label_with_http_info(container_container_repository_href, set_label, opts = {})
|
|
1087
1090
|
if @api_client.config.debugging
|
|
1088
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
1091
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.set_label ...'
|
|
1089
1092
|
end
|
|
1090
1093
|
# verify the required parameter 'container_container_repository_href' is set
|
|
1091
1094
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
1092
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
1095
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.set_label"
|
|
1093
1096
|
end
|
|
1094
1097
|
# verify the required parameter 'set_label' is set
|
|
1095
1098
|
if @api_client.config.client_side_validation && set_label.nil?
|
|
1096
|
-
fail ArgumentError, "Missing the required parameter 'set_label' when calling RepositoriesContainerApi.
|
|
1099
|
+
fail ArgumentError, "Missing the required parameter 'set_label' when calling RepositoriesContainerApi.set_label"
|
|
1097
1100
|
end
|
|
1098
1101
|
# resource path
|
|
1099
1102
|
local_var_path = '{container_container_repository_href}set_label/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -1131,7 +1134,7 @@ module PulpContainerClient
|
|
|
1131
1134
|
|
|
1132
1135
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
1133
1136
|
if @api_client.config.debugging
|
|
1134
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
1137
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#set_label\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
1135
1138
|
end
|
|
1136
1139
|
return data, status_code, headers
|
|
1137
1140
|
end
|
|
@@ -1142,8 +1145,8 @@ module PulpContainerClient
|
|
|
1142
1145
|
# @param repository_sign [RepositorySign]
|
|
1143
1146
|
# @param [Hash] opts the optional parameters
|
|
1144
1147
|
# @return [AsyncOperationResponse]
|
|
1145
|
-
def
|
|
1146
|
-
data, _status_code, _headers =
|
|
1148
|
+
def sign(container_container_repository_href, repository_sign, opts = {})
|
|
1149
|
+
data, _status_code, _headers = sign_with_http_info(container_container_repository_href, repository_sign, opts)
|
|
1147
1150
|
data
|
|
1148
1151
|
end
|
|
1149
1152
|
|
|
@@ -1153,17 +1156,17 @@ module PulpContainerClient
|
|
|
1153
1156
|
# @param repository_sign [RepositorySign]
|
|
1154
1157
|
# @param [Hash] opts the optional parameters
|
|
1155
1158
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
1156
|
-
def
|
|
1159
|
+
def sign_with_http_info(container_container_repository_href, repository_sign, opts = {})
|
|
1157
1160
|
if @api_client.config.debugging
|
|
1158
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
1161
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.sign ...'
|
|
1159
1162
|
end
|
|
1160
1163
|
# verify the required parameter 'container_container_repository_href' is set
|
|
1161
1164
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
1162
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
1165
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.sign"
|
|
1163
1166
|
end
|
|
1164
1167
|
# verify the required parameter 'repository_sign' is set
|
|
1165
1168
|
if @api_client.config.client_side_validation && repository_sign.nil?
|
|
1166
|
-
fail ArgumentError, "Missing the required parameter 'repository_sign' when calling RepositoriesContainerApi.
|
|
1169
|
+
fail ArgumentError, "Missing the required parameter 'repository_sign' when calling RepositoriesContainerApi.sign"
|
|
1167
1170
|
end
|
|
1168
1171
|
# resource path
|
|
1169
1172
|
local_var_path = '{container_container_repository_href}sign/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -1201,7 +1204,7 @@ module PulpContainerClient
|
|
|
1201
1204
|
|
|
1202
1205
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
1203
1206
|
if @api_client.config.debugging
|
|
1204
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
1207
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#sign\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
1205
1208
|
end
|
|
1206
1209
|
return data, status_code, headers
|
|
1207
1210
|
end
|
|
@@ -1212,8 +1215,8 @@ module PulpContainerClient
|
|
|
1212
1215
|
# @param container_repository_sync_url [ContainerRepositorySyncURL]
|
|
1213
1216
|
# @param [Hash] opts the optional parameters
|
|
1214
1217
|
# @return [AsyncOperationResponse]
|
|
1215
|
-
def
|
|
1216
|
-
data, _status_code, _headers =
|
|
1218
|
+
def sync(container_container_repository_href, container_repository_sync_url, opts = {})
|
|
1219
|
+
data, _status_code, _headers = sync_with_http_info(container_container_repository_href, container_repository_sync_url, opts)
|
|
1217
1220
|
data
|
|
1218
1221
|
end
|
|
1219
1222
|
|
|
@@ -1223,17 +1226,17 @@ module PulpContainerClient
|
|
|
1223
1226
|
# @param container_repository_sync_url [ContainerRepositorySyncURL]
|
|
1224
1227
|
# @param [Hash] opts the optional parameters
|
|
1225
1228
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
1226
|
-
def
|
|
1229
|
+
def sync_with_http_info(container_container_repository_href, container_repository_sync_url, opts = {})
|
|
1227
1230
|
if @api_client.config.debugging
|
|
1228
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
1231
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.sync ...'
|
|
1229
1232
|
end
|
|
1230
1233
|
# verify the required parameter 'container_container_repository_href' is set
|
|
1231
1234
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
1232
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
1235
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.sync"
|
|
1233
1236
|
end
|
|
1234
1237
|
# verify the required parameter 'container_repository_sync_url' is set
|
|
1235
1238
|
if @api_client.config.client_side_validation && container_repository_sync_url.nil?
|
|
1236
|
-
fail ArgumentError, "Missing the required parameter 'container_repository_sync_url' when calling RepositoriesContainerApi.
|
|
1239
|
+
fail ArgumentError, "Missing the required parameter 'container_repository_sync_url' when calling RepositoriesContainerApi.sync"
|
|
1237
1240
|
end
|
|
1238
1241
|
# resource path
|
|
1239
1242
|
local_var_path = '{container_container_repository_href}sync/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -1271,7 +1274,7 @@ module PulpContainerClient
|
|
|
1271
1274
|
|
|
1272
1275
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
1273
1276
|
if @api_client.config.debugging
|
|
1274
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
1277
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#sync\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
1275
1278
|
end
|
|
1276
1279
|
return data, status_code, headers
|
|
1277
1280
|
end
|
|
@@ -1282,8 +1285,8 @@ module PulpContainerClient
|
|
|
1282
1285
|
# @param tag_image [TagImage]
|
|
1283
1286
|
# @param [Hash] opts the optional parameters
|
|
1284
1287
|
# @return [AsyncOperationResponse]
|
|
1285
|
-
def
|
|
1286
|
-
data, _status_code, _headers =
|
|
1288
|
+
def tag(container_container_repository_href, tag_image, opts = {})
|
|
1289
|
+
data, _status_code, _headers = tag_with_http_info(container_container_repository_href, tag_image, opts)
|
|
1287
1290
|
data
|
|
1288
1291
|
end
|
|
1289
1292
|
|
|
@@ -1293,17 +1296,17 @@ module PulpContainerClient
|
|
|
1293
1296
|
# @param tag_image [TagImage]
|
|
1294
1297
|
# @param [Hash] opts the optional parameters
|
|
1295
1298
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
1296
|
-
def
|
|
1299
|
+
def tag_with_http_info(container_container_repository_href, tag_image, opts = {})
|
|
1297
1300
|
if @api_client.config.debugging
|
|
1298
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
1301
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.tag ...'
|
|
1299
1302
|
end
|
|
1300
1303
|
# verify the required parameter 'container_container_repository_href' is set
|
|
1301
1304
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
1302
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
1305
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.tag"
|
|
1303
1306
|
end
|
|
1304
1307
|
# verify the required parameter 'tag_image' is set
|
|
1305
1308
|
if @api_client.config.client_side_validation && tag_image.nil?
|
|
1306
|
-
fail ArgumentError, "Missing the required parameter 'tag_image' when calling RepositoriesContainerApi.
|
|
1309
|
+
fail ArgumentError, "Missing the required parameter 'tag_image' when calling RepositoriesContainerApi.tag"
|
|
1307
1310
|
end
|
|
1308
1311
|
# resource path
|
|
1309
1312
|
local_var_path = '{container_container_repository_href}tag/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -1341,7 +1344,7 @@ module PulpContainerClient
|
|
|
1341
1344
|
|
|
1342
1345
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
1343
1346
|
if @api_client.config.debugging
|
|
1344
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
1347
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#tag\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
1345
1348
|
end
|
|
1346
1349
|
return data, status_code, headers
|
|
1347
1350
|
end
|
|
@@ -1352,8 +1355,8 @@ module PulpContainerClient
|
|
|
1352
1355
|
# @param unset_label [UnsetLabel]
|
|
1353
1356
|
# @param [Hash] opts the optional parameters
|
|
1354
1357
|
# @return [UnsetLabelResponse]
|
|
1355
|
-
def
|
|
1356
|
-
data, _status_code, _headers =
|
|
1358
|
+
def unset_label(container_container_repository_href, unset_label, opts = {})
|
|
1359
|
+
data, _status_code, _headers = unset_label_with_http_info(container_container_repository_href, unset_label, opts)
|
|
1357
1360
|
data
|
|
1358
1361
|
end
|
|
1359
1362
|
|
|
@@ -1363,17 +1366,17 @@ module PulpContainerClient
|
|
|
1363
1366
|
# @param unset_label [UnsetLabel]
|
|
1364
1367
|
# @param [Hash] opts the optional parameters
|
|
1365
1368
|
# @return [Array<(UnsetLabelResponse, Integer, Hash)>] UnsetLabelResponse data, response status code and response headers
|
|
1366
|
-
def
|
|
1369
|
+
def unset_label_with_http_info(container_container_repository_href, unset_label, opts = {})
|
|
1367
1370
|
if @api_client.config.debugging
|
|
1368
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
1371
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.unset_label ...'
|
|
1369
1372
|
end
|
|
1370
1373
|
# verify the required parameter 'container_container_repository_href' is set
|
|
1371
1374
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
1372
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
1375
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.unset_label"
|
|
1373
1376
|
end
|
|
1374
1377
|
# verify the required parameter 'unset_label' is set
|
|
1375
1378
|
if @api_client.config.client_side_validation && unset_label.nil?
|
|
1376
|
-
fail ArgumentError, "Missing the required parameter 'unset_label' when calling RepositoriesContainerApi.
|
|
1379
|
+
fail ArgumentError, "Missing the required parameter 'unset_label' when calling RepositoriesContainerApi.unset_label"
|
|
1377
1380
|
end
|
|
1378
1381
|
# resource path
|
|
1379
1382
|
local_var_path = '{container_container_repository_href}unset_label/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -1411,7 +1414,7 @@ module PulpContainerClient
|
|
|
1411
1414
|
|
|
1412
1415
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
1413
1416
|
if @api_client.config.debugging
|
|
1414
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
1417
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#unset_label\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
1415
1418
|
end
|
|
1416
1419
|
return data, status_code, headers
|
|
1417
1420
|
end
|
|
@@ -1422,8 +1425,8 @@ module PulpContainerClient
|
|
|
1422
1425
|
# @param un_tag_image [UnTagImage]
|
|
1423
1426
|
# @param [Hash] opts the optional parameters
|
|
1424
1427
|
# @return [AsyncOperationResponse]
|
|
1425
|
-
def
|
|
1426
|
-
data, _status_code, _headers =
|
|
1428
|
+
def untag(container_container_repository_href, un_tag_image, opts = {})
|
|
1429
|
+
data, _status_code, _headers = untag_with_http_info(container_container_repository_href, un_tag_image, opts)
|
|
1427
1430
|
data
|
|
1428
1431
|
end
|
|
1429
1432
|
|
|
@@ -1433,17 +1436,17 @@ module PulpContainerClient
|
|
|
1433
1436
|
# @param un_tag_image [UnTagImage]
|
|
1434
1437
|
# @param [Hash] opts the optional parameters
|
|
1435
1438
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
1436
|
-
def
|
|
1439
|
+
def untag_with_http_info(container_container_repository_href, un_tag_image, opts = {})
|
|
1437
1440
|
if @api_client.config.debugging
|
|
1438
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
1441
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.untag ...'
|
|
1439
1442
|
end
|
|
1440
1443
|
# verify the required parameter 'container_container_repository_href' is set
|
|
1441
1444
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
1442
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
1445
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.untag"
|
|
1443
1446
|
end
|
|
1444
1447
|
# verify the required parameter 'un_tag_image' is set
|
|
1445
1448
|
if @api_client.config.client_side_validation && un_tag_image.nil?
|
|
1446
|
-
fail ArgumentError, "Missing the required parameter 'un_tag_image' when calling RepositoriesContainerApi.
|
|
1449
|
+
fail ArgumentError, "Missing the required parameter 'un_tag_image' when calling RepositoriesContainerApi.untag"
|
|
1447
1450
|
end
|
|
1448
1451
|
# resource path
|
|
1449
1452
|
local_var_path = '{container_container_repository_href}untag/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -1481,7 +1484,7 @@ module PulpContainerClient
|
|
|
1481
1484
|
|
|
1482
1485
|
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
|
1483
1486
|
if @api_client.config.debugging
|
|
1484
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
1487
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#untag\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
1485
1488
|
end
|
|
1486
1489
|
return data, status_code, headers
|
|
1487
1490
|
end
|
|
@@ -1492,8 +1495,8 @@ module PulpContainerClient
|
|
|
1492
1495
|
# @param container_container_repository [ContainerContainerRepository]
|
|
1493
1496
|
# @param [Hash] opts the optional parameters
|
|
1494
1497
|
# @return [AsyncOperationResponse]
|
|
1495
|
-
def
|
|
1496
|
-
data, _status_code, _headers =
|
|
1498
|
+
def update(container_container_repository_href, container_container_repository, opts = {})
|
|
1499
|
+
data, _status_code, _headers = update_with_http_info(container_container_repository_href, container_container_repository, opts)
|
|
1497
1500
|
data
|
|
1498
1501
|
end
|
|
1499
1502
|
|
|
@@ -1503,17 +1506,17 @@ module PulpContainerClient
|
|
|
1503
1506
|
# @param container_container_repository [ContainerContainerRepository]
|
|
1504
1507
|
# @param [Hash] opts the optional parameters
|
|
1505
1508
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
1506
|
-
def
|
|
1509
|
+
def update_with_http_info(container_container_repository_href, container_container_repository, opts = {})
|
|
1507
1510
|
if @api_client.config.debugging
|
|
1508
|
-
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.
|
|
1511
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.update ...'
|
|
1509
1512
|
end
|
|
1510
1513
|
# verify the required parameter 'container_container_repository_href' is set
|
|
1511
1514
|
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
|
1512
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.
|
|
1515
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.update"
|
|
1513
1516
|
end
|
|
1514
1517
|
# verify the required parameter 'container_container_repository' is set
|
|
1515
1518
|
if @api_client.config.client_side_validation && container_container_repository.nil?
|
|
1516
|
-
fail ArgumentError, "Missing the required parameter 'container_container_repository' when calling RepositoriesContainerApi.
|
|
1519
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository' when calling RepositoriesContainerApi.update"
|
|
1517
1520
|
end
|
|
1518
1521
|
# resource path
|
|
1519
1522
|
local_var_path = '{container_container_repository_href}'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
|
@@ -1551,7 +1554,7 @@ module PulpContainerClient
|
|
|
1551
1554
|
|
|
1552
1555
|
data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
|
|
1553
1556
|
if @api_client.config.debugging
|
|
1554
|
-
@api_client.config.logger.debug "API called: RepositoriesContainerApi#
|
|
1557
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
1555
1558
|
end
|
|
1556
1559
|
return data, status_code, headers
|
|
1557
1560
|
end
|