vsphere-automation-content 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +12 -1
- data/Gemfile.lock +57 -44
- data/README.md +61 -13
- data/Rakefile +8 -0
- data/docs/ConfigurationApi.md +30 -12
- data/docs/ContentConfigurationModel.md +1 -1
- data/docs/ContentLibraryItemDestinationSpec.md +8 -0
- data/docs/ContentLibraryItemFileInfo.md +1 -1
- data/docs/ContentLibraryItemFindSpec.md +1 -1
- data/docs/ContentLibraryItemModel.md +1 -1
- data/docs/ContentLibraryItemPublish.md +9 -0
- data/docs/ContentLibraryItemStorageInfo.md +1 -1
- data/docs/ContentLibraryItemUpdatesessionCertificateInfo.md +1 -1
- data/docs/ContentLibraryItemUpdatesessionFileInfo.md +1 -1
- data/docs/ContentLibraryItemUpdatesessionFileValidationResult.md +1 -1
- data/docs/ContentLibraryItemUpdatesessionPreviewWarningInfo.md +1 -1
- data/docs/ContentLibraryItemUpdatesessionWarningBehavior.md +1 -1
- data/docs/ContentLibraryOptimizationInfo.md +1 -1
- data/docs/ContentLibraryPublishInfo.md +2 -2
- data/docs/ContentLibrarySourceInfo.md +9 -0
- data/docs/ContentLibrarySubscribedItemSync.md +1 -1
- data/docs/ContentLibrarySubscriptionInfo.md +3 -2
- data/docs/ContentLibrarySubscriptionsCreate.md +9 -0
- data/docs/ContentLibrarySubscriptionsCreateResult.md +8 -0
- data/docs/ContentLibrarySubscriptionsCreateSpec.md +8 -0
- data/docs/ContentLibrarySubscriptionsCreateSpecNewSubscribedLibrary.md +12 -0
- data/docs/ContentLibrarySubscriptionsCreateSpecPlacement.md +12 -0
- data/docs/ContentLibrarySubscriptionsCreateSpecSubscribedLibrary.md +13 -0
- data/docs/ContentLibrarySubscriptionsCreateSpecSubscribedLibraryTarget.md +7 -0
- data/docs/ContentLibrarySubscriptionsCreateSpecVcenter.md +9 -0
- data/docs/ContentLibrarySubscriptionsDelete.md +8 -0
- data/docs/ContentLibrarySubscriptionsGet.md +8 -0
- data/docs/ContentLibrarySubscriptionsInfo.md +12 -0
- data/docs/ContentLibrarySubscriptionsListResult.md +8 -0
- data/docs/ContentLibrarySubscriptionsLocation.md +7 -0
- data/docs/ContentLibrarySubscriptionsPlacementInfo.md +12 -0
- data/docs/ContentLibrarySubscriptionsResult.md +8 -0
- data/docs/ContentLibrarySubscriptionsSummary.md +11 -0
- data/docs/ContentLibrarySubscriptionsUpdate.md +9 -0
- data/docs/ContentLibrarySubscriptionsUpdateSpec.md +9 -0
- data/docs/ContentLibrarySubscriptionsUpdateSpecPlacement.md +12 -0
- data/docs/ContentLibrarySubscriptionsUpdateSpecVcenter.md +9 -0
- data/docs/ContentLibrarySubscriptionsVcenterInfo.md +10 -0
- data/docs/ContentLocalLibraryDestinationSpec.md +8 -0
- data/docs/ContentLocalLibraryPublish.md +8 -0
- data/docs/LibraryApi.md +47 -17
- data/docs/LibraryItemApi.md +136 -31
- data/docs/LibraryItemDownloadSessionApi.md +76 -25
- data/docs/LibraryItemDownloadsessionFileApi.md +38 -15
- data/docs/LibraryItemFileApi.md +25 -9
- data/docs/LibraryItemStorageApi.md +25 -9
- data/docs/LibraryItemUpdateSessionApi.md +100 -35
- data/docs/LibraryItemUpdatesessionFileApi.md +60 -23
- data/docs/LibrarySubscribedItemApi.md +27 -11
- data/docs/LibrarySubscriptionsApi.md +269 -0
- data/docs/LocalLibraryApi.md +109 -18
- data/docs/SubscribedLibraryApi.md +89 -31
- data/docs/VapiStdErrorsAlreadyExists.md +9 -0
- data/docs/VapiStdErrorsAlreadyExistsError.md +9 -0
- data/docs/VapiStdErrorsError.md +9 -0
- data/docs/VapiStdErrorsErrorError.md +9 -0
- data/docs/VapiStdErrorsUnauthenticated.md +9 -0
- data/docs/VapiStdErrorsUnauthenticatedError.md +9 -0
- data/lib/vsphere-automation-content.rb +40 -9
- data/lib/vsphere-automation-content/api/configuration_api.rb +32 -23
- data/lib/vsphere-automation-content/api/library_api.rb +42 -33
- data/lib/vsphere-automation-content/api/library_item_api.rb +140 -62
- data/lib/vsphere-automation-content/api/library_item_download_session_api.rb +51 -42
- data/lib/vsphere-automation-content/api/library_item_downloadsession_file_api.rb +40 -31
- data/lib/vsphere-automation-content/api/library_item_file_api.rb +29 -20
- data/lib/vsphere-automation-content/api/library_item_storage_api.rb +29 -20
- data/lib/vsphere-automation-content/api/library_item_update_session_api.rb +67 -58
- data/lib/vsphere-automation-content/api/library_item_updatesession_file_api.rb +53 -44
- data/lib/vsphere-automation-content/api/library_subscribed_item_api.rb +32 -23
- data/lib/vsphere-automation-content/api/library_subscriptions_api.rb +325 -0
- data/lib/vsphere-automation-content/api/local_library_api.rb +97 -34
- data/lib/vsphere-automation-content/api/subscribed_library_api.rb +62 -53
- data/lib/vsphere-automation-content/api_client.rb +9 -5
- data/lib/vsphere-automation-content/api_error.rb +4 -6
- data/lib/vsphere-automation-content/configuration.rb +18 -6
- data/lib/vsphere-automation-content/models/content_configuration_model.rb +5 -7
- data/lib/vsphere-automation-content/models/content_configuration_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_configuration_update.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_find.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_find_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_find_spec.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_copy.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_copy_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_create.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_create_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_destination_spec.rb +187 -0
- data/lib/vsphere-automation-content/models/content_library_item_download_session_create.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_download_session_create_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_download_session_fail.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_download_session_keep_alive.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_download_session_list_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_download_session_model.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_download_session_model_state.rb +7 -9
- data/lib/vsphere-automation-content/models/content_library_item_download_session_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_downloadsession_file_endpoint_type.rb +6 -8
- data/lib/vsphere-automation-content/models/content_library_item_downloadsession_file_get.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_downloadsession_file_info.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_downloadsession_file_list_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_downloadsession_file_prepare.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_downloadsession_file_prepare_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_downloadsession_file_prepare_status.rb +9 -11
- data/lib/vsphere-automation-content/models/content_library_item_downloadsession_file_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_file_checksum_algorithm.rb +8 -10
- data/lib/vsphere-automation-content/models/content_library_item_file_checksum_info.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_file_get.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_file_info.rb +5 -7
- data/lib/vsphere-automation-content/models/content_library_item_file_list_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_file_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_find.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_find_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_find_spec.rb +5 -7
- data/lib/vsphere-automation-content/models/content_library_item_list_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_model.rb +5 -7
- data/lib/vsphere-automation-content/models/content_library_item_publish.rb +199 -0
- data/lib/vsphere-automation-content/models/content_library_item_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_storage_get.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_storage_info.rb +5 -7
- data/lib/vsphere-automation-content/models/content_library_item_storage_list_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_storage_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_transfer_endpoint.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_transfer_status.rb +9 -11
- data/lib/vsphere-automation-content/models/content_library_item_update.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_update_session_create.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_update_session_create_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_update_session_fail.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_update_session_keep_alive.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_update_session_list_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_update_session_model.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_update_session_model_state.rb +8 -10
- data/lib/vsphere-automation-content/models/content_library_item_update_session_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_update_session_update.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_certificate_info.rb +5 -7
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_file_add.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_file_add_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_file_add_spec.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_file_get.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_file_info.rb +5 -7
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_file_list_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_file_remove.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_file_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_file_source_type.rb +7 -9
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_file_validate_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_file_validation_error.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_file_validation_result.rb +5 -7
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_preview_info.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_preview_info_state.rb +8 -10
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_preview_warning_info.rb +5 -7
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_warning_behavior.rb +5 -7
- data/lib/vsphere-automation-content/models/content_library_item_updatesession_warning_type.rb +8 -10
- data/lib/vsphere-automation-content/models/content_library_list_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_model.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_model_library_type.rb +6 -8
- data/lib/vsphere-automation-content/models/content_library_optimization_info.rb +5 -7
- data/lib/vsphere-automation-content/models/content_library_publish_info.rb +6 -8
- data/lib/vsphere-automation-content/models/content_library_publish_info_authentication_method.rb +6 -8
- data/lib/vsphere-automation-content/models/content_library_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_source_info.rb +192 -0
- data/lib/vsphere-automation-content/models/content_library_storage_backing.rb +4 -6
- data/lib/vsphere-automation-content/models/content_library_storage_backing_type.rb +6 -8
- data/lib/vsphere-automation-content/models/content_library_subscribed_item_sync.rb +5 -7
- data/lib/vsphere-automation-content/models/content_library_subscription_info.rb +19 -12
- data/lib/vsphere-automation-content/models/content_library_subscription_info_authentication_method.rb +6 -8
- data/lib/vsphere-automation-content/models/content_library_subscriptions_create.rb +196 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_create_result.rb +186 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_create_spec.rb +186 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_create_spec_new_subscribed_library.rb +244 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_create_spec_placement.rb +222 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_create_spec_subscribed_library.rb +237 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_create_spec_subscribed_library_target.rb +28 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_create_spec_vcenter.rb +197 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_delete.rb +187 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_get.rb +187 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_info.rb +239 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_list_result.rb +188 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_location.rb +28 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_placement_info.rb +222 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_result.rb +186 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_summary.rb +227 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_update.rb +201 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_update_spec.rb +190 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_update_spec_placement.rb +222 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_update_spec_vcenter.rb +192 -0
- data/lib/vsphere-automation-content/models/content_library_subscriptions_vcenter_info.rb +212 -0
- data/lib/vsphere-automation-content/models/content_library_update.rb +4 -6
- data/lib/vsphere-automation-content/models/content_local_library_create.rb +4 -6
- data/lib/vsphere-automation-content/models/content_local_library_create_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_local_library_destination_spec.rb +187 -0
- data/lib/vsphere-automation-content/models/content_local_library_list_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_local_library_publish.rb +184 -0
- data/lib/vsphere-automation-content/models/content_local_library_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_local_library_update.rb +4 -6
- data/lib/vsphere-automation-content/models/content_subscribed_library_create.rb +4 -6
- data/lib/vsphere-automation-content/models/content_subscribed_library_create_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_subscribed_library_list_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_subscribed_library_probe.rb +4 -6
- data/lib/vsphere-automation-content/models/content_subscribed_library_probe_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_subscribed_library_probe_result_status.rb +12 -14
- data/lib/vsphere-automation-content/models/content_subscribed_library_result.rb +4 -6
- data/lib/vsphere-automation-content/models/content_subscribed_library_update.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_already_exists.rb +199 -0
- data/lib/vsphere-automation-content/models/vapi_std_errors_already_exists_error.rb +190 -0
- data/lib/vsphere-automation-content/models/vapi_std_errors_concurrent_change.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_concurrent_change_error.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_error.rb +199 -0
- data/lib/vsphere-automation-content/models/vapi_std_errors_error_error.rb +190 -0
- data/lib/vsphere-automation-content/models/vapi_std_errors_invalid_argument.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_invalid_argument_error.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_invalid_element_configuration.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_invalid_element_configuration_error.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_invalid_element_type.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_invalid_element_type_error.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_not_allowed_in_current_state.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_not_allowed_in_current_state_error.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_not_found.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_not_found_error.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_resource_busy.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_resource_busy_error.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_resource_inaccessible.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_resource_inaccessible_error.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_unauthenticated.rb +199 -0
- data/lib/vsphere-automation-content/models/vapi_std_errors_unauthenticated_error.rb +190 -0
- data/lib/vsphere-automation-content/models/vapi_std_errors_unauthorized.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_unauthorized_error.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_unsupported.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_errors_unsupported_error.rb +4 -6
- data/lib/vsphere-automation-content/models/vapi_std_localizable_message.rb +4 -6
- data/lib/vsphere-automation-content/version.rb +5 -7
- data/spec/api/configuration_api_spec.rb +6 -7
- data/spec/api/library_api_spec.rb +7 -8
- data/spec/api/library_item_api_spec.rb +22 -10
- data/spec/api/library_item_download_session_api_spec.rb +8 -9
- data/spec/api/library_item_downloadsession_file_api_spec.rb +7 -8
- data/spec/api/library_item_file_api_spec.rb +6 -7
- data/spec/api/library_item_storage_api_spec.rb +6 -7
- data/spec/api/library_item_update_session_api_spec.rb +9 -10
- data/spec/api/library_item_updatesession_file_api_spec.rb +8 -9
- data/spec/api/library_subscribed_item_api_spec.rb +6 -7
- data/spec/api/library_subscriptions_api_spec.rb +90 -0
- data/spec/api/local_library_api_spec.rb +19 -8
- data/spec/api/subscribed_library_api_spec.rb +8 -9
- data/spec/api_client_spec.rb +4 -6
- data/spec/configuration_spec.rb +4 -6
- data/spec/models/content_configuration_model_spec.rb +4 -6
- data/spec/models/content_configuration_result_spec.rb +4 -6
- data/spec/models/content_configuration_update_spec.rb +4 -6
- data/spec/models/content_library_find_result_spec.rb +4 -6
- data/spec/models/content_library_find_spec.rb +4 -6
- data/spec/models/content_library_find_spec_spec.rb +4 -6
- data/spec/models/content_library_item_copy_result_spec.rb +4 -6
- data/spec/models/content_library_item_copy_spec.rb +4 -6
- data/spec/models/content_library_item_create_result_spec.rb +4 -6
- data/spec/models/content_library_item_create_spec.rb +4 -6
- data/spec/models/content_library_item_destination_spec_spec.rb +37 -0
- data/spec/models/content_library_item_download_session_create_result_spec.rb +4 -6
- data/spec/models/content_library_item_download_session_create_spec.rb +4 -6
- data/spec/models/content_library_item_download_session_fail_spec.rb +4 -6
- data/spec/models/content_library_item_download_session_keep_alive_spec.rb +4 -6
- data/spec/models/content_library_item_download_session_list_result_spec.rb +4 -6
- data/spec/models/content_library_item_download_session_model_spec.rb +4 -6
- data/spec/models/content_library_item_download_session_model_state_spec.rb +4 -6
- data/spec/models/content_library_item_download_session_result_spec.rb +4 -6
- data/spec/models/content_library_item_downloadsession_file_endpoint_type_spec.rb +4 -6
- data/spec/models/content_library_item_downloadsession_file_get_spec.rb +4 -6
- data/spec/models/content_library_item_downloadsession_file_info_spec.rb +4 -6
- data/spec/models/content_library_item_downloadsession_file_list_result_spec.rb +4 -6
- data/spec/models/content_library_item_downloadsession_file_prepare_result_spec.rb +4 -6
- data/spec/models/content_library_item_downloadsession_file_prepare_spec.rb +4 -6
- data/spec/models/content_library_item_downloadsession_file_prepare_status_spec.rb +4 -6
- data/spec/models/content_library_item_downloadsession_file_result_spec.rb +4 -6
- data/spec/models/content_library_item_file_checksum_algorithm_spec.rb +4 -6
- data/spec/models/content_library_item_file_checksum_info_spec.rb +4 -6
- data/spec/models/content_library_item_file_get_spec.rb +4 -6
- data/spec/models/content_library_item_file_info_spec.rb +4 -6
- data/spec/models/content_library_item_file_list_result_spec.rb +4 -6
- data/spec/models/content_library_item_file_result_spec.rb +4 -6
- data/spec/models/content_library_item_find_result_spec.rb +4 -6
- data/spec/models/content_library_item_find_spec.rb +4 -6
- data/spec/models/content_library_item_find_spec_spec.rb +4 -6
- data/spec/models/content_library_item_list_result_spec.rb +4 -6
- data/spec/models/content_library_item_model_spec.rb +4 -6
- data/spec/models/content_library_item_publish_spec.rb +43 -0
- data/spec/models/content_library_item_result_spec.rb +4 -6
- data/spec/models/content_library_item_storage_get_spec.rb +4 -6
- data/spec/models/content_library_item_storage_info_spec.rb +4 -6
- data/spec/models/content_library_item_storage_list_result_spec.rb +4 -6
- data/spec/models/content_library_item_storage_result_spec.rb +4 -6
- data/spec/models/content_library_item_transfer_endpoint_spec.rb +4 -6
- data/spec/models/content_library_item_transfer_status_spec.rb +4 -6
- data/spec/models/content_library_item_update_session_create_result_spec.rb +4 -6
- data/spec/models/content_library_item_update_session_create_spec.rb +4 -6
- data/spec/models/content_library_item_update_session_fail_spec.rb +4 -6
- data/spec/models/content_library_item_update_session_keep_alive_spec.rb +4 -6
- data/spec/models/content_library_item_update_session_list_result_spec.rb +4 -6
- data/spec/models/content_library_item_update_session_model_spec.rb +4 -6
- data/spec/models/content_library_item_update_session_model_state_spec.rb +4 -6
- data/spec/models/content_library_item_update_session_result_spec.rb +4 -6
- data/spec/models/content_library_item_update_session_update_spec.rb +4 -6
- data/spec/models/content_library_item_update_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_certificate_info_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_file_add_result_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_file_add_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_file_add_spec_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_file_get_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_file_info_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_file_list_result_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_file_remove_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_file_result_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_file_source_type_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_file_validate_result_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_file_validation_error_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_file_validation_result_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_preview_info_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_preview_info_state_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_preview_warning_info_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_warning_behavior_spec.rb +4 -6
- data/spec/models/content_library_item_updatesession_warning_type_spec.rb +4 -6
- data/spec/models/content_library_list_result_spec.rb +4 -6
- data/spec/models/content_library_model_library_type_spec.rb +4 -6
- data/spec/models/content_library_model_spec.rb +4 -6
- data/spec/models/content_library_optimization_info_spec.rb +4 -6
- data/spec/models/content_library_publish_info_authentication_method_spec.rb +4 -6
- data/spec/models/content_library_publish_info_spec.rb +4 -6
- data/spec/models/content_library_result_spec.rb +4 -6
- data/spec/models/content_library_source_info_spec.rb +43 -0
- data/spec/models/content_library_storage_backing_spec.rb +4 -6
- data/spec/models/content_library_storage_backing_type_spec.rb +4 -6
- data/spec/models/content_library_subscribed_item_sync_spec.rb +4 -6
- data/spec/models/content_library_subscription_info_authentication_method_spec.rb +4 -6
- data/spec/models/content_library_subscription_info_spec.rb +10 -6
- data/spec/models/content_library_subscriptions_create_result_spec.rb +37 -0
- data/spec/models/content_library_subscriptions_create_spec.rb +43 -0
- data/spec/models/content_library_subscriptions_create_spec_new_subscribed_library_spec.rb +61 -0
- data/spec/models/content_library_subscriptions_create_spec_placement_spec.rb +61 -0
- data/spec/models/content_library_subscriptions_create_spec_spec.rb +37 -0
- data/spec/models/content_library_subscriptions_create_spec_subscribed_library_spec.rb +67 -0
- data/spec/models/content_library_subscriptions_create_spec_subscribed_library_target_spec.rb +31 -0
- data/spec/models/content_library_subscriptions_create_spec_vcenter_spec.rb +43 -0
- data/spec/models/content_library_subscriptions_delete_spec.rb +37 -0
- data/spec/models/content_library_subscriptions_get_spec.rb +37 -0
- data/spec/models/content_library_subscriptions_info_spec.rb +61 -0
- data/spec/models/content_library_subscriptions_list_result_spec.rb +37 -0
- data/spec/models/content_library_subscriptions_location_spec.rb +31 -0
- data/spec/models/content_library_subscriptions_placement_info_spec.rb +61 -0
- data/spec/models/content_library_subscriptions_result_spec.rb +37 -0
- data/spec/models/content_library_subscriptions_summary_spec.rb +55 -0
- data/spec/models/content_library_subscriptions_update_spec.rb +43 -0
- data/spec/models/content_library_subscriptions_update_spec_placement_spec.rb +61 -0
- data/spec/models/content_library_subscriptions_update_spec_spec.rb +43 -0
- data/spec/models/content_library_subscriptions_update_spec_vcenter_spec.rb +43 -0
- data/spec/models/content_library_subscriptions_vcenter_info_spec.rb +49 -0
- data/spec/models/content_library_update_spec.rb +4 -6
- data/spec/models/content_local_library_create_result_spec.rb +4 -6
- data/spec/models/content_local_library_create_spec.rb +4 -6
- data/spec/models/content_local_library_destination_spec_spec.rb +37 -0
- data/spec/models/content_local_library_list_result_spec.rb +4 -6
- data/spec/models/content_local_library_publish_spec.rb +37 -0
- data/spec/models/content_local_library_result_spec.rb +4 -6
- data/spec/models/content_local_library_update_spec.rb +4 -6
- data/spec/models/content_subscribed_library_create_result_spec.rb +4 -6
- data/spec/models/content_subscribed_library_create_spec.rb +4 -6
- data/spec/models/content_subscribed_library_list_result_spec.rb +4 -6
- data/spec/models/content_subscribed_library_probe_result_spec.rb +4 -6
- data/spec/models/content_subscribed_library_probe_result_status_spec.rb +4 -6
- data/spec/models/content_subscribed_library_probe_spec.rb +4 -6
- data/spec/models/content_subscribed_library_result_spec.rb +4 -6
- data/spec/models/content_subscribed_library_update_spec.rb +4 -6
- data/spec/models/vapi_std_errors_already_exists_error_spec.rb +43 -0
- data/spec/models/vapi_std_errors_already_exists_spec.rb +43 -0
- data/spec/models/vapi_std_errors_concurrent_change_error_spec.rb +4 -6
- data/spec/models/vapi_std_errors_concurrent_change_spec.rb +4 -6
- data/spec/models/vapi_std_errors_error_error_spec.rb +43 -0
- data/spec/models/vapi_std_errors_error_spec.rb +43 -0
- data/spec/models/vapi_std_errors_invalid_argument_error_spec.rb +4 -6
- data/spec/models/vapi_std_errors_invalid_argument_spec.rb +4 -6
- data/spec/models/vapi_std_errors_invalid_element_configuration_error_spec.rb +4 -6
- data/spec/models/vapi_std_errors_invalid_element_configuration_spec.rb +4 -6
- data/spec/models/vapi_std_errors_invalid_element_type_error_spec.rb +4 -6
- data/spec/models/vapi_std_errors_invalid_element_type_spec.rb +4 -6
- data/spec/models/vapi_std_errors_not_allowed_in_current_state_error_spec.rb +4 -6
- data/spec/models/vapi_std_errors_not_allowed_in_current_state_spec.rb +4 -6
- data/spec/models/vapi_std_errors_not_found_error_spec.rb +4 -6
- data/spec/models/vapi_std_errors_not_found_spec.rb +4 -6
- data/spec/models/vapi_std_errors_resource_busy_error_spec.rb +4 -6
- data/spec/models/vapi_std_errors_resource_busy_spec.rb +4 -6
- data/spec/models/vapi_std_errors_resource_inaccessible_error_spec.rb +4 -6
- data/spec/models/vapi_std_errors_resource_inaccessible_spec.rb +4 -6
- data/spec/models/vapi_std_errors_unauthenticated_error_spec.rb +43 -0
- data/spec/models/vapi_std_errors_unauthenticated_spec.rb +43 -0
- data/spec/models/vapi_std_errors_unauthorized_error_spec.rb +4 -6
- data/spec/models/vapi_std_errors_unauthorized_spec.rb +4 -6
- data/spec/models/vapi_std_errors_unsupported_error_spec.rb +4 -6
- data/spec/models/vapi_std_errors_unsupported_spec.rb +4 -6
- data/spec/models/vapi_std_localizable_message_spec.rb +4 -6
- data/spec/spec_helper.rb +4 -6
- data/vsphere-automation-content.gemspec +11 -14
- metadata +150 -33
@@ -1,12 +1,10 @@
|
|
1
|
-
|
2
|
-
#
|
3
|
-
|
4
|
-
# content
|
1
|
+
# Copyright (c) 2018-2019 VMware, Inc. All Rights Reserved.
|
2
|
+
# SPDX-License-Identifier: MIT
|
5
3
|
|
6
|
-
#
|
4
|
+
# DO NOT MODIFY. THIS CODE IS GENERATED. CHANGES WILL BE OVERWRITTEN.
|
7
5
|
|
6
|
+
# content - VMware vSphere® Content Library empowers vSphere Admins to effectively manage VM templates, vApps, ISO images and scripts with ease.
|
8
7
|
|
9
|
-
=end
|
10
8
|
|
11
9
|
require 'spec_helper'
|
12
10
|
require 'json'
|
@@ -1,12 +1,10 @@
|
|
1
|
-
|
2
|
-
#
|
3
|
-
|
4
|
-
# content
|
1
|
+
# Copyright (c) 2018-2019 VMware, Inc. All Rights Reserved.
|
2
|
+
# SPDX-License-Identifier: MIT
|
5
3
|
|
6
|
-
#
|
4
|
+
# DO NOT MODIFY. THIS CODE IS GENERATED. CHANGES WILL BE OVERWRITTEN.
|
7
5
|
|
6
|
+
# content - VMware vSphere® Content Library empowers vSphere Admins to effectively manage VM templates, vApps, ISO images and scripts with ease.
|
8
7
|
|
9
|
-
=end
|
10
8
|
|
11
9
|
require 'spec_helper'
|
12
10
|
require 'json'
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# Copyright (c) 2018-2019 VMware, Inc. All Rights Reserved.
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
|
4
|
+
# DO NOT MODIFY. THIS CODE IS GENERATED. CHANGES WILL BE OVERWRITTEN.
|
5
|
+
|
6
|
+
# content - VMware vSphere® Content Library empowers vSphere Admins to effectively manage VM templates, vApps, ISO images and scripts with ease.
|
7
|
+
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for VSphereAutomation::Content::VapiStdErrorsUnauthenticatedError
|
14
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
15
|
+
# Please update as you see appropriate
|
16
|
+
describe 'VapiStdErrorsUnauthenticatedError' do
|
17
|
+
before do
|
18
|
+
# run before each test
|
19
|
+
@instance = VSphereAutomation::Content::VapiStdErrorsUnauthenticatedError.new
|
20
|
+
end
|
21
|
+
|
22
|
+
after do
|
23
|
+
# run after each test
|
24
|
+
end
|
25
|
+
|
26
|
+
describe 'test an instance of VapiStdErrorsUnauthenticatedError' do
|
27
|
+
it 'should create an instance of VapiStdErrorsUnauthenticatedError' do
|
28
|
+
expect(@instance).to be_instance_of(VSphereAutomation::Content::VapiStdErrorsUnauthenticatedError)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
describe 'test attribute "type"' do
|
32
|
+
it 'should work' do
|
33
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
describe 'test attribute "value"' do
|
38
|
+
it 'should work' do
|
39
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# Copyright (c) 2018-2019 VMware, Inc. All Rights Reserved.
|
2
|
+
# SPDX-License-Identifier: MIT
|
3
|
+
|
4
|
+
# DO NOT MODIFY. THIS CODE IS GENERATED. CHANGES WILL BE OVERWRITTEN.
|
5
|
+
|
6
|
+
# content - VMware vSphere® Content Library empowers vSphere Admins to effectively manage VM templates, vApps, ISO images and scripts with ease.
|
7
|
+
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for VSphereAutomation::Content::VapiStdErrorsUnauthenticated
|
14
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
15
|
+
# Please update as you see appropriate
|
16
|
+
describe 'VapiStdErrorsUnauthenticated' do
|
17
|
+
before do
|
18
|
+
# run before each test
|
19
|
+
@instance = VSphereAutomation::Content::VapiStdErrorsUnauthenticated.new
|
20
|
+
end
|
21
|
+
|
22
|
+
after do
|
23
|
+
# run after each test
|
24
|
+
end
|
25
|
+
|
26
|
+
describe 'test an instance of VapiStdErrorsUnauthenticated' do
|
27
|
+
it 'should create an instance of VapiStdErrorsUnauthenticated' do
|
28
|
+
expect(@instance).to be_instance_of(VSphereAutomation::Content::VapiStdErrorsUnauthenticated)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
describe 'test attribute "messages"' do
|
32
|
+
it 'should work' do
|
33
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
describe 'test attribute "data"' do
|
38
|
+
it 'should work' do
|
39
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
@@ -1,12 +1,10 @@
|
|
1
|
-
|
2
|
-
#
|
3
|
-
|
4
|
-
# content
|
1
|
+
# Copyright (c) 2018-2019 VMware, Inc. All Rights Reserved.
|
2
|
+
# SPDX-License-Identifier: MIT
|
5
3
|
|
6
|
-
#
|
4
|
+
# DO NOT MODIFY. THIS CODE IS GENERATED. CHANGES WILL BE OVERWRITTEN.
|
7
5
|
|
6
|
+
# content - VMware vSphere® Content Library empowers vSphere Admins to effectively manage VM templates, vApps, ISO images and scripts with ease.
|
8
7
|
|
9
|
-
=end
|
10
8
|
|
11
9
|
require 'spec_helper'
|
12
10
|
require 'json'
|
@@ -1,12 +1,10 @@
|
|
1
|
-
|
2
|
-
#
|
3
|
-
|
4
|
-
# content
|
1
|
+
# Copyright (c) 2018-2019 VMware, Inc. All Rights Reserved.
|
2
|
+
# SPDX-License-Identifier: MIT
|
5
3
|
|
6
|
-
#
|
4
|
+
# DO NOT MODIFY. THIS CODE IS GENERATED. CHANGES WILL BE OVERWRITTEN.
|
7
5
|
|
6
|
+
# content - VMware vSphere® Content Library empowers vSphere Admins to effectively manage VM templates, vApps, ISO images and scripts with ease.
|
8
7
|
|
9
|
-
=end
|
10
8
|
|
11
9
|
require 'spec_helper'
|
12
10
|
require 'json'
|
@@ -1,12 +1,10 @@
|
|
1
|
-
|
2
|
-
#
|
3
|
-
|
4
|
-
# content
|
1
|
+
# Copyright (c) 2018-2019 VMware, Inc. All Rights Reserved.
|
2
|
+
# SPDX-License-Identifier: MIT
|
5
3
|
|
6
|
-
#
|
4
|
+
# DO NOT MODIFY. THIS CODE IS GENERATED. CHANGES WILL BE OVERWRITTEN.
|
7
5
|
|
6
|
+
# content - VMware vSphere® Content Library empowers vSphere Admins to effectively manage VM templates, vApps, ISO images and scripts with ease.
|
8
7
|
|
9
|
-
=end
|
10
8
|
|
11
9
|
require 'spec_helper'
|
12
10
|
require 'json'
|
@@ -1,12 +1,10 @@
|
|
1
|
-
|
2
|
-
#
|
3
|
-
|
4
|
-
# content
|
1
|
+
# Copyright (c) 2018-2019 VMware, Inc. All Rights Reserved.
|
2
|
+
# SPDX-License-Identifier: MIT
|
5
3
|
|
6
|
-
#
|
4
|
+
# DO NOT MODIFY. THIS CODE IS GENERATED. CHANGES WILL BE OVERWRITTEN.
|
7
5
|
|
6
|
+
# content - VMware vSphere® Content Library empowers vSphere Admins to effectively manage VM templates, vApps, ISO images and scripts with ease.
|
8
7
|
|
9
|
-
=end
|
10
8
|
|
11
9
|
require 'spec_helper'
|
12
10
|
require 'json'
|
@@ -1,12 +1,10 @@
|
|
1
|
-
|
2
|
-
#
|
3
|
-
|
4
|
-
# content
|
1
|
+
# Copyright (c) 2018-2019 VMware, Inc. All Rights Reserved.
|
2
|
+
# SPDX-License-Identifier: MIT
|
5
3
|
|
6
|
-
#
|
4
|
+
# DO NOT MODIFY. THIS CODE IS GENERATED. CHANGES WILL BE OVERWRITTEN.
|
7
5
|
|
6
|
+
# content - VMware vSphere® Content Library empowers vSphere Admins to effectively manage VM templates, vApps, ISO images and scripts with ease.
|
8
7
|
|
9
|
-
=end
|
10
8
|
|
11
9
|
require 'spec_helper'
|
12
10
|
require 'json'
|
data/spec/spec_helper.rb
CHANGED
@@ -1,12 +1,10 @@
|
|
1
|
-
|
2
|
-
#
|
3
|
-
|
4
|
-
# content
|
1
|
+
# Copyright (c) 2018-2019 VMware, Inc. All Rights Reserved.
|
2
|
+
# SPDX-License-Identifier: MIT
|
5
3
|
|
6
|
-
#
|
4
|
+
# DO NOT MODIFY. THIS CODE IS GENERATED. CHANGES WILL BE OVERWRITTEN.
|
7
5
|
|
6
|
+
# content - VMware vSphere® Content Library empowers vSphere Admins to effectively manage VM templates, vApps, ISO images and scripts with ease.
|
8
7
|
|
9
|
-
=end
|
10
8
|
|
11
9
|
# load the gem
|
12
10
|
require 'vsphere-automation-content'
|
@@ -1,14 +1,12 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
|
3
|
-
|
4
|
-
#
|
5
|
-
|
6
|
-
# content
|
3
|
+
# Copyright (c) 2018-2019 VMware, Inc. All Rights Reserved.
|
4
|
+
# SPDX-License-Identifier: MIT
|
7
5
|
|
8
|
-
#
|
6
|
+
# DO NOT MODIFY. THIS CODE IS GENERATED. CHANGES WILL BE OVERWRITTEN.
|
9
7
|
|
8
|
+
# content - VMware vSphere® Content Library empowers vSphere Admins to effectively manage VM templates, vApps, ISO images and scripts with ease.
|
10
9
|
|
11
|
-
=end
|
12
10
|
|
13
11
|
$:.push File.expand_path("../lib", __FILE__)
|
14
12
|
require "vsphere-automation-content/version"
|
@@ -25,17 +23,16 @@ Gem::Specification.new do |s|
|
|
25
23
|
s.license = 'MIT'
|
26
24
|
s.required_ruby_version = ">= 2.3"
|
27
25
|
|
28
|
-
s.add_runtime_dependency '
|
29
|
-
s.add_runtime_dependency '
|
30
|
-
s.add_runtime_dependency 'vsphere-automation-cis', '~> 0.1'
|
26
|
+
s.add_runtime_dependency 'vsphere-automation-runtime', '~> 0.2.0'
|
27
|
+
s.add_runtime_dependency 'vsphere-automation-cis', '~> 0.2.0'
|
31
28
|
|
32
|
-
s.add_development_dependency 'bundler', '~>
|
33
|
-
s.add_development_dependency 'pry', '~> 0.
|
29
|
+
s.add_development_dependency 'bundler', '~> 2.0'
|
30
|
+
s.add_development_dependency 'pry', '~> 0.12.2'
|
34
31
|
s.add_development_dependency 'rake', '~> 12.3'
|
35
32
|
s.add_development_dependency 'rspec', '~> 3.7'
|
36
|
-
s.add_development_dependency 'rubocop', '~> 0.
|
37
|
-
s.add_development_dependency 'vcr', '~>
|
38
|
-
s.add_development_dependency 'webmock', '~> 3.
|
33
|
+
s.add_development_dependency 'rubocop', '~> 0.73.0'
|
34
|
+
s.add_development_dependency 'vcr', '~> 5.0'
|
35
|
+
s.add_development_dependency 'webmock', '~> 3.6'
|
39
36
|
|
40
37
|
s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
|
41
38
|
s.test_files = `find spec/*`.split("\n")
|
metadata
CHANGED
@@ -1,85 +1,71 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vsphere-automation-content
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- J.R. Garcia
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: vsphere-automation-runtime
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.2.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: json
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '2.1'
|
34
|
-
type: :runtime
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '2.1'
|
26
|
+
version: 0.2.0
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
28
|
name: vsphere-automation-cis
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
44
30
|
requirements:
|
45
31
|
- - "~>"
|
46
32
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
33
|
+
version: 0.2.0
|
48
34
|
type: :runtime
|
49
35
|
prerelease: false
|
50
36
|
version_requirements: !ruby/object:Gem::Requirement
|
51
37
|
requirements:
|
52
38
|
- - "~>"
|
53
39
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
40
|
+
version: 0.2.0
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: bundler
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
58
44
|
requirements:
|
59
45
|
- - "~>"
|
60
46
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
47
|
+
version: '2.0'
|
62
48
|
type: :development
|
63
49
|
prerelease: false
|
64
50
|
version_requirements: !ruby/object:Gem::Requirement
|
65
51
|
requirements:
|
66
52
|
- - "~>"
|
67
53
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
54
|
+
version: '2.0'
|
69
55
|
- !ruby/object:Gem::Dependency
|
70
56
|
name: pry
|
71
57
|
requirement: !ruby/object:Gem::Requirement
|
72
58
|
requirements:
|
73
59
|
- - "~>"
|
74
60
|
- !ruby/object:Gem::Version
|
75
|
-
version: 0.
|
61
|
+
version: 0.12.2
|
76
62
|
type: :development
|
77
63
|
prerelease: false
|
78
64
|
version_requirements: !ruby/object:Gem::Requirement
|
79
65
|
requirements:
|
80
66
|
- - "~>"
|
81
67
|
- !ruby/object:Gem::Version
|
82
|
-
version: 0.
|
68
|
+
version: 0.12.2
|
83
69
|
- !ruby/object:Gem::Dependency
|
84
70
|
name: rake
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -114,42 +100,42 @@ dependencies:
|
|
114
100
|
requirements:
|
115
101
|
- - "~>"
|
116
102
|
- !ruby/object:Gem::Version
|
117
|
-
version: 0.
|
103
|
+
version: 0.73.0
|
118
104
|
type: :development
|
119
105
|
prerelease: false
|
120
106
|
version_requirements: !ruby/object:Gem::Requirement
|
121
107
|
requirements:
|
122
108
|
- - "~>"
|
123
109
|
- !ruby/object:Gem::Version
|
124
|
-
version: 0.
|
110
|
+
version: 0.73.0
|
125
111
|
- !ruby/object:Gem::Dependency
|
126
112
|
name: vcr
|
127
113
|
requirement: !ruby/object:Gem::Requirement
|
128
114
|
requirements:
|
129
115
|
- - "~>"
|
130
116
|
- !ruby/object:Gem::Version
|
131
|
-
version: '
|
117
|
+
version: '5.0'
|
132
118
|
type: :development
|
133
119
|
prerelease: false
|
134
120
|
version_requirements: !ruby/object:Gem::Requirement
|
135
121
|
requirements:
|
136
122
|
- - "~>"
|
137
123
|
- !ruby/object:Gem::Version
|
138
|
-
version: '
|
124
|
+
version: '5.0'
|
139
125
|
- !ruby/object:Gem::Dependency
|
140
126
|
name: webmock
|
141
127
|
requirement: !ruby/object:Gem::Requirement
|
142
128
|
requirements:
|
143
129
|
- - "~>"
|
144
130
|
- !ruby/object:Gem::Version
|
145
|
-
version: '3.
|
131
|
+
version: '3.6'
|
146
132
|
type: :development
|
147
133
|
prerelease: false
|
148
134
|
version_requirements: !ruby/object:Gem::Requirement
|
149
135
|
requirements:
|
150
136
|
- - "~>"
|
151
137
|
- !ruby/object:Gem::Version
|
152
|
-
version: '3.
|
138
|
+
version: '3.6'
|
153
139
|
description: A Ruby SDK for the vSphere APIs (Content)
|
154
140
|
email:
|
155
141
|
- jrg@vmware.com
|
@@ -172,6 +158,7 @@ files:
|
|
172
158
|
- docs/ContentLibraryItemCopyResult.md
|
173
159
|
- docs/ContentLibraryItemCreate.md
|
174
160
|
- docs/ContentLibraryItemCreateResult.md
|
161
|
+
- docs/ContentLibraryItemDestinationSpec.md
|
175
162
|
- docs/ContentLibraryItemDownloadSessionCreate.md
|
176
163
|
- docs/ContentLibraryItemDownloadSessionCreateResult.md
|
177
164
|
- docs/ContentLibraryItemDownloadSessionFail.md
|
@@ -199,6 +186,7 @@ files:
|
|
199
186
|
- docs/ContentLibraryItemFindSpec.md
|
200
187
|
- docs/ContentLibraryItemListResult.md
|
201
188
|
- docs/ContentLibraryItemModel.md
|
189
|
+
- docs/ContentLibraryItemPublish.md
|
202
190
|
- docs/ContentLibraryItemResult.md
|
203
191
|
- docs/ContentLibraryItemStorageGet.md
|
204
192
|
- docs/ContentLibraryItemStorageInfo.md
|
@@ -241,15 +229,39 @@ files:
|
|
241
229
|
- docs/ContentLibraryPublishInfo.md
|
242
230
|
- docs/ContentLibraryPublishInfoAuthenticationMethod.md
|
243
231
|
- docs/ContentLibraryResult.md
|
232
|
+
- docs/ContentLibrarySourceInfo.md
|
244
233
|
- docs/ContentLibraryStorageBacking.md
|
245
234
|
- docs/ContentLibraryStorageBackingType.md
|
246
235
|
- docs/ContentLibrarySubscribedItemSync.md
|
247
236
|
- docs/ContentLibrarySubscriptionInfo.md
|
248
237
|
- docs/ContentLibrarySubscriptionInfoAuthenticationMethod.md
|
238
|
+
- docs/ContentLibrarySubscriptionsCreate.md
|
239
|
+
- docs/ContentLibrarySubscriptionsCreateResult.md
|
240
|
+
- docs/ContentLibrarySubscriptionsCreateSpec.md
|
241
|
+
- docs/ContentLibrarySubscriptionsCreateSpecNewSubscribedLibrary.md
|
242
|
+
- docs/ContentLibrarySubscriptionsCreateSpecPlacement.md
|
243
|
+
- docs/ContentLibrarySubscriptionsCreateSpecSubscribedLibrary.md
|
244
|
+
- docs/ContentLibrarySubscriptionsCreateSpecSubscribedLibraryTarget.md
|
245
|
+
- docs/ContentLibrarySubscriptionsCreateSpecVcenter.md
|
246
|
+
- docs/ContentLibrarySubscriptionsDelete.md
|
247
|
+
- docs/ContentLibrarySubscriptionsGet.md
|
248
|
+
- docs/ContentLibrarySubscriptionsInfo.md
|
249
|
+
- docs/ContentLibrarySubscriptionsListResult.md
|
250
|
+
- docs/ContentLibrarySubscriptionsLocation.md
|
251
|
+
- docs/ContentLibrarySubscriptionsPlacementInfo.md
|
252
|
+
- docs/ContentLibrarySubscriptionsResult.md
|
253
|
+
- docs/ContentLibrarySubscriptionsSummary.md
|
254
|
+
- docs/ContentLibrarySubscriptionsUpdate.md
|
255
|
+
- docs/ContentLibrarySubscriptionsUpdateSpec.md
|
256
|
+
- docs/ContentLibrarySubscriptionsUpdateSpecPlacement.md
|
257
|
+
- docs/ContentLibrarySubscriptionsUpdateSpecVcenter.md
|
258
|
+
- docs/ContentLibrarySubscriptionsVcenterInfo.md
|
249
259
|
- docs/ContentLibraryUpdate.md
|
250
260
|
- docs/ContentLocalLibraryCreate.md
|
251
261
|
- docs/ContentLocalLibraryCreateResult.md
|
262
|
+
- docs/ContentLocalLibraryDestinationSpec.md
|
252
263
|
- docs/ContentLocalLibraryListResult.md
|
264
|
+
- docs/ContentLocalLibraryPublish.md
|
253
265
|
- docs/ContentLocalLibraryResult.md
|
254
266
|
- docs/ContentLocalLibraryUpdate.md
|
255
267
|
- docs/ContentSubscribedLibraryCreate.md
|
@@ -269,10 +281,15 @@ files:
|
|
269
281
|
- docs/LibraryItemUpdateSessionApi.md
|
270
282
|
- docs/LibraryItemUpdatesessionFileApi.md
|
271
283
|
- docs/LibrarySubscribedItemApi.md
|
284
|
+
- docs/LibrarySubscriptionsApi.md
|
272
285
|
- docs/LocalLibraryApi.md
|
273
286
|
- docs/SubscribedLibraryApi.md
|
287
|
+
- docs/VapiStdErrorsAlreadyExists.md
|
288
|
+
- docs/VapiStdErrorsAlreadyExistsError.md
|
274
289
|
- docs/VapiStdErrorsConcurrentChange.md
|
275
290
|
- docs/VapiStdErrorsConcurrentChangeError.md
|
291
|
+
- docs/VapiStdErrorsError.md
|
292
|
+
- docs/VapiStdErrorsErrorError.md
|
276
293
|
- docs/VapiStdErrorsInvalidArgument.md
|
277
294
|
- docs/VapiStdErrorsInvalidArgumentError.md
|
278
295
|
- docs/VapiStdErrorsInvalidElementConfiguration.md
|
@@ -287,6 +304,8 @@ files:
|
|
287
304
|
- docs/VapiStdErrorsResourceBusyError.md
|
288
305
|
- docs/VapiStdErrorsResourceInaccessible.md
|
289
306
|
- docs/VapiStdErrorsResourceInaccessibleError.md
|
307
|
+
- docs/VapiStdErrorsUnauthenticated.md
|
308
|
+
- docs/VapiStdErrorsUnauthenticatedError.md
|
290
309
|
- docs/VapiStdErrorsUnauthorized.md
|
291
310
|
- docs/VapiStdErrorsUnauthorizedError.md
|
292
311
|
- docs/VapiStdErrorsUnsupported.md
|
@@ -304,6 +323,7 @@ files:
|
|
304
323
|
- lib/vsphere-automation-content/api/library_item_update_session_api.rb
|
305
324
|
- lib/vsphere-automation-content/api/library_item_updatesession_file_api.rb
|
306
325
|
- lib/vsphere-automation-content/api/library_subscribed_item_api.rb
|
326
|
+
- lib/vsphere-automation-content/api/library_subscriptions_api.rb
|
307
327
|
- lib/vsphere-automation-content/api/local_library_api.rb
|
308
328
|
- lib/vsphere-automation-content/api/subscribed_library_api.rb
|
309
329
|
- lib/vsphere-automation-content/api_client.rb
|
@@ -319,6 +339,7 @@ files:
|
|
319
339
|
- lib/vsphere-automation-content/models/content_library_item_copy_result.rb
|
320
340
|
- lib/vsphere-automation-content/models/content_library_item_create.rb
|
321
341
|
- lib/vsphere-automation-content/models/content_library_item_create_result.rb
|
342
|
+
- lib/vsphere-automation-content/models/content_library_item_destination_spec.rb
|
322
343
|
- lib/vsphere-automation-content/models/content_library_item_download_session_create.rb
|
323
344
|
- lib/vsphere-automation-content/models/content_library_item_download_session_create_result.rb
|
324
345
|
- lib/vsphere-automation-content/models/content_library_item_download_session_fail.rb
|
@@ -346,6 +367,7 @@ files:
|
|
346
367
|
- lib/vsphere-automation-content/models/content_library_item_find_spec.rb
|
347
368
|
- lib/vsphere-automation-content/models/content_library_item_list_result.rb
|
348
369
|
- lib/vsphere-automation-content/models/content_library_item_model.rb
|
370
|
+
- lib/vsphere-automation-content/models/content_library_item_publish.rb
|
349
371
|
- lib/vsphere-automation-content/models/content_library_item_result.rb
|
350
372
|
- lib/vsphere-automation-content/models/content_library_item_storage_get.rb
|
351
373
|
- lib/vsphere-automation-content/models/content_library_item_storage_info.rb
|
@@ -388,15 +410,39 @@ files:
|
|
388
410
|
- lib/vsphere-automation-content/models/content_library_publish_info.rb
|
389
411
|
- lib/vsphere-automation-content/models/content_library_publish_info_authentication_method.rb
|
390
412
|
- lib/vsphere-automation-content/models/content_library_result.rb
|
413
|
+
- lib/vsphere-automation-content/models/content_library_source_info.rb
|
391
414
|
- lib/vsphere-automation-content/models/content_library_storage_backing.rb
|
392
415
|
- lib/vsphere-automation-content/models/content_library_storage_backing_type.rb
|
393
416
|
- lib/vsphere-automation-content/models/content_library_subscribed_item_sync.rb
|
394
417
|
- lib/vsphere-automation-content/models/content_library_subscription_info.rb
|
395
418
|
- lib/vsphere-automation-content/models/content_library_subscription_info_authentication_method.rb
|
419
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_create.rb
|
420
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_create_result.rb
|
421
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_create_spec.rb
|
422
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_create_spec_new_subscribed_library.rb
|
423
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_create_spec_placement.rb
|
424
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_create_spec_subscribed_library.rb
|
425
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_create_spec_subscribed_library_target.rb
|
426
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_create_spec_vcenter.rb
|
427
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_delete.rb
|
428
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_get.rb
|
429
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_info.rb
|
430
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_list_result.rb
|
431
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_location.rb
|
432
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_placement_info.rb
|
433
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_result.rb
|
434
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_summary.rb
|
435
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_update.rb
|
436
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_update_spec.rb
|
437
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_update_spec_placement.rb
|
438
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_update_spec_vcenter.rb
|
439
|
+
- lib/vsphere-automation-content/models/content_library_subscriptions_vcenter_info.rb
|
396
440
|
- lib/vsphere-automation-content/models/content_library_update.rb
|
397
441
|
- lib/vsphere-automation-content/models/content_local_library_create.rb
|
398
442
|
- lib/vsphere-automation-content/models/content_local_library_create_result.rb
|
443
|
+
- lib/vsphere-automation-content/models/content_local_library_destination_spec.rb
|
399
444
|
- lib/vsphere-automation-content/models/content_local_library_list_result.rb
|
445
|
+
- lib/vsphere-automation-content/models/content_local_library_publish.rb
|
400
446
|
- lib/vsphere-automation-content/models/content_local_library_result.rb
|
401
447
|
- lib/vsphere-automation-content/models/content_local_library_update.rb
|
402
448
|
- lib/vsphere-automation-content/models/content_subscribed_library_create.rb
|
@@ -407,8 +453,12 @@ files:
|
|
407
453
|
- lib/vsphere-automation-content/models/content_subscribed_library_probe_result_status.rb
|
408
454
|
- lib/vsphere-automation-content/models/content_subscribed_library_result.rb
|
409
455
|
- lib/vsphere-automation-content/models/content_subscribed_library_update.rb
|
456
|
+
- lib/vsphere-automation-content/models/vapi_std_errors_already_exists.rb
|
457
|
+
- lib/vsphere-automation-content/models/vapi_std_errors_already_exists_error.rb
|
410
458
|
- lib/vsphere-automation-content/models/vapi_std_errors_concurrent_change.rb
|
411
459
|
- lib/vsphere-automation-content/models/vapi_std_errors_concurrent_change_error.rb
|
460
|
+
- lib/vsphere-automation-content/models/vapi_std_errors_error.rb
|
461
|
+
- lib/vsphere-automation-content/models/vapi_std_errors_error_error.rb
|
412
462
|
- lib/vsphere-automation-content/models/vapi_std_errors_invalid_argument.rb
|
413
463
|
- lib/vsphere-automation-content/models/vapi_std_errors_invalid_argument_error.rb
|
414
464
|
- lib/vsphere-automation-content/models/vapi_std_errors_invalid_element_configuration.rb
|
@@ -423,6 +473,8 @@ files:
|
|
423
473
|
- lib/vsphere-automation-content/models/vapi_std_errors_resource_busy_error.rb
|
424
474
|
- lib/vsphere-automation-content/models/vapi_std_errors_resource_inaccessible.rb
|
425
475
|
- lib/vsphere-automation-content/models/vapi_std_errors_resource_inaccessible_error.rb
|
476
|
+
- lib/vsphere-automation-content/models/vapi_std_errors_unauthenticated.rb
|
477
|
+
- lib/vsphere-automation-content/models/vapi_std_errors_unauthenticated_error.rb
|
426
478
|
- lib/vsphere-automation-content/models/vapi_std_errors_unauthorized.rb
|
427
479
|
- lib/vsphere-automation-content/models/vapi_std_errors_unauthorized_error.rb
|
428
480
|
- lib/vsphere-automation-content/models/vapi_std_errors_unsupported.rb
|
@@ -439,6 +491,7 @@ files:
|
|
439
491
|
- spec/api/library_item_update_session_api_spec.rb
|
440
492
|
- spec/api/library_item_updatesession_file_api_spec.rb
|
441
493
|
- spec/api/library_subscribed_item_api_spec.rb
|
494
|
+
- spec/api/library_subscriptions_api_spec.rb
|
442
495
|
- spec/api/local_library_api_spec.rb
|
443
496
|
- spec/api/subscribed_library_api_spec.rb
|
444
497
|
- spec/api_client_spec.rb
|
@@ -453,6 +506,7 @@ files:
|
|
453
506
|
- spec/models/content_library_item_copy_spec.rb
|
454
507
|
- spec/models/content_library_item_create_result_spec.rb
|
455
508
|
- spec/models/content_library_item_create_spec.rb
|
509
|
+
- spec/models/content_library_item_destination_spec_spec.rb
|
456
510
|
- spec/models/content_library_item_download_session_create_result_spec.rb
|
457
511
|
- spec/models/content_library_item_download_session_create_spec.rb
|
458
512
|
- spec/models/content_library_item_download_session_fail_spec.rb
|
@@ -480,6 +534,7 @@ files:
|
|
480
534
|
- spec/models/content_library_item_find_spec_spec.rb
|
481
535
|
- spec/models/content_library_item_list_result_spec.rb
|
482
536
|
- spec/models/content_library_item_model_spec.rb
|
537
|
+
- spec/models/content_library_item_publish_spec.rb
|
483
538
|
- spec/models/content_library_item_result_spec.rb
|
484
539
|
- spec/models/content_library_item_storage_get_spec.rb
|
485
540
|
- spec/models/content_library_item_storage_info_spec.rb
|
@@ -522,15 +577,39 @@ files:
|
|
522
577
|
- spec/models/content_library_publish_info_authentication_method_spec.rb
|
523
578
|
- spec/models/content_library_publish_info_spec.rb
|
524
579
|
- spec/models/content_library_result_spec.rb
|
580
|
+
- spec/models/content_library_source_info_spec.rb
|
525
581
|
- spec/models/content_library_storage_backing_spec.rb
|
526
582
|
- spec/models/content_library_storage_backing_type_spec.rb
|
527
583
|
- spec/models/content_library_subscribed_item_sync_spec.rb
|
528
584
|
- spec/models/content_library_subscription_info_authentication_method_spec.rb
|
529
585
|
- spec/models/content_library_subscription_info_spec.rb
|
586
|
+
- spec/models/content_library_subscriptions_create_result_spec.rb
|
587
|
+
- spec/models/content_library_subscriptions_create_spec.rb
|
588
|
+
- spec/models/content_library_subscriptions_create_spec_new_subscribed_library_spec.rb
|
589
|
+
- spec/models/content_library_subscriptions_create_spec_placement_spec.rb
|
590
|
+
- spec/models/content_library_subscriptions_create_spec_spec.rb
|
591
|
+
- spec/models/content_library_subscriptions_create_spec_subscribed_library_spec.rb
|
592
|
+
- spec/models/content_library_subscriptions_create_spec_subscribed_library_target_spec.rb
|
593
|
+
- spec/models/content_library_subscriptions_create_spec_vcenter_spec.rb
|
594
|
+
- spec/models/content_library_subscriptions_delete_spec.rb
|
595
|
+
- spec/models/content_library_subscriptions_get_spec.rb
|
596
|
+
- spec/models/content_library_subscriptions_info_spec.rb
|
597
|
+
- spec/models/content_library_subscriptions_list_result_spec.rb
|
598
|
+
- spec/models/content_library_subscriptions_location_spec.rb
|
599
|
+
- spec/models/content_library_subscriptions_placement_info_spec.rb
|
600
|
+
- spec/models/content_library_subscriptions_result_spec.rb
|
601
|
+
- spec/models/content_library_subscriptions_summary_spec.rb
|
602
|
+
- spec/models/content_library_subscriptions_update_spec.rb
|
603
|
+
- spec/models/content_library_subscriptions_update_spec_placement_spec.rb
|
604
|
+
- spec/models/content_library_subscriptions_update_spec_spec.rb
|
605
|
+
- spec/models/content_library_subscriptions_update_spec_vcenter_spec.rb
|
606
|
+
- spec/models/content_library_subscriptions_vcenter_info_spec.rb
|
530
607
|
- spec/models/content_library_update_spec.rb
|
531
608
|
- spec/models/content_local_library_create_result_spec.rb
|
532
609
|
- spec/models/content_local_library_create_spec.rb
|
610
|
+
- spec/models/content_local_library_destination_spec_spec.rb
|
533
611
|
- spec/models/content_local_library_list_result_spec.rb
|
612
|
+
- spec/models/content_local_library_publish_spec.rb
|
534
613
|
- spec/models/content_local_library_result_spec.rb
|
535
614
|
- spec/models/content_local_library_update_spec.rb
|
536
615
|
- spec/models/content_subscribed_library_create_result_spec.rb
|
@@ -541,8 +620,12 @@ files:
|
|
541
620
|
- spec/models/content_subscribed_library_probe_spec.rb
|
542
621
|
- spec/models/content_subscribed_library_result_spec.rb
|
543
622
|
- spec/models/content_subscribed_library_update_spec.rb
|
623
|
+
- spec/models/vapi_std_errors_already_exists_error_spec.rb
|
624
|
+
- spec/models/vapi_std_errors_already_exists_spec.rb
|
544
625
|
- spec/models/vapi_std_errors_concurrent_change_error_spec.rb
|
545
626
|
- spec/models/vapi_std_errors_concurrent_change_spec.rb
|
627
|
+
- spec/models/vapi_std_errors_error_error_spec.rb
|
628
|
+
- spec/models/vapi_std_errors_error_spec.rb
|
546
629
|
- spec/models/vapi_std_errors_invalid_argument_error_spec.rb
|
547
630
|
- spec/models/vapi_std_errors_invalid_argument_spec.rb
|
548
631
|
- spec/models/vapi_std_errors_invalid_element_configuration_error_spec.rb
|
@@ -557,6 +640,8 @@ files:
|
|
557
640
|
- spec/models/vapi_std_errors_resource_busy_spec.rb
|
558
641
|
- spec/models/vapi_std_errors_resource_inaccessible_error_spec.rb
|
559
642
|
- spec/models/vapi_std_errors_resource_inaccessible_spec.rb
|
643
|
+
- spec/models/vapi_std_errors_unauthenticated_error_spec.rb
|
644
|
+
- spec/models/vapi_std_errors_unauthenticated_spec.rb
|
560
645
|
- spec/models/vapi_std_errors_unauthorized_error_spec.rb
|
561
646
|
- spec/models/vapi_std_errors_unauthorized_spec.rb
|
562
647
|
- spec/models/vapi_std_errors_unsupported_error_spec.rb
|
@@ -583,8 +668,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
583
668
|
- !ruby/object:Gem::Version
|
584
669
|
version: '0'
|
585
670
|
requirements: []
|
586
|
-
|
587
|
-
rubygems_version: 2.7.6
|
671
|
+
rubygems_version: 3.0.3
|
588
672
|
signing_key:
|
589
673
|
specification_version: 4
|
590
674
|
summary: A Ruby SDK for the vSphere APIs (Content)
|
@@ -598,6 +682,7 @@ test_files:
|
|
598
682
|
- spec/api/library_item_api_spec.rb
|
599
683
|
- spec/api/library_subscribed_item_api_spec.rb
|
600
684
|
- spec/api/library_item_storage_api_spec.rb
|
685
|
+
- spec/api/library_subscriptions_api_spec.rb
|
601
686
|
- spec/api/library_item_file_api_spec.rb
|
602
687
|
- spec/api/library_item_download_session_api_spec.rb
|
603
688
|
- spec/api/library_item_downloadsession_file_api_spec.rb
|
@@ -608,26 +693,34 @@ test_files:
|
|
608
693
|
- spec/models/content_library_item_downloadsession_file_list_result_spec.rb
|
609
694
|
- spec/models/content_library_item_transfer_status_spec.rb
|
610
695
|
- spec/models/content_library_item_update_session_update_spec.rb
|
696
|
+
- spec/models/content_local_library_publish_spec.rb
|
611
697
|
- spec/models/content_library_item_download_session_create_spec.rb
|
612
698
|
- spec/models/vapi_std_errors_invalid_argument_spec.rb
|
699
|
+
- spec/models/content_library_subscriptions_create_result_spec.rb
|
613
700
|
- spec/models/content_library_item_downloadsession_file_result_spec.rb
|
614
701
|
- spec/models/content_library_model_spec.rb
|
615
702
|
- spec/models/content_library_list_result_spec.rb
|
616
703
|
- spec/models/content_configuration_model_spec.rb
|
617
704
|
- spec/models/content_library_item_updatesession_preview_warning_info_spec.rb
|
618
705
|
- spec/models/content_library_publish_info_authentication_method_spec.rb
|
706
|
+
- spec/models/content_library_item_destination_spec_spec.rb
|
619
707
|
- spec/models/content_library_item_downloadsession_file_info_spec.rb
|
620
708
|
- spec/models/vapi_std_errors_invalid_element_type_spec.rb
|
621
709
|
- spec/models/vapi_std_errors_unauthorized_error_spec.rb
|
622
710
|
- spec/models/content_library_item_updatesession_file_validation_error_spec.rb
|
623
711
|
- spec/models/content_library_item_download_session_create_result_spec.rb
|
712
|
+
- spec/models/content_library_subscriptions_delete_spec.rb
|
624
713
|
- spec/models/content_library_item_updatesession_file_info_spec.rb
|
714
|
+
- spec/models/content_library_item_publish_spec.rb
|
625
715
|
- spec/models/content_library_item_update_session_result_spec.rb
|
626
716
|
- spec/models/content_subscribed_library_probe_result_spec.rb
|
627
717
|
- spec/models/content_library_item_updatesession_file_add_result_spec.rb
|
628
718
|
- spec/models/vapi_std_localizable_message_spec.rb
|
719
|
+
- spec/models/content_library_subscriptions_update_spec_vcenter_spec.rb
|
629
720
|
- spec/models/vapi_std_errors_resource_inaccessible_error_spec.rb
|
721
|
+
- spec/models/content_library_subscriptions_create_spec_vcenter_spec.rb
|
630
722
|
- spec/models/content_library_publish_info_spec.rb
|
723
|
+
- spec/models/content_library_subscriptions_list_result_spec.rb
|
631
724
|
- spec/models/content_library_model_library_type_spec.rb
|
632
725
|
- spec/models/content_library_item_file_checksum_algorithm_spec.rb
|
633
726
|
- spec/models/content_library_update_spec.rb
|
@@ -638,6 +731,7 @@ test_files:
|
|
638
731
|
- spec/models/content_library_item_downloadsession_file_get_spec.rb
|
639
732
|
- spec/models/content_library_item_downloadsession_file_endpoint_type_spec.rb
|
640
733
|
- spec/models/content_library_item_update_session_create_result_spec.rb
|
734
|
+
- spec/models/content_library_subscriptions_location_spec.rb
|
641
735
|
- spec/models/content_library_item_storage_get_spec.rb
|
642
736
|
- spec/models/content_library_item_model_spec.rb
|
643
737
|
- spec/models/vapi_std_errors_not_allowed_in_current_state_error_spec.rb
|
@@ -649,6 +743,7 @@ test_files:
|
|
649
743
|
- spec/models/content_local_library_create_result_spec.rb
|
650
744
|
- spec/models/content_subscribed_library_probe_spec.rb
|
651
745
|
- spec/models/content_library_item_file_result_spec.rb
|
746
|
+
- spec/models/content_library_subscriptions_result_spec.rb
|
652
747
|
- spec/models/content_library_item_updatesession_file_add_spec_spec.rb
|
653
748
|
- spec/models/content_library_item_copy_result_spec.rb
|
654
749
|
- spec/models/content_library_item_updatesession_file_result_spec.rb
|
@@ -656,7 +751,9 @@ test_files:
|
|
656
751
|
- spec/models/content_library_item_updatesession_preview_info_state_spec.rb
|
657
752
|
- spec/models/content_library_item_find_spec.rb
|
658
753
|
- spec/models/content_library_item_download_session_model_spec.rb
|
754
|
+
- spec/models/content_library_subscriptions_update_spec.rb
|
659
755
|
- spec/models/content_subscribed_library_create_spec.rb
|
756
|
+
- spec/models/content_library_subscriptions_placement_info_spec.rb
|
660
757
|
- spec/models/content_library_find_spec.rb
|
661
758
|
- spec/models/content_library_result_spec.rb
|
662
759
|
- spec/models/content_library_item_storage_list_result_spec.rb
|
@@ -665,19 +762,30 @@ test_files:
|
|
665
762
|
- spec/models/content_library_item_updatesession_preview_info_spec.rb
|
666
763
|
- spec/models/content_library_item_updatesession_file_add_spec.rb
|
667
764
|
- spec/models/vapi_std_errors_invalid_element_configuration_spec.rb
|
765
|
+
- spec/models/content_library_subscriptions_create_spec_subscribed_library_spec.rb
|
668
766
|
- spec/models/vapi_std_errors_not_found_spec.rb
|
669
767
|
- spec/models/vapi_std_errors_invalid_element_configuration_error_spec.rb
|
768
|
+
- spec/models/content_library_subscriptions_update_spec_spec.rb
|
670
769
|
- spec/models/content_library_item_update_spec.rb
|
671
770
|
- spec/models/content_subscribed_library_probe_result_status_spec.rb
|
771
|
+
- spec/models/content_library_subscriptions_summary_spec.rb
|
672
772
|
- spec/models/content_subscribed_library_create_result_spec.rb
|
673
773
|
- spec/models/content_library_item_updatesession_warning_type_spec.rb
|
774
|
+
- spec/models/content_library_source_info_spec.rb
|
674
775
|
- spec/models/content_library_subscription_info_authentication_method_spec.rb
|
776
|
+
- spec/models/vapi_std_errors_unauthenticated_spec.rb
|
777
|
+
- spec/models/vapi_std_errors_already_exists_spec.rb
|
675
778
|
- spec/models/vapi_std_errors_invalid_argument_error_spec.rb
|
676
779
|
- spec/models/content_library_find_spec_spec.rb
|
780
|
+
- spec/models/content_library_subscriptions_create_spec_placement_spec.rb
|
677
781
|
- spec/models/vapi_std_errors_resource_busy_spec.rb
|
782
|
+
- spec/models/content_library_subscriptions_vcenter_info_spec.rb
|
678
783
|
- spec/models/content_subscribed_library_result_spec.rb
|
679
784
|
- spec/models/content_library_item_transfer_endpoint_spec.rb
|
785
|
+
- spec/models/content_library_subscriptions_create_spec_new_subscribed_library_spec.rb
|
786
|
+
- spec/models/content_local_library_destination_spec_spec.rb
|
680
787
|
- spec/models/content_library_item_updatesession_certificate_info_spec.rb
|
788
|
+
- spec/models/content_library_subscriptions_create_spec_spec.rb
|
681
789
|
- spec/models/content_subscribed_library_list_result_spec.rb
|
682
790
|
- spec/models/content_library_item_storage_info_spec.rb
|
683
791
|
- spec/models/vapi_std_errors_invalid_element_type_error_spec.rb
|
@@ -685,18 +793,22 @@ test_files:
|
|
685
793
|
- spec/models/content_library_item_updatesession_file_get_spec.rb
|
686
794
|
- spec/models/content_subscribed_library_update_spec.rb
|
687
795
|
- spec/models/content_library_storage_backing_spec.rb
|
796
|
+
- spec/models/content_library_subscriptions_create_spec.rb
|
688
797
|
- spec/models/content_library_item_result_spec.rb
|
689
798
|
- spec/models/content_local_library_create_spec.rb
|
690
799
|
- spec/models/content_library_item_list_result_spec.rb
|
691
800
|
- spec/models/content_library_item_download_session_keep_alive_spec.rb
|
692
801
|
- spec/models/vapi_std_errors_resource_inaccessible_spec.rb
|
802
|
+
- spec/models/content_library_subscriptions_get_spec.rb
|
693
803
|
- spec/models/content_library_item_downloadsession_file_prepare_result_spec.rb
|
804
|
+
- spec/models/vapi_std_errors_error_error_spec.rb
|
694
805
|
- spec/models/content_library_item_update_session_create_spec.rb
|
695
806
|
- spec/models/vapi_std_errors_unauthorized_spec.rb
|
696
807
|
- spec/models/content_library_item_download_session_fail_spec.rb
|
697
808
|
- spec/models/content_library_subscription_info_spec.rb
|
698
809
|
- spec/models/vapi_std_errors_unsupported_error_spec.rb
|
699
810
|
- spec/models/content_library_item_updatesession_file_validate_result_spec.rb
|
811
|
+
- spec/models/vapi_std_errors_error_spec.rb
|
700
812
|
- spec/models/content_library_item_update_session_fail_spec.rb
|
701
813
|
- spec/models/content_library_item_updatesession_file_validation_result_spec.rb
|
702
814
|
- spec/models/content_library_item_updatesession_file_list_result_spec.rb
|
@@ -708,15 +820,20 @@ test_files:
|
|
708
820
|
- spec/models/vapi_std_errors_concurrent_change_spec.rb
|
709
821
|
- spec/models/content_library_item_updatesession_file_remove_spec.rb
|
710
822
|
- spec/models/content_library_item_file_checksum_info_spec.rb
|
823
|
+
- spec/models/content_library_subscriptions_update_spec_placement_spec.rb
|
711
824
|
- spec/models/content_configuration_result_spec.rb
|
712
825
|
- spec/models/vapi_std_errors_concurrent_change_error_spec.rb
|
713
826
|
- spec/models/content_library_item_update_session_keep_alive_spec.rb
|
827
|
+
- spec/models/content_library_subscriptions_create_spec_subscribed_library_target_spec.rb
|
714
828
|
- spec/models/vapi_std_errors_not_found_error_spec.rb
|
715
829
|
- spec/models/content_library_item_downloadsession_file_prepare_spec.rb
|
716
830
|
- spec/models/content_library_item_file_info_spec.rb
|
717
831
|
- spec/models/content_library_item_find_spec_spec.rb
|
832
|
+
- spec/models/vapi_std_errors_already_exists_error_spec.rb
|
833
|
+
- spec/models/content_library_subscriptions_info_spec.rb
|
718
834
|
- spec/models/content_local_library_list_result_spec.rb
|
719
835
|
- spec/models/content_library_item_updatesession_warning_behavior_spec.rb
|
836
|
+
- spec/models/vapi_std_errors_unauthenticated_error_spec.rb
|
720
837
|
- spec/models/content_library_item_updatesession_file_source_type_spec.rb
|
721
838
|
- spec/models/vapi_std_errors_unsupported_spec.rb
|
722
839
|
- spec/models/content_library_optimization_info_spec.rb
|