ModelRegistryRefreshRequest constructor
ModelRegistryRefreshRequest({})
Implementation
factory ModelRegistryRefreshRequest({
$core.bool? includeRemoteCatalog,
$core.bool? rescanLocal,
$core.bool? pruneOrphans,
ModelQuery? query,
$core.String? catalogUri,
$core.bool? forceRefresh,
$core.bool? includeDownloadedState,
}) {
final result = create();
if (includeRemoteCatalog != null)
result.includeRemoteCatalog = includeRemoteCatalog;
if (rescanLocal != null) result.rescanLocal = rescanLocal;
if (pruneOrphans != null) result.pruneOrphans = pruneOrphans;
if (query != null) result.query = query;
if (catalogUri != null) result.catalogUri = catalogUri;
if (forceRefresh != null) result.forceRefresh = forceRefresh;
if (includeDownloadedState != null)
result.includeDownloadedState = includeDownloadedState;
return result;
}